/* :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%);
} */

/* Homepage Hero Section */
.home .header-sticky {
    position: absolute;
    width: 100%;
    left: 0;
    top: 0;
}

.homepage_hero_section{
    position: relative;
    margin-bottom: 118px;
    min-height: 100vh;
}

.hero_content_wrap {
    position: absolute;
    top: 0;
    z-index: 29;
    display: flex;
    gap: 40px;
    padding: 100px 40px 180px;
    align-items: flex-end;
    width: 100%;
    height: 100%;
}

.hero_content_inner_wrap{
    display: flex;
    align-items: flex-end;
}
.heading_content_wrap {
    flex-grow: 1;
    max-width: 612px;
}
.heading_content_wrap h1{
    margin-bottom: 0;
    font-size: 85px;
    font-style: normal;
    font-weight: 600;
    line-height: 82px; /* 96.471% */
    transform: translate3d(0px, 0px, 0px) scale(0.9, 0.9);
}
.heading_content_wrap *:not(.btn){
    color: #FDFDFD;
}
.right_boxes_wrap {
    padding-top: 0;
    position: relative;
    z-index: 3;
    width: 380px;
    margin-left: auto;
    flex-shrink: 0;
    /* padding-top: 400px; */
    transform: translate3d(0px, 319.297%, 0px);
}
.right_boxes_wrap .box_item {
    padding: 25px;
    border-radius: 6px;
    background: #FDFDFD;
    max-width: 325px;
}
.right_boxes_wrap .box_item:not(:last-child) {
    margin-bottom: 34px;
}

.right_boxes_wrap .box_item:nth-child(even){
    margin-right: auto;
}
.right_boxes_wrap .box_item:nth-child(odd){
    margin-left: auto;
}

.right_boxes_wrap .box_item h5{
    margin-bottom: 15px;
}
.right_boxes_wrap .box_item .btn-wrap{
    display: flex;
    margin-top: 25px;
}

.hero_media_wrap {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    position: relative;
    margin: 0 auto;
    height: 100vh;
    z-index: 2;
    overflow: hidden;
    border-radius: 0 !important;
    /* clip-path: inset(17% 2% 4% round 40px 39px 40px 40px); */
    background-color: var(--primary-blue);
    visibility: hidden;
    opacity: 0;
}

.hero_media_wrap video,
.hero_media_wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero_media_wrap::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: linear-gradient(251deg, rgba(36, 55, 70, 0.00) 36.93%, #243746 100%);
}
/* Homepage Hero Section */