:root {
    --primary-color: #1D1F4D;
    --article-color: color: rgba(0, 0, 0, 0.70);
    --primary-font: "manop-variable",sans-serif;
    --font-variation-body: "wdth" 100, "wght" 400;
    --font-variation-heading: "wdth" 100, "wght" 572;
    --font-variation-heading-h2: "wdth" 50, "wght" 572;
    --transition-links: all .3s ease-in-out;
    --transition-hover-img: all .6s;
}
*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}
html {
    font-family: sans-serif;
    /* font-size: 10px; */
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
body {
    margin: 0;
    padding: 0;
    font-family: var(--primary-font);
    font-variation-settings: var(--font-variation-body);
    font-size: 16px;
    font-weight: normal;
    line-height: 1.6;
    color: #626262;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
article,
aside,
picture,
footer,
header,
main,
menu,
nav,
section { display: block;}
audio,
canvas,
video { display: inline-block; vertical-align: baseline;}
select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-transition: border-color ease-in-out .2s;
    -o-transition: border-color ease-in-out .2s;
    transition: border-color ease-in-out .2s;
}
textarea, input[type="text"], input[type="button"], input[type="submit"], input[type="email"] {
    -webkit-appearance: none;
    border-radius: 0;
}
picture {
    background-color: transparent;
}
.nowrap {
    display: inline-block;
    text-decoration: inherit;
    white-space: nowrap;
}
.txt-xs {
    font-size: 14px!important;
}
textarea { resize: vertical;}
button:focus,
textarea,
button, fieldset { outline: 0;}
fieldset {
    border: 0;
    padding: 0;
    margin: 0;
}
button:focus { outline: 0;}
input:focus { outline:0;}
input:-webkit-autofill, textarea:-webkit-autofill, select:-webkit-autofill { background-color: transparent;}
input[type="search"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
img {
    border: 0;
    max-width: 100%;
    vertical-align: middle;
}
a {
    color: inherit;
    text-decoration: none;
    transition: color ease-in-out .2s;
}
a:hover,
a:focus {
    color: inherit;
    text-decoration:none;
}
a:focus {
    outline: 0;
    outline-offset: 0;
}
p { 
    margin: 0; 
    padding: 0; 
    line-height: 1.6;
}

a[href^=tel] { 
    outline: none;
    text-decoration: none;
    color: inherit;
    white-space: nowrap;
}
.ic {
    display: inline-block;
    vertical-align: middle;
}
ul, ol, li {
    margin: 0;
    padding: 0;
}
strong, .strong, b {
    font-variation-settings: var(--font-variation-heading);
    font-weight: normal;
}
.c-white { color: #FFF!important;}
.a-center { text-align: center;}
.a-right { text-align: right;}

.container {
    width: 100%;
    padding-right: 20px;
    padding-left: 20px;
    margin-right: auto;
    margin-left: auto;
}
/* Main */
h1, h2, h3, h4 {
    margin: 0;
    padding: 0;
    font-family: var(--primary-font);
    font-variation-settings: var(--font-variation-heading);
    text-transform: uppercase;
}
h1 {
    font-family: var(--primary-font);
    font-variation-settings: var(--font-variation-heading);
}
h2 {
    font-family: var(--primary-font);
    font-variation-settings: var(--font-variation-heading-h2);
    color: var(--primary-color);
    font-size: 40px !important;
    line-height: 1;
}
.headline {
    margin-bottom: 40px;
}
.headline p {
    line-height: 1.8;
}
.headline.flexbox {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.headline.md {
    margin-bottom: 20px;
}
.container {
    padding-left: 20px;
    padding-right: 20px;
}
.section {
    padding-top: 70px;
    padding-bottom: 70px;
}
.nopadding-bottom {
    padding-bottom: 0;
}
.text-link {
    position: relative;
    display: inline-flex;
    gap: 6px;
    align-items: center;
    color: #FFF;
    font-family: var(--primary-font);
    font-variation-settings: var(--font-variation-heading-h2);
    font-size: 18px;
    line-height: 1.6;
    text-transform: uppercase;
}
.text-link:hover {
    color: #FFF;
}
.text-link:after {
    content: '';
    width: 0;
    height: 1.5px;
    opacity: 0;
    position: absolute;
    left: 0;
    bottom: 0;
    background-color: #FFF;
    transition: var(--transition-links);
}
.text-link:hover:after {
    width: 100%;
    opacity: 1;
}
.link-underline {
    white-space: nowrap;
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary-color);
    font-family: var(--primary-font);
    font-variation-settings: var(--font-variation-heading-h2);
    font-size: 18px;
    line-height: 1.6;
    text-transform: uppercase;
}
.link-underline:hover {
    color: #000;
}
.link-underline:after {
    content: '';
    width: 100%;
    height: 1.5px;
    opacity: 1;
    position: absolute;
    left: 0;
    bottom: 0;
    background-color: var(--primary-color);
    transition: var(--transition-links);
}
.link-underline:hover:after {
    width: 0;
    opacity: 0;
}
.link-underline.c-white {
    color: #FFF;
}
.link-underline.c-white:after  {
    background: #FFF;
}
.img-cover {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    display: block;
}
.bg-responsive {
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

/* Pano */
.section-pano {
    position: relative;
    height: 100svh;
    z-index: 701;
    overflow: hidden;
}
.section-pano:after {
    content:'';
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 702;
    pointer-events: none;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.10) 0%, rgba(0, 0, 0, 0.10) 100%), linear-gradient(0deg, rgba(0, 0, 0, 0.00) 83.77%, rgba(0, 0, 0, 0.50) 92.58%);}
.section-pano .pano-caption {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 703;
    display: grid;
    grid-gap: 16px;
    padding: 0 20px;
    align-items: center;
    align-content: center;
    text-align: center;
    color: #FFF;
    font-size: 20px;
    line-height: 1.4;
}
.section-pano .pano-caption h1 {
    font-family: var(--primary-font);
    font-variation-settings: var(--font-variation-heading);
    font-size: 12vw;
    line-height: 1;
}
.section-pano .pano-caption p {
    font-family: var(--primary-font);
    font-variation-settings: var(--font-variation-heading-h2);
    font-size: 20px;
    line-height: 1;
    text-transform: uppercase;
}
.section-pano .pano-caption .desc {
    text-align: center;
    font-family: var(--primary-font);
    font-variation-settings: var(--font-variation-heading);
    font-size: 16px;
    line-height: 1.4;
}
.section-pano .action-links {
    margin-top: 100px;
}
.section-pano .video-cover {
    position: relative;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}
.section-pano .video-cover:after {
    content:'';
    display: flex;
    position: relative;
    padding-top: 56.25%;
}
.section-pano .video-cover video {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: -1;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    pointer-events: none;
    transform: none;
    -webkit-transform: none
}

/* Mission Vision  */
.section-mission-vision {
    position: relative;
    height: 202vw;
    padding: 80px 0;
}
.section-mission-vision:after {
    content:'';
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 700;
    pointer-events: none;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.10) 0%, rgba(0, 0, 0, 0.10) 100%), linear-gradient(0deg, rgba(0, 0, 0, 0.00) 83.77%, rgba(0, 0, 0, 0.50) 92.58%);
}
.section-mission-vision .headline {
    display: grid;
    grid-gap: 12px;
}
.section-mission-vision .headline h2 {
     color: #FFF;
}
.section-mission-vision .headline p {
    color: #FFF;
    font-family: var(--primary-font);
    font-variation-settings: var(--font-variation-heading);
    font-size: 20px;
    line-height: 1.4;
}
.section-mission-vision .block-content {
    position: relative;
    max-width: 525px;
    z-index: 701;
    display: grid;
    grid-gap: 40px;
    font-family: var(--primary-font);
     font-variation-settings: var(--font-variation-body);
    font-size: 16px;
    line-height: 1.6;
    color: #FFF;
}
.section-mission-vision .group-content {
    display: grid;
    grid-gap: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.30);
}
.section-mission-vision .group-content:last-of-type {
    border-bottom: none;
}
.section-mission-vision .block-content h3 {
    font-family: var(--primary-font);
    font-variation-settings: var(--font-variation-heading-h2);
    font-size: 24px;
    color: #FFF;
}


