:root {  
    --home-content-width: min(100%, 1440px);
    --home-title: 30px;
    --home-subtitle: 18px;
    --home-title-weight: 500;
    --home-subtitle-weight: 600;
    --home-color-1: #F4F4F4;
    --home-btn: 16px;
    --home-line-height: 1.67;
}
@media screen and (min-width: 1200px) {
    :root {  
        --home-title: 48px;
        --home-subtitle: 24px;
    }
}

section {
    position: relative;
    padding: 60px 0;
}
.home .section-content {
    width: min(100%, var(--max-width));
    margin: 0 auto;
    padding: 0 var(--main-padding);
}
.home .inner-content {
    width: var(--home-content-width);
    margin: 0 auto;
}
.home-title {
    font-size: var(--home-title);
    font-weight: var(--home-title-weight);
    color: var(--theme-color-2);
}
.home-subtitle {
    font-size: var(--home-subtitle);
    font-weight: var(--home-subtitle-weight);
    color: var(--theme-color-1);
}
.home .btn-readmore {
    display: inline-block;
    padding: 15px 20px;
    line-height: 1;
    font-size: var(--home-btn);
    font-weight: 500;
    text-align: center;
    border-radius: 40px;
    background-color: #fff;
    min-width: 180px;
    transition: 0.3s;
}
.home .btn-readmore:hover {
    transform: translateY(-5px);
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.3);
}
.home .slick-dots {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 40px;
}
.home .slick-dots button {
    border: none;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    padding: 0;
    background-color: #7D7D7D;
    color: transparent;
    cursor: pointer;
    transition: 0.3s;
}
.home .slick-dots .slick-active button, .homeSlider .slick-dots button:hover {
    background-color: var(--theme-color-1);
}

