/* Variables */
.text-white {
    color: var(--c-white);
}

.number-tag {
    color: #999999;
    font-weight: 600 !important;
}

/* End Variables */


/* ###### Section banner-highlight ###### */
#banner-highlight .container {
    max-width: unset;
    padding: 0;
}

#banner-highlight .sc-inner {
    padding: 0;
}

/* swiper slide content */
#banner-highlight .banner-swiper .swiper-wrapper .banner-item {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

#banner-highlight .banner-swiper .swiper-wrapper .banner-item .banner-img {
    display: flex;
    aspect-ratio: 16/9;
    overflow: hidden;
    width: 100%;
    height: auto;
    min-height: calc(100svh - 120px);
    max-height: calc(100svh - 120px);
    background: #000;
}

#banner-highlight .banner-swiper .swiper-wrapper .banner-item .banner-img img {
    object-fit: cover;
    width: 100%;

}

#banner-highlight .banner-swiper .banner-img video {
    width: 100%;
    height: 100%;
    object-fit: cotain;
    object-position: center center;
    z-index: 2;
}

#banner-highlight .banner-swiper .banner-img video.bg {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    object-fit: cover;
    filter: blur(20px);
}

#banner-highlight .banner-swiper .banner-img .ambient {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    display: block;
    background-image: linear-gradient(to right, #003233, transparent, #003233);
}

@media screen and (max-width: 767px) {

    #banner-highlight .banner-swiper .swiper-wrapper .banner-item .banner-img {
        aspect-ratio: 36/55;
    }

    #banner-highlight .banner-swiper .swiper-wrapper .banner-item .banner-img {
        min-height: calc(100svh - 80px);
        max-height: calc(100svh - 80px);
    }

    #banner-highlight .banner-swiper .banner-img video {
        object-fit: contain;
        object-position: center center;
    }

    #banner-highlight .banner-swiper .banner-img .ambient {
        background-image: linear-gradient(to bottom, #003233, #003233, transparent, #003233, #003233);
    }

    #banner-highlight .banner-swiper .banner-img video.bg {
        opacity: 0.5;
    }
}


#banner-highlight .banner-swiper .swiper-wrapper .banner-item .banner-content {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px;
}

@media screen and (max-width: 767px) {
    #banner-highlight .banner-swiper .swiper-wrapper .banner-item .banner-content {
        padding: 0 24px;
        gap: 40px;
    }
}

#banner-highlight .banner-swiper .swiper-wrapper .banner-item .banner-content .banner-text {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

@media screen and (max-width: 767px) {
    #banner-highlight .banner-swiper .swiper-wrapper .banner-item .banner-content .banner-text {
        gap: 24px;
    }
}

/* swiper pagination */
#banner-highlight .banner-swiper .swiper-pagination {
    bottom: 30px;
}

#banner-highlight .banner-swiper .swiper-pagination .swiper-pagination-bullet {
    background: #DDDDDD;
    border: 1px solid #DDDDDD;
    opacity: 1;
    margin: 0 6px;
    transition: all 0.3s;
    width: 8px;
    height: 8px;
}

#banner-highlight .banner-swiper .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: #00AB8E;
    width: 24px;
    border: none;
    border-radius: 50px;
}

/* ###### End Section banner-highlight ###### */


/* ###### Section overview ###### */
#overview {
    background: url('../../../../../../SiteCollectionDocuments/kclimate/assets/pages/mainpage/img/overview-bg-dt.png') no-repeat center bottom / cover;
}

#overview .overview-wrapper {
    display: flex;
    flex-direction: column;
    gap: 100px;
}

@media screen and (max-width: 767px) {
    #overview .overview-wrapper {
        gap: 80px;
    }
}

/* overview header */
#overview .overview-wrapper .overview-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

@media screen and (max-width: 767px) {
    #overview .overview-wrapper .overview-header {
        display: flex;
        flex-direction: column;
        gap: 24px;
    }
}

/* overview body */
#overview .overview-wrapper .overview-body {
    display: grid;
    grid-template-columns: minmax(200px, 520px) minmax(380px, 1fr);
    gap: 40px;
}

