* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
    font-family: "Montserrat", sans-serif;
}

.section{
    padding: 180px 100px 0 100px;
}
.section-title {
    text-align: left;
    color: #000073;
    font-size: 40px;
    font-weight: 500;
    padding-bottom: 70px;
}
.contact-section {
    padding-bottom: 96px;
    margin: 0 auto;
    background-color: #cfcfcf8c
}


.contact-section__title {
    color: #201E43;
    font-size: 3vw;
    font-weight: 600;
}


.contact-section__container {
display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}
.contact-section__form {
    flex: 1 1 45%;
}
.contact-section__info {
    flex: 1 1 45%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-top: 15px;
}
.input__control-textarea{
    height: 200px;
}
.contact-section__map {
    border: none;
    margin: 0 -24px;
    border-radius: 16px;
    height: 100%;
    width: 100%;

}
.input__control-textarea{
    resize: none;
}
.contact-section__icon{
    width: 25px;
}
.contact-section__info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    line-height: 1.4;

}
.contact-section__info-link{
    color: #000;
}
.contact-section__info-link:hover {
    text-decoration: underline;
}
.contact-section__icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
    color: #000073;
}
.contact-section__text {
    padding-bottom: 30px;
}

.contact-section__form-field {
    margin-bottom: 24px
}

.input__control {
    padding: 16px 42px;
    width: 100%;
    font-size: 16px;
    line-height: 1.17;
    border: 1px solid #201E43;
    border-radius: 8px;
    background-color: transparent;
}

.visually-hidden {
    position: absolute;
    left: -1000px;
    top: auto;
    height: 1px;
    width: 1px;
    overflow: hidden;
}

.contact-section__button {
    display: block;
    width: 238px;
    height: 59px;
    color: #FFF;
    background-color: #134B70;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    margin: 0 auto;
    transition: 0.5s ease;

}

.contact-section__button:hover {
    background-color: #cfcfcf8c;
    color: #000073;
    border: 1px solid #002E4C;
    transition: 0.5s ease;
}
@media (max-width: 768px) {
    .section {
        padding: 100px 40px 80px 40px;
    }

    .section-title {
        font-size: 32px;
        padding-bottom: 40px;
        text-align: center;
    }

    .contact-section__container {
        flex-direction: column;
        gap: 10px;
    }

    .contact-section__form,
    .contact-section__info {
        flex: 1 1 100%;
    }

    .contact-section__title {
        font-size: 24px;
        text-align: center;
    }

    .contact-section__button {
        width: 100%;
    }

    .contact-section__map {
        width: 100%;
        margin: 0;
        height: 200px;
        padding-top: 20px;
    }
}

@media (max-width: 480px) {
    .section {
        padding: 120px 20px 50px 20px
    }

    .section-title {
        font-size: 24px;
    }

    .input__control {
        font-size: 15px;
        padding: 12px 20px;
    }

    .contact-section__info-item {
        font-size: 12px;
    }

    .contact-section__button {
        height: 50px;
        font-size: 15px;
    }
}
