@charset "utf-8";
/* CSS Document */

html, body {
    max-width: 100%;
    overflow-x: hidden;
}

body {
	margin: 0;
	overflow-x: hidden;
	color: #000;
	font-family: Helvetica, Arial, sans-serif !important;
	font-size: 14px !important;
}

*,
*:before,
*:after {
  box-sizing: border-box;
}

a:focus,
button:focus {
	outline: none !important;
}

html, body {
  background-color: #ffffff; 
}

/* 2. Style the transition root to behave like a clean growing card layer */
::view-transition-old(root),
::view-transition-new(root) {
  animation: none !important;
  mix-blend-mode: normal !important;
}

/* Ensure the incoming snapshot clips background & content together */
::view-transition-new(root) {
  overflow: hidden !important;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

/*********************
Hero
*********************/

.hero_section {
    position: relative;
}

.hero_section .hero_main_banner {
    width: 100%;
    height: 100vh;
    object-fit: cover;
}

.hero_section .hero_main_banner::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(153, 153, 153, 0.23); 
    backdrop-filter: blur(4px);
    pointer-events: none; 
}

.hero_section .hero_content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero_content_inner {
    max-width: 1350px;
    margin: 0 auto;
    position: relative;
    width: 100%;
    height: 100%;
}

.logo_heading {
    position: absolute;
    top: 1em;
    left: 1em;
}

.title_heading {
    position: absolute;
    top: 20%;
    left: 0;
}

.title_heading h1 {
    margin: 0;
    color: #fff;
    font-size: 80px;
}

.title_heading h2 {
    margin: 0;
    color: #C1E5F5;
    font-weight: normal;
    font-size: 40px;
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
    margin-top: 10px;
}

.navigation_menu {
    position: absolute;
    bottom: 10%;
    left: 0;
}

.home_jumbo_arrow {
    position: absolute;
    bottom: 3%;
    left: 50%;
    transform: rotate(90deg);
}

@keyframes heartbeat {
  0% {
    transform: scale(1);
  }
  14% {
    transform: scale(1.15);
  }
  28% {
    transform: scale(1);
  }
  42% {
    transform: scale(1.15);
  }
  70% {
    transform: scale(1);
  }
}

.chevron_down {
    font-size: 50px;
    color: #fff;
    animation: heartbeat 2s infinite;
    animation-timing-function: ease;
    display: inline-block;
}

/*********************
Main
*********************/

.page_margin {
    max-width: 1350px;
    margin: 0 auto;
}

.page_intro {
    margin-top: 3em !important;
}

.page_intro h2 {
    margin: 0;
    font-size: 40px;
    font-weight: normal;
    color: #4B4B4B;
    font-family: Arial, Helvetica, sans-serif;
}

.page_intro .subheading {
    margin: 5px 0 0;
    color: #ADADAD;
    font-size: 26px;
}

.page_intro p:nth-of-type(2) {
    font-size: 18px;
    max-width: 50%;
    line-height: 24px;
    margin: 2em 0;
    letter-spacing: 1%;
    color: #4B4B4B;
}

.page_intro a {
    color: #FE6720;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
}

.page_intro a .chevron_icon {
    padding-right: 10px;
    display: inline-block;
}

.page_intro a:hover {
    text-decoration: underline;
}

.corporate_stats {
    border: 1px solid #ADADAD;
    border-radius: 6px;
    margin: 6em 0;
    display: flex;
}

.corporate_stats .corporate_stats_inner {
    flex: 1;
    display: grid;
    grid-template-rows: 60px 1fr;
    align-items: center;
    justify-items: center;
    padding: 3em 3em;
    text-align: center;
}

.corporate_stats .corporate_stats_inner:not(:last-of-type) {
    border-right: 1px solid #ccc;
}