.card-technology {
    position: relative;
    padding: 0 4px;
}
.card-technology strong {
    font-family: var(--primary-font);
    font-variation-settings: var(--font-variation-heading);
}
.card-technology h3 {
    font-family: var(--primary-font);
     font-variation-settings: var(--font-variation-body);
    color: #000;
    font-size: 14px;
    line-height: 1.6;
    text-transform: uppercase;
}
.card-technology .box-img {
    overflow: hidden;
}
.card-technology .box-img img {
    width: 100%;
}
.card-technology .box-caption {
    padding-top: 10px;
}
.slide-technology-item {
    position: relative;
    overflow: hidden;
}
.slide-technology-item .slick-arrow {
    position: absolute;
    top: 0;
    width: 42px;
    height: calc(100% - 90px);
    text-indent: -99999px;
    z-index: 200;
    background: transparent;
    border: 0;
    padding: 0;
    cursor: pointer;
}
.slide-technology-item .slick-arrow:after {
    content:'';
     width: 42px;
    height: 42px;
    display: block;
    border-radius: 50%;
    border: 1.334px solid rgba(255, 255, 255, 0.30);
    background-color: rgba(255, 255, 255, 0.30);
    backdrop-filter: blur(27px);
    background-image: url(assets/img/icon/arrow-select.svg);
    background-position: center;
    background-repeat: no-repeat;
}
.slide-technology-item .slick-prev {
    left: 40px;
}
.slide-technology-item .slick-prev:after {
    transform: rotate(-90deg);
}
.slide-technology-item .slick-next {
    right: 40px;
}
.slide-technology-item .slick-next:after {
    transform: rotate(90deg);
}

/* Swiper */
.swiper-pagination.is-relative {
    position: relative;
    top: 0!important;
    bottom: 0!important;
    margin-top: 30px;
    z-index: 1000;
    text-align: right;
    justify-content: flex-end;
}
.swiper-pagination.is-flex-end {
    justify-content: flex-end;
}

/* Tab */
.content-tab {
    display: none;
     -webkit-animation: fadeinout 0.6s ease-in;
    animation: fadeinout 0.6s ease-in;
}
.content-tab.current {
    display: block;
     -webkit-animation: fadeinout 0.6s ease-in;
    animation: fadeinout 0.6s ease-in;
}

/* Brand */
.section.section-brand-info {
    padding-bottom: 35px;
    position: relative;
    z-index: 5;
}
.section-brand-info .logo-brand {
    text-align: center;
    margin-bottom: 60px;
}

.section-brand-info .logo-brand img{
    margin: 0 auto;
}


.section-brand-info .tab-list {
    margin: 0 0 30px 0;
    padding: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px;
    /* justify-content: space-between; */
    line-height: 1;
    text-transform: uppercase;
}
.section-brand-info .tab-list li {
    position: relative;
    list-style: none;
    cursor: pointer;
    color: rgba(29, 31, 77, 0.60);
    font-family: var(--primary-font);
    font-variation-settings: var(--font-variation-heading-h2);
    font-size: 20px;
}
.section-brand-info .tab-list li:after {
    content:'';
    width: 100%;
    height: 2px;
    position: absolute;
    bottom: -3px;
    left: 0;
    opacity: 0;
    transform: translateY(6px);
    background: #1D1F4D;
    transition: all 0.3s ease;
}
.section-brand-info .tab-list li.current {
    color: var(--primary-color);
}
.section-brand-info .tab-list li.current:after {
    opacity: 1;
    transform: translateY(1px);
    transition: all 0.3s ease;
}
.section-brand-model {
    position: relative;
    overflow: hidden;
    z-index: 800;
    height: calc(100vh - 60px);
}
.section-brand-model:after {
    content:'';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 100;
    pointer-events: none;
    background: rgb(0 0 0 / 10%);
}
.section-brand-model .img-cover {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    z-index: 100;
}
.section-brand-model .block-content {
    position: relative;
    z-index: 200;
    display: grid;
    align-items: center;
    text-align: center;
    height: 100%;
    align-content: space-between;
}
.section-brand-model .block-content h2 {
    color: #FFF;
}
.section-brand-model .action-links {
    display: flex;
    gap: 100px;
    align-items: center;
    justify-content: center;
}

/* Review */
.section-review {
    position: relative;
    overflow: hidden;
}
.card-review {
    position: relative;
    overflow: hidden;
}
.card-review .ic-play {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 100;
    transform: translate(-50%, -50%);
}
.card-review .box-caption {
    padding: 20px;
    position: absolute;
    width: 100%;
    left: 0;
    bottom: 0;
    height: 140px;
    z-index: 200;
}
.card-review .box-caption h3 {
    color: #FFF;
    font-family: var(--primary-font);
    font-variation-settings: var(--font-variation-heading);
    font-size: 16px;
    line-height: 1.5;
}
.card-review .popup-youtube {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 300;
    text-indent: -999999px;
    pointer-events: all;
}
.swiper-review-item .swiper-slide {
    width: 390px;
}
.swiper-review-item .swiper-slide:after {
    content:'';
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 100;
    pointer-events: none;
background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 53.48%, rgba(0, 0, 0, 0.60) 77.2%), linear-gradient(0deg, rgba(0, 0, 0, 0.10) 0%, rgba(0, 0, 0, 0.10) 100%);}
.is-visible {
    overflow: visible;
}
.coverimg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 105;
    pointer-events: none;
}
.parallax-mobile {
    display: none;
} 
.bg-responsive, .bgimg-parallax, .coverimg {
    width: 100%;
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* Jarallax */
.jarallax {
    position: relative;
    z-index: 0;
}
.jarallax-img {
    position: absolute;
    object-fit: cover;
    font-family: 'object-fit: cover;';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.section-master-brand-pano {
    position: relative;
    height: 100svh;
    z-index: 900;
    overflow: hidden;
}
.swiper-master-brand-pano:after {
    content:'';
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    pointer-events: none;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.18) 0%, rgba(0, 0, 0, 0.18) 100%), linear-gradient(180deg, rgba(0, 0, 0, 0.00) 65.88%, rgba(0, 0, 0, 0.50) 91.15%), linear-gradient(0deg, rgba(0, 0, 0, 0.00) 74.23%, rgba(0, 0, 0, 0.30) 89.76%);
}
.section-master-brand-pano .video-cover {
    position: relative;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}
.section-master-brand-pano .video-cover video {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: -1;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    pointer-events: none;
}
.swiper-master-brand-pano {
    height: 100%;
}
.section-master-brand-pano .swiper-pagination.pagination-right {
    z-index: 800;
    bottom: 40px;
    right: 20px;
}
.section-master-brand-pano .container {
    position: relative;
}
.section-master-brand-pano .pano-caption {
    position: absolute;
    bottom: 60px;
    /* width: 100%; */
    z-index: 800;
    display: grid;
    grid-gap: 20px;
}
.section-master-brand-pano .pano-caption h3 {
    color: #FFF;
    font-family: var(--primary-font);
    font-variation-settings: var(--font-variation-heading);
    font-size: 20px;
    line-height: 1.3;
    text-transform: uppercase;
}
.section-master-brand-pano .pano-caption p {
    color: #FFF;
    font-family: var(--primary-font);
     font-variation-settings: var(--font-variation-body);
    font-size: 16px;
    line-height: 1.6;
}
.section-master-brand-pano .action-links {
    margin-top: 10px;
}
.section-master-brand-pano .pano-caption.a-center {
    width: 100%;
    left: 0;
}

