.contact{
    padding: 80px 0px;
    background: linear-gradient(to right, #FFFFFF 0%, #FFFFFF 50%, #F6F6F7 50%, #F6F6F7 100%);
}


.contact-content{
    padding-right: 80px;
}

.contact-content h2{
    font-size: 32px;
    font-weight: bold;
    color: #1A1A33;
    margin-bottom: 40px;
}

.contact-content-item{
    margin-bottom: 20px;
}

.contact-content-item-title{
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-content-item-title img{
    width: 15px;
    height: 15px;
}

.contact-content-item p{
    font-size: 18px;
    font-weight: 500;
    line-height: 28px;
    color: #1A1A33;
}

.contact-content-item-title p{
    color: rgba(26, 26, 51, 0.45);
}

.contact-form{
    padding-left: 80px;
}

.contact-form-item{
    margin-bottom: 20px;
}

.contact-form-item p{
    font-size: 18px;
    font-weight: normal;
    color: #1A1A33;
    margin-bottom: 10px;
}

.contact-form-item input,
.contact-form-item textarea{
    width: 100%;
    height: 62px;
    border-radius: 12px;
    background: #FFFFFF;
    box-sizing: border-box;
    border: 1px solid rgba(26, 26, 51, 0.1);
    padding: 16px 24px;
    font-size: 16px;
    font-weight: normal;
    line-height: 24px;
    transition: all 0.3s ease;
}

.contact-form-item textarea{
    height: 145px;
    font-family: inherit;
}

input:focus,
textarea:focus{
    outline: none;
    border: 1px solid #1A1A33;
}

.contact-form-btn{
    width: 100%;
    height: 58px;
    border-radius: 32px;
    color: #FFFFFF;
    font-size: 20px;
    font-weight: 900;
    line-height: 26px;
}

@media screen and (max-width: 1200px) {

    .contact{
        background: #FFFFFF;
    }
    .contact-content{
        padding: 30px;
    }
    .contact-form{
        padding: 30px;
        background-color: #F6F6F7;
    }
}


