* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #000;
    font-size: 10px;
    line-height: 1;
    font-family: "Gilroy-Regular", "Open Sans", sans-serif;
    color: #fff;
    background-image: url(img/bg.jpg);
    background-size: 100%;
    background-position: top;
    background-repeat: no-repeat;
}

body.load {
    background: #000;
}

body,
a {
    -webkit-text-size-adjust: none;
    text-size-adjust: none;
}

a {
    text-decoration: underline;
}
@font-face {
    font-family: "Gilroy-Regular";
    src: url("fonts/Gilroy-Regular/Gilroy-Regular.eot");
    src: url("fonts/Gilroy-Regular/Gilroy-Regular.eot?#iefix") format("embedded-opentype"),
        url("fonts/Gilroy-Regular/Gilroy-Regular.woff") format("woff"),
        url("fonts/Gilroy-Regular/Gilroy-Regular.ttf") format("truetype");
    font-style: normal;
    font-weight: normal;
}
@font-face {
    font-family: "Gilroy-Bold";
    src: url("fonts/Gilroy-Bold/Gilroy-Bold.eot");
    src: url("fonts/Gilroy-Bold/Gilroy-Bold.eot?#iefix") format("embedded-opentype"),
        url("fonts/Gilroy-Bold/Gilroy-Bold.woff") format("woff"),
        url("fonts/Gilroy-Bold/Gilroy-Bold.ttf") format("truetype");
    font-style: normal;
    font-weight: normal;
}
@font-face {
    font-family: "Gilroy-Black";
    src: url("fonts/Gilroy-Black/Gilroy-Black.eot");
    src: url("fonts/Gilroy-Black/Gilroy-Black.eot?#iefix") format("embedded-opentype"),
        url("fonts/Gilroy-Black/Gilroy-Black.woff") format("woff"),
        url("fonts/Gilroy-Black/Gilroy-Black.ttf") format("truetype");
    font-style: normal;
    font-weight: normal;
}
@font-face {
    font-family: "Gilroy-Medium";
    src: url("fonts/Gilroy-Medium/Gilroy-Medium.eot");
    src: url("fonts/Gilroy-Medium/Gilroy-Medium.eot?#iefix") format("embedded-opentype"),
        url("fonts/Gilroy-Medium/Gilroy-Medium.woff") format("woff"),
        url("fonts/Gilroy-Medium/Gilroy-Medium.ttf") format("truetype");
    font-style: normal;
    font-weight: normal;
}
@font-face {
    font-family: "Lora-Regular";
    src: url("fonts/Lora-Regular/Lora-Regular.eot");
    src: url("fonts/Lora-Regular/Lora-Regular.eot?#iefix") format("embedded-opentype"),
        url("fonts/Lora-Regular/Lora-Regular.woff") format("woff"),
        url("fonts/Lora-Regular/Lora-Regular.ttf") format("truetype");
    font-style: normal;
    font-weight: normal;
}

.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1560px;
    margin: 0px auto;
    padding: 20px 10px 0;
    text-align: center;
}

.header__logo img {
    width: 130px;
}
.header__text {
    color: #5ab7a4;
    font-size: calc(30px + 16 * ((100vw - 320px) / (1920 - 320)));
    font-family: "Gilroy-Black", "Open Sans", sans-serif;
    text-transform: uppercase;
}
.header__text p {
    color: #f5b405;
    font-family: "Gilroy-Bold", "Open Sans", sans-serif;
    font-size: calc(22px + 24 * ((100vw - 320px) / (1920 - 320)));
}
.header__signup {
    font-family: "Gilroy-Bold", "Open Sans", sans-serif;
    color: #000;
    font-size: 24px;
    background-color: #f5b405;
    border-radius: 36px;
    padding: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid transparent;
}
.header__signup::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 2px solid #ffac0c;
    border-radius: inherit;
    opacity: 0;
    -webkit-transform: scale3d(0.6, 0.6, 1);
    transform: scale3d(0.6, 0.6, 1);
    -webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
    transition: opacity 0.3s, -webkit-transform 0.3s;
    -o-transition: transform 0.3s, opacity 0.3s;
    transition: transform 0.3s, opacity 0.3s;
    transition: transform 0.3s, opacity 0.3s, -webkit-transform 0.3s;
    -webkit-transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
    -o-transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
    transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
}
.header__signup:hover {
    color: #ffac0c;
    background: 0 0;
}
.header__signup:hover:before {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
    opacity: 1;
}