.parallax-wrap {
    position: relative;
}
.section-brand-parallax {
    position: relative;
    height: 300vh;
    scroll-snap-type: y mandatory;
    overflow-y: scroll;
}
.parallax {
    position: relative;
    height: 100vh;
    scroll-snap-align: start;
    /* background-attachment: fixed; */
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-brand-parallax .img-cover {
    transition: transform 0.2s ease-out;
}
.parallax-wrap .block-content {
    position: absolute;
    top: 250px;
    left: 50%;
    /* transform: translate(-50%,0); */
    z-index: 1;
    width: 100%;
    margin: 0 auto;
    display: grid;
    grid-gap: 20px;
    padding: 0 20px;
    color: #000;  
    align-content: flex-start;
    /* transition: opacity 0.6s ease, transform 0.6s ease; */
}
.parallax-wrap.fixed .block-content {
    position: fixed;
}
.parallax-wrap.fixed .block-content {
  opacity: 1;
  transform: translate(-50%,0);
}
.parallax-wrap:not(.fixed) .block-content {
  opacity: 0;
  transform: translate(-50%,50px);
}
.parallax-wrap .block-content h2 {
    text-align: center;
    line-height: 1.2;
    text-transform: uppercase;
}
.parallax-wrap .block-content p {
    text-align: center;
    font-family: var(--primary-font);
     font-variation-settings: var(--font-variation-body);
    font-size: 16px;
    line-height: 1.7;
}
.parallax-wrap .block-content.is-light { 
    color: #fff; 
}
.parallax-wrap .block-content.is-light h2 {
    color: #fff;
}
.parallax-wrap .block-content.is-dark { 
    color: #000;  
}
.section-exploreour-vehicles {
    position: relative;
    overflow: hidden;
}
.section-exploreour-vehicles .grid-block {
    display: grid;
    align-items: center;
    grid-template-columns: 1fr;
}
.section-exploreour-vehicles .block-content {
    height: 100%;
    display: grid;
    align-items: center;
    align-content: center;
    grid-gap: 38px;
    padding: 60px;
    background: #EEE;
}
.section-exploreour-vehicles .box-content {
    display: grid;
    align-items: flex-start;
    align-content: flex-start;
    grid-gap: 16px;
}
.section-exploreour-vehicles .block-content h3 {
    color: var(--primary-color);
    font-family: var(--primary-font);
    font-variation-settings: var(--font-variation-heading-h2);
    font-size: 24px;
    font-style: normal;
    font-weight: 572;
    line-height: 120%; /* 28.8px */
    text-transform: uppercase;
}
.section-exploreour-vehicles .block-content p {
    color: rgba(0, 0, 0, 0.80);
    font-family: var(--primary-font);
     font-variation-settings: var(--font-variation-body);
    font-size: 16px;
    line-height: 1.7;
}

.section-exploreour-vehicles .swiper-exploreour, .section-exploreour-vehicles .block-slide {
    position: relative;
    overflow: hidden;
}
.swiper-exploreour .swiper-pagination.pagination-right {
    right:  35px;
    left: inherit;
    bottom: 40px;
}
.section-event {
    position: relative;
    overflow: hidden;
}
.card-event {
    position: relative;
    height: 100%;
}
.card-event .box-img:after {
    content:'';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 100;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 50%, rgba(0, 0, 0, 0.80) 71.14%), linear-gradient(0deg, rgba(0, 0, 0, 0.00) 0%, rgba(0, 0, 0, 0.00) 100%);
}
.card-event .box-img {
    height: 100%;
}
.card-event .box-caption {
    position: absolute;
    bottom: 0;
    width: 100%;
    z-index: 400;
    display: grid;
    grid-gap: 16px;
    padding: 24px 24px 40px 24px;
}
.card-event .box-caption h3 {
    color: #FFF;
}
.card-event .box-caption h3 a {
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    overflow: hidden;
    font-size: 18px;
    -webkit-line-clamp: 2;
    max-height: 300px;
    height: 100%;
}
.card-event .box-img picture {
    height: 100%;
}
.card-event .box-img picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.entry-category {
    display: flex;
    gap: 12px;
    white-space: nowrap;
    align-items: center;
    flex-wrap: wrap;
}
.entry-category span {
    padding: 5px 14px;
    color: #FFF;
   font-family: var(--primary-font);
    font-variation-settings: var(--font-variation-heading);
    font-size: 14px;
    font-style: normal;
    line-height: 1.5;
    text-transform: uppercase;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.20);
    backdrop-filter: blur(15px);
}
.entry-date {
    display: flex;
    gap: 10px;
    align-items: center;
    color: #FFF;
    font-family: var(--primary-font);
    font-variation-settings: var(--font-variation-heading-h2);
    font-size: 14px;
    line-height: 1.5;
    text-transform: uppercase;
}
.swiper-event-item  {
    height: 220px;
}
.swiper-event-item .swiper-slide:first-of-type .card-event .box-caption {
    padding: 40px 80px;
}
.swiper-event-item .swiper-slide:first-of-type .card-event .box-caption h3 a {
    font-size: 22px;
}
.swiper-event-item .swiper-slide {
    flex: 0 0 50vw;
    height: 100%;
}
.swiper-event-item .swiper-slide:nth-child(2), .swiper-event-item .swiper-slide:nth-child(3) {
    flex: 0 0 25vw;
}
.swiper-event-item .swiper-slide, .swiper-event-item .swiper-wrapper {
    transform: translate3d(0px, 0, 0);
}

/* Showroom */
.section-showroom {
    position: relative;
    overflow: hidden;
}
.container-showroom-item {
    display: flex;
    align-items: flex-end;
}
.swiper-showroom-item {
    overflow: visible;
}
.swiper-showroom-item .swiper-slide {
    /* height: 440px; */
    display: grid;
    align-items: flex-end;
    z-index: 100;
    transition: all 1s ease-in-out;
}
.swiper-showroom-item .swiper-slide:hover {
    transition: all 1s ease-in-out;
}
.card-showroom {
    position: relative;
    overflow: hidden;
}
.card-showroom .box-img::before {
    content:'';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 100;
    pointer-events: none;
    /* background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 40%, #000 100%); */
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 32.51%, #1D1F4D 71.41%);
    opacity: 0;
        transition: all 0.5s ease-in-out;
}
.card-showroom:hover .box-img:before {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 32.51%, #1D1F4D 71.41%);
    opacity: 1;
    transition: all 0.5s ease-in-out;
}
/* .card-showroom::before {
    content:'';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 100;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 40%, #000 100%);
} */

.card-showroom .box-img{
    width: 100%;
    height: 100%;
}
/* .card-showroom .box-img::after {
    content:'';
    display: block;
    aspect-ratio: 4 / 5;
} */
.card-showroom .box-img picture, .card-showroom .box-img img {
    /* position: absolute; */
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.card-showroom .box-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    overflow: hidden;
    width: 100%;
    z-index: 300;
    padding: 0 20px;
    display: grid;
    grid-gap: 8px;
    transform: translateY(113px);
    align-items: flex-end;
    align-content: flex-end;
 transition: all 0.7s ease-in-out;
}
.card-showroom:hover .box-caption {
    transform: translateY(-10px);
 transition: all 0.7s ease-in-out;
}
.card-showroom .box-caption h3 {
    color: #FFF;
    font-size: 20px;
    line-height: 1.2;
 transition: all 0.7s ease-in-out;
}
.card-showroom .box-address {
    display: grid;
    font-size: 16px;
    padding-top: 10px;
    padding-bottom: 20px;
    color: #FFF;
    grid-gap: 12px;
}

