:root {
    --gapSection: 75px;
    --sectionMt: 50px;
    --mt1: 32px
}

@media only screen and (max-width: 480px) {
    :root {
        --gapSection:50px
    }
}

@media only screen and (max-width: 520px) {
    :root {
        --sectionMt:30px
    }
}

@keyframes toBtm {
    0% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(10px)
    }
}

html,body {
    min-height: 100vh;
    font-family: Arial;
    scroll-behavior: smooth;
    margin: 0;
    padding: 0
}

body {
    background-color: #fff
}

body::-webkit-scrollbar {
    width: 10px;
    height: 10px
}

body::-webkit-scrollbar-track {
    background-color: #000
}

body::-webkit-scrollbar-thumb {
    background: #e0d5c4
}

* {
    box-sizing: border-box
}

*::selection {
    background-color: #e0d5c4;
    color: #fff
}

a {
    text-decoration: none;
    color: inherit
}

a:hover,a:focus {
    text-decoration: none;
    color: #000
}

img {
    user-select: none
}

button:hover,button:active,button:focus,a:hover,a:active,a:focus,input:not[type=radio]:hover,input:not[type=radio]:active,input:not[type=radio]:focus {
    appearance: none;
    outline: none;
    box-shadow: none
}

.page__body {
    display: flex;
    flex-direction: column
}

.page__wrapper {
    flex: 1 0 auto
}

.logo {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: nowrap;
    margin: 0;
    margin-bottom: -3em;
    margin-top: -3em
}

.logo img {
    max-width: 100%
}

.hero {
    position: relative;
    inset: 0;
    display: flex;
    justify-content: center;
    width: 100%;
    height: 100%;
    flex: 1
}

.hero img {
    max-width: 100%
}

.hero__bg {
    position: absolute;
    inset: 0;
    z-index: -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%
}

.hero__bg>img {
    object-fit: cover;
    position: absolute;
    bottom: -10em;
    left: auto
}

@media only screen and (min-width: 991px) {
    .hero__bg>img {
        right:-5em
    }
}

.hero__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: flex-start;
    justify-content: center;
    flex: 1
}

.hero__content>div {
    padding: var(--gapSection)32px;
    flex: 1
}

.hero button {
    margin-top: 32px;
    display: flex;
    min-width: 250px
}

@media only screen and (max-width: 1200px) {
    .hero {
        display:grid;
        grid-template-columns: 1fr
    }

    .hero__content {
        display: flex;
        flex-direction: column;
        position: relative;
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 32px
    }

    .hero__content>div {
        padding: 0 32px
    }
}

@media only screen and (max-width: 480px) {
    .hero__bg {
        position:relative
    }
}

* {
    font-family: Arial,-apple-system,BlinkMacSystemFont,segoe ui,Roboto,helvetica neue,Arial,sans-serif,apple color emoji,segoe ui emoji,segoe ui symbol,noto color emoji
}

h1,h2,h3,h4,h5,h6 {
    font-family: Arial
}

h1,.h1 {
    font-weight: 800;
    font-size: 7em;
    line-height: 1;
    margin-bottom: 8px;
    margin-top: 0;
    color: #e0d5c4
}

@media only screen and (max-width: 1200px) {
    h1,.h1 {
        font-size:6em
    }
}

@media only screen and (max-width: 768px) {
    h1,.h1 {
        font-size:4em
    }
}

h2,.h2 {
    font: 600 1.625rem/1.2 Arial,-apple-system,BlinkMacSystemFont,segoe ui,Roboto,helvetica neue,Arial,sans-serif,apple color emoji,segoe ui emoji,segoe ui symbol,noto color emoji;
    margin-bottom: 16px
}

h2+p,.h2+p {
    opacity: .6
}

@media only screen and (max-width: 991px) {
    h2,.h2 {
        font:600 1.5rem/1.4 Arial,-apple-system,BlinkMacSystemFont,segoe ui,Roboto,helvetica neue,Arial,sans-serif,apple color emoji,segoe ui emoji,segoe ui symbol,noto color emoji
    }
}

@media only screen and (max-width: 768px) {
    h2,.h2 {
        font:600 1.25rem/1.4 Arial,-apple-system,BlinkMacSystemFont,segoe ui,Roboto,helvetica neue,Arial,sans-serif,apple color emoji,segoe ui emoji,segoe ui symbol,noto color emoji
    }
}

@media only screen and (max-width: 480px) {
    h2,.h2 {
        font:600 1.125rem/1.4 Arial,-apple-system,BlinkMacSystemFont,segoe ui,Roboto,helvetica neue,Arial,sans-serif,apple color emoji,segoe ui emoji,segoe ui symbol,noto color emoji
    }
}

