/* =========================
   RESET
========================= */

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

body {
    font-family: "TT Hoves", sans-serif;
    color: #1d1d1d;
    background: #fff;
}

body.noscroll{overflow: hidden;}

img {
    width: 100%;
    display: block;
}

a {
    text-decoration: none;
}

.container {
    /*max-width: 1440px;
    margin: 0 auto;
    padding: 0 24px;*/
}

/* =========================
   COMMON
========================= */

.section-label {
    font-size: 14px;
    letter-spacing: 3px;
    color: rgba(0,0,0,0.45);
    text-transform: uppercase;
}

.section-line,.fibro-section-line{
    width: 54px;
    height: 2px;
    background: rgba(0,0,0,0.18);
    margin: 28px 0;
}

.section-line.white{
    background: #fff;
}

.dark-button,
.light-button {
    width: fit-content;
    height: 46px;
    padding: 0 22px;
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 18px;
    transition: .3s ease;
    border-radius: 4px;
}

.dark-button {
    background: #111;
    color: #fff;
}

.dark-button:hover {
    background: #000;
}

.light-button {
    border: 1px solid rgba(0,0,0,0.2);
    color: #1d1d1d;
}

.light-button:hover {
    border-color: #000;
}

/* =========================
   HEADER
========================= */

.header {
    position: relative;
    z-index: 100;
    background: #f5f5f5;
}

.header-wrapper {
    min-height: 96px;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

/* LOGO */

.header-logo {
    width: 170px;
    flex-shrink: 0;
}

.header-logo img {
    width: 100%;
    display: block;
}

/* NAV */

.header-nav {
    display: flex;
    align-items: center;
    gap: 90px;
    z-index: 999;
}

.header-link,
.header-dropdown-button {
    font-size: 18px;
    font-weight: 600;
    color: #222;
    transition: .3s ease;
}

.header-link:hover,
.header-dropdown-button:hover {
    opacity: .7;
}

/* DROPDOWN */

.header-dropdown {
    position: relative;
}

.header-dropdown-button {
    background: transparent;
    border: none;
    display: flex;
    align-items: center;
    gap: 14px;
    cursor: pointer;
    font-family: inherit;
}

.header-dropdown-button svg {
    transition: .3s ease;
}

.header-dropdown.active .header-dropdown-button svg {
    transform: rotate(180deg);
}

.header-dropdown-menu {
    position: absolute;
    top: calc(100% + 32px);
    left: 50%;
    transform: translateX(-50%);
    width: 340px;
    padding: 34px 32px;
    display: flex;
    flex-direction: column;
    gap: 34px;
    opacity: 0;
    visibility: hidden;
    transition: .3s ease;
    background: #fff;
}

.header-dropdown.active .header-dropdown-menu {
    opacity: 1;
    visibility: visible;
}

.header-dropdown-menu a {
    font-size: 18px;
    font-weight: 600;
    color: #222;
    transition: .3s ease;
}

.header-dropdown-menu a:hover {
    opacity: .7;
}

/* BUTTON */

.header-button {
    height: 64px;
    padding: 0 26px;
    background: #1f1f1f;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 18px;
    font-size: 18px;
    font-weight: 600;
    transition: .3s ease;
    flex-shrink: 0;
}

.header-button:hover {
    background: #000;
}

/* BURGER */

.header-burger {
    width: 42px;
    height: 42px;
    border: none;
    background: transparent;
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    cursor: pointer;
    flex-shrink: 0;
}

.header-burger span {
    width: 100%;
    height: 2px;
    background: #1d1d1d;
    transition: .3s ease;
}

/* =========================
   MOBILE
========================= */

@media (max-width: 1200px) {

    .header-nav {
        gap: 50px;
    }

    .header-link,
    .header-dropdown-button,
    .header-button,
    .header-dropdown-menu a {
        font-size: 20px;
    }
}

@media (max-width: 992px) {

    .header {
        padding-top: 16px;
    }

    .header-wrapper {
        min-height: 82px;
        padding: 0 20px;
    }

    .header-burger {
        display: flex;
    }

    .header-nav {
        position: absolute;
        top: calc(100% + 10px);
        left: 0;
        width: 100%;
        background: #f5f5f5;
        padding: 24px 20px;
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
        display: none;
    }

    .header-nav.active {
        display: flex;
        height: 100vh;
    }

    .header-dropdown-menu {
        position: static;
        transform: none;
        width: 100%;
        margin-top: 20px;
        padding: 20px;
        background: #ececec;
        display: none;
        opacity: 1;
        visibility: visible;
    }

    .header-dropdown.active .header-dropdown-menu {
        display: flex;
    }

    .header-button {
        display: none;
    }
}

@media (max-width: 768px) {

    .header-logo {
        width: 130px;
    }
}


/* =========================
   CONTACT
========================= */

.contact-wrapper {
    min-height: 100vh;
    background-image: url('img/8.png');
    background-size: cover;
    background-position: bottom;
    padding: 60px 52px 80px;
    display: grid;
    grid-template-columns: 1fr 80px 1fr;
    position: relative;
    overflow: hidden;
}

/* LEFT */

.contact-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-title {
    font-size: 110px;
    line-height: .95;
    font-weight: 300;
    color: #1c1c1c;
    margin: 34px 0 60px 0;
}

.contact-description {
    font-size: 28px;
    line-height: 1.7;
    color: #666;
    max-width: 420px;
}

.contact-brand {
    margin-top: auto;
    padding-top: 120px;
    font-size: 24px;
    letter-spacing: 10px;
    color: #1d1d1d;
}

/* DIVIDER */

.contact-divider {
    display: flex;
    justify-content: center;
    position: relative;
}

.contact-divider::before {
    content: "";
    width: 1px;
    height: 80%;
    background: rgba(0,0,0,0.15);
}

.contact-divider span {
    position: absolute;
    width: 10px;
    height: 10px;
    border: 1px solid rgba(0,0,0,0.25);
    border-radius: 50%;
    background: #f7f4f1;
    top: 50%;
    transform: translateY(-50%);
}

/* RIGHT */

.contact-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 520px;
    width: 100%;
}