.card-showroom .box-address p{
    height: 48px;
}

.card-showroom .entry-location {
    font-size: 16px;
    color: #FFF;
    height: 24px;
    /* transform: translateY(0px); */
 transition: all 0.7s ease-in-out;
}

.card-showroom:hover .entry-location {
    /* display: none; */
    height: 0px;
    opacity: 0;
 transition: all 0.7s ease-in-out;
}

.card-showroom:hover .box-address {
    transition: all 0.7s ease-in-out;
}
.card-showroom .box-action {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.card-showroom .btn {
    display: flex;
    gap: 8px;
    align-items: center;
    color: var(--primary-color);
    font-family: var(--primary-font);
    font-variation-settings: var(--font-variation-heading-h2);
    font-size: 14px;
    font-style: normal;
    font-weight: none;
    line-height: 1;
    padding: 9px 14px;
    border-radius: 30px;
    background: #FFF;
    transition: all 0.3s ease-in-out;
}
.card-showroom .btn:hover {
    color: #FFF;
    background: #000;
}
.card-showroom .btn:hover svg path {
    stroke: #FFF;
}
.card-showroom .link-phone {
    display: flex;
    gap: 8px;
    align-items: center;
    color: #FFF;
    font-family: var(--primary-font);
     font-variation-settings: var(--font-variation-body);
    font-size: 16px;
    line-height: 1;
}
.card-item {
    position: relative;
    overflow: hidden;
}
.card-item .box-img {
    position: relative;
    overflow: hidden;
    z-index: 20;
}
.card-item .box-img img {
    display: block;
    width: 100%;
    max-width: 100%;
}
.section-media-room {
    overflow: hidden;
    padding-bottom: 70px;
}
.section-media-room .grid-columns {
    display: grid;
    grid-gap: 16px;
    grid-template-columns: 1fr;
}
.card-media {
    background: #EEE;
}
.card-media .box-img {
    position: relative;
}
.card-media .box-img img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.card-media .box-img img {
    position: relative;
    width: 100%;
    height: auto;
    z-index: 1;
    -webkit-transition: all 0.6s ease-in-out;
    transition: all 0.6s ease-in-out;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
      -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
}
.card-media:hover img {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
     -webkit-transition: all 0.6s ease-in-out;
    transition: all 0.6s ease-in-out;
}
.card-media .box-img a {
    position: relative;
    display: block;
    aspect-ratio: 16 / 9;
}
.card-media .box-caption {
    position: relative;
    padding: 15px;
    display: grid;
    grid-gap: 12px;
}
.card-media .box-caption h3 a {
    color: #071D49;
    font-family: var(--primary-font);
    font-variation-settings: var(--font-variation-heading);
    font-size: 18px;
    line-height: 1.5;
     text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 2;
    max-height: 300px;
    height: 100%;
}
.card-media .entry-category span {
    color: var(--primary-color);
    border-radius: 30px;
    background: #FFF;
    backdrop-filter: blur(10px);
}
.card-media .entry-date {
    color: var(--primary-color);
}
.card-media .rollohover {
    opacity: 0;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    z-index: 100;
    display: grid;
    align-items: center;
    justify-content: center;
    color: #FFF;
    font-family: var(--primary-font);
    font-variation-settings: var(--font-variation-heading-h2);
    font-size: 24px;
    line-height: 1;
    text-transform: uppercase;
    background: rgba(29, 31, 77, 0.70);
    transition: all 0.5s ease-in-out;
}
.card-media:hover .rollohover {
    opacity: 1;
    transition: all 0.5s ease-in-out;
}
.highlight-media {
    margin-bottom: 12px;
    margin-left: -15px;
    margin-right: -15px;
}
.highlight-media .card-media {
    background: transparent;
}
.highlight-media .card-media .box-img a {
    aspect-ratio: 3 / 2;
}
.highlight-media .card-media:after {
    content:'';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 100;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 50%, rgba(0, 0, 0, 0.59) 73.25%, rgba(0, 0, 0, 0.80) 81.71%), linear-gradient(0deg, rgba(0, 0, 0, 0.00) 0%, rgba(0, 0, 0, 0.00) 100%);
}
.highlight-media .card-media .entry-category span {
    color: #FFF;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.30);
    backdrop-filter: blur(10px);
}
.highlight-media .card-media .box-caption {
    position: absolute;
    bottom: 0;
    width: 100%;
    z-index: 101;
    padding: 15px 30px;
    background: transparent;
}
.highlight-media .card-media .box-caption h3 a {
    font-size: 18px;
    color: #FFF;
}
.highlight-media .card-media .entry-date {
     color: #FFF;
}
.section-media-room .action-links {
    text-align: center;
    margin-top: 100px;
}
.btn-loadmore {
    display: inline-block;
    padding: 10px 60px;
    color: var(--primary-color);
    font-family: var(--primary-font);
    font-variation-settings: var(--font-variation-heading-h2);
    font-size: 18px;
    font-style: normal;
    font-weight: 572;
    line-height: 1.5;
    text-transform: uppercase;
    border-radius: 100px;
    background: #EEE;
}
.btn-loadmore:hover {
    color: #FFF;
    background: #1D1F4D;
}

.section-media-related .grid-columns {
    display: grid;
    grid-gap: 12px;
    grid-template-columns: 1fr;
}

.readmore {
    position: relative;
}
.readmore:after {
    content: '';
    width: 0;
    height: 1px;
    opacity: 0;
    position: absolute;
    left: 0;
    bottom: -2px;
    background-color: #FFF;
    transition: var(--transition-links);
}
.card-media:hover .readmore:after {
    width: 100%;
    opacity: 1;
}

