.bg_image_content{}
.full_width_image_with_heading_content {
    position: relative;
}

.full_width_image_with_heading_content .full_width_img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    object-position: 50%;
    object-fit: cover;
}

.full_width_image_with_heading_content .full_width_image_with_heading_content_inner {
    position: relative;
    display: flex;    
}
.full_width_image_with_heading_content .full_width_image_with_heading_content_inner.contentRight {
    justify-content: flex-end;
}

.full_width_image_with_heading_content .heading_content_link_section {
    max-width: 760px;
    width: 100%;
    background: #FFF;
    padding: 48px 48px 80px 48px;
    margin-top: 60px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.full_width_image_with_heading_content .heading_section {
    font-size: 40px;
    line-height: 105%;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 0;
}

.full_width_image_with_heading_content .heading_section>span {
    color: #C10039;
}

.full_width_image_with_heading_content .content_section {
    font-size: 18px;
    line-height: 26px;
    color: #000;
    /* font-family: var(--font-inter-regular); */
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.full_width_image_with_heading_content .content_section > p {
    margin-bottom: 0;
}

.full_width_image_with_heading_content .link_section {
    display: flex;
    gap: 12px;
    flex-direction: column;
}

.full_width_image_with_heading_content .link_section>.link {
    padding-left: 16px;
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #000B1F;
    font-size: 20px;
    line-height: 32px;
    /* font-family: var(--font-inter-regular); */
    transition: 0.5s ease;
    margin-right: auto;
}

.full_width_image_with_heading_content .link_section>.link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 2px;
    height: 100%;
    background-color: #C10439;
}

.full_width_image_with_heading_content .link_section>.link:hover {
    color: #C10039;
}

.bg_image_content .contact_info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.bg_image_content .contact_info .title {
    margin-bottom: 0;
    font-size: 20px;
    line-height: 1.4;
    color: #000;
    font-family: "Inter", sans-serif;
    text-transform: none;
}
.bg_image_content .contact_link {
    color: #344563;
    font-size: 18px;
    line-height: 1.4;
    padding-left: 41px;
    margin-right: auto;

    background-position: left center;
    background-repeat: no-repeat;
    background-size: 20px auto;
} 
.bg_image_content .contact_info .email {
    background-image: url('../images/mail-icon.png');
}
.bg_image_content .contact_info .phone {
    background-image: url('../images/call-icon.png');
}
.bg_image_content .contact_link:hover {
    color: #C10039;
}


@media(max-width: 1359px) {
    .full_width_image_with_heading_content .heading_content_link_section {
        max-width: 700px;
        gap: 20px;
    }
    .full_width_image_with_heading_content .content_section{
        gap: 20px;
    }
}

@media(max-width: 1199px) {
    .full_width_image_with_heading_content .heading_content_link_section {
        max-width: 670px;
    }
    .full_width_image_with_heading_content .heading_section{
            font-size: 37px;
    }
    .full_width_image_with_heading_content .link_section>.link{
            font-size: 18px;
    line-height: 28px;
    }
}

@media(max-width: 767px) {
    .full_width_image_with_heading_content .heading_section {
        font-size: 30px;
    }

    .full_width_image_with_heading_content .content_section{
        font-size: 16px;
        line-height: 23px;
    }
    .full_width_image_with_heading_content .link_section>.link {
        font-size: 16px;
        line-height: 25px;
    }
    .bg_image_content .contact_link {
        padding-left: 32px;
        background-size: 18px auto;
    }
}

@media(max-width: 575px) {
    .full_width_image_with_heading_content .heading_content_link_section {
        padding: 25px;
    }
    .full_width_image_with_heading_content .heading_section br {
        display: none;
    }
}