.contact__container {
    flex-direction: column;
}

.contact__img-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;

    width: 100%;
    height: 365px;

    border-radius: 60px;

    background: url("/tpl/img/contact-img.png") no-repeat;
    background-size: cover;
}

.contact__img-text {
    font-family: inherit;
    font-size: 64px;
    font-weight: 700;
    line-height: 76px;
    text-align: center;

    color: #fff;

}

.contact__connection {
    display: flex;
    justify-content: space-between;

    padding: 165px 0 270px;
}

.contact__connection-text-wrapper {
    width: 592px;
    height: 155px;

    margin-top: 125px;
}

.contact__connection-title {
    margin-bottom: 10px;

    font-size: 48px;
    font-weight: 700;
    line-height: 72px;

    color: #2E4AAF;
}

.contact__connection-text {
    font-size: 24px;
    font-weight: 400;
    line-height: 36px;
    letter-spacing: -0.4px;

    color: #141D40;
}

.contact__form {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    row-gap: 40px;

    width: 555px;
    padding: 40px;

    color: #141D40;
    border-radius: 30px;
    box-shadow: 0px 4px 24px 0px #0000001A;
}

.contact__form-label {
    display: flex;
    flex-direction: column;

    width: 230px;

}

.contact__form-label_wide {
    width: 100%;
}

.contact__form-input {
    width: 100%;
    height: 45px;
    margin-top: 10px;
    padding: 10px 14px;

    background: #fff;

    opacity: 0.6;

    border-radius: 8px;
    border: 1px solid #E5E5EA;

    /*color: #C7C7CC;*/

    box-shadow: 0px 1px 2px 0px #0000000D;
}

.contact__form-input:focus {
    outline: 1px solid #626263;
}


.contact__form-textarea {
    width: 100%;
    height: 115px;
}

.contact__form-btn {
    display: flex;
    justify-content: center;
    align-items: center;

    width: 475px;
    height: 55px;

    border-radius: 20px;
    border: transparent;

    font-size: 18px;
    font-weight: 500;
    line-height: 28px;
    color: #fff;


    background: linear-gradient(225deg, #2E4AAF 0%, #27397F 100%);

    box-shadow: 0px 1px 2px 0px #6951FF0D;

    cursor: pointer;

}

.contact__form-btn:hover {
    opacity: 0.8;
}


.message_sent{
    text-align: center;
    font-size: 32px;
    margin-bottom: 32px;
}