html { position: relative; width: 100%; height: 100%; }
body { width: 100%; height: 100%; }

:root {
    --section-border: 10px;
    --header-height: 60px;
    --theme-color: #FF0011;
    --font-title: 28px;
}
@media screen and (min-width: 768px) {
    :root {
        --section-border: 20px;
        --font-title: 50px;
    }
}
@media screen and (min-width: 1200px) {
    :root {
        --section-border: 30px;
        --header-height: 100px;
        --font-title: 70px;
    }
}
@media screen and (min-width: 1600px) {
    :root {
        --section-border: 50px;
        --header-height: 100px;
    }
}
@media screen and (min-width: 1800px) {
    :root {
        --font-title: 90px;
    }
}
@media screen and (min-width: 1366px) and (max-height: 768px) and (orientation: landscape) {
    :root {
        --font-title: 70px;
    }
}

.mobile { display: block; }
.desktop { display: none; }
@media screen and (min-width: 768px) {
    .mobile { display: none; }
    .desktop { display: block; }
}

.home {
    position: relative;
    width: 100%;
    height: 100%;
    opacity: 0;
    overflow: hidden;
}
.home.init {
    opacity: 1;
}

.overlayWrapper {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
    z-index: 2;
    pointer-events: none;
    /* opacity: 0;
    transition: 0.3s; */
}
.overlayWrapper:after {
    content: '';
    display: block;
    position: absolute;
    width: calc(100% - var(--section-border)*2);
    height: calc(100% - var(--section-border)*6);
    top: var(--section-border);
    left: var(--section-border);
    background-color: transparent;
    box-shadow: 0 0 0 100px #fff;
    border-radius: 30px;
    z-index: 2;
    pointer-events: none;
}
.overlayWrapper.act {
    opacity: 1;
    transition: 0s;
}
.overlayWrapper .overlay {
    width: 100%;
    height: 100vh;
    position: absolute;
    overflow: hidden;
    background-image: url(../images/home2024/transition-hole.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 350%;
}
.overlayWrapper.act .overlay {
    animation: slideTransition 0.6s, slideTransition 0.6s reverse 0.6s ;
}
/* .overlay-mask {
    width: 100%;
    height: 100vh;
    -webkit-mask-image: url(../images/home2024/transition-hole-reverse.png);
    mask-image: url(../images/home2024/transition-hole-reverse.png);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: 350%;
    mask-size: 350%;
    -webkit-mask-position: center;
    mask-position: center;
    animation: slideMaskTransition 0.6s, slideMaskTransition 0.6s reverse 0.6s;
} */
.overlay-mask {
    width: 100%;
    height: 100vh;
    clip-path: circle(122.5vw);
    animation: slideMaskTransition 0.6s, slideMaskTransition 0.6s reverse 0.6s;
}
@keyframes slideTransition {
    0% { background-size: 350%; }
    100% { background-size: 0%; }
}
/* @keyframes slideMaskTransition {
    0% { mask-size: 350%; }
    100% { mask-size: 0%; }
} */
@keyframes slideMaskTransition {
    0% { clip-path: circle(122.5vw); }
    100% { clip-path: circle(0%); }
}

@keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}
@keyframes zoomIn {
    0% { transform: scale(0); }
    100% { transform: scale(1); }
}
@keyframes bgAni {
    0% { transform: scale(1); }
    100% { transform: scale(1.2); }
}