/* article */
.article-wrap {
    position: relative;
    margin: 0 auto;
    max-width: 100%;
}
.article-headline {
    padding: 40px 0;
    text-align: center;
    max-width: 850px;
    margin: 0 auto;
}
.article-headline .container {
    display: grid;
    grid-gap: 16px;
}
.article-headline h1 {
    font-size: 30px;
    line-height: 1.4;
    color: var(--primary-color);
}
.article-headline .entry-category {
    text-align: center;
    justify-content: center;
}
.article-headline .entry-category span {
    color: var(--primary-color);
    border-radius: 100px;
    background: #D9D9DE;
    backdrop-filter: blur(10px);
}
.article-headline .entry-date {
    color: var(--primary-color);
    justify-content: center;
}
.article-imgcover {
    text-align: center;
}
.article-img {
    margin: 30px 0;
}
.article-main {
    padding-bottom: 40px;
}
.article-main .widget-tags {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-top: 40px;
}
.article-main .widget-tags ul {
    display: flex;
    gap: 8px 10px;
    flex-wrap: wrap;
}
.article-main .widget-tags ul li {
    list-style: none;
}
.article-main .widget-tags ul li a {
    padding: 4px 16px;
    color: var(--primary-color);
    font-family: var(--primary-font);
     font-variation-settings: var(--font-variation-body);
    font-size: 14px;
    line-height: 1;
    text-transform: uppercase;
    border-radius: 100px;
    background: #EFEFF3;
}
.article-main .widget-tags ul li a:hover {
    color: #FFF;
    background: var(--primary-color);
}
.article-main .widget-tags h4 {
    color: var(--primary-color);
    font-family: var(--primary-font);
    font-variation-settings: var(--font-variation-heading);
    font-size: 16px;
    font-weight: normal;
    line-height: 1;
    text-transform: uppercase;
    display: block;
}
.article-container {
    padding-top: 40px;
}
.article-heading .widget-category {
    margin-bottom: 15px;
}
.article-heading h1 {
    color: #1E0650;
    font-family: var(--primary-font);
    font-size: 24px;
    font-weight: 700;
    line-height: 1.6;
}
.article-content {
    position: relative;
    color : var(--article-color);
    font-family: var(--primary-font);
     font-variation-settings: var(--font-variation-body);
    font-size: 18px;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.7;
}
.article-content, .article-content p {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.7;
}
.article-content h1, .article-content h2, .article-content h3, .article-content h4 {
    color: var(--primary-color);
    font-family: var(--primary-font);
    font-variation-settings: var(--font-variation-heading);
    font-size: 24px;
    line-height: 1.5;
    margin: 20px 0;
}
.article-content h2 {
    font-size: 24px;
}
.article-content h3 {
    color: #000;
    font-family: var(--primary-font);
    font-size: 24px;
    line-height: 1.3;
}
.article-content h4 {
    margin: 0;
    padding: 0;
    font-family: var( --article-font);
    font-weight: 500;
    color: #1E0650;
    line-height: 1.5;
}
.article-content strong {
    font-family: "FC Paragraph Med";
    font-style: normal;
    font-weight: 500;
    color: inherit;
}
.article-content a {
    color: var(--primary-color);
    text-decoration: underline;
}
.article-content p {
    margin-top: 15px;
    margin-bottom: 15px;
}
.article-content h3 {
    margin-top: 20px;
}
.article-content .entry-date {
    color: #000;
}
.article-content .footnote {
    margin-top: 80px;
}
.article-content > ul {
    margin: 10px 0 0 20px;
}
.article-content ol {
    margin: 10px 0 0 20px;
}
.article-content ul li, .article-content ol li {
    margin-bottom: 10px;
    line-height: 1.3;
}
.article-content ul li {
    list-style: square;
}
.article-social {
    margin-top: 20px;
    display: flex;
    gap: 10px;
    align-items: center;
    pointer-events: all;
}
.article-social strong {
    color: var(--primary-color);
    font-family: var(--primary-font);
    font-variation-settings: var(--font-variation-heading-h2);
    font-size: 16px;
    line-height: 1.6;
    text-transform: uppercase;
}
.article-social a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #FFF;
    box-shadow: 0 3.429px 12px 0 rgba(0, 0, 0, 0.10);
}
.article-social a:hover {
    border: 1px solid transparent;
    background: #1D1F4D;
    transition: background .4s;
}
.article-social a:hover svg path {
    fill: #FFF;
}

.main-inner {
    padding-top: 80px
}
.headline-mediaroom {
    position: relative;
    overflow: hidden;
    padding-top: 175px;
    padding-bottom: 45px;
    min-height: 340px;
    background: linear-gradient(0deg, #1D1F4D 0%, #1D1F4D 100%), rgba(0, 0, 0, 0.00);
}
.headline-mediaroom .headline {
    display: grid;
    grid-gap: 12px;
    margin-bottom: 0;
}
.headline-mediaroom .headline h2 {
    color: #FFF;
}
.headline-mediaroom .headline p {
    color: rgba(255, 255, 255, 0.80);
    font-family: var(--primary-font);
     font-variation-settings: var(--font-variation-body);
    font-size: 20px;
    line-height: 1.4;
}
.container-headline {
    display: grid;
    grid-gap: 40px;
    align-items: center;
}
.filter-box {
    display: grid;
    grid-gap: 8px 20px;
    grid-template-columns: 1fr 1fr;
}
.filter-box h4 {
    font-family: var(--primary-font);
    font-variation-settings: var(--font-variation-heading);
    font-size: 14px;
    margin: 0;
    padding: 0 30px 0 0;
    color: #FFF;
}
.select-list {
    width: 100%;
}
.select-box {
    position: relative;
    overflow: hidden;
}

/* select2 */
.select2-container {
    width: 100%;
}
.select2-container .select2-selection--single {
    height: 38px;
}
.select2-container--default .select2-selection--single {
    border-radius: 0;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.20);
    background-color: transparent;
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
    padding: 8px 0;
    font-family: var(--primary-font);
    font-variation-settings: var(--font-variation-heading);
    font-size: 14px;
    color: #FFF;
    line-height: 1.5;
    font-weight: normal;
    text-transform: uppercase;
}
.select2-dropdown {
    border: 0;
    padding-bottom: 6px;
    padding-top: 6px;
    border-radius: 0;
    background: linear-gradient(0deg, #1D1F4D 0%, #1D1F4D 100%), rgba(0, 0, 0, 0.00);
}
.select2-results {
    padding: 0 15px;
}
.select2-results__option {
    padding: 6px;
    font-family: var(--primary-font);
    font-variation-settings: var(--font-variation-heading);
    font-size: 14px;
    color: #FFF;
    line-height: 1.5;
    font-weight: normal;
    text-transform: uppercase;
}
.select2-container--default .select2-results__option--selected,
.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
    background: transparent;
}
.select2-search--dropdown {
    display: none;
}
.select2-container--default .select2-selection--single {
    margin-right: 0;
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
    right: 0;
}
.select2-container--default .select2-selection--single .select2-selection__arrow b {
    width: 14px;
    height: 7px;
    border: 0;
    border-width: 0;
    margin-top: 1px;
    margin-right: 0;
    background-image: url(assets/img/icon/arrow-select.svg);
    background-position: center;
    background-repeat: no-repeat;
}
.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
    transform: rotate(180deg);
}

.section-technology {
    position: relative;
}
.section-general-design {
    position: relative;
    overflow: hidden;
    background: #EEE;
}
.section-general-design .grid-block {
    display: grid;
    grid-template-columns: 1fr;
}
.section-general-design .block-content {
    padding: 55px 20px 45px 20px;
}
.section-general-design .block-slide {
    position: relative;
    overflow: hidden;
}
.section-general-design .slide-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all .5s;
}
.section-general-design .slide-item:after {
    content:'';
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 55%, rgba(0, 0, 0, 0.70) 95%);
}
/* .section-general-design .swiper-slide:hover {
    width: 40vw;
} */
.section-general-design .box-caption {
    position: absolute;
    width: 100%;
    left: 0;
    bottom: 0;
    z-index: 200;
    display: grid;
    grid-gap: 8px;
    padding: 0 20px 30px;
    color: #FFF;
}
.section-general-design .box-caption h3 {
    color: #FFF;
    font-family: var(--primary-font);
    font-variation-settings: var(--font-variation-heading-h2);
    font-size: 24px;
    line-height: 1;
    text-transform: uppercase;
}
.section-general-design .box-caption h3,
.section-general-design .box-caption p {
    transition: all .3s;
}
.section-general-design .box-caption p  {
    font-size: 14px;
    line-height: 1.5;
}

.section-general-design .box-content {
    display: grid;
    align-items: flex-start;
    grid-gap: 30px;
}
.section-general-design .box-content p {
    color: rgba(0, 0, 0, 0.80);
    font-family: var(--primary-font);
     font-variation-settings: var(--font-variation-body);
    font-size: 14px;
    line-height: 1.8;
}
.swiper-design-item {
    height: 100%;
}
.swiper-design-item .swiper-slide {
    position: relative;
    flex: 1;
}

