/* :root {
    --font-myriad: "myriad-pro", sans-serif;
    --text-body: #485560;
    --primary-blue: #243746;
    --beige: #DECAA4;
    --beige-light: #F7F3EB;
    --green: #D3E6CB;
    --green-light: #F0F5EF;
    --blue: #CADBEB;
    --blue-light: rgba(202, 219, 235, 0.35);
    --border-color: rgba(222, 202, 164, 0.75);
    --border-radius: 12px;
    --grey: #DDE2E2;
    --grey-rgb: 221, 226, 226;
    --bg-page: #F7F8F8;
    --white: #fff;
    --error-text: #fb0000;
    --black: #000;
    --transition: all 400ms ease-in-out;
    --green-gradient: linear-gradient(180deg, #DDE8D9 0%, #FDFDFD 100%);
} */

/* Image-Text-CTA Slider Section */
.image_text_cta_slider_section{
    position: relative;
    overflow-x: hidden;
}
.header-arrow-wrap{
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}
.header-arrow-wrap:not(:last-child){
    margin-bottom: 45px;
}
.header-arrow-wrap .header-top-wrap{
    max-width: 688px;
}
.header-arrow-wrap .cta_slider_arrows{
    display: flex;
    align-items: center;
    flex-shrink: 0;
    margin-left: 25px;
}
.header-arrow-wrap .cta_slider_arrows .slick-arrow:not(:last-child){
    margin-right: 15px;
}
.header-arrow-wrap .cta_slider_arrows .slick-arrow{
    width: 50px;
    height: 50px;
    border-radius: 3px;
    background: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}
.header-arrow-wrap .cta_slider_arrows .slick-arrow:hover{
    background: var(--primary-blue);
}
.header-arrow-wrap .cta_slider_arrows .slick-arrow.prev-btn img,
.header-arrow-wrap .cta_slider_arrows .slick-arrow.prev-btn svg{
    transform: rotate(180deg);
}
.header-arrow-wrap .cta_slider_arrows .slick-arrow img,
.header-arrow-wrap .cta_slider_arrows .slick-arrow svg{
    width: 24px;
    height: 24px;
}
.header-arrow-wrap .cta_slider_arrows .slick-arrow svg path{
    transition: var(--transition);
}
.header-arrow-wrap .cta_slider_arrows .slick-arrow:hover svg path{
    fill: var(--white);
}
.header-arrow-wrap .cta_slider_arrows .slick-disabled{
    opacity: 0.5;
    pointer-events: none;
}

.image_text_cta_slider_wrap{
    margin-right: calc(50% - 50vw - -23px);
}

.image-text-cta-carousel .slick-track {
    display: flex;
}

.image-text-cta-carousel .slick-list {
    margin-left: -15px;
    margin-right: -15px;
}

.image-text-cta-carousel .slick-slide {
    margin: 0 15px;
    display: flex;
    flex-direction: column;
    height: auto;
}
.image_text_content_wrap{
    position: relative; 
    height: 100%;   
}
.image_text_content_wrap a{
    height: 100%;
    position: relative;
    background-color: var(--primary-blue);
    display: block;
    overflow: hidden;
    border-radius: var(--border-radius);
}
.image_text_content_wrap .img-wrap{
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 1;
}
.image_text_content_wrap .img-wrap img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.image_text_content_wrap .img-wrap::before{
    position: absolute;
    content: "";
    width: calc(100% + 30px);
    height: calc(100% + 30px);
    left: 0;
    top: 0;
    background: linear-gradient(180deg, rgba(36, 55, 70, 0.00) 45.47%, #243746 100%);
    transition: var(--transition);
    background: linear-gradient(180deg, rgba(36, 55, 70, 0.00) 5.47%, #243746 100%);
    opacity: 0.8;
}

.image_text_content_wrap a:hover .img-wrap::before{
    opacity: 1;
    top: -30px;
}
.image_text_content_wrap .content_bottom_wrap{
    min-height: 475px;
    position: relative;
    z-index: 3;
    padding: 35px;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    justify-content: flex-end;
    transform: translate3d(0, calc(100% - 25rem), 0);
    transform: translate3d(0px, 76px, 0px);
    transition: var(--transition);
    height: 100%;
}
.site-content .image_text_content_wrap .content_bottom_wrap ul li::before{
    background-color: var(--white);
}
.site-content .image_text_content_wrap .content_bottom_wrap ol li::marker{
    color: var(--white);
}

.image_text_content_wrap .content_bottom_wrap .btn{
    opacity: 0;
    transition: var(--transition);
    visibility: hidden;
    pointer-events: none;
}
.image_text_content_wrap a:hover .content_bottom_wrap {
    transform: translateZ(0);
}
.image_text_content_wrap a:hover .content_bottom_wrap .btn {
    opacity: 1;
    visibility: visible;
}

.image_text_content_wrap .content_bottom_wrap *:not(.btn){
    color: var(--white);
}
/* Image-Text-CTA Slider Section */