.corporate_stats .corporate_stats_inner img {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.corporate_stats .corporate_stats_inner span {
    color: #6F6F6F;
    font-weight: bold;
    font-size: 20px;
    align-self: start;
    padding-top: 1em;
    line-height: 26px;
}

.corporate_operation_container {
    background: #F5F6F5;
    padding: 4em 0 0;
}

.corporate_operation_container .page_margin {
    display: grid;
    aspect-ratio: 16 / 9;
    width: 100%;
}

.corporate_operation_content {
    z-index: 2;
    grid-area: 1 / 1;
}

.corporate_operation_content h2 {
    margin: 0;
    font-size: 40px;
    font-weight: normal;
    color: #4B4B4B;
}

.corporate_operation_content p {
    font-size: 22px;
    max-width: 40%;
    line-height: 30px;
    margin: 1.5em 0 4em;
    color: #6F6F6F;
    letter-spacing: 1%;
}

.corporate_operation_content a {
    color: #4B4B4B;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
}

.corporate_operation_content a:hover {
    text-decoration: underline;
}

.corporate_operation_content a .chevron_icon {
    padding-right: 10px;
    color: #FE6720;
    display: inline-block;
}

.corporate_operation_map {
    width: 1000px;
    margin: 0 0 0 auto;
    margin-right: -10em;
    grid-area: 1 / 1;
    position: relative;
    top: -5%;
    right: 10%;
}

.corporate_operation_map img {
    max-width: 100%;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.corporate_news_container {
    margin: 6em auto !important;
}

.news_wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2em;
}

.news_wrap .news_card {
    border: 1px solid #ADADAD;
    border-radius: 10px;
    display: flex;
}

.news_wrap .news_card a {
    display: flex;
    text-decoration: none;
}

.news_wrap .news_card img {
    width: 100%;
}

.news_wrap .news_card:nth-of-type(1) {
    grid-row: 1 / span 2;
}

.news_wrap .news_card:nth-of-type(1) .news_card_content {
    height: 100%;
}

.news_wrap .news_card:nth-of-type(1) a {
    flex-direction: column;
}

.news_wrap .news_card:nth-of-type(1) img {
    height: 380px;
    object-fit: cover;
    border-radius: 10px 10px 0 0;
    object-position: top;
}

.news_wrap .news_card:nth-of-type(2) img,
.news_wrap .news_card:nth-of-type(3) img {
    border-radius: 10px 0 0 10px;
    width: 100%;
    max-width: 320px;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.news_card_content {
    margin: 1.5em;
    display: flex;
    flex-direction: column;
}

.news_card_content h3 {
    color: #000;
    letter-spacing: 1%;
    margin: 0;
    font-size: 17px;
    font-weight: normal;
    line-height: 22px;
}

.news_card_content p {
    color: #6F6F6F;
    letter-spacing: 1%;
    margin: 1em 0;
    font-size: 17px;
    font-weight: normal;
    line-height: 22px;
}

.news_card_content span {
    margin-top: auto;
    color: #4B4B4B;
    font-size: 17px;
    font-weight: bold;
    text-decoration: none;
}

.news_card_content span .chevron_icon {
    padding-right: 10px;
    color: #FE6720;
    display: inline-block;
}

.news_card_content span:hover {
    text-decoration: underline;
}

/*********************
Navigation
*********************/

.chapters--desktop {
    position: relative;
    display: flex;
    align-items: flex-end;
    height: 270px;
    width: 100%;
    padding: 0;
    list-style: none;
    transform: none !important;
}

.chapters__item.is-hovered .chapter__number::after {
    display: none !important;
}

.chapters--desktop .chapters__item {
    position: absolute;
    top: 0;
    left: 0;
    width: 280px;
    height: 270px;
    transform-origin: 0 0 !important;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    backface-visibility: hidden;
    -webkit-font-smoothing: subpixel-antialiased;
    will-change: transform;
    z-index: 1;
}

.chapter__link {
    cursor: pointer;
}

.chapters__item,
.chapters__item * {
    cursor: pointer !important;
}

.chapters--desktop .chapters__item:hover,
.chapters--desktop .chapters__item.is-hovered {
    z-index: 10 !important;
}

.chapter__header {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 10;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.chapters__item:hover .chapter__header {
    opacity: 0;
}

.chapter__number {
    position: absolute;
    bottom: 140px;
    left: 0;
    font-weight: 900;
    font-size: 52px;
    line-height: 1;
    color: #ffffff;
}

.chapter__number::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -30px;
    width: 400px;
    height: 7px;
    background-color: rgba(255, 255, 255, 1);
    z-index: 5;
}

.chapter__title {
    position: absolute;
    bottom: 30px;
    left: 0;
    font-family: Arial, sans-serif;
    font-weight: 700;
    font-size: 44px;
    line-height: 1.2;
    color: #ffffff;
    white-space: nowrap;
}

.chapter__content {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

.nav-card {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 4px;
}

.nav-card .page-header__background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 168px;
    overflow: hidden;
}

.nav-card .page-header__image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: top;
    transition: transform 0.35s cubic-bezier(0, 0, 0.58, 1);
    transform: translateY(100%);
}

.nav-card .page-header--fact-slogan {
    position: absolute;
    top: 168px;
    left: 0;
    width: 100%;
    height: 112px;
    overflow: hidden;
    z-index: 2;
}

.nav-card .page-header--fact-slogan .container {
    width: 100%;
    height: 100%;
    margin: 0 !important;
    transition: transform 0.35s cubic-bezier(0, 0, 0.58, 1);
    transform: translateY(-100%);
}

.nav-card .page-header__inner {
    background-color: #ffffff;
    height: 100%;
    padding: 16px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}

.page-header__title--fact {
    margin: 0 0 10px;
    color: #8C8C8C;
    font-weight: bold;
    font-size: 23px;
    color: #4B4B4B;
}

.page-header__title--slogan {
    margin: 0;
    color: #E97132;
    font-size: 15px;
}

.chapters__item:hover .page-header__image {
    transform: translateY(0%) !important;
}

.chapters__item:hover .page-header--fact-slogan .container {
    transform: translateY(0%) !important;
}

.chapters__item {
    position: relative;
}

.chapters__item a.chapter__link {
    display: block;
    width: 100%;
    height: 270px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 12;
}

/*********************
Mobile Nav
*********************/

/* Container reset matching parent edge */
.navigation-menu_mobile {
    width: calc(100% + 4em) !important;
    margin-left: -2em !important;
    margin-right: -2em !important;
    overflow: hidden;
    position: absolute;
    bottom: 10%;
    left: 0;
}

/* Horizontal Track */
.chapters--mobile {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    
    width: 100% !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    scroll-snap-type: x mandatory;
    scroll-padding-left: 2em;
    scroll-padding-right: 2em;
    -webkit-overflow-scrolling: touch;
    
    list-style: none !important;
    padding-left: 0 !important;
    padding-right: 3em !important;
    margin: 0 !important;
    gap: 2rem !important;
    
    scrollbar-width: none;
}

.chapters--mobile::-webkit-scrollbar {
    display: none;
}

/* Leading Spacer (Left padding alignment) */
.chapters--mobile::before {
    content: '';
    display: block;
    flex: 0 0 calc(2em - 1rem);
}

/* Trailing Spacer (Right end-of-scroll padding) */
.chapters--mobile::after {
    content: '';
    display: block;
    flex: 0 0 2em !important; /* Full 2em buffer after the last card */
    min-width: 2em !important;  /* Prevents flex collapse */
    height: 1px;
}

/* Card Styling */
.chapters--mobile .chapter {
    flex: 0 0 250px !important;
    height: 280px !important;
    scroll-snap-align: start;
    position: relative !important;
    top: auto !important;
    left: auto !important;
    transform: none !important;
}

.chapters--mobile .chapter__link,
.chapters--mobile .chapter__content {
    display: block;
    width: 100%;
    height: 100%;
    position: relative !important;
}

/* Static View Overrides for Mobile Cards */
.chapters--mobile .nav-card .page-header__image {
    transform: translateY(0%) !important;
    transition: none !important;
}

.chapters--mobile .nav-card .page-header--fact-slogan .container {
    transform: translateY(0%) !important;
    transition: none !important;
}


.chapters--mobile .nav-card .page-header__inner {
    background-color: #ffffff;
    height: auto;
    padding: 16px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    border-radius: 0 0 6px 6px;
}

/*********************
Media
*********************/

@media only screen and (min-width: 1950px) {
    .hero_content_inner {
        max-width: 1300px;
    }
}

@media only screen and (max-width: 1500px) {
    .title_heading h1 {
        font-size: 70px;
    }
    .title_heading h2 {
        font-size: 38px;
        font-family: Arial, Helvetica, sans-serif;
    }
}

@media only screen and (max-width: 1400px) {
    .page_margin {
        max-width: 1200px;
        margin: 2.5em auto 4em;
    }
    .hero_content_inner {
        max-width: 1200px;
        margin: 0 auto;
    }
    .corporate_operation_map {
        width: 800px;
    }
    .logo_heading img {
        max-height: 80px;
    }
    .hero_section .hero_main_banner {
        object-position: 75% 100%;
    }
}

@media only screen and (max-width: 1250px) {
     .page_margin {
        max-width: 1100px;
    }
    .hero_content_inner {
        max-width: 1100px;
        margin: 0 auto;
    }
    .corporate_operation_map {
        width: 700px;
        right: 12%;
    }
    .corporate_stats .corporate_stats_inner {
        padding: 3em 1em;
    }
    .news_wrap .news_card:nth-of-type(2) img, 
    .news_wrap .news_card:nth-of-type(3) img {
        max-width: 280px;
    }
}

@media only screen and (max-width: 1150px) {
    .page_margin {
        max-width: unset;
        margin: 2.5em 2em 4em;
    }
    .hero_content_inner {
        max-width: unset;
        margin: 0 2em;
    }
    .corporate_operation_map {
        width: 600px;
        margin-right: 0;
        top: -10%;
        right: 5%;
    }
    .title_heading h1 {
        font-size: 60px;
    }
    .title_heading h2 {
        font-size: 34px;
    }
    .corporate_news_container {
        margin: 4em 2em !important;
    }
    .news_wrap .news_card:nth-of-type(2) img, 
    .news_wrap .news_card:nth-of-type(3) img {
        max-width: 220px;
    }
    .news_card_content p {
        margin: 1em 0 3em;
    }
    .chapter__number::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: -30px;
        width: 350px;
        height: 7px;
        background-color: rgba(255, 255, 255, 1);
        z-index: 5;
    }
    .chapters--desktop .chapters__item {
        width: 240px;
    }
    .chapter__title {
        font-size: 40px;
    }
    .chapters--desktop {
        transform: scale(0.8);
        transform-origin: top left;
        width: 125%;
    }
    .chapter__number::after {
        width: 350px;
    }
}


