

.contact_section{
    padding: 50px 0;
    background-color: var(--contact_section_bg_color);
}

/* section heading */
.contact_section .section_heading {
    margin-bottom: 50px;
    max-width: unset;
    align-items: flex-start;
}
.contact_section .section_heading.gap_16 {
    gap: 12px;
}
.contact_section .section_title{
    color: var(--contact_section_title_color);
}
.contact_section .section_heading .section_description_text {
    color: var(--contact_section_description_color);
    text-align: left;
}

/* contact area */
.contact_area{
    padding: 40px 16px;
    border-radius: 16px;
    background-color: var(--contact_area_bg_color);
}



.info_title{
    font-size: 20px;
    line-height: 20px;
    font-weight: var(-semiBold);
    color: var(--contact_section_title_color);
}
.info_description,
.contact_address p{
    font-size: 12px;
    line-height: 20px;
    font-weight: var(--regular);
    color: var(--contact_section_description_color);
}

.contact_address p img{
    width: 24px;
    height: 24px;
}

.follow_us h2{
    font-size: 16px;
    line-height: 16px;
    font-weight: var(--semiBold);
    color: var(--contact_section_title_color);
    margin-bottom: 20px;
}

@media(min-width:768px){
    .contact_section{
        padding: 80px 0;
    }

    /* contact area */
    .contact_area{
        padding: 50px 24px;
    }
    .contact_area.flex_column{
       flex-direction: row;
    }
    .contact_area.gap_40{
        gap: 40px;
    }
    .contact_form_wrapper,
    .contact_details{
        width: 100%;
    }

    .contact_address.gap_16{
        gap: 20px;
    }
    .info_title{
        font-size: 36px;
        line-height: 36px;
    }
    .info_description,
    .contact_address p{
        font-size: 14px;
        line-height: 22px;
    }
    .follow_us h2{
        font-size: 24px;
        line-height: 24px;
    }
}

@media(min-width:1024px){
    .contact_section{
        padding: 100px 0;
    }
    .contact_section .section_heading.flex_column  {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-end;
    }
    .contact_section .section_heading .section_title_wrapper {
        max-width: 400px;
    }
    .contact_section .section_heading .section_description_text_wrapper {
        max-width: 518px;
    }
    /* contact area */
    .contact_area{
        padding: 60px 40px;
    }
    .contact_details.gap_24{
        gap: 36px;
    }

}