/*** Banner ***/
.homeBanner {
    margin-top: var(--header-height);
    padding: 0;
    width: 100%;
    margin-bottom: 20px;
}
.homeBanner .banner-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}
.homeBanner .banner {
    position: relative;
    width: 100%;
    height: auto;
}
.homeBanner .banner-img {
    width: 100%;
    aspect-ratio: 1.5;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.homeBanner .banner-content {
    position: relative;
    padding: 30px 40px 80px;
}

.homeBanner .banner2 .banner-content .text{
    width: auto;
}
.homeBanner .banner2 .banner-content .btn-wrapper{
    text-align: center;
}

.homeBanner .subTitle {
    font-size: 20px;
    font-weight: 500;
    color: var(--theme-color-1);
    margin-bottom: 20px;
}
.homeBanner .title {
    font-size: 40px;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    letter-spacing: -1.5px;
    margin-bottom: 20px;
}
.homeBanner p {
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    line-height: 1.5;
    margin-bottom: 40px;
}
.homeBanner .btn-readmore {
    background-color: var(--theme-color-1);
    color: #fff;
}
.homeBanner .slick-list, .homeBanner .slick-track {
    height: 100%;
    display: flex;
    align-items: stretch;
}
.homeBanner .slick-dots {
    position: absolute;
    bottom: 30px;
    left: 40px;
}
.homeBanner .banner1 {
    background-color: #514B35;
}
.homeBanner .banner1 .banner-img {
    background-image: url(../images/home2/home_banner.jpg);
}
.homeBanner .banner2 {
    background-color: #010911;
}
.homeBanner .banner2 .banner-img {
    background-image: url(../images/home2/home_banner2.jpg);
}
.homeBanner .banner3 {
    background-color: #C7AB7C;
}
.homeBanner .banner3 .banner-img {
    background-image: url(../images/home2/home_banner3.jpg);
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
    .homeBanner {
        height: calc(min(100vh, 1080px) - var(--header-height));
    }
    .homeBanner .banner-img {
        aspect-ratio: auto;
        height: 100%;
        /*background-size: auto 100%;*/
        background-size: cover;
        position: absolute;
        top: 0;
        left: 0;
    }
    .homeBanner .banner-content {
        padding: 40px 80px;
        height: 100%;
        display: flex;
        align-items: center;
    }
    .homeBanner .text {
        width: 40%;
    }
    .homeBanner .slick-dots {
        left: max(calc((100% - var(--home-content-width)) / 2), 80px);
        bottom: 100px;
    }
    .homeBanner .banner1 .banner-img {
        background-image: url(../images/home2/home_banner.jpg);
    }
    .homeBanner .banner2 .banner-img {
        background-image: url(../images/home2/home_banner2.jpg);
    }
    .homeBanner .banner3 .banner-img {
        background-image: url(../images/home2/home_banner3.jpg);
    }

    .homeBanner .banner2 .banner-content {
        position:absolute;
        height: auto;
        display: block;
        align-items: center;
        bottom: 15%;
        width: 100%;
    }
    
}
@media screen and (min-width: 1200px) {
    .homeBanner .subTitle {
        font-size: 24px;
    }
    .homeBanner .title {
        font-size: 70px;
    }
    .homeBanner p {
        font-size: 20px;
    }
}
@media screen and (min-width: 1500px) {
    .homeBanner .title {
        font-size: 70px;
    }
}

/*** News ***/
.homeNews {
    text-align: center;
}
.homeNews .item-wrapper {
    /* display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px; */
    margin: 50px -5px;
}
.homeNews .item-wrapper .slick-track {
    display: flex;
}
.homeNews .item {
    background-color: var(--home-color-1);
    border-radius: 30px;
    padding: 20px;
    margin: 0 5px;
    display: grid;
    justify-items: center;
    align-content: baseline;
    height: inherit;
    min-height: 280px;
}
.homeNews .date {
    font-weight: 600;
    line-height: 1;
    background-color: var(--theme-color-1);
    color: #fff;
    width: 60px;
    aspect-ratio: 1;
    display: grid;
    place-content: center;
    text-align: center;
    border-radius: 50%;
}
.homeNews.theme2 .date {
    border-radius: 20px;
}
.homeNews .month {
    font-size: 13px;
    text-transform: uppercase;
}
.homeNews .day {
    font-size: 24px;
}
.homeNews .caption {
    font-size: 18px;
    font-weight: 500;
    color: var(--theme-color-2);
    margin: 15px 0 10px;
    white-space: nowrap;
    overflow: hidden;
}
.homeNews .title {
    font-size: 16px;
    color: var(--theme-color-3);
    text-align: left;
    line-height: var(--home-line-height);
}
.homeNews .title a {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    line-clamp: 4;
    overflow: hidden;
    transition: 0.3s;
}
.homeNews .title a:hover {
    color: var(--theme-color-1);
}
@media screen and (min-width: 768px) {
    .homeNews .item {
        border-radius: 50px;
        padding: 30px;
    }
}
@media screen and (min-width: 1024px) {
    /* .homeNews .item-wrapper {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    } */
    .homeNews .item-wrapper {
        margin-left: -10px;
        margin-right: -10px;
    }
    .homeNews .item {
        border-radius: 50px;
        padding: 50px 40px;
        margin: 0 10px;
    }
}
@media screen and (min-width: 1200px) {
    .homeNews .day {
        font-size: 30px;
    }
    .homeNews .caption {
        font-size: 24px;
    }
}

/*** Stockquote ***/
.homeStockquote {
    background-color: #F4F4F4;
    text-align: center;
}
.homeStockquote .stockquote-wrapper {
    width: min(100%, 1220px);
    margin: 0 auto;
    padding: 0 10px;
}
.homeStockquote .iframe-wrapper {
    margin-top: 30px;
}
.homeStockquote .iframe {
    width: 100%;
}

/*** Corporate Video ***/
.homeCorpVideo .corpvideo-wrapper {
    position: relative;
    padding: 0 20px 30px;
}
.homeCorpVideo .corpvideo-wrapper:before {
    content: '';
    width: min(100%, 1820px);
    height: calc(100% - 40px);
    background-color: var(--theme-color-1);
    border-radius: 30px;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
}
.homeCorpVideo .video-wrapper {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    /*padding: 25px 0;*/
    padding: 13px;
}
.homeCorpVideo .video-wrapper video {
    border-radius: 10px;
}
.homeCorpVideo .video-wrapper:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: url(../images/home2/home_video.jpg);
    background-size: cover;
    background-position: center;
    z-index: -1;
    filter: blur(10px);
    transform: scale(1.03);
}
.homeCorpVideo .overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    display: grid;
    place-content: center;
    top: 0;
    left: 0;
    transition: 0.3s;
}
.homeCorpVideo .overlay:has(.icon-play:hover) {
    background: rgba(0, 0, 0, 0.2);
}
.homeCorpVideo .icon-play {
    width: 80px;
    aspect-ratio: 1;
    border-radius: 50%;
    background-image: url(../images/home2/icon_play.svg);
    background-repeat: no-repeat;
    background-size: contain;
    cursor: pointer;
    transition: 0.3s;
}
.homeCorpVideo .icon-play:hover {
    transform: scale(1.1);
}
.homeCorpVideo video {
    display: block
}
.homeCorpVideo .text {
    width: 85%;
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    margin: 15px auto 0;
}
@media screen and (min-width: 768px) {
    .homeCorpVideo .corpvideo-wrapper:before {
        border-radius: 40px;
    }
    .homeCorpVideo .video-wrapper {
        border-radius: 40px;
        /*padding: 35px 0;*/
        padding: 17px;
    }
    .homeCorpVideo .icon-play {
        width: 160px;
    }
}
@media screen and (min-width: 1024px) {
    .homeCorpVideo .corpvideo-wrapper {
        padding: 0 30px 55px;
    }
    .homeCorpVideo .corpvideo-wrapper:before {
        border-radius: 70px;
    }
    .homeCorpVideo .video-wrapper {
        border-radius: 70px;
        /*padding: 65px 0;*/
        padding: 32px;
    }
    .homeCorpVideo .text {
        font-size: 20px;
        margin: 35px auto 0;
    }
}