.swiper-design-item .swiper-slide::hover {
    position: relative;
    flex: 2;
}
.is-sticky  {
    position: sticky!important;
    top: 60px;
}
.section-general-info {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding: 70px 0;
}
.section-general-info:after {
    content:'';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 200;
    pointer-events: none;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.50) 0%, rgba(0, 0, 0, 0.50) 100%);
}
.section-general-info .headline {
    display: grid;
    grid-gap: 30px;
    max-width: 500px;
    margin: 0 auto;
}
.section-general-info .container {
    height: 100%;
}
.section-general-info .block-content {
    position: relative;
    z-index: 600;
    display: grid;
    align-items: center;
    height: 100%;
    align-content: space-between;
}
.section-general-info .grid-box-item {
    display: grid;
    grid-gap: 20px;
    grid-template-columns: 1fr;
}
.section-general-info .box-item {
    position: relative;
    display: grid;
    grid-gap: 8px;
}
.section-general-info .box-item:after {
    content:'';
    width: 1px;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.50);
}
.section-general-info .box-item:last-of-type:after {
    display: none;
}
.section-general-info .box-item h3 {
    display: flex;
    gap: 8px;
    align-items: flex-end;
    font-family: var(--primary-font);
    font-variation-settings: var(--font-variation-heading-h2);
    font-size: 72px;
    color: #FFF;
    line-height: 1;
    text-transform: uppercase;
}
.section-general-info .box-item h3 span {
    position: relative;
    top: -10px;
    color: #FFF;
    font-family: var(--primary-font);
    font-variation-settings: var(--font-variation-heading);
    font-size: 24px;
    line-height: 1;
}
.section-general-info .box-item p {
    color: rgba(255, 255, 255, 0.80);
    font-size: 16px;
    line-height: 1.8;
}
.section-white-color .headline h2, .section-white-color .headline p {
    color: #FFF;
}  
.bg-responsive.mobile {
    display: none;
}

.section-features {
    background: #EEE;
}
.section-features.bg-c-blue {
    background: #1D1F4D;
}
.section-features .grid-block {
    display: grid;
    align-items: flex-start;
    grid-template-columns: 1fr;
}
.section-features .block-img {
    position: relative;
    width: 100%;
    height: 100%;
}
.section-features .headline {
    display: grid;
    grid-gap: 12px;
    margin-bottom: 50px;
}
.section-features .headline h2 {
    color: var(--primary-color);
}
.section-features .headline p {
    color: var(--primary-color);
    font-family: var(--primary-font);
    font-variation-settings: var(--font-variation-heading);
    font-size: 20px;
    line-height: 1.4;
}
.section-features .block-content {
    padding: 60px 20px;
}
.section-features .accordion-header {
    position: relative;
    padding-right: 35px;
    transition: all 1s ease;
}
.section-features .accordion-header h3 {
    position: relative;
    font-family: var(--primary-font);
    font-variation-settings: var(--font-variation-heading);
    font-size: 18px;
    line-height: 1.6;
    color: var(--primary-color);
    opacity: 60%;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.section-features .accordion-item {
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.10);
}
.section-features .accordion-content {
    font-family: var(--primary-font);
     font-variation-settings: var(--font-variation-body);
    font-size: 16px;
    line-height: 1.6;
    max-height: 0;
    color: var(--primary-color);
    overflow: hidden;
    opacity: 1;
    transition: all 1s ease;
} 
.section-features .accordion-content ul {
    margin: 0 0 20px 20px;
    padding: 0;
}
.section-features .accordion-content ul li {
    list-style: square;
}
.section-features .accordion-content.open {
    max-height: 600px;
    opacity: 1;
}

.section-features .accordion-header.active h3 {
    color: var(--primary-color);
    opacity: 100%;

}
.section-features .accordion-header span {
    position: absolute;
    right: 0;
    top: 3px;
    width: 28px;
    height: 28px;
    border: 2px solid #9A9BAE;
    border-radius: 50%;
    display: grid;
    justify-content: center;
    align-items: center;
    transition: transform 1s;
}
.section-features .accordion-header span:before,
.section-features .accordion-header span:after {
     content:'';
     width: 14px;
     height: 2px;
     display: block;
     position: absolute;
     top: 50%;
     margin-top: -1px;
     transform: translateY(-50%);
     background: #9A9BAE;
     transition: all 0.3s ease;
}
.section-features .accordion-header span:after  {
    transform: rotate(90deg);
}
.section-features .accordion-header span:before {
   left: 50%;
   transform: translateX(-50%);
}
.section-features .accordion-header span:after {
    margin-left: 5px;
}
.section-features .accordion-header.active span:after {
    display: none;
}
.section-features .accordion-header.active span {
    border-color: var(--primary-color);
}
.section-features .accordion-header.active span:after,
.section-features .accordion-header.active span::before {
    background: #1D1F4D;
}
.accordion-container {
    position: relative;
    display: grid;
    grid-gap: 20px;
    padding-left: 30px;
}
.progress-bar {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    height: 100%;
    background: rgba(0, 0, 0, 0.10);
    border-radius: 2px;
    overflow: hidden;
}
.progress-bar.auto-height {
    height: auto;
}
.progress-fill {
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 0%;
    background: #1D1F4D;
    transition: height 1s linear;
}
.section-features .block-img {
    display: none;
}
.section-features.bg-c-gray {
    background: #EEE;
}
.section-features.c-white .accordion-header.active h3 {
    color: #FFF;
}
.section-features.c-white .headline h2, .section-features.c-white .headline p {
    color: #FFF;
}
.section-features.c-white .accordion-content {
   color: rgba(255, 255, 255, 0.70);
} 
.section-features.c-white .accordion-header h3 {
    color: rgba(255, 255, 255, 0.60);
}
.section-features.c-white .progress-fill {
    background: #FFF;
}
.section-features.c-white .progress-bar {
    background: rgba(255,255,255,0.2);
}
.section-features.c-white .accordion-header.active span {
    border-color: #FFF;
}
.section-features.c-white .accordion-header.active span:after,
.section-features.c-white .accordion-header.active span::before {
    background: #FFF;
}
.section-features.c-white .accordion-item {
    border-bottom: 1px solid rgba(255,255,255,0.2);
}
.section-story {
    position: relative;
    height: 100vh;
}
.section-story .block-content {
    text-align: center;
    max-width: 650px;
    margin: 0 auto;
    display: grid;
    grid-gap: 12px;
}
.section-story .block-content h3 {
    font-family: var(--primary-font);
    font-variation-settings: var(--font-variation-heading);
    color: var(--primary-color);
    text-align: center;
    font-size: 26px;
    line-height: 1.4;
}


/* Pagination Container */
.swiper-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: absolute;
  bottom: 40px;
  left: 0;
  right: 0;
}
.swiper-pagination-bullet {
    margin: 0!important;
}
.swiper-pagination.pagination-right {
    right: 15px;
    left: inherit;
    justify-content: flex-end;
}

/* Dot base style */
.swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  opacity: 1;
  transition: all 0.4s ease;
}

.swiper-pagination-bullet-active {
  width: 32px;
  border-radius: 999px;
  background: #fff;
  transition: width 0.4s ease, background 0.3s ease;
}
.swiper-pagination-bullet:not(.swiper-pagination-bullet-active) {
  background: rgba(255, 255, 255, 0.3);
}

.swiper-pagination-bullet-active {
  position: relative;
  overflow: hidden;
}

.swiper-pagination-bullet-active::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  background: #fff;
  border-radius: 999px;
  animation: fillProgress var(--progress-duration, 5s) linear forwards;
}

.is-mobile {
    display: none;
}
/* gray */
.pagination-gray .swiper-pagination-bullet-active {
    background: rgba(255, 255, 255, 0.20);
}
.pagination-gray .swiper-pagination-bullet:not(.swiper-pagination-bullet-active) {
    background: rgba(255, 255, 255, 0.20);
}
.pagination-gray .swiper-pagination-bullet-active::after {
    background: rgb(255 255 255 / 50%);
}
/* blue */
.pagination-blue .swiper-pagination-bullet-active {
    background: rgba(0, 0, 0, 0.14);
}
.pagination-blue .swiper-pagination-bullet:not(.swiper-pagination-bullet-active) {
    background: rgba(0, 0, 0, 0.14);
}
.pagination-blue .swiper-pagination-bullet-active::after {
    background: #1D1F4D;
}