.contact-form {
    width: 100%;
}

.contact-field {
    margin-bottom: 34px;
}

.contact-field input,
.contact-field textarea {
    width: 100%;
    border: none;
    border-bottom: 1px solid rgba(0,0,0,0.18);
    background: transparent;
    padding: 0 0 14px;
    font-size: 18px;
    color: #1d1d1d;
    outline: none;
    font-family: inherit;
}

.contact-field textarea {
    height: 90px;
    resize: none;
}

.contact-field input::placeholder,
.contact-field textarea::placeholder {
    color: #666;
}

.contact-button {
    width: 100%;
    height: 68px;
    border: 1px solid rgba(0,0,0,0.35);
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
    margin-top: 50px;
    cursor: pointer;
    transition: .3s ease;
    font-size: 15px;
    letter-spacing: 2px;
    color: #1d1d1d;
    border-radius: 4px;
}

.contact-button:hover {
    background: rgba(0,0,0,0.03);
}

.contact-bottom {
    margin-top: 70px;
    display: flex;
    gap: 22px;
    flex-wrap: wrap;
}

.contact-bottom a,
.contact-bottom span {
    color: #555;
    font-size: 15px;
}
.contact-form-result {
    margin-top: 20px;
    font-size: 14px;
    color: #1d1d1d;
}


/* =========================
   FOOTER
========================= */

.footer {
    background: #1f1f1f;
    padding: 80px 20px 70px;
    overflow: hidden;
}

.footer-wrapper {
    display: grid;
    grid-template-columns: 320px 1fr 1fr 420px;
    gap: 80px;
}

/* LEFT */

.footer-left {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    width: 190px;
    display: block;
}

.footer-logo img {
    width: 100%;
    display: block;
}

.footer-copyright {
    margin-top: 0;
    padding-top: 20px;
    color: rgba(255,255,255,0.8);
    font-size: 15px;
    line-height: 1.6;
}

/* MENU */

.footer-column {
    padding-top: 6px;
}

.footer-menu {
    display: flex;
    flex-direction: column;
    gap: 42px;
}

.footer-menu a {
    color: #fff;
    font-size: 20px;
    line-height: 1.4;
    transition: .3s ease;
}

.footer-menu a:hover {
    opacity: .7;
}

/* CONTACTS */

.footer-contacts {
    display: flex;
    flex-direction: column;
    gap: 34px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 24px;
}

.footer-contact-icon {
    width: 28px;
    min-width: 28px;
    margin-top: 2px;
}

.footer-contact-icon img {
    width: 100%;
    display: block;
}

.footer-contact-item a,
.footer-contact-text {
    color: #fff;
    font-size: 20px;
    line-height: 1.5;
}

.footer-contact-item a {
    transition: .3s ease;
}

.footer-contact-item a:hover {
    opacity: .7;
}

.footer-contact-address .footer-contact-text {
    max-width: 340px;
}

/* =========================
   ADAPTIVE
========================= */

@media (max-width: 1400px) {

    .footer-wrapper {
        grid-template-columns: 260px 1fr 1fr;
    }

    .footer-contacts {
        grid-column: span 3;
        padding-top: 20px;
    }
}

@media (max-width: 992px) {

    .footer {
        padding: 60px 0;
    }

    .footer-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .footer-copyright {
        padding-top: 50px;
    }

    .footer-contacts {
        grid-column: auto;
    }

    .footer-menu {
        gap: 24px;
    }

    .footer-menu a,
    .footer-contact-item a,
    .footer-contact-text {
        font-size: 18px;
    }
}

@media (max-width: 768px) {

    .footer {
        padding: 40px 0;
    }

    .footer-wrapper {
        gap: 40px;
    }

    .footer-logo {
        width: 160px;
    }

    .footer-menu a,
    .footer-contact-item a,
    .footer-contact-text {
        font-size: 16px;
    }

    .footer-contact-item {
        gap: 18px;
    }

    .footer-contact-icon {
        width: 22px;
        min-width: 22px;
    }

    .footer-copyright {
        font-size: 13px;
    }
}

/* =========================
   ADAPTIVE
========================= */

@media (max-width: 1200px) {

    .contact-title {
        font-size: 72px;
    }
    .contact-wrapper{background-size: auto;}
}

@media (max-width: 992px) {

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 60px;
        padding: 60px 40px;
    }

    .contact-divider {
        display: none;
    }

    .contact-brand {
        padding-top: 60px;
    }

    .contact-right,
    .contact-left {
        max-width: 100%;
    }
}

@media (max-width: 768px) {

    .contact-wrapper {
        padding: 40px 24px;
    }

    .contact-title {
        font-size: 52px;
    }

    .contact-description {
        font-size: 16px;
    }

    .contact-button {
        height: 60px;
        font-size: 13px;
    }

    .contact-brand {
        font-size: 20px;
        letter-spacing: 6px;
    }
}

@media (max-width: 560px)
{

.footer{padding: 40px 24px;}
body .contact-title{font-size: 46px;margin: 30px 0 30px 0}
.contact-wrapper{background-position: center;}
body .footer-wrapper{gap: 24px;}
body .footer-column{padding-top: 0}

}