/* :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%);
} */

/* Boxes with Numbers Section */
.boxes_with_numbers{
    position: relative;
    overflow: hidden;
}
.boxes_with_numbers .media-box-wrap {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.boxes_with_numbers .container {
    position: relative;
    z-index: 3;
}
.boxes_with_numbers_content_wrap{
    max-width: 930px;
    margin: 0 auto;
    padding: 110px 0;
    display: flex;
    justify-content: space-between;
}
.boxes_with_numbers_content_wrap .content_left_wrap{
    width: calc(33.33% - 15px);
    background-color: #EAF1F7;
    border-radius: var(--border-radius);
    flex-direction: column;
    display: flex;
}

.boxes_with_numbers_content_wrap .content_left_wrap a{
    padding: 25px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.boxes_with_numbers_content_wrap .content_left_wrap a:hover .arrow-only {
    background-color: var(--primary-blue);
}

.boxes_with_numbers_content_wrap .content_left_wrap a:hover .arrow-only svg path{
    fill: var(--white);
}


.boxes_with_numbers_content_wrap .content_left_wrap .btn-wrap{
    margin-top: auto;
}
.boxes_with_numbers_content_wrap .content_right_wrap{
    width: calc(66.6666666667% - 15px);
    display: flex;
}

.content_right_wrap .numbers_box_wrap{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: -30px;
}
.numbers_box_wrap .number_box_item{
    background-color: var(--white);
    border-radius: var(--border-radius);
    width: calc(50% - 15px);
    margin-bottom: 30px;
    padding: 25px;
}
.numbers_box_wrap .number_box_item p{
    color: var(--primary-blue);
    font-size: 18px;
    line-height: 24px;
}
.numbers_box_wrap .number_box_item .numbers_anim{
    font-size: 65px;
    font-style: normal;
    font-weight: 600;
    line-height: 0.75;
    min-height: 48px;
    color: var(--primary-blue);
}
.numbers_box_wrap .number_box_item .numbers_anim:not(:last-child){
    margin-bottom: 60px;
}

.media-mobile{
    display: none;
}
.number_box_item .numbers_anim .char {
    display: inline-block;
    opacity: 0;
    transform: translate(0, -15px);
    line-height: 0.75;
}
/* Boxes with Numbers Section */