main {
    margin-top: 0;
}

.contacts__main-screen {

}

.contacts__main-screen__top-image {
    height: 50vh;
    width: 100vw;
}

.contacts__main-screen__top-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contacts__main-screen__contacts-containers {
    height: 50vh;
    width: 100vw;
    display: flex;
    justify-content: center;
    position: relative;
}

.contacts__main-screen__contacts-containers__left {
    width: 45%;
    height: 100%;
    background: #29282E;
    display: flex;
    justify-content: flex-end;
}

.contacts__main-screen__contacts-containers__left__wrapper {
    width: calc(100% - (100vw - 1240px)/2);
    height: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.contacts__main-screen__contacts-containers__right {
    width: 55%;
    height: 100%;
    display: flex;
}

.contacts__main-screen__contacts-containers__right__wrapper {
    width: calc(100% - (100vw - 1240px)/2);
    height: 100%;
    display: flex;
}

.contacts_left-content h1 {
    width: 100%;
    font-family: 'Futura PT Book', sans-serif;
    font-style: normal;
    font-size: 40px;
    line-height: 51px;
    text-transform: uppercase;
    color: #FFFFFF;
    margin-bottom: 50px;
}

.phones-containers {
    width: 100%;
    display: flex;
}

.phones-containers__item {
    margin-right: 20%;
}

.phones-containers__item h3 {
    font-family: 'Circe', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 19px;
    line-height: 28px;
    color: #FFFFFF;
    margin-bottom: 15px;
}

.phones-containers__item ul li {
    margin-bottom: 15px;
}

.phones-containers__item ul li h5 {
    white-space: nowrap;
    font-family: 'Circe', sans-serif;
    font-style: normal;
    font-size: 17px;
    line-height: 27px;
    color: #8C8C8C;
}

.phones-containers__item ul li p {
    white-space: nowrap;
    font-family: 'Circe', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 17px;
    line-height: 27px;
    color: #FFFFFF;
}

.social-networks_n_contact-us {
    height: 100%;
    width: 60%;
}

.social-networks {
    background: #fff;
    width: 100%;
    height: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-networks svg {
    cursor: pointer;
    margin: 20px;
}

.social-networks svg:nth-child(1):hover path {
    transition: .2s;
    fill: red;
}

.social-networks svg:nth-child(2):hover path {
    transition: .2s;
    fill: #000;
}

.social-networks svg:nth-child(3):hover path {
    transition: .2s;
    fill: #29282E;
}

.contact-us {
    transition: .2s;
    cursor: pointer;
    width: 100%;
    height: 50%;
    background: #22BCA2;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Circe', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 29px;
    text-align: right;
    color: #FFFFFF;
}

.contact-us:hover {
    background: #1a8976;
}

.any-questions__container {
    width: 40%;
    height: 100%;
    padding: 40px 0 0 40px;
    position: relative;
}

.any-questions__container h2 {
    font-family: 'Futura PT Book', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 24px;
    line-height: 35px;
    text-transform: uppercase;
    color: #34333B;
    margin-top: 40px;
}

.any-questions__container p {
    margin-top: 30px;
    font-family: 'Circe', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 17px;
    line-height: 27px;
    color: #8C8C8C;
}

.any-questions__container__button {
    cursor: pointer;
    display: flex;
    align-items: center;
    position: absolute;
    bottom: 0;
    right: 0;
}

.any-questions__container__button span {
    font-family: 'Circe', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 27px;
    color: #34333B;
}

.any-questions__container__button div {
    transition: .2s;
    width: 70px;
    height: 70px;
    margin-left: 30px;
    background: #20ac95;
    display: flex;
    align-items: center;
    justify-content: center;
}

.any-questions__container__button:hover div {
    background: #1a8976;
}

.any-questions__container__button div img {
    transition: .2s;
    width: 14px;
}

.any-questions__container__button:hover div img {
    transform: translateX(3px);
}

.contacts__leave-request {
    margin: 100px 0;
}

@media (max-width: 1280px) {
    .contacts__main-screen__contacts-containers__left__wrapper {
        width: calc(100% - (100vw - 94vw)/2);
    }

    .contacts__main-screen__contacts-containers__right__wrapper {
        width: calc(100% - (100vw - 94vw)/2);
    }
}

@media (max-width: 1200px) {
    .any-questions__container {
        width: 50%;
        padding: 20px 0 0 20px;
    }

    .social-networks_n_contact-us {
        width: 50%;
    }
}

@media (max-width: 950px) {
    .contacts__main-screen__contacts-containers {
        height: unset;
        flex-direction: column;
    }

    .contacts__main-screen__contacts-containers__left {
        width: 100%;
    }

    .contacts__main-screen__contacts-containers__left__wrapper {
        padding: 40px 0;
    }

    .contacts__main-screen__contacts-containers__right {
        width: 100%;
    }

    .contacts__main-screen__contacts-containers__right__wrapper {
        flex-direction: column;
        width: 100%;
    }

    .social-networks_n_contact-us {
        height: 70px;
        width: 100%;
        display: flex;
    }

    .social-networks {
        height: 100%;
    }

    .contact-us {
        font-size: 16px;
        height: 100%;
    }

    .any-questions__container {
        padding: 30px 0 80px 15px;
        width: 100%;
    }

    .phones-containers__item {
        margin-right: 20px;
    }

    .phones-containers__item h3 {
        font-size: 17px;
        line-height: 26px;
    }

    .phones-containers__item ul li {
        margin-bottom: 15px;
    }

    .phones-containers__item ul li h5 {
        font-size: 16px;
        line-height: 24px;
    }

    .phones-containers__item ul li p {
        font-size: 16px;
        line-height: 27px;
        color: #fff;
    }

    .phones-containers__item ul li p a {
        font-size: 16px;
        line-height: 27px;
        color: #fff;
    }
}

@media (max-width: 830px) {
    .contacts-page .leave-request__popup-form__image {
        height: 300px !important;
    }

    .contacts-page {
        height: 700px !important;
    }

    .contacts__leave-request {
        margin: 50px 0;
    }
}
