/* 
: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%);
    --blue-gradient: linear-gradient(180deg, var(--blue-light) 0%, #FDFDFD 100%);
} */
 /* Two-Column Text and Looping Illustrations */
 .two_column_text_and_looping_illustrations .pos-rel{
    height: 100%;
 }
 .looping_illustrations_left_content{
    max-width: 498px;
    padding: 100px 0;
 }
 .looping_illustrations_icon_wrap{
    max-width: 629px;
    margin-left: auto;
    display: flex;
    justify-content: space-between;
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    right: 0;
    overflow: hidden;
}

.looping_illustrations_icon_wrap::before,
.looping_illustrations_icon_wrap::after{
    position: absolute;
    content: "";
    left: 0;
    width: 100%;
    height: 70px;
    pointer-events: none;
    z-index: 2;
}

.looping_illustrations_icon_wrap::before{
    background: linear-gradient(180deg, #DDE8D9 0%, rgba(231, 239, 228, 0.00) 100%);
    top: 0;
}
 .looping_illustrations_icon_wrap::after{
    background: linear-gradient(0deg, #FAFBFA 0%, rgba(239, 244, 237, 0.00) 100%);
    bottom: 0;
}

.looping_illustrations_icon_wrap .col_left,
.looping_illustrations_icon_wrap .col_right {
    max-width: calc(50% - 25px);
 }

.looping_illustrations_icon_wrap .col_left .scrolling_wrap{
    -webkit-animation: scrollingTopToBottom 30s infinite linear;
    animation: scrollingTopToBottom 30s infinite linear;
 }
.looping_illustrations_icon_wrap .col_right .scrolling_wrap{
    -webkit-animation: scrollingBottomToTop 30s infinite linear;
    animation: scrollingBottomToTop 30s infinite linear;
 }

 .looping_illustrations_item{
    display: flex;
    align-items: center;
    padding: 15px;
 }

 .looping_illustrations_item .img-wrap{
    width: 70px;
    height: 70px;
    flex-shrink: 0;
    margin-right: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
 }
 .looping_illustrations_item .img-wrap img{
    max-width: 70px;
    max-height: 70px;
 }
 .looping_illustrations_item .text_right{
    flex-grow: 1;
 }
 .looping_illustrations_item .text_right p{
    color: var(--primary-blue);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px; /* 144.444% */
 }

 @-webkit-keyframes scrollingTopToBottom {
    from {
        transform: translateY(0%);
    }

    to {
        transform: translateY(-50%);
    }
}

@keyframes scrollingTopToBottom {
    from {
        transform: translateY(0%);
    }

    to {
        transform: translateY(-100%);
    }
}

 @-webkit-keyframes scrollingBottomToTop {
    from {
        transform: translateY(0%);
    }

    to {
        transform: translateY(-50%);
    }
}

@keyframes scrollingBottomToTop {
    from {
        transform: translateY(-100%);
    }
    
    to {
        transform: translateY(0%);
    }
}
 /* Two-Column Text and Looping Illustrations */