@media screen and (max-width: 767px) {
    #overview .overview-wrapper .overview-body {
        display: flex;
        flex-direction: column-reverse;
        gap: 32px;
    }
}

#overview .overview-wrapper .overview-body .overview-body-content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

@media screen and (max-width: 767px) {
    #overview .overview-wrapper .overview-body .overview-body-content-wrapper {
        gap: 32px;
    }
}

#overview .overview-wrapper .overview-body .overview-body-content-wrapper .overview-body-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

@media screen and (max-width: 767px) {
    #overview .overview-wrapper .overview-body .overview-body-content-wrapper .overview-body-content {
        gap: 16px;
    }
}

#overview .overview-wrapper .overview-body .overview-body-content-wrapper .overview-body-content .overview-body-content-title {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

#overview .overview-wrapper .overview-body .overview-body-content-wrapper .overview-body-content .overview-body-content-title .overview-body-content-title-logo img {
    max-height: 40px;
    width: auto;
}

/* overview interactive box */
#overview .overview-wrapper .overview-interactive-box {
    display: flex;
    height: 400px;
    overflow: hidden;
    border-radius: 16px;
}

@media screen and (max-width: 767px) {
    #overview .overview-wrapper .overview-interactive-box {
        margin-top: -40px;
        flex-direction: column;
        height: auto;
    }
}

#overview .overview-wrapper .overview-interactive-box .interactive-item {
    width: 100%;
    transition: all 0.5s;
    cursor: pointer;
    overflow: hidden;
    position: relative;
    display: flex;
    justify-content: center;
}

#overview .overview-wrapper .overview-interactive-box .interactive-item:hover {
    width: 157.14%;
}

@media screen and (max-width: 767px) {
    #overview .overview-wrapper .overview-interactive-box .interactive-item:hover {
        width: 100%;
    }
}

#overview .overview-wrapper .overview-interactive-box .interactive-item .interactive-item-text {
    position: absolute;
    padding: 40px;
    font-weight: 600;
    /* opacity: 1;
    animation: hoverOut 0.6s ease-in-out; */
}

#overview .overview-wrapper .overview-interactive-box .interactive-item:hover .interactive-item-text {
    /* animation: hoverIn 0.5s ease-in-out;
    -webkit-animation: 0.5s ease-in-out;
    -moz-animation: 0.5s ease-in-out;
    -o-animation: 0.5s ease-in-out;
    -ms-animation: 0.5s ease-in-out; */
}

/* @keyframes hoverIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@-moz-keyframes hoverIn {
    0% {
        opacity: 0;
    }    
    100% {
        opacity: 1;
    }
}

@-webkit-keyframes hoverIn {
    0% {
        opacity: 0;
    }    
    100% {
        opacity: 1;
    }
}

@keyframes hoverOut {
    0% {
        opacity: 1;
    }
    50%{
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@-moz-keyframes hoverOut {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

@-webkit-keyframes hoverOut {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
} */

#overview .overview-wrapper .overview-interactive-box .interactive-item:not(:hover) .interactive-item-text {
    opacity: 1;
    transform: scale(1);
    transition-delay: 0.3s;
}

#overview .overview-wrapper .overview-interactive-box .interactive-item .interactive-item-img {
    object-fit: cover;
}

/* ###### End Section overview ###### */


/* ###### Section advisory ###### */
#advisory {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(0, 50, 51, 0.95) 0%, rgba(0, 50, 51, 0.75) 69.72%, rgba(0, 50, 51, 0.35) 100%);
}

#advisory .advisory-vdo-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

#advisory .sc-inner {
    padding: 130px 0;
}

@media screen and (max-width: 767px) {
    #advisory .sc-inner {
        padding: 80px 0;
    }
}

#advisory .advisory-wrapper {
    display: grid;
    grid-template-columns: minmax(200px, 520px) minmax(380px, 1fr);
    gap: 200px;
}

@media screen and (max-width: 1100px) {
    #advisory .advisory-wrapper {
        gap: 100px;
    }
}

@media screen and (max-width: 767px) {
    #advisory .advisory-wrapper {
        display: flex;
        flex-direction: column;
        gap: 80px;
    }
}