.goose {
    margin: 0px auto;
    text-align: center;
    padding-top: 220px;
}
.offer {
    margin: 0px auto;
    background-image: url(img/offer_bg.jpg);
    background-position: center;
    background-size: cover;
    border-radius: 15px;
    max-width: 1070px;
    text-align: center;
    margin-bottom: 150px;
    margin-top: 36vw;
}
.offer__title {
    font-family: "Lora-Regular", "Open Sans", sans-serif;
    font-size: calc(34px + 20 * ((100vw - 320px) / (1920 - 320)));
    color: #634b0b;
    text-transform: uppercase;
    padding: 50px 10px 0;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-image: url(img/text_bg.jpg);
}
.offer__subtitle {
    display: inline-block;
    padding: 15px 10px 0;
    color: #965411;
    font-family: "Gilroy-Medium", "Open Sans", sans-serif;
    font-size: calc(24px + 10 * ((100vw - 320px) / (1920 - 320)));
}
.offer__list {
    font-family: "Gilroy-Medium", "Open Sans", sans-serif;
    font-size: calc(21px + 9 * ((100vw - 320px) / (1920 - 320)));
    color: #634b0b;
    text-align: left;
    list-style: none;
    padding: 30px 200px 0;
}
.offer__list li {
    border-bottom: 4px dotted #5c3807;
    padding: 10px 0;
    margin-left: 50px;
    position: relative;
}
.offer__list li:nth-child(4){
    line-height: 1.3;
}
.offer__list li:nth-child(1)::before {
    content: "";
    position: absolute;
    left: -70px;
    top: 0;
    width: 40px;
    height: 41px;
    background-image: url(img/list-1.png);
}
.offer__list li:nth-child(2)::before {
    content: "";
    position: absolute;
    left: -75px;
    top: 7px;
    width: 49px;
    height: 37px;
    background-image: url(img/list-2.png);
}
.offer__list li:nth-child(3)::before {
    content: "";
    position: absolute;
    left: -65px;
    top: 0;
    width: 33px;
    height: 63px;
    background-image: url(img/list-3.png);
}
.offer__list li:nth-child(4)::before {
    content: "";
    position: absolute;
    left: -87px;
    top: 15px;
    width: 65px;
    height: 54px;
    background-image: url(img/list-4.png);
}
.offer__list span {
    font-family: "Gilroy-Bold", "Open Sans", sans-serif;
}
.offer__btn {
    font-family: "Gilroy-Bold", "Open Sans", sans-serif;
    font-size: 36px;
    color: #9e6a25;
    transition: all 0.3s ease;
    position: relative;
    border-radius: 50px;
    width: 330px;
    display: inline-block;
    line-height: 115px;
    z-index: 3;
    text-decoration: none;
    border: 2px solid #d29e0f;
    transform: translateY(50%);
}
.offer__btn:before {
    content: "";
    position: absolute;
    top: -1px;
    left: -1px;
    width: calc(100% + 2px);
    height: calc(100% + 2px);
    background-image: url(img/btn_bg.jpg);
    border-radius: 50px;
    transition: all 0.3s ease;
    z-index: -1;
}
.offer__btn:after {
    content: "";
    position: absolute;
    top: -1px;
    left: -1px;
    width: calc(100% + 2px);
    height: calc(100% + 2px);
    background-color: #50d6bb;
    border-radius: 50px;
    transition: all 0.3s ease;
    z-index: -2;
}
.offer__btn:hover:before {
    opacity: 0.5;
}
.offer__btn:hover {
    color: #000;
}

@media (max-width: 1300px) {
    body {
        background-position: 0px 100px;
    }
}

@media (max-width: 1100px) {
    .offer {
        margin: 36vw 10px 150px;
    }
    .offer__list {
        padding: 50px 80px 0;
    }
}

@media (max-width: 1000px) {
    .header__signup {
        padding: 15px;
        font-size: 20px;
    }
}

@media (max-width: 767px) {
    .header {
        flex-wrap: wrap;
    }
    .header__text {
        order: 3;
        flex: 0 0 100%;
    }
    .header__logo img {
        width: 70px;
    }
    .header__signup {
        font-size: 22px;
        padding: 10px;
    }
    .offer__btn {
        width: 280px;
        line-height: 75px;
    }
    .offer__btn:before {
        background-position: -10px -20px;
    }
    .offer {
        margin: 36vw 10px 100px;
    }
}

@media (max-width: 660px) {
    .offer__list {
        padding: 10px 50px 0;
    }
    .offer__list li {
    }
}

@media (max-width:767px){
    body {
        background-position: 0px 160px;
    }
}

@media (max-width: 479px) {
    .header__text {
        font-size: 26px;
    }
    .offer__list {
        padding: 10px 10px 0;
    }
    .offer__list li {
        margin-left: 0;
    }
    .offer__list li::before {
        display: none;
    }
    .offer__btn {
        width: 220px;
        line-height: 65px;
        font-size: 28px;
    }
}