h3,.h3 {
    font: 500 1.5rem/1.4 Arial,-apple-system,BlinkMacSystemFont,segoe ui,Roboto,helvetica neue,Arial,sans-serif,apple color emoji,segoe ui emoji,segoe ui symbol,noto color emoji
}

.subtitle {
    font: 300 1.5rem/1.4 Arial,-apple-system,BlinkMacSystemFont,segoe ui,Roboto,helvetica neue,Arial,sans-serif,apple color emoji,segoe ui emoji,segoe ui symbol,noto color emoji
}

@media only screen and (max-width: 1400px) {
    .subtitle {
        font:300 1.25rem/1.4 Arial,-apple-system,BlinkMacSystemFont,segoe ui,Roboto,helvetica neue,Arial,sans-serif,apple color emoji,segoe ui emoji,segoe ui symbol,noto color emoji
    }
}

@media only screen and (max-width: 768px) {
    .subtitle {
        font:300 1rem/1.4 Arial,-apple-system,BlinkMacSystemFont,segoe ui,Roboto,helvetica neue,Arial,sans-serif,apple color emoji,segoe ui emoji,segoe ui symbol,noto color emoji
    }
}

hgroup h2 {
    margin-bottom: 8px
}

.text-center {
    text-align: center
}

.text-left {
    text-align: left
}

.btn,.form button,.btn-bd {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    height: 60px;
    max-width: 250px;
    padding: 8px 2em;
    background-color: #bfa46f;
    color: #0f172a;
    border: 1px solid rgba(224,213,196,.5);
    cursor: pointer;
    text-align: center;
    font: 500 1.25rem/1 Arial,-apple-system,BlinkMacSystemFont,segoe ui,Roboto,helvetica neue,Arial,sans-serif,apple color emoji,segoe ui emoji,segoe ui symbol,noto color emoji;
    transition: all .35s ease-in-out;
    user-select: none
}

.btn:hover,.form button:hover,.btn-bd:hover,.btn:active,.form button:active,.btn-bd:active,.btn:focus,.form button:focus,.btn-bd:focus {
    background: #fff;
    color: #000
}

.btn_top {
    position: fixed;
    right: 16px;
    bottom: 16px;
    z-index: 1000;
    width: 40px;
    height: 40px;
    background-color: #e0d5c4;
    color: #0f172a;
    border-radius: 8px;
    border: none
}

.btn-bd {
    max-width: 100%;
    background: 0 0;
    color: #e0d5c4;
    border-color: #e0d5c4
}

.form__wrap {
    max-width: 470px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 32px;
    margin-bottom: 32px;
    padding: 32px;
    background-color: rgba(0,0,0,.1);
    color: #fff;
    text-align: center
}

.form__caption {
    font: 700 1.5rem/1.2 Arial,-apple-system,BlinkMacSystemFont,segoe ui,Roboto,helvetica neue,Arial,sans-serif,apple color emoji,segoe ui emoji,segoe ui symbol,noto color emoji;
    margin-bottom: 32px
}

.form__caption b {
    color: #bfa46f;
    font-weight: inherit
}

.form label {
    display: block;
    text-align: left;
    margin-bottom: 8px
}

.form input {
    width: 100%;
    padding: 8px 16px;
    background-color: rgba(0,0,0,5%);
    border: 1px solid rgba(255,255,255,.15)
}

.form button {
    width: 100%;
    max-width: 100%;
    margin-top: 24px
}

.form__row {
    margin-top: 12px;
    margin-bottom: 12px
}

.form__row--inline {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px
}

@media only screen and (max-width: 480px) {
    .form__row--inline {
        grid-template-columns:1fr
    }
}

.form [type=checkbox] {
    opacity: 0;
    position: absolute
}

.form [type=checkbox]+label {
    opacity: .6;
    font: .875rem/1 Arial,-apple-system,BlinkMacSystemFont,segoe ui,Roboto,helvetica neue,Arial,sans-serif,apple color emoji,segoe ui emoji,segoe ui symbol,noto color emoji;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: nowrap;
    gap: 8px;
    margin: 0;
    user-select: none;
    cursor: pointer
}

.form [type=checkbox]+label::before {
    content: '';
    display: inline-flex;
    width: 16px;
    height: 16px;
    min-width: 16px;
    border: 1px solid #e0d5c4
}

.form [type=checkbox]:checked+label::before {
    background: #e0d5c4;
    box-shadow: inset 0 0 0 3px #0F172A
}

@media only screen and (max-width: 768px) {
    .form__caption {
        font:700 1.125rem/1.4 Arial,-apple-system,BlinkMacSystemFont,segoe ui,Roboto,helvetica neue,Arial,sans-serif,apple color emoji,segoe ui emoji,segoe ui symbol,noto color emoji
    }
}