.section-service {
    background: #EEE;
}
.section-service .grid-block {
    display: grid;
    grid-template-columns: 1fr;
}
.section-service .headline {
    display: grid;
    grid-gap: 12px;
}
.section-service .headline h2 {
    color: var(--primary-color);
}
.section-service .headline p {
    color: var(--primary-color);
    font-family: var(--primary-font);
    font-variation-settings: var(--font-variation-heading);
    font-size: 26px;
    line-height: 1.4;
}
.section-service .block-content {
    padding: 60px;
}
.section-design-center .design-slider {
    position: relative;
    overflow: hidden;
    background: #1C1E4E;
}
.design-slider {
    position: relative;
    overflow: hidden;
    display: block;
    table-layout: initial;
    width: 100%;
}
.slider-info-group {
    padding: 100px 60px;
}
.slider-group {
        width: 100%;
        display: block;
    }
.section-design-center .slick-slider,
.section-design-center .slick-slider .slick-track, 
.section-design-center .slick-slider .slick-list {
    height: 100%;
}
.section-design-center .item-content {
    display: grid;
    grid-gap: 24px;
    align-items: flex-start;
    align-content: flex-start;
    color: rgba(255, 255, 255, 0.80);
    font-size: 16px;
    line-height: 1.7;
    padding-bottom: 80px;
}
.section-design-center .item-content h3 {
    color: #FFF;
    font-family: var(--primary-font);
    font-variation-settings: var(--font-variation-heading);
    font-size: 20px;
    line-height: 1.6;
}

.section-design-center .slick-arrow {
    position: absolute;
    width: 44px;
    height: 44px;
    top: inherit;
    bottom: 0px;
    border-radius: 50%;
    background: #FFF;
    backdrop-filter: blur(26px);
    text-indent: -9999px;
    border: 0;
    display: grid;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.section-design-center .slick-arrow:after {
    content:'';
    width: 12px;
    height: 23px;
    position: relative;
    background-image: url(assets/img/icon/arrow-slide.svg);
    background-repeat: no-repeat;
    background-position: center;
}
.section-design-center .slick-arrow.slick-disabled {
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.30);
    backdrop-filter: blur(27px);
}
.section-design-center .slick-arrow.slick-disabled:after {
    background-image: url(assets/img/icon/arrow-slide-white.svg);
}
.section-design-center .slick-next {
    left: 60px;
}
.section-design-center .slick-next:after {
    margin-left: 1px;
}
.section-design-center .slick-prev:after {
    transform: rotate(180deg);
     margin-left: 1px;
}


.section-timeline {
    position: relative;
    overflow: hidden;
}
.section-timeline .swiper-timeline .swiper-slide {
    display: flex;
    background: #fff;
    min-height: 300px;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
}
.section-timeline .swiper-timeline .swiper-slide .container {
    padding: 0;
    width: 100%;
}
.section-timeline .swiper-timeline .swiper-slide .title {
    font-size: 18px;
    opacity: 0;
    transition: 0.5s ease 0.5s;
}
.section-timeline .swiper-timeline .swiper-slide-active .title {
    opacity: 1;
}
.swiper-related-item .card-media .box-img {
     aspect-ratio: 16/9;
}


.tab-gallery {
    display: flex;
    gap: 28px;
    align-items: center;
    justify-content: center;
}
.tab-gallery li {
    position: relative;
    list-style: none;
    color: rgba(29, 31, 77, 0.60);
    font-family: var(--primary-font);
    font-variation-settings: var(--font-variation-heading-h2);
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    text-transform: uppercase;
}
.tab-gallery li:after {
    content: '';
    width: 100%;
    height: 2px;
    position: absolute;
    bottom: -3px;
    left: 0;
    opacity: 0;
    transform: translateY(6px);
    background: #1D1F4D;
    transition: all 0.3s ease;
}
.tab-gallery li.current {
    color: var(--primary-color);
}
.tab-gallery li.current:after {
    opacity: 1;
    transform: translateY(1px);
    transition: all 0.3s ease;
}

/* Gallery */
.section-gallery {
    position: relative;
    padding-bottom: 40px;
}
.section-gallery .headline {
    position: relative;
    display: grid;
    grid-gap: 40px;
}
.section-gallery .grid-wrapper .gallery-item {
    position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
}
.section-gallery .grid-wrapper a > img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.section-gallery .grid-wrapper {
	display: grid;
	grid-gap: 5px;
	grid-template-columns: repeat(auto-fit, minmax(20%, 1fr));
	grid-auto-rows: 220px;
	grid-auto-flow: dense;
}
.section-gallery .gallery-item {
    position: relative;
    overflow: hidden;
}
.section-gallery .gallery-item img {
    display: block;
    width: 100%;
    max-width: 100%;
    transition: var(--transition-hover-img);
}
.section-gallery .gallery-item:hover img {
    transition: var(--transition-hover-img);
    transform: translate3d(0px, 0px, 0px) scale(1.05);
}
.section-gallery .grid-wrapper .wide {
	grid-column: span 2;
}
.section-gallery .grid-wrapper .tall {
	grid-row: span 2;
}
.section-gallery .grid-wrapper .big {
	grid-column: span 2;
	grid-row: span 2;
}
.section-gallery .grid-wrapper .square {
	grid-column: span 2;
	grid-row: span 3;
}
.section-gallery .zoom {
    width: 30px;
    height: 30px;
    display: block;
    position: absolute;
    bottom: 16px;
    right: 16px;
    z-index: 100;
    background-position: center;
    background-repeat: no-repeat;
    text-indent: -99999px;
    background-image: url(assets/img/icon/zoom.svg);
}