/*** Profile ***/
.homeProfile {
    margin-bottom: 30px;
}
.homeProfile .text-wrapper {
    padding: 0 20px;
    margin-bottom: 30px;
}
.homeProfile .desc {
    color: var(--theme-color-3);
    line-height: var(--home-line-height);
    margin-top: 30px;
}
.homeProfile .btn-readmore {
    display: inline-block;
    padding: 15px 20px;
    line-height: 1;
    font-size: var(--home-btn);
    font-weight: 500;
    text-align: center;
    border-radius: 40px;
    background-color: #fff;
    min-width: 180px;
    transition: 0.3s;
}
.homeProfile .btn-readmore:hover {
    transform: translateY(-5px);
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.3);
}
.homeProfile .btn-readmore {
    background-color: var(--theme-color-1);
    color: #fff;
}

@media screen and (min-width: 1024px) {
    .homeProfile .inner-content {
        display: flex;
        align-items: center;
    }
    .homeProfile .img-wrapper {
        flex-shrink: 0;
        width: calc(min(100vw, var(--max-width)) * 0.57);
        margin-right: calc((min(100vw, var(--max-width)) - 100%) / -2);
    }
    .homeProfile .img {
        clip-path: polygon(15% 0, 0 100%, 100% 100%, 100% 0);
    }
    .homeProfile .img img {
        width: 100%;
    }
    .homeProfile .text-wrapper {
        padding: 0 40px;
        margin-bottom: 0;
    }
}

/*** Financial Highlights ***/
.homeFinancial {
    padding: 80px 0;
    background-color: var(--theme-color-2);
    text-align: center;
}
.homeFinancial .home-title {
    color: #fff;
}
.homeFinancial .data-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin-top: 50px;
    margin-bottom: 50px;
    column-gap: 20px;
}
.homeFinancial .data-wrapper .item {
    background-color: #fff;
    padding: 30px 20px;
    border-radius: 30px;
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 4;
    gap: 0;
    justify-items: center;
    align-items: center;
    color: var(--theme-color-2);
    margin-bottom: 20px;
}
.homeFinancial .icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 20px;
    background-color: var(--theme-color-1);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 60%;
}
.homeFinancial .icon-operating {
    background-image: url(../images/home2/icon_financial1.svg);
}
.homeFinancial .icon-service {
    background-image: url(../images/home2/icon_financial2.svg);
}
.homeFinancial .icon-net {
    background-image: url(../images/home2/icon_financial3.svg);
}
.homeFinancial .icon-eps {
    background-image: url(../images/home2/icon_financial4.svg);
}
.homeFinancial .caption {
    font-size: 16px;
}
.homeFinancial .value {
    font-size: 30px;
    font-weight: 600;
}
.homeFinancial .value .counter {
    visibility: hidden;
}
@media screen and (min-width: 768px) {
    .homeFinancial .data-wrapper {
        grid-template-columns: repeat(4, 1fr);
        column-gap: 20px;
    }
}
@media screen and (min-width: 1200px) {
    .homeFinancial .data-wrapper {
        column-gap: 40px;
    }
    .homeFinancial .data-wrapper .item {
        padding: 60px 20px;
        border-radius: 50px;
    }
    .homeFinancial .icon {
        width: 100px;
        height: 100px;
    }
    .homeFinancial .value {
        font-size: 46px;
    }
}

