.contact_left,
.contact_wrapper__right {
    padding: 2rem 1rem;
    height: 100%;
    background-color: #F0F0F0;
}

.contact_left__box {
    background-color: var(--white-color);
    padding: 1rem;
    display: flex;
    gap: 12px;
    margin-bottom: 1rem;
    align-items: center;
}

.contact_left__box-icon i {
    height: 66px;
    width: 66px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 3px solid #C69401;
    font-size: 30px;
    border-radius: 10px;
    color: #C69401;
}

.contact_left__box-info h3 {
    font-size: 22px;
    font-weight: 700;
}

.contact_left__box-info p {
    color: #434343;
    margin-top: 3px;
}

.contact_wrapper__right{
    text-align: center;
}
.contact_wrapper__right h3{
    font-weight: 600;
    font-size: 30px;
}
.contact_wrapper__right p{
    font-size: 17px;
    margin-top: 10px;
}

@media(max-width:768px){
    .contact_left__box-icon i{
        height: 42px;
        width: 42px;
        font-size: 18px;
    }
    .contact_left__box-info h3{
        font-size: 18px;
    }
    .contact_left__box-info p{
        font-size: 14px;
    }
    .contact_wrapper__right h3{
        font-size: 25px;
    }
}