/* Timeline Section */
.section-timelime {
  position: relative;
  overflow: hidden;
  height: calc(100vh - 60px);
}
.section-timelime .block-content {
    position: absolute;
    max-width: 600px;
    top: 0;
    left: 50%;
    z-index: 801;
    padding: 70px 0;
    display: grid;
    grid-gap: 12px;
    text-align: center;
    transform: translateX(-50%);
}
.timeline-swiper {
    position: relative;
    width: 100%;
    height: 100%;
}
.timeline-swiper .swiper-slide .box-img {
    position: relative;
    height: 100%;
}
.timeline-swiper .swiper-slide .box-img:after {
    content:'';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 100;
    pointer-events: none;
    background: linear-gradient(0deg, rgba(255, 255, 255, 0.00) 59.17%, #FFF 78.23%), linear-gradient(180deg, rgba(0, 0, 0, 0.00) 70.51%, rgba(0, 0, 0, 0.70) 94.49%);
}
.timeline-swiper .swiper-slide picture {
    height: 100%;
}
.timeline-swiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s ease;
}
.section-timelime .slide-content {
    position: absolute;
    width: 100%;
    top: 50px;
    left: 50%;
    z-index: 801;
    padding: 70px 20px;
    display: grid;
    grid-gap: 12px;
    text-align: center;
    transform: translateX(-50%);
}
.section-timelime .slide-content h3 {
    color: var(--primary-color);
    font-family: var(--primary-font);
    font-variation-settings: var(--font-variation-heading);
    font-size: 20px;
    line-height: 1.4;
}
.section-timelime .slide-content p {
    color: #000;
    text-align: center;
    font-family: var(--primary-font);
     font-variation-settings: var(--font-variation-body);
    font-size: 16px;
    line-height: 1.7;
}
/* Timeline */
.swiper-timeline-wrapper, .swiper-timeline, .swiper-timeline-wrapper .swiper-slide .box-img {
    height: 100%;
}
.swiper-timeline-wrapper .swiper-slide {
    display: flex;
    height: 100%;
}
.swiper-timeline-wrapper .swiper-slide .container {
    padding: 0;
    width: 100%;
}
.scroll-years {
    position: absolute;
    width: 100%;
    height: 120px;
    bottom: 0;
}
.scroll-progressbar {
    position: absolute;
    width: 100%;
    bottom: 70px;
}
.swiper-timeline-wrapper .swiper-pagination-progressbar {
    position: relative;
    bottom: inherit;
    background-color: transparent;
    height: 4px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.20);
    width: 80%;
}
.swiper-timeline-wrapper .swiper-pagination-custom-timeline {
    position: relative;
    list-style: none;
    padding: 0;
    display: flex;
    z-index:  300;
    width: 80%;
    height: 120px;
}
.swiper-timeline-wrapper .swiper-pagination-progressbar-fill {
    height: 2px;
    top: 2px;
    background-color: #FFF;
}
.swiper-timeline-wrapper .swiper-pagination-progressbar:before,
.swiper-timeline-wrapper .swiper-pagination-progressbar:after {
    content: "";
    position: absolute;
     width: 100%;
    background-color: rgba(255, 255, 255, 0.20);
}
.swiper-timeline-wrapper .swiper-pagination-progressbar:before {
    top: 2px;
    left: -100%;
    height: 2px;
}
.swiper-timeline-wrapper .swiper-pagination-progressbar:after {
    top: 3px;
    right: -100%;
    height: 1px;
}
.swiper-timeline-wrapper .swiper-pagination-custom-timeline .swiper-pagination-switch {
    position: relative;
    width: 100%;
    display: block;
}
.swiper-timeline-wrapper .swiper-pagination-custom-timeline .swiper-pagination-switch .switch-title {
  position: absolute;
  right: 0;
  bottom: 90px;
  transform: translateX(50%);
  transition: 0.2s all ease-in-out;
  transition-delay: 0s;
  cursor: pointer;
  z-index: 1;
}
.swiper-timeline-wrapper .swiper-pagination-custom-timeline .swiper-pagination-switch .switch-title:after {
  position: absolute;
  top: calc(100% + 19px);
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  width: 13px;
  height: 13px;
  background: #FFF;
  border-radius: 2rem;
  content: "";
  transition: 0.2s all ease-in-out;
  transition-delay: 0s;
  z-index: 1;
}
.swiper-timeline-wrapper .swiper-pagination-custom-timeline .swiper-pagination-switch.active ~ .swiper-pagination-switch .switch-title:after {
    background: #9D9D9D;
}
.swiper-timeline-wrapper .swiper-pagination-custom-timeline .swiper-pagination-switch.active .switch-title {
  transition-delay: 0.4s;
}
.swiper-timeline .box-img {
    height: 100%;
}
.swiper-timeline .box-img img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    object-fit: cover;
}
.switch-title {
    color: #FFF;
    line-height: 1;
    text-transform: uppercase;
}
.swiper-pagination-switch .switch-title span, .swiper-pagination-switch .switch-title h3 {
    opacity: 60%;
}
.swiper-pagination-switch .switch-title span,
.swiper-pagination-switch .switch-title h3 {
    font-variation-settings: var(--font-variation-heading-h2);
    font-family: var(--primary-font);
}
.swiper-pagination-switch .switch-title span {
    font-size: 16px;
}
.swiper-pagination-switch .switch-title h3 {
    font-size: 26px;
}
.swiper-pagination-switch.active .switch-title span,
.swiper-pagination-switch.active .switch-title h3 {
    opacity: 100%;
}
.swiper-pagination-switch.active .switch-title span {
    font-size: 24px;
}
.swiper-pagination-switch.active .switch-title h3 {
    font-size: 36px;
}
.swiper-timeline-wrapper .swiper-pagination-custom-timeline .swiper-pagination-switch.active .switch-title:after {
    opacity: 100%;
}

/* Modern Technology */
.section-modern-technology {
    position: relative;
    overflow: hidden;
    height: 100vh;
}
.section-modern-technology .rellax,
.section-modern-technology .container {
    height: 100%;
}
.section-modern-technology .area-content {
    display: grid;
    align-items: center;
    height: 100%;
}
.section-modern-technology .block-content {
    display: grid;
    grid-gap: 16px;
    opacity: 0;
    text-align: center;
    margin: 0 auto;
    padding: 0 20px;
    animation: reveal-middle 1000ms 600ms forwards;
}
.section-modern-technology .block-content p {
    color: #000;
    text-align: center;
    font-family: var(--primary-font);
     font-variation-settings: var(--font-variation-body);
    font-size: 18px;
    line-height: 1.7;
}
.spread-container-img {
    display: none;
}
.spread-container .block-img {
    display: block;
}
.spread-container .block-img img {
    border-radius: 12px;
}

/* Partner */
.section-partner {
    position: relative;
    height: 538px;
}
.section-partner .container {
    position: relative;
    z-index: 800;
}
.section-partner h2 {
    font-size: 40px;
    color: #FFF;
}
.section-partner p {
    color: #FFF;
}
.section-partner .block-content {
    display: grid;
    justify-content: flex-start;
    grid-gap: 20px;
    max-width: 500px;
}
.section-partner .partner-logo {
    width: 420px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    border: 1px solid rgba(255, 255, 255, 0.10);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(7px);
}
.section-partner .item-box {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 90px;
    border-right: 1px solid rgba(255, 255, 255, 0.10);
}
.section-partner .item-box img {
    width: auto;
    height: 50px;
}
/* .section-partner .item-box:last-of-type img {
    height: 15px;
} */
.section-partner .action-links {
    margin-top: 20px;
}

/* Modal Promotion */
.modal-promotion {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    padding: 0 20px;
    display: grid;
    align-items: center;
    z-index: 3000;
    background: rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(25px);
    pointer-events: none;
    -webkit-animation: fadeinout .3s ease-in;
    animation: fadeinout .3s ease-in;
}
.modal-promotion .xclose {
    position: absolute;
    right: 0;
    top: -60px;
}
.modal-promotion .block-promo {
    position: relative;
    max-width: 645px;
    display: block;
    margin: 0 auto;
    pointer-events: all;
}
.modal-promotion .box-img {
     border-radius: 15px;
     overflow: hidden;
}
.modal-promotion.hide {
    display: none;
     -webkit-animation: fadeinout .3s ease-in;
    animation: fadeinout .3s ease-in;
}

/* Magnific Popup */
.mfp-with-zoom .mfp-container,
.mfp-with-zoom.mfp-bg {
  opacity: 0;
  -webkit-backface-visibility: hidden;
  transition: all 0.3s ease-out;
}
.mfp-with-zoom.mfp-ready .mfp-container {
    opacity: 1;
}
.mfp-with-zoom.mfp-ready.mfp-bg {
    opacity: 0.8;
}
.mfp-with-zoom.mfp-removing .mfp-container,
.mfp-with-zoom.mfp-removing.mfp-bg {
  opacity: 0;
}
button.mfp-close, button.mfp-arrow {
    width: 30px!important;
    height: 30px!important;
    background-image: url(assets/img/icon/close.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

/* keyframes */
@-webkit-keyframes fadeinout {
    0% { opacity: 0; }
    100% { opacity: 1; }
}
@-moz-keyframes fadeinout {
    0% { opacity: 0; }
    100% { opacity: 1; }
}
@keyframes fillProgress {
  from { width: 0; }
  to { width: 100%; }
}
@keyframes fade-in { 
   from { opacity:0; }  
   to { opacity:1; }  
} 
@keyframes fade-out {
  0% {
    transform: translateY(30px);
  }
  100% {
    transform: translateY(0px);
  }
}