@media only screen and (max-width: 1050px) {
    .corporate_operation_map {
        top: 5%;
    }
    .news_wrap .news_card:nth-of-type(2) img, 
    .news_wrap .news_card:nth-of-type(3) img {
        max-width: 180px;
    }
}

@media only screen and (min-width: 992px) {
    .navigation-menu_mobile {
        display: none;
    }
}

@media only screen and (max-width: 992px) {
    .corporate_operation_map {
        margin: 16em 0 3em auto;
    }
    .corporate_operation_content p {
        max-width: 70%;
    }
    .news_wrap {
        gap: 1em;
    }
    .news_wrap .news_card a {
        flex-direction: column;
    }
    .news_wrap .news_card:nth-of-type(2) img, 
    .news_wrap .news_card:nth-of-type(3) img {
        width: 100%;
        height: 200px;
        object-position: 100% 35%;
        border-radius: 10px 10px 0 0;
        max-width: unset;
    }
    .news_wrap .news_card:nth-of-type(1) img {
        min-height: 400px;
    }
    .page_intro .subheading {
        font-family: Arial, Helvetica, sans-serif;
    }
    .corporate_stats {
        display: flex;
        gap: 0;
        overflow-x: auto;
        width: 100vw;
        margin-left: calc(50% - 50vw);
        margin-right: calc(50% - 50vw);
        padding-left: 1.5em;
        padding-right: 1.5em;
        scroll-padding-left: 1.5em;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        border: none;
    }
    .corporate_stats_inner {
        flex: 0 0 300px !important;
        scroll-snap-align: start;
        border: 1px solid #ADADAD;
    }
    .home_jumbo_arrow {
        left: 45%;
    }
    .navigation-menu_mobile {
        display: block;
    }
    .navigation_menu {
        display: none;
    }
}