#advisory .advisory-wrapper .advisory-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

@media screen and (max-width: 767px) {
    #advisory .advisory-wrapper .advisory-content {
        gap: 32px;
    }
}

#advisory .advisory-wrapper .advisory-content .advisory-content-text {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

@media screen and (max-width: 767px) {
    #advisory .advisory-wrapper .advisory-content .advisory-content-text {
        gap: 16px;
    }
}

#advisory .advisory-wrapper .advisory-content .advisory-content-text .advisory-content-text-title {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

#advisory .advisory-wrapper .advisory-content .advisory-content-text .advisory-content-text-title .advisory-content-text-title-logo img {
    max-height: 40px;
    width: auto;
}

@media screen and (max-width: 767px) {
    #advisory .advisory-wrapper .advisory-img {
        display: flex;
        justify-content: center;
    }
}

#advisory .advisory-wrapper .advisory-img img {
    max-width: 440px;
    border-radius: 50%;
}

@media screen and (max-width: 767px) {
    #advisory .advisory-wrapper .advisory-img img {
        max-width: 312px;
    }
}

/* ###### End Section advisory ###### */


/* ###### Section climate video ###### */
#climate {
    position: relative;
    overflow: hidden;
}

#climate .container {
    max-width: unset;
    padding: 0;
}

#climate .sc-inner {
    padding: 0;
}

@media screen and (max-width: 767px) {
    #climate .climate-wrapper {
        display: flex;
        flex-direction: column-reverse;
    }
}

#climate .climate-wrapper .climate-vdo {
    background: linear-gradient(180deg, #808080 2%, rgba(128, 128, 128, 0.5) 100%);
    transition: all 0.3s ease;
}

@media screen and (min-width: 1200px) {
    #climate .climate-wrapper .climate-vdo {
        min-height: calc(100svh - 120px);
        /* max-height: calc(100svh - 120px); */
    }
}
@media screen and (max-width: 767px) {
    #climate .climate-wrapper .climate-vdo {
        position: relative;
    }
}

#climate .climate-wrapper .climate-vdo video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: -1;
    display: block;
}

#climate .climate-wrapper .climate-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media screen and (max-width: 767px) {
    #climate .climate-wrapper .climate-content {
        position: relative;
        background-color: #808080;
        padding: 80px 24px 40px;
    }
}

#climate .climate-wrapper .climate-content .climate-content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    max-width: 900px;
    transition: opacity 0.2s ease;
}

@media screen and (max-width: 767px) {
    #climate .climate-wrapper .climate-content .climate-content-wrapper {
        text-align: center;
        opacity: 1 !important;
    }
}

#climate .climate-wrapper .climate-content .climate-content-title {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#climate .climate-wrapper .climate-content .climate-content-title .climate-content-title-logo {
    max-height: 50px;
    width: auto;
}

@media screen and (max-width: 767px) {
    #climate .climate-wrapper .climate-content .climate-content-title .climate-content-title-logo {
        max-height: 40px;
        width: auto;
    }
}

#climate .climate-wrapper .climate-content .content-playbtn {
    cursor: pointer;
}

@media screen and (max-width: 767px) {
    #climate .climate-wrapper .climate-content .content-playbtn {
        position: absolute;
        bottom: 0;
    }
}

#climate .climate-wrapper .climate-content .content-playbtn img {
    max-height: 72px;
    width: auto;
}

#climate .climate-wrapper .climate-vdo .content-pausebtn {
    position: absolute;
    bottom: 20px;
    left: 20px;
    opacity: 0;
    z-index: 1;
    transition: all 0.3s ease;
    cursor: pointer;
}

@media screen and (max-width: 767px) {
    #climate .climate-wrapper .climate-vdo .content-pausebtn {
        bottom: 0px;
        left: 0px;
        /* display: none; */
    }
}

#climate .climate-wrapper .climate-vdo .content-playbtn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    transition: all 0.3s ease;
    cursor: pointer;
}

#climate .climate-wrapper .climate-vdo .content-pausebtn img,
#climate .climate-wrapper .climate-vdo .content-playbtn img {
    max-height: 72px;
    width: auto;
}

/* ###### End Section climate video ###### */