.text_with_image_section{
    position: relative;
}
.text_with_image_section.bg-gray{
    background-color: #EDEEEF;
    padding: 80px 0;
}

.text_with_image_wrap{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.text_with_image_wrap.switch-column{
    flex-direction: row-reverse;
}
.text_with_image_wrap .content_wrap h2{
    margin-bottom: 40px;
}
.text_with_image_wrap .content_wrap p {
    margin-bottom: 9px;
}
.text_with_image_wrap .content_wrap .btn_wrap{
    margin-top: 40px;
}
.text_with_image_wrap .content_wrap .btn_wrap .btn {
    vertical-align: middle;
}
.text_with_image_wrap .content_wrap,
.text_with_image_wrap .img_wrap{
    width: calc(50% - 40px);
}
.text_with_image_wrap .img_wrap{
    overflow: hidden;
    border-radius: 20px;
    height: 380px;
    /* background-color: #384249; */
}
.text_with_image_wrap .img_wrap img,
.text_with_image_wrap .img_wrap video{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.text_with_image_wrap .content_wrap .quote_wrap:not(:first-child){
    margin-top: 30px;
}
.text_with_image_wrap .content_wrap .quote_wrap{
    padding: 3px 0 3px 30px;
    border-left: 3px solid #384249;
}
.text_with_image_wrap .content_wrap .quote_wrap p,
.text_with_image_wrap .content_wrap .quote_wrap{
    color: #76787B;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 28px; 
}
@media only screen and (max-width: 991px) {
    .text_with_image_wrap .img_wrap {
        height: 280px;
    }
}


@media only screen and (max-width: 991px) {
    .text_with_image_section.bg-gray {
        padding: 60px 0;
    }
    .text_with_image_wrap.switch-column,
    .text_with_image_wrap{
        flex-direction: column;
    }
    .text_with_image_wrap .content_wrap,
    .text_with_image_wrap .img_wrap{
        width: 100%;
    }
    .text_with_image_wrap .content_wrap{
        margin-top: 40px;
    }
    .text_with_image_wrap .content_wrap h2 {
        margin-bottom: 30px;
    }
    .text_with_image_wrap .content_wrap .btn_wrap {
        margin-top: 30px;
    }
}

@media only screen and (max-width: 767px) {
    .text_with_image_section.bg-gray {
        padding: 40px 0;
    }
    .text_with_image_wrap .img_wrap {
        height: auto;
        aspect-ratio: 16 / 9;
    }
}
