/* CONTACTS */

.contacts {
    padding: 124px 0 120px;
}

.contacts__title {
    margin-bottom: 45px;
    max-width: 920px;
}

.contacts__form {
    max-width: 385px;
    min-width: 385px;
}

.contacts__form > p {
    font-size: 19px;
    line-height: 23px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.contacts__form .form-wrapper {
    margin-bottom: 20px;
}

.contacts__btn {
    height: 80px;
    margin-bottom: 26px;
}

.contacts__form .form-wrapper input, .contacts__form .form-wrapper input::placeholder {
    color: #898989;
}

.contacts__chk {
    display: flex;
    gap: 19px;
    align-items: center;
}

.contacts__chk .chk-text {
    color: #222222;
}


.contacts__chk .chk-svg {
    display: none;
    border: 2px solid #707070;
    background-color: transparent;
}

.contacts__chk .chk-svg svg path {
    stroke: #707070;
}

.contacts__map-container {
    width: 100%;
    height: 434px;
}

.contacts__map-container > iframe {
    width: 100%;
    height: 100%;
}

.contacts__map {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contacts__wrapper {
    display: flex;
    gap: 40px;
}

@media (max-width: 992px) {
    .contacts__btn {
        height: 60px;
    }

    .contacts__form {
        max-width: 320px;
        min-width: 320px;
    }
}

@media (max-width: 800px) {
    .contacts__title {
        text-align: center;
    }

    .contacts__wrapper {
        flex-wrap: wrap;
    }

    .contacts__form {
        max-width: 385px;
        min-width: 385px;
        margin: 0 auto;
    }
}

@media (max-width: 650px) {
    .contacts__map-container {
        height: 350px;
    }

    .contacts {
        padding: 60px 0 60px;
    }

    .contacts__form {
        min-width: initial;
    }
}

/* \CONTACTS */