@media only screen and (max-width: 850px) {

}

@media only screen and (max-width: 768px) {
    .title_heading h1 {
        font-size: 50px;
    }
    .title_heading h2 {
        font-size: 30px;
    }
    .news_wrap .news_card:nth-of-type(2) img, 
    .news_wrap .news_card:nth-of-type(3) img {
        height: 200px;
    }
    .news_card_content {
        margin: 1.5em 1em;
    }
    .chapters__item_mobile .page-header__title--fact {
        font-size: 18px;
    }
    .chapters__item_mobile .page-header__title--slogan {
        font-size: 14px;
    }
}

@media only screen and (max-width: 700px) {
    .page_intro p:nth-of-type(2) {
        max-width: 100%;
    }
    .corporate_operation_map {
        margin: 0;
        top: 0;
        padding: 0 0 5em;
        right: 0;
    }
    .corporate_operation_map {
        width: 100%;
        padding-top: 2em;
    }
    .corporate_operation_content p {
        margin: 1.5em 0 2em;
        font-size: 18px;
        width: 100%;
        max-width: unset;
    }
    .corporate_operation_container .page_margin {
        display: block;
        width: unset;
    }
    .corporate_operation_content h2 {
        font-size: 34px;
    }
    .corporate_operation_container {
        padding: 2em 0 0;
    }
    .page_intro p:nth-of-type(2) {
        margin: 2em 0;
    }
    .hero_section {
        position: relative;
        display: inline-block;
        overflow: hidden;
    }
    .hero_main_banner {
        display: block;
        width: 100%;
        height: auto;
    }
    .hero_section::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(
        to left, 
        rgba(0, 0, 0, 0.40) 0%, 
        rgba(0, 0, 0, 0.20) 50%, 
        rgba(0, 0, 0, 0) 100%
        );
        pointer-events: none;
    }
    .logo_heading {
        z-index: 3;
    }
    .title_heading {
        z-index: 3;
        top: 23%;
    }
    .navigation-menu_mobile {
        z-index: 3;
    }
}