.contentWrapper {
    width: 100%;
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.section {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 0;
}
.section .inner-content {
    width: 100%;
    height: 100vh;
    height: 100svh;
    position: relative;
    overflow: hidden;
    padding: var(--section-border);
    padding: 0;
}
.section .bg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: #000;
    overflow: hidden;
    z-index: 0;
}
.section .bg .video {
    width: 100%;
    height: 100%;
}
.section .bg .video video {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
.section .content {
    position: relative;
    color: #fff;
    width: 100%;
    height: 100%;
    overflow: hidden;
    padding: calc(var(--header-height) + var(--section-border)) var(--section-border) calc(var(--section-border) * 5);
    display: grid;
    align-items: center;
}
.section .title {
    font-family: kallisto, sans-serif;
    font-weight: 900;
    font-style: italic;
    font-size: var(--font-title);
    text-transform: uppercase;
    letter-spacing: 4.5px;
    line-height: 1;
    opacity: 1;
}
.section-title-wrapper {
    width: 100%;
    display: inline-flex;
    justify-content: center;
    flex-wrap: wrap;
}
.section-title-wrapper span.word {
    display: flex;
    perspective: 2000px;
}
.section-title-wrapper span.char {
    display: inline-block;
    transition-duration: 0.3s;
    transition-delay: var(--d);
    transform: translate3d(0, 200px, -1500px) rotateX(-500deg);
    opacity: 0;
}
.section-title-wrapper span.whitespace {
    width: 3%;
}
.section.act .section-title-wrapper span.char {
    transform: translate3d(0, 0, 0) rotateX(0deg);
    opacity: 1;
}
@media screen and (min-width: 768px) {
    .overlayWrapper:after {
        height: calc(100% - var(--section-border)*3);
    }
    .section .content {
        padding: calc(var(--header-height) + var(--section-border)) var(--section-border) calc(var(--section-border) * 2);
    }
}
@media screen and (min-width: 1200px) {
    .overlayWrapper:after {
        height: calc(100% - var(--section-border)*2.5);
        border-radius: 50px;
    }
    .section .content {
        padding: calc(var(--header-height) + var(--section-border)) var(--section-border) calc(var(--section-border) * 1.5);
    }
}
@media screen and (min-width: 1600px) {
    .overlayWrapper:after {
        height: calc(100% - var(--section-border)*2);
        border-radius: 50px;
    }
    .section .content {
        padding: calc(var(--header-height) + var(--section-border)) var(--section-border) var(--section-border);
    }
}

.home .slick-slider .slick-track {
    transition: transform 0s 0.6s !important;
}
.home .slick-vertical .slick-slide {
    border: none;
}
.home .slick-dots {
    position: fixed;
    list-style: none;
    z-index: 2;
    display: block;
    top: 50%;
    bottom: auto;
    left: auto;
    right: 5px;
    transform: translateY(-50%);
}
.home .slick-dots li {
    margin: 12px;
}
.home .slick-dots li a {
    position: relative;
    display: block;
    width: 10px;
    height: 10px;
    border-radius: 100%;
    border: 1px solid transparent;
    filter: drop-shadow(0 0 3px #000);
}
.home .slick-dots li a:before {
    content: '';
    width: 3px;
    height: 3px;
    border-radius: 100%;
    background-color: #fff;
    transition: 0.5s;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}
.home .slick-dots li a:after {
    content: '';
    width: 3px;
    height: 3px;
    border-radius: 100%;
    background-color: #fff;
    transition: 0.3s;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}
.home .slick-dots li.slick-active a {
    border-color: #fff;
}
.home .slick-dots li.slick-active a:after {
    background-color: var(--theme-color);
}
.home .slick-dots li a span {
    position: absolute;
    width: 0;
    white-space: nowrap;
    color: #fff;
    border-bottom: 1px solid;
    padding-bottom: 5px;
    overflow: hidden;
    right: 5px;
    bottom: 6px;
    transition: 0.5s;
    display: none;
}
.home .slick-dots li a:hover span {
    width: 200px;
    padding-left: 5px;
}
.home .slide-indicator {
    position: fixed;
    bottom: 65px;
    right: 20px;
    color: #fff;
    text-align: center;
    font-family: kallisto, sans-serif;
    font-weight: 300;
    font-size: 12px;
    display: block;
}
.home .slide-indicator span {
    display: block;
    margin: 5px 0;
}
@media screen and (min-width: 768px) {
    .home .slick-dots {
        display: block;
        top: 50%;
        bottom: auto;
        left: auto;
        right: 30px;
        transform: translateY(-50%);
    }
    .home .slick-dots li a {
        width: 16px;
        height: 16px;
    }
    .home .slick-dots li a:before {
        width: 4px;
        height: 4px;
    }
    .home .slick-dots li a:after {
        width: 4px;
        height: 4px;
    }
    .home .slick-dots li a span {
        display: block;
    }
    .home .slick-dots li a:hover:before {
        left: -190px;
    }
    .home .slide-indicator {
        display: block;
        font-size: 20px;
        right: 40px;
        bottom: 65px;
    }
    .home .slide-indicator span {
        margin: 10px 0;
    }
}
@media screen and (min-width: 1200px) {
    .home .slick-dots {
        right: 50px;
    }
    .home .slide-indicator {
        right: 60px;
        bottom: 75px;
        font-size: 24px;
    }
}
@media screen and (min-width: 1600px) {
    .home .slick-dots {
        right: 70px;
    }
    .home .slide-indicator {
        right: 80px;
        bottom: 95px;
        font-size: 24px;
    }
}

a.btn {
    display: inline-flex !important;
    align-items: center;
    padding: 10px;
    width: auto;
    min-width: 44px;
    height: 44px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.2);
    position: relative;
}
a.btn .label {
    font-family: 'roboto', sans-serif;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 1px;
    white-space: nowrap;
    text-align: left;
    padding: 0;
    width: 0;
    transition: 0.5s 0.2s;
    overflow: hidden;
}
a.btn .icon {
    display: grid;
    place-content: center;
    width: 28px;
    height: 28px;
    padding: 0;
    border-radius: 100%;
    background-color: var(--theme-color);
    position: absolute;
    right: 8px;
}
a.btn-readmore .icon:before, a.btn-readmore .icon:after {
    content: '';
    width: 12px;
    height: 2px;
    background-color: #fff;
    display: block;
}
a.btn-readmore .icon:after {
    transform: translateY(-2px) rotate(90deg);
}
a.btn-play .icon:before {
    content: '';
    display: block;
    border-width: 6px 0 6px 9px;
    border-style: solid;
    border-color: transparent #fff;
    margin-left: 2px;
}
a.btn-readmore.act .label {
    padding: 0 15px;
    width: 140px;
}
a.btn-play.act .label {
    padding: 0 15px;
    width: 90px;
}
@media screen and (min-width: 768px) {
    a.btn {
        padding: 10px;
        min-width: 50px;
        height: 50px;
        border-radius: 25px;
    }
    a.btn .label {
        font-size: 18px;
    }
    a.btn .icon {
        width: 30px;
        height: 30px;
        right: 10px;
    }
    a.btn-readmore .icon:before, a.btn-readmore .icon:after {
        width: 15px;
    }
    a.btn-readmore.act .label {
        padding: 0 20px;
        width: 180px;
    }
    a.btn-play.act .label {
        padding: 0 25px;
        width: 120px;
    }
}
@media screen and (min-width: 1366px) {
    a.btn {
        min-width: 60px;
        height: 60px;
        border-radius: 30px;
    }
    a.btn .label {
        font-size: 20px;
    }
    a.btn .icon {
        width: 40px;
        height: 40px;
    }
    a.btn-readmore .icon:before, a.btn-readmore .icon:after {
        width: 20px;
    }
    a.btn-play .icon:before {
        border-width: 8px 0 8px 13px;
        margin-left: 4px;
    }
    a.btn-readmore.act .label {
        padding: 0 40px;
        width: 240px;
    }
    a.btn-play.act .label {
        padding: 0 30px;
        width: 140px;
    }
}
@media screen and (min-width: 1366px) and (max-height: 768px) and (orientation: landscape) {
    a.btn .label {
        font-size: 18px;
    }
    a.btn-readmore.act .label {
        padding: 0 20px;
        width: 180px;
    }
    a.btn-play.act .label {
        padding: 0 25px;
        width: 120px;
    }
}

/*** HOME - BANNER ***/
.home-banner .content {
    padding-top: var(--section-border);
}
.home-banner .banner {
    position: relative;
    height: 100%;
}
.home-banner .banner-slogan .slogan-wrapper {
    width: 100%;
    height: 100%;
    display: grid;
    place-content: center;
    text-align: center;
}
.home-banner .banner-slogan .slogan .main {
    font-family: kallisto, sans-serif;
    font-weight: 900;
    font-style: italic;
    font-size: 38px;
    letter-spacing: 2.4px;
}
.home-banner .banner-slogan .slogan .main span {
    display: block;
    font-size: 0.55em;
    letter-spacing: 1.4px;
    margin-bottom: 10px;
    line-height: 1.1;
}
.home-banner .banner-slogan .slogan .subtitle2 {
    font-family: 'roboto', sans-serif;
    font-weight: 400;
    font-size: 20px;
    letter-spacing: 0.7px;
    margin-top: 20px;
}
.home-banner .banner-slogan .slogan {    
    opacity: 0;
    transform: scale(0);
    transition: 1s;
}
.home-banner.act .banner-slogan .slogan {    
    opacity: 1;
    transform: scale(1);
    transition-delay: 1.5s;
}
.home-banner .banner-results .text-wrapper {
    width: 100%;
    height: 100%;
    display: grid;
    place-content: center;
    text-align: center;
}
.home-banner .banner-results .text .main {
    font-family: kallisto, sans-serif;
    font-weight: 900;
    font-style: italic;
    font-size: 28px;
    letter-spacing: 2.4px;
}
.home-banner .banner-results .text .date {
    font-family: kallisto, sans-serif;
    font-weight: 900;
    font-style: italic;
    font-size: 20px;
    letter-spacing: 2.4px;
    line-height: 1.3;
    margin-top: 20px;
}
.home-banner .banner-results .text .date span {
    display: block;
}
.home-banner .banner-results .text {    
    opacity: 0;
    transform: scale(0);
    transition: 1s;
}
.home-banner.act .banner-results .text {    
    opacity: 1;
    transform: scale(1);
    transition-delay: 1.5s;
}
@media screen and (min-width: 768px) {
    .home-banner .banner-slogan .slogan .main {
        font-size: 60px;
    }
    .home-banner .banner-slogan .slogan .subtitle2 {
        font-size: 28px;
    }
    .home-banner .banner-results .text .main {
        font-size: 42px;
    }
    .home-banner .banner-results .text .date {
        font-size: 30px;
    }
}
@media screen and (min-width: 1366px) {
    .home-banner .banner-slogan .slogan .main {
        font-size: 80px;
    }
    .home-banner .banner-slogan .slogan .main span {
        margin-bottom: 0;
    }
    .home-banner .banner-slogan .slogan .subtitle2 {
        font-size: 30px;
    }
    .home-banner .banner-results .text .main {
        font-size: 56px;
    }
    .home-banner .banner-results .text .date {
        font-size: 40px;
    }
}
@media screen and (min-width: 1800px) {
    .home-banner .banner-slogan .slogan .main {
        font-size: 90px;
    }
    .home-banner .banner-slogan .slogan .subtitle2 {
        font-size: 36px;
    }
    .home-banner .banner-results .text .main {
        font-size: 70px;
    }
    .home-banner .banner-results .text .date {
        font-size: 48px;
    }
}
@media screen and (min-width: 1366px) and (max-height: 768px) and (orientation: landscape) {
    .home-banner .banner-slogan .slogan .main {
        font-size: 70px;
    }
}

/*** HOME - STOCKQUOTE ***/
.home-stockquote {
    width: min(100%, 1000px);
    height: auto;
    position: absolute;
    bottom: calc(var(--section-border) * 5 + 10px);
    left: 0;
    margin: 0;
    padding: 0 calc(var(--section-border) + 10px);
    background: transparent;
}
.stockquote-wrapper {
    width: min(100%, 1000px);
    height: 100px;
    filter: drop-shadow(0 0 5px #000);
}
@media screen and (min-width: 768px) {
    .home-stockquote {
        bottom: calc(var(--section-border) * 2 + 10px);
    }
}
@media screen and (min-width: 860px) {
    .stockquote-wrapper {
        height: 140px;
    }
}
@media screen and (min-width: 1200px) {
    .home-stockquote {
        left: 2.5%;
    }
}

/*** HOME - NEWS ***/
.home-news .news-wrapper {
    width: min(90%, 1520px);
    height: min(100%, 800px);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    text-align: right;
}
.home-news .news-wrapper .title {
    letter-spacing: 1.8px;
    margin: 0;
    padding: 0;
    opacity: 1;
    margin-top: 40px;
    margin-bottom: 80px;
    max-width: 500px;
}
.home-news .item-wrapper {
    display: flex;
    justify-content: center;
    min-height: 400px;
    text-align: left;
    flex-wrap: wrap;
    z-index: 1;
}
.home-news .item {
    position: relative;
    padding: 10px 15px;
    opacity: 1;
    margin-bottom: 0;
    width: 33.3333%;
    height: auto;
    overflow: hidden;
}
.home-news .item:nth-child(2) { margin-top: -40px; }
.home-news .item:nth-child(5) { margin-top: 30px; }
.home-news .item:before {
    content: '';
    display: block;
    width: 3px;
    height: 100%;
    background: transparent linear-gradient(180deg, rgb(255, 0, 0, 1), rgb(255, 0, 0, 0)) 0% 0% no-repeat;
    position: absolute;
    bottom: 0;
    left: 0;
}
.home-news .item:nth-child(even):before {
    background: transparent linear-gradient(180deg, rgba(0, 235, 255, 1), rgba(0, 235, 255, 0)) 0% 0% no-repeat;
}
.home-news .item .date {
    font-family: kallisto, sans-serif;
    font-weight: 800;
    font-size: 16px;
    letter-spacing: 0.7px;
    margin-bottom: 10px;
}
.home-news .item .date:after {
    display: none;
}
.home-news .item .news-title {
    font-family: roboto-condensed, sans-serif;
    font-size: 16px;
    line-height: 1.3;
    margin-bottom: 15px;
}
.home-news .item .news-title a {
    display: inline-block;
}
.home-news .btn {
    font-family: roboto, sans-serif;
    font-size: 12px;
    letter-spacing: 0.3px;
}
.home-news .btn a {
    display: inline-block;
    padding: 7px 10px;
    background: #FD0200;
    border-radius: 5px;
}
.news-wrapper .item .date, .news-wrapper .item .news-title, .news-wrapper .btn {
    opacity: 0;
    transition: opacity 0.5s;
}
.news-wrapper.act .item .date, .news-wrapper.act .item .news-title, .news-wrapper.act .item .btn {
    opacity: 1;
}
.news-wrapper .item:before {
    transition: transform 0.5s ease-in-out;
    transform: translateY(100%);
}
.news-wrapper.act .item:before {
    transform: translateY(0);
}
.news-wrapper.act .item:nth-child(1):before {
    transition-delay: 0.3s
}
.news-wrapper.act .item:nth-child(1) .date, .news-wrapper.act .item:nth-child(1) .news-title, .news-wrapper.act .item:nth-child(1) .btn {
    transition-delay: 0.8s
}
.news-wrapper.act .item:nth-child(2):before {
    transition-delay: 0.8s
}
.news-wrapper.act .item:nth-child(2) .date, .news-wrapper.act .item:nth-child(2) .news-title, .news-wrapper.act .item:nth-child(2) .btn {
    transition-delay: 1.3s
}
.news-wrapper.act .item:nth-child(3):before {
    transition-delay: 1.1s
}
.news-wrapper.act .item:nth-child(3) .date, .news-wrapper.act .item:nth-child(3) .news-title, .news-wrapper.act .item:nth-child(3) .btn {
    transition-delay: 1.6s
}
.news-wrapper.act .item:nth-child(4):before {
    transition-delay: 1s
}
.news-wrapper.act .item:nth-child(4) .date, .news-wrapper.act .item:nth-child(4) .news-title, .news-wrapper.act .item:nth-child(4) .btn {
    transition-delay: 1.5s
}
.news-wrapper.act .item:nth-child(5):before {
    transition-delay: 0.6s
}
.news-wrapper.act .item:nth-child(5) .date, .news-wrapper.act .item:nth-child(5) .news-title, .news-wrapper.act .item:nth-child(5) .btn {
    transition-delay: 1.1s
}
@media screen and (min-width: 768px) {
    .home-news .item {
        width: min(33.3333%, 280px);
        padding: 20px 30px;
        margin-bottom: 30px;
    }
    .home-news .item .date {
        font-size: 22px;
    }
    .home-news .item .news-title {
        font-size: 18px;
    }
    .home-news .btn {
        font-size: 14px;
    }
    .home-news .btn a {
        padding: 7px 20px;
    }
}
@media screen and (min-width: 1024px) {
    .home-news .news-wrapper {
        display: grid;
        grid-template-columns: 1fr auto;
    }
    .home-news .news-wrapper .title {
        margin-top: 100px;
        order: 2;
    }
    .home-news .item-wrapper {
        justify-content: flex-end;
        align-items: flex-end;
        flex-wrap: nowrap;
        transform: translateX(10%);
    }
    .home-news .item {
        position: relative;
        width: min(100%, 220px);
        min-height: 35%;
        padding: 20px 20px;
        margin-right: -100px;
        flex-shrink: 0;
    }
    .home-news .item .details {
        position: absolute;
        width: calc(100% - 40px);
    }
    .home-news .item:nth-child(1) { min-height: 90%; margin-bottom: 8%; }
    .home-news .item:nth-child(2) { min-height: 60%; margin-bottom: 5%; }
    .home-news .item:nth-child(3) { transform: translateX(50px); }
    .home-news .item:nth-child(4) { min-height: 45%; margin-bottom: 50%; }
    .home-news .item:nth-child(5) { min-height: 50%; }
    .home-news .item:before {
        width: 5px;
    }
}
@media screen and (min-width: 1366px) {
    .home-news .news-wrapper .title {
        margin-top: 100px;
        order: 2;
    }
    .home-news .item-wrapper {
        transform: translateX(5%);
    }
    .home-news .item {
        width: min(100%, 280px);
        padding: 20px 30px;
        margin-right: -135px;
    }
    .home-news .item:before {
        width: 5px;
    }
    .home-news .item .details {
        position: absolute;
        width: calc(100% - 80px);
    }
    .home-news .item .date {
        font-size: 36px;
    }
    .home-news .item .news-title {
        font-size: 20px;
    }
    .home-news .btn {
        font-size: 16px;
    }
}
@media screen and (min-width: 1600px) {
    .home-news .item-wrapper {
        transform: translateX(0);
    }
    .home-news .item:nth-child(3) { transform: translateX(20px); }
    .home-news .item:nth-child(4) { margin-bottom: 35%; }
}
@media screen and (min-width: 1366px) and (max-height: 768px) and (orientation: landscape) {
    .home-news .news-wrapper .title {
        margin-top: 70px;
    }
    .home-news .item-wrapper {
        transform: translateX(10%);
    }
    .home-news .item .date {
        font-size: 28px;
    }
    .home-news .item .news-title {
        font-size: 18px;
    }
    .home-news .btn {
        font-size: 14px;
    }
    .home-news .item:nth-child(4) { 
        margin-bottom: 45%;
    }
}

/*** HOME - FINANCIAL DATA ***/
.home-financial .financial-wrapper {
    width: min(95%, 1520px);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 40px;
}
.home-financial .financial-title {
    position: relative;
    opacity: 1;
    grid-column: span 3;
    text-align: center;
    top: 0;
    right: 0;
    align-self: center;
}
.home-financial .financial-title .period {
    position: relative;
    right: auto;
}
.home-financial .period span {
    font-family: kallisto, sans-serif;
    font-weight: 500;
    font-size: 16px;
    text-transform: uppercase;
    display: inline-block;
    padding: 10px 50px;
    border-radius: 10px;
    background-color: var(--theme-color);
    letter-spacing: 1.5px;
}
.home-financial .financial-title .title {
    width: 100%;
    font-size: var(--font-title);
    letter-spacing: 1.8px;
    padding: 0;
    margin: 20px 0;
}
.home-financial .btn-wrapper {
    grid-column: span 3;
    text-align: center;
    align-self: center;
    margin-top: 20px;
}
.home-financial .financial-wrapper .item {
    position: relative;
    font-family: kallisto, sans-serif;
    width: 100%;
    aspect-ratio: 1 / 1.3;
    border-radius: 10px;
    overflow: hidden;
    opacity: 1;
    transform: scale(0);
    transition: transform 0.5s 0.5s;
}
.home-financial .financial-wrapper .item:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 30px;
    background: transparent linear-gradient(90deg, #FF3372, #F0CE47, #FF3372) 0% 0% / 200% repeat-x;
    bottom: 0;
    left: 0;
    z-index: 0;
}
.home-financial div:nth-child(3n+2 of .item):before {
    background: transparent linear-gradient(90deg, #FF4ADC, #693CFF, #FF4ADC) 0% 0% / 200% repeat-x;
}
.home-financial div:nth-child(3n+3 of .item):before {
    background: transparent linear-gradient(90deg, #6BFE8B, #4C9CCE, #385DFA, #4C9CCE, #6BFE8B) 0% 0% / 200% repeat-x;
}
.home-financial .financial-wrapper .item:after {
    content: '';
    position: absolute;
    width: 100%;
    height: calc(100% - 15px);
    background: rgba(255, 255, 255, 0.15);
    -webkit-backdrop-filter: blur(50px);
    backdrop-filter: blur(50px);
    top: 0;
    left: 0;
}
.home-financial .financial-wrapper .data {
    position: relative;
    width: 100%;
    height: calc(100% - 15px);
    padding: 20px 15px;
    z-index: 1;
}
.home-financial .caption {
    font-weight: 800;
    font-size: 12px;
    color: #eb7d44;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}
.home-financial div:nth-child(3n+2 of .item) .caption {
    color: #ff3372;
}
.home-financial div:nth-child(3n+3 of .item) .caption {
    color: #84ffc2;
}
.home-financial .value {
    font-weight: 800;
    font-size: 18px;
    letter-spacing: 1.2px;
    margin-bottom: 5px;
}
.home-financial .unit {
    font-weight: 500;
    font-size: 12px;
    letter-spacing: 0.5px;
}
.home-financial .change {
    font-family: roboto, sans-serif;
    font-weight: 400;
    font-size: 12px;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    position: absolute;
    right: 10px;
    bottom: 10px;
}
.home-financial .change span {
    display: block;
}
.home-financial .change span:before {
    content: '';
    display: block;
    border-width: 0 4px 6px;
    border-style: solid;
    border-color: transparent transparent #fff;
    margin-right: 4px;
}
.home-financial .change span.down:before {
    border-width: 6px 4px 0px;
    border-style: solid;
    border-color:  #fff transparent transparent;
}
.financial-wrapper .financial-title .period {
    opacity: 0;
    transition: 0.5s;
}
.financial-wrapper.act .financial-title .period {
    opacity: 1;
}
.financial-wrapper .financial-wrapper .item {
    transform: scale(0);
    transition: transform 0.5s 0.5s;
}
.financial-wrapper.act .item {
    transform: scale(1);
}
.financial-wrapper.act .item:before {
    animation: financialDataBgAni 3s linear 1.5s infinite;
}
.financial-wrapper .btn-wrapper {
    opacity: 0;
}
.financial-wrapper.act .btn-wrapper {
    animation: fadeIn 0.5s 1s both;
}
@keyframes financialDataBgAni {
    0% { background-position: 0 50%; }
    100% { background-position: 200% 50%; }
}
@media screen and (min-width: 768px) {
    .home-financial .financial-wrapper {
        width: min(90%, 1520px);
        gap: 15px;
        margin-bottom: 100px;
    }
    .home-financial .period span {
        font-size: 20px;
    }
    .home-financial .btn-wrapper {
        grid-column: span 1;
        margin-top: 0;
    }
    .home-financial .financial-wrapper .item {
        aspect-ratio: 1 / 1;
        border-radius: 20px;
    }
    .home-financial .financial-wrapper .item:before {
        height: 40px;
    }
    .home-financial .financial-wrapper .item:after {
        height: calc(100% - 20px);
    }
    .home-financial .financial-wrapper .data {
        height: calc(100% - 20px);
        padding: 30px 20px;
    }
    .home-financial .caption {
        font-size: 14px;
        margin-bottom: 15px;
    }
    .home-financial .value {
        font-size: 34px;
        margin-bottom: 10px;
    }
    .home-financial .unit {
        font-size: 16px;
    }
    .home-financial .change {
        font-size: 16px;
        right: 20px;
        bottom: 20px;
    }
    .home-financial .change span:before {
        border-width: 0 6px 10px;
        margin-right: 8px;
    }
    .home-financial .change span.down:before {
        border-width: 10px 6px 0px;
    }
}
@media screen and (min-width: 1024px) {
    .home-financial .financial-wrapper {
        grid-template-columns: repeat(4, 1fr);
    }
    .home-financial .financial-title {
        grid-column: span 2;
        padding: 0 20px;
    }
}
@media screen and (min-width: 1366px) {
    .home-financial .financial-wrapper {
        gap: 30px;
    }
    .home-financial .financial-wrapper .item:before {
        height: 60px;
    }
    .home-financial .financial-wrapper .item:after {
        height: calc(100% - 30px);
    }
    .home-financial .financial-wrapper .data {
        height: calc(100% - 30px);
    }
    .home-financial .financial-wrapper .data {
        padding: 40px 35px;
    }
    .home-financial .caption {
        font-size: 16px;
    }
    .home-financial .value {
        font-size: 44px;
    }
    .home-financial .unit {
        font-size: 18px;
    }
    .home-financial .change {
        font-size: 20px;
        right: 30px;
        bottom: 30px;
    }
}
@media screen and (min-width: 1600px) {
    .home-financial .period span {
        font-size: 30px;
    }
    .home-financial .financial-wrapper .data {
        padding: 60px 50px;
    }
    .home-financial .caption {
        font-size: 18px;
    }
    .home-financial .unit {
        font-size: 20px;
    }
    .home-financial .change {
        font-size: 24px;
        right: 40px;
        bottom: 40px;
    }
}
@media screen and (min-width: 1800px) {
    .home-financial .caption {
        font-size: 20px;
    }
    .home-financial .value {
        font-size: 60px;
    }
}
@media screen and (min-width: 1366px) and (max-height: 768px) and (orientation: landscape) {
    .home-financial .financial-wrapper {
        max-width: 1000px;
        gap: 20px;
    }
    .home-financial .financial-wrapper .data {
        padding: 40px 35px;
    }
    .home-financial .caption {
        font-size: 14px;
        margin-bottom: 15px;
    }
    .home-financial .value {
        font-size: 34px;
        margin-bottom: 10px;
    }
    .home-financial .unit {
        font-size: 16px;
    }
    .home-financial .change {
        font-size: 16px;
        right: 20px;
        bottom: 20px;
    }
    .home-financial .change span:before {
        border-width: 0 6px 10px;
        margin-right: 8px;
    }
    .home-financial .change span.down:before {
        border-width: 10px 6px 0px;
    }
}

/*** HOME - OPERATING DATA ***/
.home-operating .bg {
    background-image: url(../images/home2024/home_operating_bg.jpg);
    background-size: cover;
    background-position: center;
    animation: bgAni 8s linear infinite alternate ;
}
.home-operating .operating-wrapper {
    width: 100%;
    height: 100%;
    display: grid;
    align-items: center;
}
.home-operating .operating-content {
    position: relative;
    width: min(95%, 1500px);
    margin: 0 auto;
    display: grid;
}
.home-operating .title {
    width: 100%;
    letter-spacing: 1.5px;
    margin: 10px 0;
}
.home-operating .period span {
    font-family: kallisto, sans-serif;
    font-weight: 500;
    font-size: 16px;
    text-transform: uppercase;
    display: inline-block;
    padding: 10px 30px;
    border-radius: 10px;
    background-color: var(--theme-color);
    color: #fff;
}
.home-operating .item-wrapper {
    height: auto;
    padding: 0;
    justify-content: center;
    /* margin-bottom: 10px; */
    z-index: 1;
}
.home-operating .item {
    position: relative;
    width: calc(25% + 15px);
    aspect-ratio: 1;
    display: grid;
    place-content: center;
    margin: 0;
    opacity: 1;
    transition: 0.5s;
}
.home-operating .item:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../images/home2024/home_operating_data_bg1.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
    transform: scale(1.1);
}
.home-operating .item:nth-child(2):before {
    background-image: url(../images/home2024/home_operating_data_bg2.png);
}
.home-operating .item:nth-child(3):before {
    background-image: url(../images/home2024/home_operating_data_bg3.png);
}
.home-operating .item .data-title {
    font-family: kallisto, sans-serif;
    font-weight: 800;
    font-size: 9px;
    line-height: 1.3;
    letter-spacing: 0.36px;
    margin-bottom: -5px;
    cursor: pointer;
}
/* .home-operating .btn-wrapper {
    margin-top: 10px;
} */
.home-operating .note {
    margin-top: 10px;
    padding: 0 20px;
    font-size: 12px;
}
.home-operating .details-wrapper {
    width: min(90%, 400px);
    margin: 0 auto;
}
.home-operating .details {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    display: grid;
    margin-top: -5%;
}
.home-operating .data-wrapper {
    grid-area: 1 / 1;
    padding: 20px 15% 30px;
    display: grid;
    place-content: center;
    z-index: -1;
}
.home-operating .data-wrapper:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../images/home2024/home_operating_data_bg1.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1.1);
    z-index: -1;
}
.home-operating .data-wrapper:nth-child(2):before {
    background-image: url(../images/home2024/home_operating_data_bg2.png);
}
.home-operating .data-wrapper:nth-child(3):before {
    background-image: url(../images/home2024/home_operating_data_bg3.png);
}
.home-operating .data-wrapper .data-title {
    font-family: kallisto, sans-serif;
    font-weight: 500;
    font-size: 18px;
    letter-spacing: 0.6px;
    color: #EB7D44;
    margin-bottom: 20px;
    padding: 0 10px;
}
.home-operating .data-wrapper:nth-child(2) .data-title {
    color: #FF3372;
}
.home-operating .data-wrapper:nth-child(3) .data-title {
    color: #84FFC2;
}
.home-operating .data-wrapper .data:not(:last-child) {
    margin-bottom: 15px;
}
.home-operating .caption {
    font-family: roboto-condensed, sans-serif;
    font-size: 13px;
    line-height: 1.3;
}
.home-operating .counter {
    font-family: kallisto, sans-serif;
    font-weight: 800;
    font-size: 30px;
    letter-spacing: 1.2px;
    display: inline-block;
    margin-top: 3px;
}
.home-operating .data-wrapper:nth-child(1) .data-title, .home-operating .data-wrapper:nth-child(1) .data:not(:last-child) {
    margin-bottom: 15px;
}
.home-operating .data-wrapper:nth-child(1) .counter {
    font-size: 18px;
}
.operating-wrapper .period {
    opacity: 0;
    transition: 0.5s;
}
.operating-wrapper.act .period {
    opacity: 1;
}
.operating-wrapper .item-wrapper {
    opacity: 0;
    transition: 0.5s 0.5s;
}
.operating-wrapper.act .item-wrapper {
    animation: fadeIn 0.5s 0.5s both;
}
.operating-wrapper.act .item.active {
    opacity: 0.4;
}
.operating-wrapper .details-wrapper {
    opacity: 0;
    transition: 0.5s 0.5s;
}
.operating-wrapper.act .details-wrapper {
    opacity: 1;
}
.operating-wrapper .data-wrapper {
    opacity: 0;
    transition: 0.5s;
}
.operating-wrapper .data-wrapper .data-title {
    opacity: 0;
    transition: 0.5s 0.3s;
}
.operating-wrapper .data-wrapper .data {
    opacity: 0;
    transition: 0.5s 0.3s;
}
.operating-wrapper.act .data-wrapper.active {
    z-index: 0;
    opacity: 1;
}
.operating-wrapper.act .data-wrapper.active:before {
    animation: operatingDataBg 10s linear 0.5s infinite both;  
}
.operating-wrapper.act .data-wrapper.active .data-title {
    opacity: 1;
}
.operating-wrapper.act .data-wrapper.active .data {
    opacity: 1;
}
.operating-wrapper .btn-wrapper {
    opacity: 0;
}
.operating-wrapper.act .btn-wrapper {
    animation: fadeIn 0.5s 1s both;
}
@keyframes operatingDataBg {
    0% { transform: scale(1.1) rotate(0); }
    100% { transform: scale(1.1) rotate(360deg); }
}
@media screen and (min-width: 768px) {
    .home-operating .title {
        margin: 20px 0 10px;
    }
    .home-operating .period span {
        font-size: 20px;
    }
    .home-operating .item-wrapper {
        margin-bottom: 20px;
    }
    .home-operating .item {
        margin: 0 -5px;
    }
    .home-operating .item .data-title {
        font-size: 13px;
    }
    .home-operating .details {
        margin-top: -10%;
    }
    .home-operating .data-wrapper {
        padding: 20px 20% 30px;
    }
    .home-operating .data-wrapper .data-title {
        font-size: 20px;
    }
    .home-operating .caption {
        font-size: 16px;
    }
    .home-operating .counter {
        font-size: 34px;
    }
    .home-operating .data-wrapper:nth-child(1) .counter {
        font-size: 24px;
    }
}
@media screen and (min-width: 1024px) {
    .home-operating .operating-content {
        grid-template-columns: 55% 45%;
        grid-template-rows: auto auto auto 1fr;
    }
    .home-operating .details-wrapper {
        grid-area: 1 / 2 / 5 / 3;
    }
    .home-operating .title {
        margin: 50px auto 35px;
        max-width: 650px;
        padding: 0 20px;
    }
    .home-operating .btn-wrapper {
        margin-top: 20px;
    }
    .home-operating .note {
        margin-top: 20px;
        font-size: 14px;
        grid-column: 1 / 3;
        text-align: left;
    }
    .home-operating .details-wrapper {
        width: 100%;
    }
}
@media screen and (min-width: 1366px) {
    .home-operating .item .data-title {
        font-size: 16px;
    }
    .home-operating .data-wrapper .data-title {
        font-size: 26px;
        margin-bottom: 30px;
    }
    .home-operating .data-wrapper .data:not(:last-child) {
        margin-bottom: 30px;
    }
    .home-operating .caption {
        font-size: 18px;
    }
    .home-operating .counter {
        font-size: 50px;
    }
    .home-operating .data-wrapper:nth-child(1) .data-title, .home-operating .data-wrapper:nth-child(1) .data:not(:last-child) {
        margin-bottom: 20px;
    }
    .home-operating .data-wrapper:nth-child(1) .counter {
        font-size: 34px;
    }
}
@media screen and (min-width: 1600px) {
    .home-operating .period span {
        font-size: 30px;
    }
    .home-operating .item {
        margin: 0 -15px;
    }
    .home-operating .item:before {
        transform: scale(1);
    }
    .home-operating .item .data-title {
        font-size: 18px;
    }
    .home-operating .details {
        margin-left: -5%;
    }
    .home-operating .data-wrapper .data-title {
        font-size: 30px;
    }
    .home-operating .caption {
        font-size: 20px;
    }
    .home-operating .counter {
        font-size: 60px;
    }
    .home-operating .data-wrapper:nth-child(1) .counter {
        font-size: 40px;
    }
}
@media screen and (min-width: 1366px) and (max-height: 768px) and (orientation: landscape) {
    .home-operating .title {
        margin: 40px auto 25px;
    }
    .home-operating .operating-content {
        max-width: 1100px;
    }
    .home-operating .item .data-title {
        font-size: 14px;
    }
    .home-operating .data-wrapper .data-title {
        font-size: 24px;
    }
    .home-operating .counter {
        font-size: 40px;
    }
    .home-operating .data-wrapper:nth-child(1) .counter {
        font-size: 26px;
    }
}

/*** HOME - ESG ***/
.home-esg .bg {
    background-image: url(../images/home2024/home_esg_bg.jpg);
    background-size: cover;
    background-position: center;
}
.home-esg .esg-wrapper {
    height: 100%;
    align-content: center;
    padding: 0 20px 20px;
}
.home-esg .title {
    font-weight: 800;
    text-indent: 0;
}
.home-esg .desc {
    font-family: kallisto, sans-serif;
    font-weight: 300;
    font-style: italic;
    font-size: 16px;
    line-height: 1.36;
    letter-spacing: 1.5px;
    padding: 0 15px 10px;
    border: none;
    opacity: 1;
}
.home-esg .desc span {
    color: #fff;
    opacity: 0;
}
.home-esg .btn-wrapper {
    margin-bottom: 20px;
    opacity: 0;
}
.home-esg .btn-wrapper {
    margin-bottom: 20px;
}
.esg-wrapper.act .desc span {
    opacity: 1;
    transition: opacity 0s var(--d);
}
.esg-wrapper .btn-wrapper {
    opacity: 0;
}
/* .esg-wrapper.act .btn-wrapper {
    opacity: 1;
    transition: opacity 0.5s var(--d);
} */
 .esg-wrapper.act .btn-wrapper {
    animation: fadeIn 0.5s var(--d) both;
 }
@media screen and (min-width: 768px) {
    .home-esg .desc {
        font-size: 20px;
    }
}
@media screen and (min-width: 1366px) {
    .home-esg .desc {
        font-size: 24px;
    }
}
@media screen and (min-width: 1800px) {
    .home-esg .desc {
        font-size: 28px;
    }
}
@media screen and (min-width: 1366px) and (max-height: 768px) and (orientation: landscape) {
    .home-esg .desc {
        font-size: 20px;
    }
}

/*** HOME - FINANCIAL RESULTS ***/
.home-results .bg {
    background-image: url(../images/home2024/home_results_bg.jpg);
    background-size: cover;
    background-position: center;
}
.home-results .results-wrapper {
    display: grid;
    padding: 10px 0;
}
.home-results .text {
    max-width: 100%;
    width: 90%;
    margin: 0 auto;
    padding: 20px;
}
.home-results .title {
    max-width: 700px;
}
.home-results .section-title-wrapper {
    justify-content: flex-start;
}
.home-results .period {    
    font-family: kallisto, sans-serif;
    font-weight: 500;
    font-style: italic;
    font-size: 18px;
    letter-spacing: 1.6px;
    line-height: 1.875;
    text-transform: capitalize;
    background: transparent linear-gradient(90deg, #FF0011 0%, #00000000 100%) 0% 0% no-repeat;
    padding: 0;
    margin: 0 0 15px;
    border: none;
    overflow: hidden;
    opacity: 1;
}
.home-results .period span {
    padding: 0 20px;
    white-space: nowrap;
}
.home-results .links {
    margin-bottom: 20px;
}
.home-results .links ul {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    font-family: 'roboto', sans-serif;
    font-weight: 300;
    font-size: 16px;
    letter-spacing: 0.5px;
    padding: 0 15px;
}
.home-results .links li {
    margin: 0 5px 5px;
    opacity: 1;
}
.home-results .links li:not(:last-child):after {
    content: '/';
    margin-left: 10px;
}
.home-results .note {
    margin-top: 10px;
    padding: 0 20px;
    font-size: 12px;
    color: #fff;
}
.home-results .video-wrapper {
    position: relative;
    padding: 20px;
    width: min(90%, 500px);
    margin: 0 auto;
}
.home-results .video-wrapper .inner-wrapper {
    position: relative;
    padding: 20px;
    width: 100%;
}
.home-results .video-wrapper .inner-wrapper:before, .home-results .video-wrapper .inner-wrapper:after {
    content: '';
    position: absolute;
    top: 10px;
    left: 5px;
    width: 100%;
    height: 100%;
    border: 10px solid #3463FF;
    filter: blur(6px);
    box-shadow: inset 0px 0px 20px #FFFFFF;
    mix-blend-mode: screen;
}
.home-results .video-wrapper .inner-wrapper:after {
    top: -5px;
    left: -5px;
    border-color: #FF34EB;
}
.home-results .video-wrapper .inner-wrapper .video {
    position: relative;
    width: 100%;
}
.home-results .video-wrapper .inner-wrapper .video:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    box-shadow: inset 0 0 50px #fff;
    filter: blur(6px);
}
.home-results .video-wrapper .inner-wrapper .video video {
    width: 100%;
}
.results-wrapper .period {
    width: 0;
    transition: 0.5s 0.2s;
}
.results-wrapper.act .period {
    width: 100%;
}
.results-wrapper .links ul {
    opacity: 0;
    transition: opacity 0.5s 0.7s;
}
.results-wrapper.act .links ul {
    opacity: 1;
}
.results-wrapper .note {
    opacity: 0;
    transition: opacity 0.5s 1s;
}
.results-wrapper.act .note {
    opacity: 1;
}
.results-wrapper .video-wrapper {
    opacity: 0;
    transform: translateX(100px);
    transition: 0.5s 0.2s;
}
.results-wrapper.act .video-wrapper {
    opacity: 1;
    transform: translateX(0);
}
.results-wrapper .btn-wrapper {
    opacity: 0;
}
.results-wrapper.act .btn-wrapper {
    animation: fadeIn 0.5s 1s both;
}
@media screen and (min-width: 768px) {
    .home-results .text {
        width: 80%;
    }
    .home-results .period {    
        font-size: 22px;
    }
    .home-results .links ul {
        font-size: 18px;
    }
}
@media screen and (min-width: 1024px) {
    .home-results .results-wrapper {
        align-content: center;
        height: 100%;
    }
    .home-results .text {
        width: 60%;
        margin: 0 5%;
        padding: 0;
    }
    .home-results .period {    
        font-size: 22px;
        margin: 10px 0 25px;
    }
    .home-results .links {
        margin-bottom: 40px;
    }
    .home-results .links ul {
        width: 65%;
        font-size: 20px;
    }
    .home-results .note {
        max-width: 65%;
    }
    .home-results .video-wrapper {
        position: absolute;
        padding: 0;
        width: 40%;
        right: 10%;
        top: 50%;
        transform: translateY(-70%);
        perspective: 1000px;
        transform-origin: 50% 50%;
    }
    .home-results .video-wrapper .inner-wrapper {
        position: relative;
        padding: 30px;
        transform: translateZ(100px) rotateY(-20deg);
    }
    .home-results .video-wrapper .inner-wrapper:before, .home-results .video-wrapper .inner-wrapper:after {
        top: 15px;
        left: 15px;
        box-shadow: inset 0px 0px 30px #FFFFFF;
    }
    .home-results .video-wrapper .inner-wrapper:after {
        top: -15px;
        left: -15px;
    }
    .results-wrapper .video-wrapper {
        transform: translateX(100px) translateY(-70%);
    }
    .results-wrapper.act .video-wrapper {
        opacity: 1;
        transform: translateX(0) translateY(-70%);
    }
}
@media screen and (min-width: 1200px) {
    .home-results .note {
        font-size: 14px;
    }
    .home-results .period {    
        font-size: 28px;
    }
    .home-results .video-wrapper {
        right: 12%;
    }
    .home-results .video-wrapper .inner-wrapper {
        padding: 50px;
    }
    .home-results .video-wrapper .inner-wrapper:before, .home-results .video-wrapper .inner-wrapper:after {
        top: 25px;
        left: 25px;
        box-shadow: inset 0px 0px 50px #FFFFFF;
    }
    .home-results .video-wrapper .inner-wrapper:after {
        top: -20px;
        left: -15px;
    }
}
@media screen and (min-width: 1800px) {
    .home-results .text {
        margin: 0 12%;
    }
    .home-results .period {    
        font-size: 32px;
    }
}
@media screen and (min-width: 1366px) and (max-height: 768px) and (orientation: landscape) {
    .home-results .results-wrapper {
        max-width: 1200px;
    }
}

/*** HOME - CORPORATE VIDEO ***/
.home-corpVideo .video-wrapper {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}
.home-corpVideo .video-wrapper .video {
    width: 100%;
    height: 100%;
    position: relative;
}
.home-corpVideo .video-wrapper .video video {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
.home-corpVideo .bg {
    background-image: url(../images/home2024/home_corpvideo_bg.jpg);
    background-size: cover;
    background-position: center;
}
.home-corpVideo .corpvideo-wrapper {
    height: 100%;
    display: grid;
    align-items: center;
}
.home-corpVideo .title {
    width: min(80%, 800px);
    margin: 0 auto var(--header-height);
    text-align: center;
}
.home-corpVideo .btn-wrapper {
    position: absolute;
    bottom: 70px;
    left: 50%;
    transform: translateX(-50%);
}
.corpvideo-wrapper .video-wrapper .video {
    opacity: 0;
}
.corpvideo-wrapper.act .video-wrapper .video {
    opacity: 1;
}
.corpvideo-wrapper .btn-wrapper {
    opacity: 0;
    transition: 0.5s;
}
.corpvideo-wrapper.act .btn-wrapper {
    animation: fadeIn 0.5s 0.1s both;
}
.home-corpVideo:has(.corpvideo-wrapper.act) .bg, .home-corpVideo:has(.corpvideo-wrapper.act) .title {
    transform: translateY(-100vh);
    transition: 1.5s 0.8s;
}
@media screen and (min-width: 768px) {    
    .home-corpVideo .title {
        width: min(60%, 800px);
    }
}

/*** HOME - AWARDS ***/
.home-award .bg {
    background-image: url(../images/home2024/home_award_bg.jpg);
    background-size: cover;
    background-position: left center;
    animation: bgAni 8s linear infinite alternate;
}
.home-award .award-wrapper {
    padding: 50px 0;
}
.home-award .title {
    padding: 0 5%;
    margin-bottom: 30px;
    border: none;
    width: 100%;
    text-align: center;
}
.home-award .btn-wrapper {
    padding: 0 5%;
    margin-top: 40px;
    text-align: center;
}
.home-award .award-list {
    padding: 10px 0;
}
.home-award .award-list .col {
    display: flex;
    flex-wrap: nowrap;
}
.home-award .award-list .col .item {
    width: 50%;
    flex-shrink: 0;
    padding: 0 10px;
}
.award-wrapper .award-list {
    opacity: 0;
    transition: 0.5s 0.1s;
}
.award-wrapper.act .award-list {
    opacity: 1;
}
.award-wrapper.act .award-list .col .item {
    animation: marquee 20s linear infinite;
}
.award-wrapper .btn-wrapper {
    opacity: 0;
}
.award-wrapper.act .btn-wrapper {
    animation: fadeIn 0.5s 0.8s both;
}
@keyframes marquee {
    0% { transform: translateX(0%); }
    100% { transform: translateX(-600%); }
}
@media screen and (min-width: 768px) {
    .home-award .award-list .col .item {
        width: 33.3333%;
        padding: 0 15px;
    }
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
    .home-award .award-wrapper {
        display: grid;
        align-items: center;
        align-content: center;
        padding: 0;
    }
    .home-award .title {
        width: 53%;
        text-align: left;
        padding-right: 0;
    }
    .home-award .section-title-wrapper {
        justify-content: flex-start;
    }
    .home-award .btn-wrapper {
        text-align: left;
    }
    .home-award .award-list {
        position: absolute;
        width: 45%;
        transform: rotate(15deg);
        right: 3%;
    }
    .home-award .award-list .col {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        column-gap: 30px;
    }
    .home-award .award-list .col .item {
        width: 100%;
        padding: 0 0 30px;
    }
    @keyframes marquee {
        0% { transform: translateY(100%); }
        100% { transform: translateY(-100%); }
    }    
    .award-wrapper.act .award-list .col .item {
        animation: marquee 15s linear infinite;
    }
    .award-wrapper.act .award-list .col .item:nth-child(3n+2) {
        animation: marquee 15s linear reverse infinite;
    }
}
@media screen and (min-width: 1600px) and (orientation: landscape) {
    .home-award .title {
        width: 48%;
    }
    .home-award .btn-wrapper {
        text-align: left;
    }
    .home-award .award-list {
        width: 48%;
    }
}

/*** HEADER ***/
.home .header {
    padding: 0 var(--section-border);
}
.home .header .header-wrapper {
    width: 100%;
    padding: 0;
    border-top: var(--section-border) solid #fff;
    background-color: #fff;
    height: calc(var(--section-border) + var(--header-height));
}
.home .header .logo-wrapper {
    position: relative;
    display: inline-flex;
    height: var(--header-height);
    padding: 0 30px 10px 5px;
    background-color: #fff;
    border-bottom-right-radius: calc(var(--header-height) / 2);
}
.home .header .logo-wrapper:before {
    content: '';
    position: absolute;
    width: calc(var(--header-height) / 2);
    height: calc(var(--header-height) / 2);
    border-radius: 100% 0 0 0;
    background-color: transparent;
    box-shadow: calc((var(--header-height) / -4) - 4px) calc((var(--header-height) / -4) - 4px) 0 calc(var(--header-height) / 4) #fff;
    right: calc(var(--header-height) / -2);
    top: 0;
    z-index: -1;
    pointer-events: none;
}
.home .header .logo-wrapper:after {
    content: '';
    position: absolute;
    width: calc(var(--header-height) / 2);
    height: calc(var(--header-height) / 2);
    border-radius: 100% 0 0 0;
    background-color: transparent;
    box-shadow: calc((var(--header-height) / -4) - 4px) calc((var(--header-height) / -4) - 4px) 0 calc(var(--header-height) / 4) #fff;
    left: 0;
    top: 100%;
    z-index: -1;
    pointer-events: none;
}
.home .header .header-btn-wrapper {
    position: absolute;
    top: 0;
    right: 0;
    background-color: #fff;
    border-bottom-left-radius: calc(var(--header-height) / 2);
    width: auto;
    height: var(--header-height);
}
.home .header .header-btn-wrapper:before {
    content: '';
    position: absolute;
    width: calc(var(--header-height) / 2);
    height: calc(var(--header-height) / 2);
    border-radius: 0 100% 0 0;
    background-color: transparent;
    box-shadow: calc((var(--header-height) / 4) + 4px) calc((var(--header-height) / -4) - 4px) 0 calc(var(--header-height) / 4) #fff;
    left: calc(var(--header-height) / -2);
    top: 0;
    z-index: -1;
    pointer-events: none;
}
.home .header .header-btn-wrapper:after {
    content: '';
    position: absolute;
    width: calc(var(--header-height) / 2);
    height: calc(var(--header-height) / 2);
    border-radius: 0 100% 0 0;
    background-color: transparent;
    box-shadow: calc((var(--header-height) / 4) + 4px) calc((var(--header-height) / -4) - 4px) 0 calc(var(--header-height) / 4) #fff;
    right: 0;
    top: 100%;
    z-index: -1;
    pointer-events: none;
}
.home .header .header-btn-wrapper {
    display: block;
}
.home .header .menu-btn-wrapper {
    margin: 0;
}
.home .header .menu-btn-wrapper .menu-btn {
    width: 46px;
    height: 46px;
    padding: 0 22%;
    border-radius: 100%;
    margin-left: 10px;
    margin-top: 4px;
    background-color: var(--theme-color);
    display: grid;
    align-content: center;
}
.home .header .menu-btn-wrapper .menu-btn span.line {
    width: 100%;
    height: 2px;
    background-color: #fff !important;
}
.home .header .menu-btn-wrapper .menu-btn span.line:not(:first-child) {
    margin-top: 6px;
}
.header .menu-btn-wrapper.act .menu-btn span.line.line1 {
    margin-left: -2px;
}
.header .menu-btn-wrapper.act .menu-btn span.line.line3 {
    margin-left: -2px;
    margin-top: 5px !important;
}
.header .logo-wrapper > div {
    flex-shrink: 0;
}
.header .logo-wrapper .logo {
    padding-right: 5px;
}
.header .logo-wrapper .logo img {
    height: 30px;
}
.header .logo-wrapper .ipv6 img {
    height: 22px;
}
.header .logo-wrapper .company img {
    height: 11px;
    margin-left: 5px;
}

/*** FOOTER ***/
.home .footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    padding: 0 var(--section-border);
    font-family: "roboto", sans-serif;
    font-size: 12px;
    font-weight: 300;
    color: #000;
    z-index: 4;
}
.home .footer .footer-wrapper {
    width: 100%;
}
.home .footer-content {
    padding: 0 15px 15px;
    letter-spacing: 0.7px;
}
.home .footer:before, .home .footer-content:after {
    display: none;
}
.footer-link {
    margin-top: 10px;
}

@media screen and (min-width: 768px) {
    .home .header .logo-wrapper {        
        padding: 0 30px 10px 10px;
    }
    .header .logo-wrapper .logo {
        padding-right: 10px;
    }
    .header .logo-wrapper .logo img {
        height: 42px;
    }
    .header .logo-wrapper .ipv6 img {
        height: 36px;
    }
    .header .logo-wrapper .company img {
        height: 16px;
        margin-top: 2px;
        margin-left: 10px;
    }
    .home .header .header-btn-wrapper {
        display: flex;
    }
    .home .header .header-btn-wrapper .group {
        align-self: center;
    }
    .home .header .header-btn-wrapper .group a {
        display: block;
        font-size: 14px;
        font-weight: 400;
        color: #999;
        border: 1px solid #999;
        border-radius: 20px;
        padding: 5px 15px 7px;
        margin-right: 10px;
        margin-bottom: 5px;
    }
    .home .footer-content {
        text-align: left;
        padding: 0 10px 15px;
    }
}
@media screen and (min-width: 1024px) {
    .home .footer-content {
        display: flex;
        justify-content: space-between;
    }
    .footer-link {
        margin: 0px;
    }
}
@media screen and (min-width: 1200px) {
    .header .logo-wrapper .logo {
        padding-right: 20px;
    }
    .header .logo-wrapper .logo img {
        height: 67px;
    }
    .header .logo-wrapper .ipv6 img {
        height: 60px;
    }
    .header .logo-wrapper .company img {
        height: 22px;
        margin-top: 4px;
        margin-left: 15px;
    }
    .home .header .menu-btn-wrapper .menu-btn {
        width: 80px;
        height: 80px;
        margin-left: 20px;
        margin-top: 0;
    }
    .home .header .menu-btn-wrapper .menu-btn span.line {
        height: 4px;
    }
    .home .header .menu-btn-wrapper .menu-btn span.line:not(:first-child) {
        margin-top: 8px;
    }
    .header .menu-btn-wrapper.act .menu-btn span.line.line1 {
        margin-left: -5px;
    }
    .header .menu-btn-wrapper.act .menu-btn span.line.line3 {
        margin-left: -5px;
        margin-top: 9px !important;
    }
    .home .header .header-btn-wrapper .group a {
        margin-bottom: 10px;
    }
    .home .footer { 
        font-size: 14px; 
    }
}

.loading {
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: #fff;
    display: grid;
    place-content: center;
}