/*** Directors ***/
.homeSlider {
    background-color: var(--home-color-1);
    text-align: center;
}
.homeSlider .item-wrapper {
    margin: 50px 0;
}
.homeSlider .item {
    width: calc(min(100vw, 1440px) * 0.4);
    background-color: #fff;
    padding: 30px;
    border-radius: 50px;
    margin: 0 10px;
}
.homeSlider .photo {
    margin-bottom: 15px;
}
.photo.circle > img{
    border-radius: 50%;
}
.homeSlider .name {
    font-size: 20px;
    font-weight: 500;
    color: var(--theme-color-2);
    margin-bottom: 5px;
}
.homeSlider .title {
    font-size: 16px;
    font-weight: 500;
    color: var(--theme-color-1);
    margin-bottom: 20px;
}
.homeSlider .desc {
    font-size: 16px;
    color: var(--theme-color-3);
    line-height: 1.5;
    margin-bottom: 20px;
}
.homeSlider .slick-list {
    overflow: visible;
}
@media screen and (min-width: 768px) {
    .homeSlider .item-wrapper.infinite {
        padding-right: 15%;
    }
    .homeSlider .name {
        font-size: 24px;
    }
    .homeSlider .item {
        padding: 70px 50px;
        margin: 0 20px;
    }
}
@media screen and (min-width: 1024px) {
    .homeSlider .item-wrapper.infinite {
        padding-right: 13%;
    }
}
@media screen and (min-width: 1200px) {
    .homeSlider .desc {
        font-size: 20px;
    }
}