@media only screen and (max-width: 600px) {
    .news_wrap {
        grid-template-columns: 1fr;
        gap: 2em;
    }
    .news_wrap .news_card:nth-of-type(2) img, 
    .news_wrap .news_card:nth-of-type(3) img {
        height: 300px;
    }
    .news_wrap .news_card:nth-of-type(1) img {
        height: 300px;
        min-height: unset;
    }
}

@media only screen and (max-width: 500px) {
    .title_heading h1 {
        font-size: 40px;
    }
    .title_heading h2 {
        font-size: 25px;
    }
    .home_jumbo_arrow {
        left: 40%;
    }
    .chevron_down {
        font-size: 40px;
    }
}

@media only screen and (max-width: 450px) {
    .page_margin {
        margin-right: 1.5em;
        margin-left: 1.5em;
    }
    .corporate_news_container {
        margin: 4em 1.5em !important;
    }
    .news_wrap .news_card:nth-of-type(2) img, 
    .news_wrap .news_card:nth-of-type(3) img {
        height: 250px;
    }
    .news_wrap .news_card:nth-of-type(1) img {
        height: 250px;
    }
    .news_card_content span {
        font-size: 16px;
    }
    .corporate_operation_content h2 {
        font-size: 30px;
    }
    .corporate_stats .corporate_stats_inner {
        padding: 2em 1em;
    }
    .corporate_stats_inner {
        flex: 0 0 250px !important;
    }
    .title_heading {
        top: 30%;
    }
    .hero_content_inner {
        margin: 0 1.5em;
    }
    .news_card_content p {
        margin: 1em 0 1.5em;
    }
    .title_heading {
        top: 33%;
    }
}





