.subscribe__field {
    max-width: 600px;
    margin: var(--mt1)auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    background-color: #fff;
    color: #000;
    padding: 8px;
    border-radius: 8px
}

.subscribe__field input {
    padding: 8px 16px;
    border: none;
    background: 0 0
}

.subscribe__field button {
    padding: 8px 16px;
    background-color: #bfa46f;
    color: #fff;
    border-radius: 8px;
    border: none
}

@media only screen and (max-width: 480px) {
    .subscribe__field {
        display:grid;
        justify-content: center
    }
}

.faq {
    width: 100%;
    margin-top: 32px
}

.faq__num {
    font: 800 2.1875rem/1 Arial,-apple-system,BlinkMacSystemFont,segoe ui,Roboto,helvetica neue,Arial,sans-serif,apple color emoji,segoe ui emoji,segoe ui symbol,noto color emoji;
    width: 100px;
    border-right: 1px solid rgba(255,255,255,.2);
    text-align: center
}

.faq__cta {
    width: 100px;
    text-align: center
}

.faq__cta svg {
    margin: auto
}

.faq__cta svg:last-child {
    display: none
}

.faq__term {
    font: 700 1.5rem/1.16666667 Arial,-apple-system,BlinkMacSystemFont,segoe ui,Roboto,helvetica neue,Arial,sans-serif,apple color emoji,segoe ui emoji,segoe ui symbol,noto color emoji;
    padding: 44px 0;
    user-select: none
}

.faq__row {
    border-top: 1px solid rgba(255,255,255,.2);
    cursor: pointer
}

.faq__row.active .faq__cta svg:first-child {
    display: none
}

.faq__row.active .faq__cta svg:last-child {
    display: block
}

.faq__row.active .faq__num {
    color: #bfa46f
}

.faq__row.active+tr>.faq__body {
    display: block
}

.faq tr:last-child {
    border-bottom: 1px solid rgba(255,255,255,.2);
    border-bottom: 0
}

.faq tr:first-child {
    border-top: 0
}

.faq__body {
    font: 300 1.25rem/1.2 Arial,-apple-system,BlinkMacSystemFont,segoe ui,Roboto,helvetica neue,Arial,sans-serif,apple color emoji,segoe ui emoji,segoe ui symbol,noto color emoji;
    padding: 0 0 38px;
    display: none
}

@media only screen and (max-width: 991px) {
    .faq__term {
        font:800 1.25rem/1 Arial,-apple-system,BlinkMacSystemFont,segoe ui,Roboto,helvetica neue,Arial,sans-serif,apple color emoji,segoe ui emoji,segoe ui symbol,noto color emoji
    }

    .faq__body {
        font: 300 .8125rem/1.4 Arial,-apple-system,BlinkMacSystemFont,segoe ui,Roboto,helvetica neue,Arial,sans-serif,apple color emoji,segoe ui emoji,segoe ui symbol,noto color emoji
    }
}

@media only screen and (max-width: 768px) {
    .faq__num {
        display:none
    }

    .faq__term,.faq__body {
        padding: 15px;
        padding-left: 0
    }

    .faq__term {
        font: 700 1rem/1.4 Arial,-apple-system,BlinkMacSystemFont,segoe ui,Roboto,helvetica neue,Arial,sans-serif,apple color emoji,segoe ui emoji,segoe ui symbol,noto color emoji
    }
}

@media only screen and (max-width: 480px) {
    .faq__cta {
        display:none
    }

    .faq__term,.faq__body {
        padding-right: 0
    }
}

.preloader {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100500;
    transition: all .35s ease-in-out;
    background-color: #000
}

.preloader-dots .dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin: 2px;
    background: #e0d5c4;
    border-radius: 50%;
    animation: moveit 1.8s infinite
}

.dot:nth-child(2) {
    animation-delay: .15s
}

.dot:nth-child(3) {
    animation-delay: .3s
}

.dot:nth-child(4) {
    animation-delay: .45s
}

.dot:nth-child(5) {
    animation-delay: .6s
}

@keyframes moveit {
    0% {
        transform: translateY(0)
    }

    35% {
        transform: translateY(0);
        opacity: .3
    }

    50% {
        transform: translateY(-20px);
        opacity: .8
    }

    70% {
        transform: translateY(3px);
        opacity: .8
    }

    85% {
        transform: translateY(-3px)
    }
}

body {
    background: #1d1f2d;
    color: #e0d5c4;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50%;
    font-family: Arial,-apple-system,BlinkMacSystemFont,segoe ui,Roboto,helvetica neue,Arial,sans-serif,apple color emoji,segoe ui emoji,segoe ui symbol,noto color emoji
}