/*** Report ***/
.homeReport {
    padding-top: 0;
    padding-bottom: 0;
    /* background-color: var(--home-color-1); */
}
.homeReport .report-wrapper {
    position: relative;
    margin: 0 calc(var(--main-padding) * -1);
}
.homeReport .report-wrapper:after {
    content: '';
    width: 100vw;
    height: 100%;
    background-color: var(--theme-color-1);
    position: absolute;
    left: calc((100vw - 100%) / -2);
    bottom: 0;
}
.homeReport .cover {
    width: 100%;
    padding: 40px 0;
    background-image: url(../images/home2/home_report_bg.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    margin-bottom: 0;
}
.homeReport .img {
    position: relative;
    filter: drop-shadow(10px -10px 99px rgba(0, 0 , 0, 0.16));
    z-index: 1;
}
.homeReport img {
    width: min(85%, 250px);
}
.homeReport .text {
    position: relative;
    padding: 40px 20%;
    z-index: 1;
}
.homeReport .home-subtitle {
    font-size: 20px;
    font-weight: 500;
    color: #fff;
}
.homeReport .home-title {
    /* font-size: 30px; */
    color: #fff;
    margin-bottom: 30px;
}
@media screen and (min-width: 768px) {
    .homeReport:after {
        content: '';
        width: 100vw;
        height: 56px;
        background-color: var(--footer-bg-color);
        position: absolute;
        bottom: 0;
    }
    .homeReport .section-content {
        padding-top: 56px;
        padding-bottom: 56px;
    }
    .homeReport .report-wrapper {
        display: grid;
        grid-template-columns: 1fr 1fr;
        align-items: center;
        height: 350px;
    }
    .homeReport .img {
        width: 100%;
        height: 100%;
    }
    .homeReport .cover {
        position: absolute;
        width: 110%;
        height: 128%;
        clip-path: polygon(0 0, 0 100%, 85% 100%, 100% 0);
        top: 50%;
        transform: translateY(-50%);
        display: flex;
        align-items: center;
    }
    .homeReport img {
        width: auto;
        height: 100%;
    }
    .homeReport .home-subtitle {
        font-size: 20px;
    }
}
@media screen and (min-width: 1024px) {
    .homeReport .home-subtitle {
        font-size: 24px;
    }
    /* .homeReport .home-title {
        font-size: 40px;
    } */
}
@media screen and (min-width: 1200px) {
    .homeReport .report-wrapper {
        height: 400px;
    }
} 
@media screen and (min-width: 1600px) {
    .homeReport:after {
        height: 70px;
    }
    .homeReport .section-content {
        padding-top: 70px;
        padding-bottom: 70px;
    }
    .homeReport .report-wrapper {
        height: 500px;
    }
    /* .homeReport .home-title {
        font-size: 60px;
    } */
}



/*** Animation ***/
.home-subtitle, .home-title {
    opacity: 0;
}

.homeBanner .banner-img, .homeBanner .banner-content {
    opacity: 0;
}
.homeBanner .slick-initialized .slick-active .banner-img {
    animation: fadeIn 0.5s 0.3s both;
}
.homeBanner .slick-initialized .slick-active .banner-content {
    animation: slideRight 0.5s 0.8s both;
}

.homeStockquote .iframe-wrapper {
    opacity: 0;
}
.homeStockquote.act .home-title, .homeStockquote.act .home-subtitle {
    animation: slideUp 0.5s both;
}
.homeStockquote.act .iframe-wrapper {
    animation: fadeIn 0.5s 0.5s both;
}

.homeNews .item-wrapper {
    opacity: 0;
}
.homeNews.act .home-title, .homeNews.act .home-subtitle {
    animation: slideUp 0.5s both;
}
.homeNews.act .item-wrapper {
    animation: fadeIn 0.5s 0.5s both;
}

.homeCorpVideo .corpvideo-wrapper, .homeCorpVideo .text {
    opacity: 0;
}
.homeCorpVideo.act .corpvideo-wrapper {
    animation: slideUp 0.5s both;
}
.homeCorpVideo.act .text {
    animation: slideUp 0.5s 0.3s both;
}

.homeProfile .img-wrapper, .homeProfile .desc {
    opacity: 0;
}
.homeProfile.act .img-wrapper {
    animation: slideLeft 0.5s both;
}
.homeProfile.act .home-title, .homeProfile.act .home-subtitle, .homeProfile.act .desc {
    animation: slideRight 0.5s 0.3s both;
}

.homeFinancial .data-wrapper, .homeFinancial .btn-wrapper {
    opacity: 0;
}
.homeFinancial.act .home-title, .homeFinancial.act .home-subtitle {
    animation: fadeIn 0.5s both;
}
.homeFinancial.act .data-wrapper {
    animation: slideUp 0.5s 0.5s both;
}
.homeFinancial.act .btn-wrapper {
    animation: slideUp 0.5s 0.8s both;
}

.homeSlider .item-wrapper {
    opacity: 0;
}
.homeSlider.act .home-title, .homeSlider.act .home-subtitle {
    animation: fadeIn 0.5s both;
}
.homeSlider.act .item-wrapper {
    animation: slideUp 0.5s 0.5s both;
}

.homeReport .img, .homeReport .btn-wrapper {
    opacity: 0;
}
.homeReport.act .img {
    animation: slideRight 0.5s both;
}
.homeReport.act .btn-wrapper, .homeReport.act .home-title, .homeReport.act .home-subtitle {
    animation: slideLeft 0.5s 0.3s both;
}

@keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}
@keyframes slideUp {
    0% { opacity: 0; transform: translate3d(0, 100px, 0); }
    100% { opacity: 1; transform: translate3d(0, 0, 0); }
}
@keyframes slideRight {
    0% { opacity: 0; transform: translate3d(-100px, 0, 0); }
    100% { opacity: 1; transform: translate3d(0, 0, 0); }
}
@keyframes slideLeft {
    0% { opacity: 0; transform: translate3d(100px, 0, 0); }
    100% { opacity: 1; transform: translate3d(0, 0, 0); }
}