@font-face {
  font-family: "Lora";
  src: url(/fonts/Lora/Lora-VariableFont_wght.ttf);
}

:root {
    --white: #fff;
    --black: #27292E;
    --violet: #b68536;
    --gold: #ffc66b;
    --hover: #edc077;
    --opacity: rgba(243, 243, 243, 0.6);
}

body {
    position: relative;
    font-family: "Lora";
    font-size: 20px;
    line-height: 1.5em;
    color: var(--black);
}

a {
    text-decoration: none;
    transition: .4s;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 10px;
}

.overlay {
    display: none;
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .6);
    z-index: 98;
}

.modal {
    display: none;
    max-width: 250px;
    position: fixed;
    z-index: 99;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    background-color: var(--violet);
    border-radius: 20px;
    color: var(--white);
    font-weight: 900;
    font-size: 24px;
    padding: 20px;
}

.modal__close {
    position: absolute;
    right: 10px;
    top: 5px;
    font-weight: 400;
    cursor: pointer;
}

.header {
    position: absolute;
    width: 100%;
}

.header__wrapper {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 10px;
}

.header__wrapper:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background-color: var(--gold);
}

.header__logo {
    position: relative;
    z-index: 5;
    font-size: 16px;
    color: var(--gold);

}
.header__logo img {
    max-width: 80px;
}


.nav ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
    margin: 0;
    gap: 10px;
    list-style-type: none;
    font-size: 16px;
}

.nav__elem-link {
    color: var(--white);
}

.nav__elem-link:hover {
    color: var(--hover);
}

.header__burger {
    display: none;
    position: relative;
    z-index: 5;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    width: 15px;
    height: 15px;
}

.header__burger span {
    height: 1px;
    width: 100%;
    background-color: var(--white);
    transition: .4s;
}


.header--active .header__burger span:nth-child(1) {
    transform: rotate(-60deg) translate(-5px, 1px);
}
.header--active .header__burger span:nth-child(2) {
    opacity: 0
}
.header--active .header__burger span:nth-child(3) {
    transform: rotate(60deg) translate(-7px, -2px);
}


.header--active .nav {
    top: 0;
    opacity: 1;
}


/* Main */
.promo {
    min-height: 50vh;
    background: linear-gradient(135deg, #081c28, #785721, #433220);
    padding: 120px 0 60px 0;
}

.promo__wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.promo__title {
    font-weight: 900;
    font-size: 62px;
    margin-bottom: 32px;
    text-transform: capitalize;
    color: var(--white);
}

.promo__title span {
    color: var(--gold);
}

.promo__descr {
    max-width: 660px;
    font-size: 48px;
    font-weight: 900;
    line-height: 1.5em;
    color: var(--white);
}

.promo__form {
    background-color: var(--opacity);
    padding: 32px;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form__title {
    color: var(--black);
    font-size: 32px;
    font-weight: 900;
    text-transform: uppercase;
    margin: 0;
    text-align: center;
}

.form__number {
    position: relative;
    width: 100%;
}

.form__input {
    position: relative;
    border-radius: 24px;
    background-color: var(--white);
    color: rgba(107, 114, 128, 1);
    font-size: 16px;
    font-weight: 400;
    border: none;
    outline: none;
    width: 80%;
    padding: 16px 0 16px 60px;
}

.form__code {
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
    color: rgba(107, 114, 128, 1);
    font-size: 16px;
    font-weight: 400;
}


.form__button {
    background-color: var(--gold);
    width: 100%;
    padding: 16px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    outline: none;
    text-transform: capitalize;
    color: var(--black);
    font-size: 18px;
    font-weight: 900;
    border-radius: 40px;
    cursor: pointer;
    transition: .4s;
}

.form__button:hover {
    background-color: var(--hover);
}



/* Content */
.content {
    padding: 50px 0;
}

.content__article {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.content__article-img,
.content__article-text {
    max-width: 50%;
}

.contect {
    max-width: 100%;
    border-radius: 10px;
}

.content__article-text {
    font-size: 20px;
}

.content__article h3 {
    font-size: 60px;
    font-weight: 900;
    line-height: 80px;
    margin-bottom: 0;
}


/* Hero */
.hero {
    padding-top: 150px;
    padding-bottom: 56px;
    background: linear-gradient(135deg, #081c28, #785721, #433220);
}

.hero__wrapper {
    max-width: 660px;
    margin: 0 auto;
    text-align: center;
    color: var(--white);
}

.hero__title {
    font-size: 56px;
    font-weight: 900;
}

.hero__subtitle {
    font-size: 32px;
    font-weight: 900;
    line-height: 50px;
}


.aqa {
    padding: 50px 0;
}

.aqa__wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 100px; 
}

.aqa__element-title {
   font-weight: 900;
   font-size: 24px; 
   margin-bottom: 16px;
}

.aqa__element-descr {
    font-size: 20px;
    font-weight: 400;
}



/* Contact */
.contacts {
    padding: 50px 0;
}

.contacts__wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    max-width: 360px;
}

.contact__img img {
   width: 100%;
   height: 100%;
   object-fit: contain; 
}

.contact__name {
    font-weight: 600;
    font-size: 24px;
    color: var(--black);
}

.contact__info,
.contact__info a {
    text-align: center;
    color: var(--violet);
    font-weight: 600;
    font-size: 20px;
}


.feedback {
    padding: 30px 0;
}

.feedback__wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.feedback__img {
    width: 100%;
}

.feedback__img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.form {
    width: 100%;
}

.form__heading {
    font-size: 36px;
    font-weight: 600;
    text-align: left;
    margin-bottom: 10px;
}

.form__descr {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 30px;
}

.form__field {
    margin-bottom: 20px;
}

.form__field label {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.form__field span {
    font-size: 14px;
    font-weight: 500;
}

.form__field input,
.form__field textarea {
    border: 1px solid #D1D5DB;
    border-radius: 24px;
    padding: 16px 24px;
    outline: none;
    resize: none;
    font-size: 16px;
    font-weight: 400;
    color: #6B7280;
}

.form__submit {
    border-radius: 24px;
    background-color: var(--gold);
    color: var(--black);
    font-weight: 900;
    font-size: 18px;
    padding: 16px 30px;
    border: none;
    outline: none;
    cursor: pointer;
    transition: .4s;
}

.form__submit:hover {
    background-color: var(--hover);
}

/* Footer */
.footer__disclamer {
    position: relative;
    overflow: hidden;
    max-width: 1140px;
    margin: 0 auto 40px auto;
    padding: 72px;
    background-color: var(--violet);
    color: var(--white);
    border-radius: 10px;
    font-size: 18px;
    font-weight: 400;
}

.footer__disclamer:before {
    content: "";
    position: absolute;
    right: -250px;
    bottom: -250px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    border: 1px solid var(--white);
}

.footer__disclamer:after {
    content: "";
    position: absolute;
    right: -150px;
    bottom: -320px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    border: 1px solid var(--white);
}

.footer__disclamer h3 {
    font-size: 32px;
    font-weight: 900;
}

.footer__nav {
    background-color: var(--violet);
    padding: 57px 0 32px 0;
}

.footer__wrapper {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
}

.footer__wrapper:before {
    content: "";
    position: absolute;
    top: -24px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--hover);
}

.footer__logo {
    max-width: 120px;
    color: var(--white);
}

.footer__logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.footer__menu {
    list-style-type: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 0;
    margin: 0;
}

.footer__link {
    color: var(--white);
    font-size: 14px;
    transition: .4s;
}

.footer__link:hover {
    color: var(--hover);
}


.show {
    display: block;
}