a {
    font-family: inherit
}

a:hover,a:focus,a:active,a:focus-visible {
    color: inherit;
    outline: none;
    appearance: none;
    box-shadow: none
}

.page__wrapper {
    overflow: hidden;
    display: flex;
    flex-direction: column
}

.page__single {
    padding-top: var(--gapSection);
    padding-bottom: var(--gapSection)
}

.page__single h2,.page__single h3,.page__single h4,.page__single h5 {
    text-transform: uppercase;
    margin-top: 32px;
    margin-bottom: 16px;
    font: 700 1.5rem/1 Arial,-apple-system,BlinkMacSystemFont,segoe ui,Roboto,helvetica neue,Arial,sans-serif,apple color emoji,segoe ui emoji,segoe ui symbol,noto color emoji
}

.section {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1
}

.section::before {
    content: '';
    position: absolute;
    inset: 0;
    margin: auto;
    z-index: -1;
    width: calc(100% - 1.5em);
    height: calc(100% - 1.5em);
    border: 1px solid rgba(224,213,196,.5)
}

.section__bg {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
    inset: 0
}

.section__bg>* {
    position: absolute;
    inset: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    object-fit: cover
}

.section__body {
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
    padding: 32px 0
}

.section>.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    min-height: 100vh
}

.section_hero {
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 0 0;
    margin: 0;
    flex-direction: column
}

.section[id*=qw] {
    display: none
}

.content {
    margin-top: 32px;
    margin-bottom: 32px
}

.qw {
    width: 100%;
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 32px
}

.qw__wrapper {
    width: 100%
}

.qw__answrs {
    display: grid;
    gap: 16px;
    margin: 48px auto 0;
    width: 100%;
    grid-template-columns: repeat(auto-fit,minmax(300px,1fr))
}

.qw__answr {
    position: relative;
    padding: 2em;
    border: 0;
    border-radius: 5px;
    background: rgba(255,255,255,0);
    border: 1px solid #e0d5c4;
    color: #fff;
    transition: all .35s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: nowrap;
    gap: 16px;
    user-select: none;
    text-align: left
}

.qw__answr input {
    position: absolute;
    opacity: 0;
    z-index: 10;
    cursor: pointer;
    width: 100%;
    height: 100%
}

.qw__answr input+span {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    gap: 16px;
    position: relative;
    cursor: pointer;
    transition: all .35s ease-in-out
}

.qw__answr input+span:before {
    content: '';
    display: block;
    width: 16px;
    height: 16px;
    min-width: 16px;
    border-radius: 50%;
    border: 2px solid #e0d5c4
}

.qw__answr input:checked+span:before {
    background-color: #e0d5c4
}

.qw__body {
    width: 90%;
    margin: 32px auto;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center
}

.qw__toggler {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
    margin-top: 32px
}

.qw__footer {
    padding: 0 32px;
    display: flex;
    align-items: center;
    justify-content: flex-end
}

.qw__header {
    width: 100%;
    text-transform: uppercase;
    font: 700 1.25rem/1 Arial,-apple-system,BlinkMacSystemFont,segoe ui,Roboto,helvetica neue,Arial,sans-serif,apple color emoji,segoe ui emoji,segoe ui symbol,noto color emoji;
    padding-bottom: 16px;
    border-bottom: 2px solid #e0d5c4;
    text-align: left
}

.qw__title {
    width: 100%;
    text-align: center;
    margin: 0;
    font-weight: 700;
    font-size: 3em
}

.qw__wrapper {
    margin-top: 32px;
    overflow: hidden
}

.qw__content {
    padding: 32px
}

.qw button {
    background: #1f1f1f;
    color: #fff
}

@media only screen and (max-width: 768px) {
    .qw__answrs {
        grid-template-columns:1fr
    }

    .qw__title {
        font-size: 2em
    }
}

.contacts {
    margin-right: auto;
    margin-bottom: 32px;
    display: grid;
    grid-template-columns: auto;
    gap: 48px;
    row-gap: 32px;
    border-radius: 8px;
    text-align: left
}

.contacts .contact {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 8px
}

.contacts .contact__desc {
    font: .875rem/1.4 Arial,-apple-system,BlinkMacSystemFont,segoe ui,Roboto,helvetica neue,Arial,sans-serif,apple color emoji,segoe ui emoji,segoe ui symbol,noto color emoji;
    opacity: .5;
    margin-top: 8px
}

@media only screen and (max-width: 1200px) {
    .contacts {
        width:100%;
        max-width: 100%;
        padding: 32px;
        grid-template-columns: 1fr;
        row-gap: 16px;
        margin-left: auto
    }
}

.divider {
    border: 1px dotted rgba(191,164,111,.1)
}
