* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
}

@font-face {
    font-family: 'EB Garamond';
    src: url('fonts/EB_Garamond/EBGaramond-VariableFont_wght.woff') format('woff'),
        url('fonts/EB_Garamond/EBGaramond-VariableFont_wght.woff2') format('woff2');
    font-weight: 100 900;
    font-display: swap;
}

@font-face {
    font-family: 'EB_Garamond_bold';
    src: url('fonts/EB_Garamond/EBGaramond-Bold.woff') format('woff'),
        url('fonts/EB_Garamond/EBGaramond-Bold.woff2') format('woff2'),
        url('fonts/EB_Garamond/EBGaramond-Bold.ttf') format('truetype');
    font-weight: 600;
    font-display: swap;
}

@font-face {
    font-family: 'Open Sans';
    src: url('fonts/open_sans/OpenSans-Regular.eot');
    src: url('fonts/open_sans/OpenSans-Regular.eot') format('embedded-opentype'),
        url('fonts/open_sans/OpenSans-Regular.woff') format('woff'),
        url('fonts/open_sans/OpenSans-Regular.woff2') format('woff2'),
        url('fonts/open_sans/OpenSans-Regular.ttf') format('truetype'),
        url('fonts/open_sans/OpenSans-Regular.svg') format('svg');
    font-weight: normal;
    font-style: normal;
}

body {
    background: #fff;
    color: #888686;
    font-size: 16px;
    font-family: 'Open Sans';
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'EB_Garamond_bold';
    margin: 0 0 15px;
    line-height: 130%;
    font-weight: 600;
    color: var(--font-color);
}

p {
    margin: 0 0 15px;
    line-height: 170%;
    font-size: 16px;
}

input,
button,
select,
textarea {
    font-family: 'Open Sans';
}

ul {
    list-style: none;
    margin: 0;
}

ul li {
    font-size: 16px;
}

.default_container {
    width: calc(100% - 150px);
    margin: 0 auto;
    padding: 0 15px;
}

.small_container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 15px;
}

.mb_40 {
    margin-bottom: 40px;
}

.title_div {
    margin: 0 0 40px;
    text-align: center;
}

.title_div h2 {
    margin: 0px;
    font-weight: 700;
    font-size: 42px;
    color: var(--main-color);
}

.title_div p {
    width: 100%;
    max-width: 750px;
    color: var(--font-color);
    margin: 15px auto 0;
}

.d_flex {
    display: flex;
    flex-wrap: wrap;
}

.align_center {
    align-items: center;
}

.form_control {
    padding: 12px 10px;
    border: 0px;
    margin: 0;
    width: 100%;
    font-size: 16px;
}

.default_btn {
    padding: 15px 30px;
    display: inline-block;
    border-radius: 5px;
    background-color: var(--main-color);
    color: #fff;
    text-align: center;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    z-index: 2;
    font-size: 16px;
}

.default_btn:before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: linear-gradient(180deg, var(--main-color), transparent);
    z-index: -1;
}

.default_btn:hover {
    background-color: transparent;
    color: #fff;
}

@media(max-width:1550px) {
    .default_container {
        width: 100%;
        max-width: 1400px;
    }
}

@media(max-width:1400px) {}

@media(max-width:1300px) {}

@media(max-width:1200px) {}

@media(max-width:1024px) {
    .title_div h2 {
        font-size: 39px;
    }
}

@media(max-width:580px) {
    .title_div h2 {
        font-size: 36px;
    }

    .default_btn {
        padding: 12px 25px;
        font-size: 15px;
    }
}

@media(max-width:480px) {
    .title_div h2 {
        font-size: 34px;
    }
}

@media(max-width:380px) {
    .title_div h2 {
        font-size: 32px;
    }
}