/*!
 * Milligram-scss v1.3.0
 * https://milligram.github.io
 *
 * Copyright (c) 2017 CJ Patoilo
 * Licensed under the MIT license
 */
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Public+Sans:ital,wght@0,100..900;1,100..900&display=swap");

body,
html,
* {
  font-family: "Inter", sans-serif !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
  text-rendering: optimizeLegibility;
  font-synthesis: weight style;
  font-optical-sizing: auto;
  font-style: normal;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Lora", serif !important;
}

/* Override body cursor: none from JavaScript - ensure interactive elements show pointer */
body {
  cursor: auto !important;
}

h1 {
  font-weight: 700 !important;
}

.cursor {
  display: none;
  background: url(/images/material/cursor.svg) no-repeat 50%;
  height: 74px;
  left: 0;
  margin-left: -37px;
  margin-top: -37px;
  pointer-events: none;
  position: fixed;
  top: 0;
  width: 74px;
  z-index: 999;
}
.cursor.dark {
  background: url(/images/material/cursor-dark.svg) no-repeat 50%;
}
header {
  height: 143px;
  position: fixed;
  top: 0;
  transition: all 0.3s ease-out;
  width: 100%;
  z-index: 888;
}
header:after {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.7) 0, transparent);
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1;
}
header.up {
  top: 0;
}
header.down,
header.up {
  transition: all 0.3s ease-out;
}
header.down {
  top: -143px;
}
header .wrapper {
  align-items: center;
  display: flex;
  height: 100%;
  justify-content: space-between;
  margin: 0 135px;
  max-width: none;
}
header .wrapper .logo img {
  display: block;
  height: auto;
  width: 100%;
}
header .wrapper .wrap-burger {
  cursor: pointer;
  padding-bottom: 20px;
  position: relative;
  width: 44px;
}
header .wrapper .wrap-burger .burger-menu {
  display: flex;
  flex-flow: column;
  height: 23px;
  justify-content: space-between;
  margin: auto auto 12px;
  position: relative;
  transition: all 0.3s ease-out;
  width: 49px;
}
header .wrapper .wrap-burger .burger-menu span {
  background: #fff;
  border-radius: 0;
  display: block;
  height: 3px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  transition: all 0.25s ease-out;
  width: 100%;
}
header .wrapper .wrap-burger .burger-menu span:first-child {
  top: 0;
}
header .wrapper .wrap-burger .burger-menu span:nth-child(2) {
  top: 10px;
}
header .wrapper .wrap-burger .burger-menu span:nth-child(3) {
  top: 20px;
}
header .wrapper .wrap-burger .txt {
  bottom: 0;
  color: #fff;
  font-size: 0.875rem;
  left: 0;
  position: absolute;
  text-align: center;
  transition: all 0.3s ease-out;
  width: 100%;
}
header .wrapper .wrap-burger .txt.close {
  opacity: 0;
  visibility: hidden;
}
header .wrapper .wrap-burger.act .burger-menu {
  background: url(/images/material/burger-close.png) no-repeat center 0;
  background-size: auto 100%;
  height: 44px;
  margin-bottom: 5px;
  transform: rotate(135deg);
  transition: all 0.3s ease-out;
  width: 44px;
}
header .wrapper .wrap-burger.act .burger-menu span {
  opacity: 0;
}
header .wrapper .wrap-burger.act .burger-menu:hover {
  transform: unset;
  transition: all 0.3s ease-out;
}
header .wrapper .wrap-burger.act .txt.tmenu {
  opacity: 0;
  visibility: hidden;
}
header .wrapper .wrap-burger.act .txt.close {
  opacity: 1;
  visibility: visible;
}
.wrap-menu {
  color: #fff;
  display: none;
  height: 100%;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 777;
}
.wrap-menu .inner {
  float: right;
  margin-right: 135px;
  padding-bottom: 222px;
  padding-right: 0;
  padding-top: 150px;
  width: 300px;
  z-index: 5;
}
.wrap-menu .inner,
.wrap-menu .inner nav {
  height: 100%;
  overflow-x: hidden;
  position: relative;
}
.wrap-menu .inner nav {
  overflow-y: auto;
  padding-right: 10px;
  width: 100%;
}
.wrap-menu .inner nav::-webkit-scrollbar-track {
  background-color: #f2f2f2;
  border-radius: 3px;
}
.wrap-menu .inner nav::-webkit-scrollbar {
  background-color: #f2f2f2;
  width: 4px;
}
.wrap-menu .inner nav::-webkit-scrollbar-thumb {
  background-color: #ddd;
  border-radius: 3px;
}
.wrap-menu .inner nav ul li a {
  align-items: center;
  color: #fff;
  display: flex;
  font-family: Alra;
  font-size: 1.875rem;
  justify-content: flex-end;
}
.wrap-menu .inner nav ul li a img {
  margin-right: 16px;
}
.wrap-menu .inner nav ul li > ul {
  display: none;
  margin: 5px 0 15px;
  padding-right: 10px;
}
.wrap-menu .inner nav ul li > ul li {
  margin: 0;
}
.wrap-menu .inner nav ul li > ul li a {
  font-size: 1.25rem;
}
.wrap-menu .inner nav ul li.dropdown a.parent {
  padding-right: 40px;
  position: relative;
}
.wrap-menu .inner nav ul li.dropdown a.parent:after {
  background: url(/images/material/icon-plus.png) no-repeat 0 0;
  content: "";
  height: 33px;
  position: absolute;
  right: -10px;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s ease-out;
  width: 32px;
}
.wrap-menu .inner nav ul li.dropdown.act a.parent:after {
  background: url(/images/material/icon-min.png) no-repeat 0 0;
  transform: translateY(-50%) rotate(-180deg);
}
.wrap-menu .inner .box-bottom {
  border-top: 1px solid hsla(0, 0%, 95%, 0.2);
  bottom: 60px;
  left: 0;
  padding: 30px 0 0;
  position: absolute;
  width: 100%;
}
.wrap-menu .inner .box-bottom .search {
  margin-bottom: 15px;
}
.wrap-menu .inner .box-bottom .search form {
  position: relative;
}
.wrap-menu .inner .box-bottom .search form ::-moz-placeholder {
  color: #fff;
}
.wrap-menu .inner .box-bottom .search form :-ms-input-placeholder {
  color: #fff;
}
.wrap-menu .inner .box-bottom .search form ::placeholder {
  color: #fff;
}
.wrap-menu .inner .box-bottom .search button {
  background: url(/images/material/search.png) no-repeat 0 0;
  border: 0;
  font-size: 0;
  height: 25px;
  left: 0;
  margin: 0;
  padding: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 25px;
}
.wrap-menu .inner .box-bottom .search input {
  border: 0;
  color: #fff;
  font-family: Open Sans;
  font-size: 1.2rem;
  margin: 0;
  padding: 0 0 0 35px;
  text-align: right;
}
.wrap-menu .inner .box-bottom .language {
  align-items: center;
  display: flex;
  font-size: 1.188rem;
  font-weight: 700;
  justify-content: flex-end;
}
.wrap-menu .inner .box-bottom .language a {
  color: #fff;
  display: flex;
  padding: 0 8px;
}
.wrap-menu .inner .box-bottom .language a img {
  filter: grayscale(100%);
  transition: all 0.15s ease-out;
}
.wrap-menu .inner .box-bottom .language a:first-child {
  padding-left: 0;
}
.wrap-menu .inner .box-bottom .language a:last-child {
  padding-right: 0;
}
.wrap-menu .inner .box-bottom .language a.active,
.wrap-menu .inner .box-bottom .language a:hover {
  color: #469de3;
}
.wrap-menu .inner .box-bottom .language a.active img,
.wrap-menu .inner .box-bottom .language a:hover img {
  filter: grayscale(0);
}
.wrap-menu .bg {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
.wrap-menu .bg img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  width: 100%;
}
footer {
  padding: 25px 0;
}
footer p {
  margin-bottom: 0;
}
footer .wrapper {
  margin: 0 100px;
}
footer .wrapper .footer-top {
  display: flex;
  margin-bottom: 20px;
}
footer .wrapper .footer-top .boxleft {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 50%;
}
footer .wrapper .footer-top .boxleft ul {
  display: flex;
  margin: 0;
}
footer .wrapper .footer-top .boxleft ul li {
  margin-right: 18px;
}
footer .wrapper .footer-top .boxleft ul li:last-child {
  margin-right: 0;
}
footer .wrapper .footer-top .boxleft ul li a {
  color: #333;
  font-weight: 600;
  transition: all 0.25s ease-out;
}
footer .wrapper .footer-top .boxleft ul li a:hover {
  opacity: 0.9;
}
footer .wrapper .footer-top .boxleft .office {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-bottom: 26px;
}
footer .wrapper .footer-top .boxleft .office:last-child {
  margin-bottom: 0;
}
footer .wrapper .footer-top .boxleft .office .address {
  line-height: 1.5;
  margin-right: 25px;
  padding-left: 26px;
  position: relative;
  width: 58%;
}
footer .wrapper .footer-top .boxleft .office .address:before {
  background: url(/images/material/map.svg) no-repeat 0 0;
  background-size: 12px;
  content: "";
  height: 16px;
  left: 0;
  position: absolute;
  top: 4px;
  width: 12px;
}
footer .wrapper .footer-top .boxleft .office .contact {
  width: 42%;
}
footer .wrapper .footer-top .boxleft .office .contact p {
  margin-bottom: 10px;
}
footer .wrapper .footer-top .boxleft .office .contact .telp {
  padding-left: 26px;
  position: relative;
}
footer .wrapper .footer-top .boxleft .office .contact .telp:before {
  background: url(/images/material/telp.svg) no-repeat 0 0;
  background-size: 20px;
  bottom: 0;
  content: "";
  height: 21px;
  left: 0;
  margin: auto 0;
  position: absolute;
  top: 0;
  width: 20px;
}
footer .wrapper .footer-top .boxleft .office .contact .fax {
  padding-left: 26px;
  position: relative;
}
footer .wrapper .footer-top .boxleft .office .contact .fax:before {
  background: url(/images/material/ico-fax.svg) no-repeat 0 0;
  background-size: 20px;
  bottom: 0;
  content: "";
  height: 21px;
  left: 0;
  margin: auto 0;
  position: absolute;
  top: 0;
  width: 20px;
}
footer .wrapper .footer-top .boxleft .office .contact .email {
  padding-left: 26px;
  position: relative;
}
footer .wrapper .footer-top .boxleft .office .contact .email:before {
  background: url(/images/material/email.svg) no-repeat 0 0;
  background-size: 20px;
  bottom: 0;
  content: "";
  height: 21px;
  left: 0;
  margin: auto 0;
  position: absolute;
  top: 0;
  width: 20px;
}
footer .wrapper .footer-top .boxright {
  padding-left: 50px;
  width: 50%;
}
footer .wrapper .footer-bottom {
  display: flex;
  justify-content: space-between;
}
footer .wrapper .footer-bottom .copyright {
  font-size: 15px;
}
footer .wrapper .footer-bottom .copyright a {
  transition: all 0.25 ease-out;
}
footer .wrapper .footer-bottom .copyright a:hover {
  opacity: 0.9;
  text-decoration: underline;
}
footer .social-media ul {
  align-items: center;
  display: flex;
  justify-content: flex-end;
  margin-bottom: 0;
}
footer .social-media ul li {
  margin-bottom: 0;
  margin-right: 30px;
}
footer .social-media ul li a {
  align-items: center;
  display: flex;
  transition: all 0.25s ease-out;
}
footer .social-media ul li a img {
  margin-right: 8px;
  transition: all 0.25s ease-out;
}
footer .social-media ul li a:hover {
  opacity: 0.9;
}
footer .social-media ul li a:hover img {
  transform: scale(0.92);
}
footer .social-media ul li:last-child {
  margin-right: 0;
}
@media (max-width: 1599px) {
  .wrap-menu .inner {
    margin-right: 80px;
    padding-bottom: 130px;
  }
  .wrap-menu .inner nav ul li a {
    font-size: 1.6rem;
  }
  .wrap-menu .inner .box-bottom {
    bottom: 25px;
    padding-top: 20px;
  }
  .wrap-menu .inner .box-bottom .search {
    margin-bottom: 7px;
  }
  .wrap-menu .inner .box-bottom .language,
  .wrap-menu .inner .box-bottom .search input {
    font-size: 1rem;
  }
  footer .wrapper,
  header .wrapper {
    margin-left: 80px;
    margin-right: 80px;
  }
  footer .wrapper .footer-top .boxleft {
    width: 52%;
  }
  footer .wrapper .footer-top .boxright {
    padding-left: 40px;
    width: 48%;
  }
}
@media (max-width: 1366px) {
  .wrap-menu .inner .box-bottom .language a {
    width: 40px;
  }
  footer .wrapper .footer-top .boxright ul li {
    width: auto;
  }
}
@media (max-width: 1200px) {
  .cursor {
    display: none;
  }
  header {
    height: 123px;
  }
  header.down {
    top: -123px;
  }
  header .logo {
    width: 149px;
  }
  header .wrapper .wrap-burger {
    cursor: pointer;
    padding-bottom: 16px;
    width: 38px;
  }
  header .wrapper .wrap-burger .burger-menu {
    height: 20px;
    margin-bottom: 8px;
    width: 100%;
  }
  header .wrapper .wrap-burger .burger-menu span:nth-child(2) {
    top: 8px;
  }
  header .wrapper .wrap-burger .burger-menu span:nth-child(3) {
    top: 16px;
  }
  header .wrapper .wrap-burger .txt {
    font-size: 0.6881rem;
  }
  header .wrapper .wrap-burger.act .burger-menu {
    height: 38px;
    width: 100%;
  }
  header .wrapper .wrap-burger.act .burger-menu span:first-child {
    top: 8px;
    transform: rotate(45deg);
  }
  header .wrapper .wrap-burger.act .burger-menu span:nth-child(2) {
    opacity: 0;
  }
  header .wrapper .wrap-burger.act .burger-menu span:nth-child(3) {
    top: 8px;
    transform: rotate(-45deg);
  }
  .wrap-menu .inner nav ul li a {
    font-size: 1.5rem;
    padding-bottom: 5px;
    padding-top: 5px;
  }
  .wrap-menu .inner nav ul li > ul li a {
    padding-bottom: 0;
    padding-top: 0;
  }
  footer {
    padding: 40px 0 35px;
  }
  footer .wrapper .footer-top {
    margin-bottom: 30px;
  }
  footer .wrapper .footer-top .boxleft {
    flex-direction: column;
    width: 72%;
  }
  footer .wrapper .footer-top .boxleft .office {
    flex-direction: column;
  }
  footer .wrapper .footer-top .boxleft .office .address {
    line-height: 1.9;
    width: 100%;
  }
  footer .wrapper .footer-top .boxleft .office .contact {
    margin-top: 13px;
    width: 100%;
  }
  footer .wrapper .footer-top .boxright {
    padding-left: 20px;
    width: 28%;
  }
  footer .wrapper .footer-top .boxright ul li {
    width: auto;
  }
  footer .wrapper .footer-top .boxright ul li a {
    display: inline-block;
    padding: 3px 0;
  }
  footer .social-media ul li {
    margin-right: 24px;
  }
  footer .social-media ul li a {
    font-size: 0;
  }
  footer .social-media ul li:last-child,
  footer .social-media ul li a img {
    margin-right: 0;
  }
}
@media (max-width: 1023px) {
  header {
    height: 95px;
  }
  header.down {
    top: -95px;
  }
  header .wrapper {
    margin: 0 48px;
  }
  header .wrapper .wrap-burger .burger-menu span {
    height: 2px;
    width: 32px;
  }
  header .wrapper .wrap-burger.act .burger-menu {
    height: 34px;
    margin-bottom: 4px;
  }
  header .logo {
    width: 112px;
  }
  .wrap-menu .inner {
    margin-right: 48px;
    padding-bottom: 110px;
    padding-top: 100px;
    width: 400px;
  }
  .wrap-menu .inner nav ul li a {
    font-size: 1.125rem;
  }
  .wrap-menu .inner nav ul li a img {
    margin-right: 8px;
    width: 18px;
  }
  .wrap-menu .inner nav ul li.dropdown a.parent {
    padding-right: 25px;
  }
  .wrap-menu .inner nav ul li.dropdown a.parent:after {
    background-size: 20px auto !important;
    height: 21px;
    right: -5px;
    top: 52%;
    width: 20px;
  }
  .wrap-menu .inner nav ul li > ul li a {
    font-size: 0.875rem;
  }
  .wrap-menu .inner .box-bottom {
    align-items: center;
    display: flex;
    justify-content: space-between;
  }
  .wrap-menu .inner .box-bottom .search {
    margin-bottom: 0;
    margin-right: 30px;
    width: 70%;
  }
  .wrap-menu .inner .box-bottom .search button {
    background-size: 16px auto;
    height: 16px;
    width: 16px;
  }
  .wrap-menu .inner .box-bottom .search input {
    font-size: 0.875rem;
  }
  .wrap-menu .inner .box-bottom .language {
    align-items: center;
    display: flex;
    font-size: 0.875rem;
    height: 43px;
  }
  .wrap-menu .inner .box-bottom .language a {
    width: 35px;
  }
  footer {
    padding: 32px 0;
  }
  footer .wrapper {
    margin-left: 48px;
    margin-right: 48px;
  }
  footer .wrapper .footer-top .boxleft {
    margin-right: 0;
    padding-right: 25px;
  }
  footer .wrapper .footer-top .boxleft .address {
    line-height: 1.7;
  }
  footer .wrapper .footer-top .boxleft .address br {
    display: none;
  }
  footer .wrapper .footer-top .boxleft ul li a {
    font-size: 13px;
  }
  footer .wrapper .footer-top .boxright {
    padding-left: 0;
  }
  footer .wrapper .footer-top .boxright ul li a {
    font-size: 13px;
  }
  footer .wrapper .footer-bottom {
    font-size: 0.75rem;
  }
  footer .wrapper .footer-bottom .copyright {
    font-size: 13px;
  }
  footer .social-media ul li {
    margin-right: 12px;
  }
  footer .social-media ul li a img {
    height: 24px !important;
    width: 24px !important;
  }
}
@media (max-width: 767px) {
  header {
    height: 68px;
  }
  header.down {
    top: -68px;
  }
  header .wrapper {
    margin: 0 32px;
  }
  header .wrapper .wrap-burger {
    padding-bottom: 16px;
    width: 34px;
  }
  header .wrapper .wrap-burger .burger-menu {
    height: 10px;
    margin-bottom: 6px;
  }
  header .wrapper .wrap-burger .burger-menu span {
    width: 24px;
  }
  header .wrapper .wrap-burger .burger-menu span:nth-child(2) {
    top: 4px;
  }
  header .wrapper .wrap-burger .burger-menu span:nth-child(3) {
    top: 8px;
  }
  header .wrapper .wrap-burger.act {
    padding-bottom: 17px;
  }
  header .wrapper .wrap-burger.act .burger-menu {
    margin-bottom: 2px;
  }
  header .logo {
    width: 84px;
  }
  .wrap-menu .inner {
    margin-right: 32px;
    padding-bottom: 150px;
    width: 190px;
  }
  .wrap-menu .inner .box-bottom {
    align-items: flex-end;
    flex-direction: column;
  }
  .wrap-menu .inner .box-bottom .search {
    margin-right: 0;
    width: 100%;
  }
  footer .wrapper {
    margin: 0 32px;
  }
  footer .wrapper .footer-top {
    flex-direction: column;
    margin-bottom: 16px;
  }
  footer .wrapper .footer-top .boxleft {
    padding-right: 0;
    position: relative;
    width: 100%;
  }
  footer .wrapper .footer-top .boxleft:before {
    color: #0a3150;
    content: "WARUNA";
    font-family: Tahoma;
    font-size: 24px;
    font-weight: 700;
    left: 0;
    line-height: 1;
    margin-bottom: 16px;
    position: relative;
    top: 0;
  }
  footer .wrapper .footer-top .boxleft .address {
    margin-right: 0;
  }
  footer .wrapper .footer-top .boxleft .foot-menu ul {
    flex-direction: column;
  }
  footer .wrapper .footer-top .boxleft .foot-menu ul li {
    margin-bottom: 5px;
    margin-right: 0;
  }
  footer .wrapper .footer-top .boxright {
    margin-top: 20px;
    padding-left: 0;
    width: 100%;
  }
  footer .wrapper .footer-top .boxright ul {
    justify-content: flex-start;
  }
  footer .wrapper .footer-top .boxright ul li {
    margin-left: 0;
    margin-right: 12px;
  }
  footer .wrapper .footer-top .boxright ul li a {
    font-size: 0.875rem;
  }
  footer .wrapper .footer-top .boxright ul li a img {
    height: 20px !important;
    width: 20px !important;
  }
  footer .wrapper .footer-bottom {
    flex-direction: column;
  }
  footer .wrapper .footer-bottom .copyright {
    font-size: 0.625rem;
    order: 2;
  }
  footer .wrapper .footer-bottom .social-media {
    margin-bottom: 20px;
    order: 1;
  }
  footer .wrapper .footer-bottom .social-media ul {
    justify-content: flex-start;
  }
}
/*!
 * Milligram-scss v1.3.0
 * https://milligram.github.io
 *
 * Copyright (c) 2017 CJ Patoilo
 * Licensed under the MIT license
 */
.wrapper.no-right {
  margin-right: 0;
}
.wrapper.no-left {
  margin-left: 0;
}
@-webkit-keyframes opacit {
  0% {
    opacity: 0.3;
  }
  to {
    opacity: 1;
  }
}
@keyframes opacit {
  0% {
    opacity: 0.3;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(1turn);
  }
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(1turn);
  }
}
.title-small {
  border-bottom: 1px solid #0a3150;
  color: #0a3150;
  display: inline-block;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 3px;
  margin-bottom: 14px;
  padding-bottom: 10px;
  position: relative;
}
.title-small.title-white {
  border-color: #fff;
  color: #fff;
}
.bg-blur {
  left: 0;
  position: absolute;
  top: 0;
}
.bg-blur,
.bg-blur > img {
  height: 100%;
  width: 100%;
}
.bannerpage {
  min-height: 100vh;
}
.bannerpage,
.bannerpage figcaption {
  align-items: flex-start;
  display: flex;
  position: relative;
}
.bannerpage figcaption {
  flex-direction: column;
  height: 100%;
  justify-content: center;
  padding: 0 135px;
  width: 100%;
}
.bannerpage figcaption .infig {
  margin-left: 115px;
  margin-right: 115px;
  width: 760px;
}
.bannerpage figcaption .title-small {
  border-color: #fff;
  color: #fff;
}
.bannerpage figcaption h1 {
  color: #fff;
  font-size: 3rem;
  margin-bottom: 30px;
  text-align: left;
}
.bannerpage figcaption p {
  color: #f1edff;
  font-weight: 300;
  margin-bottom: 0;
  opacity: 0.8;
  position: relative;
}
.bannerpage figure {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}
.bannerpage figure img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: top center;
  object-position: top center;
  width: 100%;
}
.bannerpage.banner-lg figcaption {
  box-sizing: border-box;
  padding: 190px 50px 140px 20px;
}
.bannerpage.banner-lg figcaption .infig-lg {
  margin: auto 115px 50px;
  position: relative;
  width: auto;
}
.bannerpage.banner-lg figcaption .infig-lg h4 {
  color: #fff;
  opacity: 0.8;
}
.bannerpage.banner-lg figcaption .infig-lg .row {
  margin-left: -18px;
  width: calc(100% + 36px);
}
.bannerpage.banner-lg figcaption .infig-lg .row .column {
  padding: 0 18px;
}
.bannerpage.banner-lg figcaption .infig-lg .button-scroll {
  right: -155px;
  top: -205px;
}
.bannerpage.banner-contact figure {
  height: 100%;
  left: 0;
  overflow: hidden;
  position: absolute !important;
  top: 0;
  width: 100%;
}
.bannerpage.banner-contact figure img {
  height: 100%;
}
.bannerpage.banner-contact figcaption {
  padding-top: 254px;
  position: relative !important;
}
.bannerpage.banner-contact figcaption .infig {
  margin-bottom: 50px;
  width: 760px;
}
.button-scroll {
  -webkit-animation: opacit 0.8s ease-out infinite alternate;
  animation: opacit 0.8s ease-out infinite alternate;
  background: url(/images/material/button-scroll.png) no-repeat 0 0;
  bottom: 0;
  height: 126px;
  margin-bottom: 78px;
  position: absolute;
  right: 157px;
  width: 125px;
  z-index: 5;
}
.button-scroll.type-2 {
  background: url(/images/material/button-scroll-2.png) no-repeat 0 0;
  height: 132px;
  width: 136px;
}
.button-scroll.type-3 {
  -webkit-animation: unset;
  animation: unset;
  background: url(/images/material/ico-mouse.svg) no-repeat 0 0;
  background-position: 50%;
  height: 136px;
  width: 136px;
}
.button-scroll.type-3:after {
  -webkit-animation-duration: 10s;
  animation-duration: 10s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-name: spin;
  animation-name: spin;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  background: url(/images/material/button-scroll-4.png) no-repeat 0 0;
  background-size: 100%;
  content: "";
  height: 136px;
  position: absolute;
  width: 136px;
}
.middle {
  position: relative;
}
.middle.dark {
  background: rgb(7, 16, 61);
  position: relative;
  overflow: hidden;
}
.middle.dark .bg-blur {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.middle.dark .bg-blur img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
}
.middle.dark .wrapper {
  position: relative;
  z-index: 1;
  margin: 100px 135px;
}

/* Timeline text colors */
.middle.dark h1,
.middle.dark h2,
.middle.dark h3,
.middle.dark h4,
.middle.dark h5,
.middle.dark h6,
.middle.dark p,
.middle.dark span,
.middle.dark .desc {
  color: #ffffff !important;
}

/* Timeline year numbers */
.middle.dark .milestone .row-year .column-20 span {
  color: #ffffff !important;
}

/* Timeline year dots */
.middle.dark .milestone .row-year .column-20 span:before {
  background: #ffffff !important;
}

.middle.dark .milestone .row-year .column-20 span.active:after {
  border: 1px solid #ffffff !important;
}

/* Ship images - make them white using filter */
.middle.dark .milestone .row-ship .column figure > img {
  filter: brightness(0) invert(1);
  opacity: 0.3;
}

.middle.dark .milestone .row-ship .column.active figure > img {
  filter: brightness(0) invert(1);
  opacity: 1;
}

/* Timeline border gradients - white version */
.middle.dark .double-slider .spot-asnav .slider-asnav {
  -o-border-image: linear-gradient(
      180deg,
      transparent,
      rgba(255, 255, 255, 0.3),
      transparent
    )
    0 100% 0 0;
  border-image: linear-gradient(
      180deg,
      transparent,
      rgba(255, 255, 255, 0.3),
      transparent
    )
    0 100% 0 0;
}

.middle.dark .milestone .row-ship {
  -o-border-image: linear-gradient(
      270deg,
      transparent 0,
      rgba(255, 255, 255, 0.3) 50%,
      transparent
    )
    0 0 100% 0;
  border-image: linear-gradient(
      270deg,
      transparent 0,
      rgba(255, 255, 255, 0.3) 50%,
      transparent
    )
    0 0 100% 0;
}

.middle.space-top-md {
  padding-top: 88px;
}
.middle.space-top-lg {
  padding-top: 250px;
}
.middle.space-bot-md {
  padding-bottom: 50px;
}
.wrap-txt-img {
  background: #fff;
  display: flex;
  margin-bottom: -40px;
  position: relative;
  top: -140px;
}
.wrap-txt-img .box-text {
  flex: 0 0 55%;
  flex-direction: column;
  max-width: 55%;
  padding: 90px;
}
.wrap-txt-img .box-text,
.wrap-txt-img .box-text .tab-title {
  display: flex;
  justify-content: space-between;
}
.wrap-txt-img .box-text .tab-title .tab-item {
  border-bottom: 1px solid;
  color: #0a3150;
  opacity: 0.7;
  padding-bottom: 10px;
}
.wrap-txt-img .box-text .tab-title .tab-item h6 {
  font-family: Open Sans;
  font-size: 0.813rem;
  font-weight: 700;
  letter-spacing: 0.48em;
  margin: 0;
}
.wrap-txt-img .box-text .tab-title .tab-item.active {
  opacity: 1;
}
.wrap-txt-img .box-text figure img {
  width: auto;
}
.wrap-txt-img .box-text h3 {
  font-size: 2.188rem;
  margin-bottom: 0;
  margin-top: 20px;
}
.wrap-txt-img figure {
  flex: 0 0 45%;
  max-width: 45%;
}
.wrap-txt-img figure img {
  width: 100%;
}
.tag-title {
  margin-bottom: 20px;
}
.tag-title span {
  border-bottom: 1px solid;
  font-family: Open Sans;
  font-size: 0.813rem;
  font-weight: 700;
  letter-spacing: 0.48em;
  padding-bottom: 10px;
}
.wrap-yt {
  height: 600px;
  width: 100%;
}
.wrap-yt iframe {
  height: 100%;
  width: 100%;
}
@media (max-width: 1903px) {
  .bannerpage.banner-lg figcaption {
    padding-bottom: 0;
    padding-top: 190px;
  }
  .bannerpage.banner-lg figcaption .infig-lg .button-scroll {
    top: -155px;
  }
}
@media (max-width: 1599px) {
  .button-scroll {
    margin-bottom: 45px;
    right: 80px;
  }
  .bannerpage figcaption {
    padding: 0 104px;
  }
  .bannerpage figcaption .infig {
    margin-left: 0;
    margin-right: 0;
  }
  .bannerpage.banner-lg figcaption {
    padding: 150px 80px 0;
  }
  .bannerpage.banner-lg figcaption .infig-lg {
    margin-left: 0;
    margin-right: 0;
    margin-top: 20px;
  }
  .bannerpage.banner-lg figcaption .infig-lg .button-scroll {
    right: -80px;
  }
  .bannerpage.banner-lg figcaption h1 {
    font-size: 2.2rem;
  }
  .bannerpage.banner-lg.space-bottom-lg {
    height: 110vh;
    padding-bottom: 0;
  }
  .bannerpage.banner-lg.space-bottom-lg figure {
    height: 110vh;
  }
  .bannerpage.banner-lg.banner-service {
    min-height: 100vh;
    padding-bottom: 0;
  }
  .bannerpage.banner-lg.banner-service figure {
    height: auto;
  }
  .bannerpage.banner-lg.banner-service figure img {
    height: 140%;
  }
  .wrap-txt-img .box-text {
    padding: 56px;
  }
}
@media (max-width: 1366px) {
  .bannerpage.banner-lg figure {
    height: auto;
    width: 100%;
  }
  .bannerpage.banner-lg figure img {
    height: 100%;
  }
  .bannerpage.banner-lg figcaption {
    height: auto;
    padding-bottom: 0;
    padding-top: 160px;
  }
  .bannerpage.banner-lg figcaption .infig-lg {
    margin-top: 20px;
  }
  .bannerpage.banner-lg.space-bottom-lg,
  .bannerpage.banner-lg.space-bottom-lg figure {
    height: 140vh;
  }
  .bannerpage.banner-contact figure {
    height: 100% !important;
  }
  .bannerpage.banner-contact figcaption {
    padding-bottom: 0;
  }
}
@media (max-width: 1349px) {
  .bannerpage.banner-lg.space-bottom-lg,
  .bannerpage.banner-lg.space-bottom-lg figure {
    height: 150vh;
  }
}
@media (max-width: 1200px) {
  .button-scroll {
    background-size: 100% !important;
    height: 100px !important;
    width: 100px !important;
  }
  .button-scroll.type-3 {
    background-size: auto !important;
  }
  .button-scroll.type-3:after {
    background-size: 100%;
    height: 100px;
    width: 100px;
  }
  .bannerpage figcaption .infig {
    margin-left: 0;
    margin-right: 0;
    width: 640px;
  }
  .bannerpage figure,
  .bannerpage figure img {
    height: auto;
  }
  .bannerpage.banner-lg figure {
    height: 115vh;
  }
  .bannerpage.banner-lg figcaption .infig-lg {
    margin-left: 0;
    margin-right: 0;
    margin-top: 20px;
  }
  .bannerpage.banner-lg figcaption .infig-lg .button-scroll {
    right: -35px;
    top: -165px;
  }
  .bannerpage.banner-service figcaption .infig-lg {
    margin-top: 20px;
  }
  .bannerpage.banner-contact {
    padding-bottom: 0;
  }
  .tag-title span,
  .title-small {
    font-size: 0.75rem;
  }
  .wrap-txt-img {
    margin-bottom: -110px;
    top: -180px;
  }
  .wrap-txt-img .box-text {
    flex: 0 0 59%;
    justify-content: flex-start;
    max-width: 59%;
    padding: 48px;
  }
  .wrap-txt-img .box-text .tab-title {
    margin-bottom: 60px;
  }
  .wrap-txt-img .box-text .tab-title .tab-item h6 {
    font-size: 0.75rem;
  }
  .wrap-txt-img .box-text h3 {
    font-size: 1.313rem;
    padding-right: 80px;
  }
  .wrap-txt-img .box-text figure {
    flex: 0 0 100%;
    max-width: 100%;
    width: 100%;
  }
  .wrap-txt-img .box-text figure img {
    width: 56px;
  }
  .wrap-txt-img figure {
    flex: 0 0 41%;
    max-width: 41%;
  }
  .wrap-yt {
    height: 450px;
  }
}
@media (max-width: 1023px) {
  .button-scroll {
    display: none;
    right: 38px;
  }
  .bannerpage figcaption {
    padding-left: 72px;
    padding-right: 72px;
    padding-top: 50px;
  }
  .bannerpage.banner-lg figcaption {
    padding-left: 72px;
    padding-right: 72px;
    padding-top: 190px;
  }
  .bannerpage.banner-lg figcaption .infig-lg {
    margin-top: 82px;
  }
  .bannerpage.banner-lg figcaption h1 {
    font-size: 2.5rem;
  }
  .bannerpage.banner-lg figure img {
    height: 100%;
    -o-object-position: center 0;
    object-position: center 0;
  }
  .bannerpage.banner-lg.space-bottom-lg,
  .bannerpage.banner-lg.space-bottom-lg figure {
    height: 160vh;
  }
  .bannerpage.banner-service figure {
    height: 135vh;
  }
  .bannerpage.banner-contact {
    padding-bottom: 0;
  }
  .bannerpage.banner-contact figcaption .infig {
    width: 100%;
  }
  .bannerpage.banner-contact figcaption .infig h1 {
    margin-bottom: 20px;
  }
  .tag-title span,
  .title-small {
    font-size: 0.625rem;
  }
  .bg-blur > img {
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
  }
  .wrap-txt-img {
    margin-bottom: -120px;
    top: -190px;
  }
  .wrap-txt-img .box-text {
    flex: 0 0 54%;
    max-width: 54%;
    padding-left: 40px;
    padding-right: 40px;
  }
  .wrap-txt-img .box-text figure img {
    width: 40px;
  }
  .wrap-txt-img .box-text h3 {
    font-size: 1rem;
    padding-right: 50px;
  }
  .wrap-txt-img .box-text .tab-title .tab-item h6 {
    font-size: 0.625rem;
  }
  .wrap-txt-img figure {
    flex: 0 0 46%;
    max-width: 46%;
  }
  .wrap-yt {
    height: 350px;
  }
}
@media (max-width: 767px) {
  .wrapper.no-right {
    margin-right: 24px;
  }
  .wrapper.no-left {
    margin-left: 24px;
  }
  .bannerpage figcaption {
    justify-content: flex-end;
    padding: 40px 24px 30px;
  }
  .bannerpage figcaption .infig {
    width: 100%;
  }
  .bannerpage figcaption h1 {
    font-size: 1.5rem;
    margin-bottom: 10px;
  }
  .bannerpage.banner-lg {
    padding-bottom: 340px;
  }
  .bannerpage.banner-lg figcaption {
    padding: 340px 24px 34px;
    position: relative;
  }
  .bannerpage.banner-lg figcaption .infig-lg {
    margin-top: 0;
  }
  .bannerpage.banner-lg figcaption .infig-lg h4 {
    font-size: 1rem;
  }
  .bannerpage.banner-lg figcaption .infig-lg .row .column {
    flex: 0 0 100%;
    margin-bottom: 20px;
    max-width: 100%;
  }
  .bannerpage.banner-lg figcaption h1 {
    font-size: 1.5rem;
  }
  .bannerpage.banner-lg.banner-service figure,
  .bannerpage.banner-lg.banner-service figure img {
    height: 100%;
  }
  .bannerpage.banner-lg figure {
    height: 100%;
    position: absolute;
  }
  .bannerpage.banner-lg.space-bottom-lg,
  .bannerpage.banner-lg.space-bottom-lg figure,
  .bannerpage.banner-lg figure img {
    height: 100%;
  }
  .bannerpage.banner-lg.space-bottom-lg figcaption {
    padding-bottom: 320px;
  }
  .bannerpage.banner-contact,
  .bannerpage.banner-service {
    padding-bottom: 0;
  }
  .wrap-txt figure {
    margin-left: -45px;
  }
  .wrap-txt-img {
    flex-direction: column;
    margin-bottom: -230px;
    top: -290px;
  }
  .wrap-txt-img .box-text {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 48px 23px 44px;
  }
  .wrap-txt-img .box-text h3 {
    font-size: 1.5rem;
  }
  .wrap-txt-img .box-text figure img {
    width: 30px;
  }
  .wrap-txt-img figure {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .bg-blur {
    background: #eaeaea;
  }
  .bg-blur:before {
    background: url(/images/material/Gradient1-small.png) no-repeat right 0;
    background-size: auto 100%;
    left: 0;
    top: 0;
  }
  .bg-blur:after,
  .bg-blur:before {
    content: "";
    height: 304px;
    position: absolute;
    width: 100%;
  }
  .bg-blur:after {
    background: url(/images/material/Gradient2-small.png) no-repeat 100% 100%;
    background-size: auto 100%;
    bottom: 0;
    opacity: 0.6;
    right: 0;
  }
  .bg-blur img {
    display: none;
  }
  .bg-blur.blur-about {
    background: url(/images/material/bg-history-small.jpg) no-repeat 0 0;
  }
  .wrap-yt {
    height: 250px;
  }
}
.flex-box {
  align-items: stretch;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-bottom: 100px;
}
.flex-box .wrap-box {
  background: #0a3150;
  border: 1px solid #0a3150;
  color: #fff;
  display: flex;
  height: 370px;
  width: 49%;
}
.flex-box .wrap-box.transprnt {
  background: transparent;
  color: #0a3150;
}
.flex-box .wrap-box.transprnt .box-topic h3 {
  color: #0a3150;
}
.flex-box .wrap-box .box-topic {
  margin: auto 0;
  padding: 0 50px;
}
.flex-box .wrap-box .box-topic h3 {
  color: #fff;
  font-size: 2.25rem;
}
.culture {
  background: #eaeaea;
  position: relative;
}
.culture figure.ornament > img {
  position: absolute;
  z-index: 1;
}
.culture figure.ornament > img.blur-1 {
  left: 0;
  top: 0;
}
.culture figure.ornament > img.blur-2 {
  bottom: 0;
  right: 0;
}
.culture figure.ornament > img.blur-3 {
  bottom: 50px;
  left: 10px;
}
.culture figure.ornament > img.blur-4 {
  bottom: 0;
  right: 0;
}
.culture figure.ornament > img.blur-5 {
  left: 0;
  top: -20px;
}
.culture figure.ornament > img.blur-6 {
  bottom: 0;
  right: 0;
}
.culture figure.ornament > img.grid-1 {
  right: 0;
  top: -20px;
}
.culture figure.ornament > img.grid-2 {
  bottom: -80px;
  left: 0;
}
.culture figure.ornament > img.grid-3 {
  bottom: 0;
  right: 0;
}
.culture figure.ornament > img.grid-4 {
  bottom: 0;
  left: 0;
}
.culture figure.ornament > img.grid-5 {
  bottom: 0;
  right: 0;
}
.culture figure.ornament > img.grid-6 {
  left: 0;
  top: 70px;
}
.culture .text-intro {
  padding: 100px 0 20px;
  position: relative;
  text-align: center;
  z-index: 9;
}
.culture .text-intro h2 {
  margin-bottom: 10px;
}
.culture .wrap-txt {
  display: flex;
  justify-content: space-between;
  position: relative;
}
.culture .wrap-txt.txt-left {
  padding-left: 120px;
}
.culture .wrap-txt.txt-right {
  padding-right: 120px;
}
.culture .wrap-txt figure {
  flex: 0 0 auto;
  max-width: 100%;
}
.culture .wrap-txt figure > img {
  width: 100%;
}
.culture .wrap-txt .box-text {
  align-self: center;
  flex: 0 0 35%;
  max-width: 35%;
  position: relative;
  z-index: 4;
}
.culture .wrap-txt .box-text h1 {
  color: #ccd0d3;
  font-size: 10rem;
  left: -70px;
  line-height: 1;
  position: absolute;
  top: -70px;
}
.culture .wrap-txt .box-text h2 {
  font-weight: 400;
  line-height: 1;
  margin-bottom: 35px;
  position: relative;
}
.culture .wrap-txt .box-text .desc {
  border-left: 1px solid;
  padding-left: 35px;
}
.double-slider {
  align-items: center;
  display: flex;
  margin: 0 115px;
  padding: 50px 0;
}
.double-slider .spot-asnav {
  flex: 0 0 360px;
  max-width: 360px;
}
.double-slider .spot-asnav .slider-asnav {
  border: none;
  text-align: left;
}
.double-slider .spot-asnav .slider-asnav .slick-list {
  cursor: pointer;
  padding: 100px 0 0 !important;
}
.double-slider .spot-asnav .slider-asnav .slick-list h1 {
  font-size: 4.5rem;
  line-height: 1.2;
  opacity: 0.4;
  transition: all 0.2s ease;
}
.double-slider .spot-asnav .slider-asnav .slick-list .slick-current h1 {
  opacity: 1;
  position: relative;
  top: -6px;
  transform: none;
  background: linear-gradient(to right, #fff, #ffffff60);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.double-slider .spot-content {
  flex: 0 0 calc(100% - 360px);
  max-width: calc(100% - 360px);
  padding: 0 60px 0 50px;
}
.double-slider .spot-content h3 {
  font-size: 3.063rem;
}
.double-slider .spot-content .desc {
  height: 300px;
  padding-right: 10px;
}
.double-slider .spot-content .desc p {
  margin-top: 100px !important;
}
.double-slider .spot-content .desc::-webkit-scrollbar-track {
  background-color: #fff;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  opacity: 0.5;
}
.double-slider .spot-content .desc::-webkit-scrollbar {
  background-color: #fff;
  opacity: 0.5;
  width: 6px;
}
.double-slider .spot-content .desc::-webkit-scrollbar-thumb {
  background-color: #0a3150;
}
.milestone {
  margin: 0 20px;
  padding-bottom: 70px;
}

.milestone .row-ship {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;

  border-style: solid;
  border-width: 1px;
  border-image: linear-gradient(270deg, transparent 0, #041c32 50%, transparent)
    0 0 100% 0;

  padding-bottom: 50px;
}

.milestone .row-ship .column-20 {
  flex: 1;
  text-align: center;
}

.milestone .row-ship .column figure > img {
  opacity: 0.1;
  transition: opacity 0.3s ease;
}

.milestone .row-ship .column.active figure > img {
  opacity: 1;
}

.milestone .row-year {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  padding-top: 18px;
}

.milestone .row-year .column-20 {
  flex: 1;
  text-align: center;
  padding: 0;
}

/* YEAR TEXT */
.milestone .row-year .column-20 span {
  font-family: Albra;
  font-size: 1.5rem;
  position: relative;
  display: inline-block;
}

/* DOT */
.milestone .row-year .column-20 span::before {
  content: "";
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  width: 8px;
  height: 8px;
  background: #0a3150;
  border-radius: 8px;
}

/* ACTIVE CIRCLE */
.milestone .row-year .column-20 span.active::after {
  content: "";
  position: absolute;
  top: -42px;
  left: 50%;
  transform: translateX(-50%);
  width: 42px;
  height: 42px;
  border: 1px solid #0a3150;
  border-radius: 25px;
  background: transparent;
}

.middle.trans {
  background: #11335b;
  height: 140px;
  margin-top: -2px;
}
.wrap-txt-img .box-text .wrap-tab {
  height: 100%;
  position: relative;
}
.wrap-txt-img .box-text .wrap-tab .content-tab {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.bannerpage.bannerFix {
  align-items: center;
  min-height: auto;
}
.bannerpage.bannerFix figure {
  position: relative;
  width: 100%;
}
.bannerpage.bannerFix figcaption {
  position: absolute;
}
.slider-ourhistory {
  background: #0d3955;
  background-size: cover;
  color: #fff;
  padding: 90px 0 150px;
  position: relative;
}
.slider-ourhistory:before {
  background: url(/images/material/about-blur-7.png) no-repeat 50%;
  content: "";
  height: 617px;
  left: 0;
  position: absolute;
  top: 0;
  width: 486px;
}
.slider-ourhistory:after {
  background: url(/images/material/about-blur-8.png) no-repeat 50%;
  bottom: 0;
  content: "";
  height: 396px;
  position: absolute;
  right: 0;
  width: 420px;
}
.slider-ourhistory h2,
.slider-ourhistory h4 {
  color: #fff;
}
.slider-ourhistory h2 {
  margin-bottom: 40px;
}
.slider-ourhistory .desc {
  font-size: 1.25rem;
}
.slider-ourhistory .slider {
  margin-right: -135px;
  position: relative;
}
.slider-ourhistory .slider:after {
  background: linear-gradient(
    270deg,
    #0d3955,
    rgba(13, 57, 85, 0.77) 60.8%,
    rgba(13, 57, 85, 0)
  );
  bottom: 0;
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 167px;
}
.slider-ourhistory .slider .list {
  padding-right: 60px;
  padding-top: 80px;
  position: relative;
  transition: all 0.2s ease-out;
  width: 400px !important;
}
.slider-ourhistory .slider .list * {
  opacity: 0.7;
}
.slider-ourhistory .slider .list:before {
  background-color: #fff;
  content: "";
  height: 1px;
  left: 0;
  opacity: 1;
  position: absolute;
  top: 21px;
  width: 100%;
}
.slider-ourhistory .slider .list img {
  width: 100%;
}
.slider-ourhistory .slider .list figure {
  border-bottom: 1px solid #fff;
  margin-bottom: 20px;
  padding-bottom: 20px;
}
.slider-ourhistory .slider .slick-current .list * {
  opacity: 1;
}
.slider-ourhistory .slider .slick-current .dots span {
  border-color: #fff;
}
.slider-ourhistory .slider .dots {
  display: block;
  left: 0;
  position: absolute;
  top: 0;
}
.slider-ourhistory .slider .dots span {
  background-color: transparent;
  border: 1px solid transparent;
  border-radius: 100%;
  display: block;
  height: 42px;
  opacity: 1;
  width: 42px;
}
.slider-ourhistory .slider .dots span:before {
  background-color: #fff;
  border-radius: 100%;
  bottom: 0;
  content: "";
  height: 8px;
  left: 0;
  margin: auto;
  opacity: 1;
  position: absolute;
  right: 0;
  top: 0;
  width: 8px;
}
@media (max-width: 1599px) {
  .middle.trans {
    margin-top: -3px;
  }
  .culture .wrap-txt .box-text h1 {
    font-size: 6.5rem;
    top: -70px;
  }
  .double-slider .spot-asnav .slider-asnav .slick-list h1 {
    font-size: 3.5rem;
  }
  .double-slider .spot-content h3 {
    font-size: 3rem;
  }
  .milestone .row-year .column-20 span {
    font-size: 1.255rem;
    padding-top: 10px;
  }
  .milestone .row-year .column-20 span:before {
    top: -15px;
  }
  .milestone .row-year .column-20 span.active:after {
    top: -32px;
  }
}
@media (max-width: 1200px) {
  .middle.trans {
    background: #0e2c4e;
  }
  .flex-box .wrap-box {
    height: auto;
    padding: 30px 0;
    width: 48%;
  }
  .flex-box .wrap-box .box-topic {
    padding: 0 48px;
  }
  .flex-box .wrap-box .box-topic h3 {
    font-size: 1.75rem;
  }
  .culture figure.ornament > img.blur-1 {
    height: 420px;
  }
  .culture figure.ornament > img.blur-2 {
    height: 529px;
  }
  .culture .text-intro {
    padding-bottom: 45px;
  }
  .culture .wrap-txt .box-text {
    flex: 0 0 38%;
    max-width: 38%;
  }
  .culture .wrap-txt .box-text h1 {
    left: -50px;
    top: -55px;
  }
  .culture .wrap-txt .box-text h2 {
    font-size: 3.5rem;
  }
  .culture .wrap-txt figure {
    flex: 0 0 62%;
    max-width: 62%;
  }
  .culture .wrap-txt.txt-right {
    padding-right: 0;
  }
  .double-slider {
    margin: 0;
    padding-bottom: 40px;
    padding-top: 100px;
  }
  .double-slider .spot-asnav {
    flex: 0 0 285px;
    max-width: 285px;
  }
  .double-slider .spot-asnav .slider-asnav {
    padding-right: 64px;
  }
  .double-slider .spot-asnav .slider-asnav .slick-list .slick-current h1 {
    padding-left: 50px;
  }
  .double-slider .spot-content {
    flex: 0 0 calc(100% - 285px);
    max-width: calc(100% - 285px);
    padding: 0 0 0 60px;
  }
  .milestone {
    margin: 0;
  }
  .milestone .row-ship {
    padding-left: 24px;
    padding-right: 24px;
  }
  .milestone .row-ship .column figure {
    align-items: center;
    display: flex;
    height: 100%;
    justify-content: center;
  }
  .milestone .row-ship .column:first-child figure img {
    max-width: 64px;
  }
  .milestone .row-ship .column:nth-child(2) figure img {
    max-width: 136px;
  }
  .milestone .row-ship .column:nth-child(3) figure img {
    max-width: 120px;
  }
  .milestone .row-ship .column.active figure img {
    max-width: 185px;
  }
  .milestone .row-year {
    padding-left: 45px;
    padding-right: 45px;
    padding-top: 20px;
  }
  .milestone .row-year .column-20 span {
    font-size: 1.125rem;
  }
  .milestone .row-year .column-20 span:before {
    left: 12px;
    top: -17px;
  }
  .milestone .row-year .column-20 span.active:after {
    height: 32px;
    left: 0;
    top: -29px;
    width: 32px;
  }
}
@media (max-width: 1023px) {
  .middle.trans {
    display: none;
  }
  .flex-box {
    padding-bottom: 72px;
  }
  .flex-box .wrap-box {
    padding: 25px 0;
  }
  .flex-box .wrap-box .box-topic h3 {
    font-size: 1.5rem;
  }
  .culture {
    padding: 20px 0;
  }
  .culture figure.ornament > img {
    opacity: 0.5;
  }
  .culture figure.ornament > img.blur-1 {
    height: 300px;
  }
  .culture figure.ornament > img.blur-2 {
    height: 429px;
  }
  .culture figure.ornament > img.blur-3,
  .culture figure.ornament > img.blur-4,
  .culture figure.ornament > img.blur-5,
  .culture figure.ornament > img.blur-6 {
    bottom: 0;
    height: 420px;
  }
  .culture figure.ornament > img.grid-3,
  .culture figure.ornament > img.grid-4,
  .culture figure.ornament > img.grid-5,
  .culture figure.ornament > img.grid-6 {
    height: 420px;
  }
  .culture .text-intro {
    padding-bottom: 80px;
    padding-top: 65px;
  }
  .culture .text-intro h2 {
    font-size: 2.625rem;
  }
  .culture .wrap-txt .box-text {
    flex: 0 0 45%;
    max-width: 45%;
  }
  .culture .wrap-txt .box-text h2 {
    font-size: 2.625rem;
  }
  .culture .wrap-txt .box-text .desc {
    border: 0;
    position: relative;
  }
  .culture .wrap-txt .box-text .desc:before {
    background: #0a3150;
    content: "";
    height: 70%;
    left: 0;
    position: absolute;
    top: 0;
    width: 1px;
  }
  .culture .wrap-txt figure {
    flex: 0 0 55%;
    max-width: 55%;
  }
  .culture .wrap-txt.txt-left {
    padding-left: 48px;
  }
  .double-slider {
    padding-bottom: 45px;
    padding-top: 64px;
  }
  .double-slider .spot-asnav {
    flex: 0 0 207px;
    max-width: 207px;
  }
  .double-slider .spot-asnav .slider-asnav {
    padding-right: 50px;
  }
  .double-slider .spot-asnav .slider-asnav .slick-list h1 {
    font-size: 3rem;
  }
  .double-slider .spot-asnav .slider-asnav .slick-list .slick-current h1 {
    padding-left: 25px;
    top: 0;
    transform: scale(1.6);
  }
  .double-slider .spot-content {
    flex: 0 0 calc(100% - 207px);
    max-width: calc(100% - 207px);
    padding: 0 0 0 48px;
  }
  .double-slider .spot-content h3 {
    font-size: 2.625rem;
    line-height: 1.2;
    margin-bottom: 10px;
  }
  .milestone {
    margin-left: -30px;
    margin-right: -30px;
    padding-bottom: 58px;
  }
  .milestone .row-ship .column.active figure img {
    margin-right: -15px;
  }
}
@media (max-width: 767px) {
  .wrap-txt-img .box-text .wrap-tab {
    height: 100%;
    position: relative;
  }
  .wrap-txt-img .box-text .wrap-tab .content-tab {
    position: unset;
    top: unset;
    transform: unset;
  }
  .flex-box {
    flex-direction: column;
  }
  .flex-box .wrap-box {
    margin-bottom: 24px;
    padding: 40px 0 30px;
    width: 100%;
  }
  .flex-box .wrap-box:last-child {
    margin-bottom: 0;
  }
  .flex-box .wrap-box .box-topic {
    padding: 0 48px;
  }
  .culture .text-intro {
    padding: 40px 0 10px;
  }
  .culture .text-intro h2 {
    font-size: 1.5rem;
  }
  .culture .text-intro p br {
    display: none;
  }
  .culture .wrap-txt {
    flex-direction: column;
  }
  .culture .wrap-txt .box-text {
    flex: 0 0 100%;
    margin-bottom: 20px;
    margin-left: 0;
    max-width: 100%;
    order: 2;
  }
  .culture .wrap-txt .box-text h1 {
    font-size: 4.5rem;
    left: 0;
    top: -42px;
  }
  .culture .wrap-txt .box-text h2 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    padding-left: 36px;
  }
  .culture .wrap-txt .box-text .desc {
    padding-left: 16px;
  }
  .culture .wrap-txt .box-text .desc:before {
    height: 100%;
  }
  .culture .wrap-txt figure {
    flex: 0 0 100%;
    margin-bottom: 30px;
    max-width: 100%;
    order: 1;
  }
  .culture .wrap-txt.txt-left {
    margin-left: 0;
    padding-left: 0;
  }
  .culture .wrap-txt.txt-left figure {
    margin-left: 0;
    margin-right: -45px;
  }
  .culture figure {
    overflow: hidden;
  }
  .culture figure.ornament > img.blur-2 {
    bottom: 100px;
  }
  .culture figure.ornament > img.blur-3,
  .culture figure.ornament > img.blur-4,
  .culture figure.ornament > img.blur-5 {
    bottom: 50px;
    left: 0;
  }
  .culture figure.ornament > img.blur-6 {
    bottom: 290px;
  }
  .double-slider {
    flex-direction: column;
    padding-top: 45px;
  }
  .double-slider .spot-asnav {
    flex: 0 0 100%;
    margin-bottom: 30px;
    max-width: 100%;
  }
  .double-slider .spot-asnav .slider-asnav {
    -o-border-image: linear-gradient(
        270deg,
        transparent 0,
        #041c32 50%,
        transparent
      )
      0 0 100% 0;
    border-image: linear-gradient(
        270deg,
        transparent 0,
        #041c32 50%,
        transparent
      )
      0 0 100% 0;
    border-style: solid;
    border-width: 1px;
    padding-right: 0;
  }
  .double-slider .spot-asnav .slider-asnav .slick-list {
    padding-top: 0 !important;
  }
  .double-slider .spot-asnav .slider-asnav .slick-list h1 {
    font-size: 2rem;
    text-align: center;
  }
  .double-slider .spot-asnav .slider-asnav .slick-list .slick-current h1 {
    padding-left: 0;
  }
  .double-slider .spot-content {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 0;
  }
  .double-slider .spot-content h3 {
    font-size: 1.5rem;
  }
  .milestone {
    margin-left: -24px;
    margin-right: -24px;
    overflow: hidden;
    position: relative;
  }
  .milestone .row-year {
    display: inline-block;
    display: none;
    flex-direction: row;
    overflow: auto;
    padding-left: 24px;
    padding-right: 24px;
    padding-top: 50px;
    white-space: nowrap;
  }
  .milestone .row-year .column {
    display: inline-block;
    flex: 0 0 0;
    max-width: none;
    padding: 0 5px;
    width: 145px;
  }
  .milestone .row-ship {
    display: inline-block;
    flex-direction: row;
    margin-bottom: -34px;
    overflow: auto;
    white-space: nowrap;
  }
  .milestone .row-ship .column {
    display: inline-block;
    padding: 0 5px;
  }
  .milestone .row-ship .column:first-child figure img,
  .milestone .row-ship .column:nth-child(2) figure img,
  .milestone .row-ship .column:nth-child(3) figure img,
  .milestone .row-ship .column:nth-child(4) figure img,
  .milestone .row-ship .column:nth-child(5) figure img,
  .milestone .row-ship .column:nth-child(6) figure img {
    max-width: 100%;
    width: 200px;
  }
  .slider-ourhistory {
    overflow: hidden;
  }
  .slider-ourhistory .slider {
    margin-right: -24px;
  }
  .slider-ourhistory .slider:after {
    display: none;
  }
}

/* ===== ABOUT PAGE SPECIFIC STYLES ===== */

/* Banner Styles */
.bannerpage.about-banner {
  position: relative;
  width: 100%;
  min-height: 100vh;
  height: 100vh;
  overflow: hidden;
}

.bannerpage.about-banner img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  object-fit: cover;
  object-position: center center;
  display: block;
  min-width: 100%;
  min-height: 100vh;
}

.bannerpage.about-banner figure {
  position: relative;
  width: 100%;
  height: 100vh;
  margin: 0;
  padding: 0;
}

.bannerpage.about-banner figure::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.4) 100%),
    linear-gradient(
      180deg,
      rgb(171 76 255 / 59%) 0%,
      rgb(12 26 102 / 100%) 100%
    ) !important;
  z-index: 1;
}

@media (max-width: 766px) {
  .bannerpage.about-banner figure::after {
    /* Ensure the purple linear overlay is visible on small screens */
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.4) 100%),
      linear-gradient(
        180deg,
        rgb(171 76 255 / 59%) 0%,
        rgb(12 26 102 / 100%) 100%
      ) !important;
    z-index: 1 !important;
    pointer-events: none !important;
  }

  /* Ensure banner text stays above the overlay on small screens */
  .bannerpage.about-banner figcaption {
    z-index: 3 !important;
  }
}

/* Ensure the blue background shows on <= 766px */
@media (max-width: 766px) {
  /* Force dark blue background on the blurred layer inside the dark section */
  .middle.dark .bg-blur {
    background: rgb(7, 16, 61) !important; /* same as .middle.dark */
  }

  /* Remove light mobile overlays so the blue is visible */
  .middle.dark .bg-blur::before,
  .middle.dark .bg-blur::after {
    background: none !important;
  }
}

/* Middle section: set a slightly reduced max-width and center to avoid touching edges */
.middle.dark .wrapper {
  position: relative;
  z-index: 1;
  max-width: 70%; /* slightly reduced from full width */
  margin: 100px auto; /* center the section */
  padding: 0 40px; /* inner spacing to avoid touching edges */
}

/* Remove extra inner margins that shrink content area */
.middle.dark .double-slider {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

/* Make milestone area align with wrapper edges of this section */
.middle.dark .milestone {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

@media (max-width: 1599px) {
  .middle.dark .wrapper {
    max-width: 80%;
    padding: 0 36px;
  }
}

@media (max-width: 1023px) {
  .middle.dark .wrapper {
    max-width: 960px;
    padding: 0 36px;
    margin: 80px auto;
  }
}

@media (max-width: 767px) {
  .middle.dark .wrapper {
    max-width: 85%;
    padding: 0 24px;
    margin: 60px auto;
  }
}

.bannerpage.about-banner figcaption {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.bannerpage.about-banner .banner-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  z-index: 2;
  padding: 0 clamp(20px, 12%, 150px);
}

/* Banner Headline */
.bannerpage.about-banner .banner-headline h4 {
  color: #ffffff;
  text-align: left;
  font-family: Inter, sans-serif;
  font-weight: 400;
  font-size: clamp(18px, 2.2vw, 32px) !important;
  line-height: 1.2;
  margin-top: 0;
  margin-bottom: 10px;
}

/* Banner Title */
.bannerpage.about-banner .banner-title h1 {
  color: #ffffff;
  font-weight: 700;
  font-size: clamp(80px, 16vw, 290px) !important;
  line-height: 0.9;
  opacity: 0.5;
  text-align: left;
  word-break: break-word;
  margin: 0;
  padding: 0;
}

/* Banner Description */
.bannerpage.about-banner .banner-description p {
  color: #ffffff;
  font-weight: 400;
  font-size: clamp(14px, 1.4vw, 18px) !important;
  line-height: clamp(24px, 2vw, 34px);
  margin-top: 45px;
  font-style: Regular;
  text-align: left;
}

/* Vision & Mission Section */
.vision-mission-section {
  position: relative;
  background: linear-gradient(180deg, #ffffff 0%, #faf9fb 100%);
  color: #333;
  padding: clamp(80px, 12%, 120px) clamp(30px, 6%, 60px);
  overflow: hidden;
}

/* Background image positioned at right - only for Vision & Mission area */
.vision-mission-section::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: clamp(350px, 45%, 700px);
  height: 70%;
  background-image: url("/cfind/source/thumb/images/about/bg-vision.png");
  background-size: contain;
  background-position: right top;
  background-repeat: no-repeat;
  z-index: 0;
  pointer-events: none;
}

/* Vision */
.vision-mission-section .vision {
  text-align: center;
  margin-bottom: clamp(100px, 18%, 180px);
  margin-top: clamp(20px, 4%, 40px);
  position: relative;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
}

.vision-mission-section .vision .title {
  position: relative;
  display: inline-block;
  font-size: clamp(2.2rem, 4.5vw, 3rem);
  font-weight: 700;
  background: linear-gradient(to right, #4b318f, #4c318f63);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  margin-bottom: clamp(25px, 4%, 35px);
  padding-right: clamp(80px, 12%, 120px);
}

.vision-mission-section .vision .title::before {
  content: "";
  position: absolute;
  top: 50%;
  left: calc(100% - 50px);
  width: 100vw;
  height: 2px;
  background: rgba(91, 58, 153, 0.35);
  transform: translateY(-50%);
}

.vision-mission-section .vision .title::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 45px;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  background: #5b3a99;
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(91, 58, 153, 0.2);
}

.vision-mission-section .vision .desc {
  max-width: clamp(320px, 65%, 480px);
  margin: 0 auto;
  text-align: right;
  font-size: clamp(15px, 1.5vw, 17px);
  line-height: clamp(1.65, 2vw, 1.85);
  color: #555;
  transform: translateX(clamp(-55%, -45%, -28%));
  font-weight: 400;
}

/* Mission */
.vision-mission-section .mission {
  text-align: center;
  position: relative;
  transform: translateX(clamp(8%, 12%, 18%));
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: clamp(40px, 8%, 60px);
  z-index: 1;
}

.vision-mission-section .mission .title {
  position: relative;
  display: inline-block;
  font-size: clamp(2.2rem, 4.5vw, 3rem);
  font-weight: 700;
  background: linear-gradient(to right, #4b318f, #4c318f63);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  margin-bottom: clamp(25px, 4%, 35px);
  padding-right: clamp(80px, 12%, 120px);
}

.vision-mission-section .mission .title::before {
  content: "";
  position: absolute;
  top: 50%;
  left: calc(100% - 50px);
  width: 100vw;
  height: 2px;
  background: rgba(91, 58, 153, 0.35);
  transform: translateY(-50%);
}

.vision-mission-section .mission .title::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 45px;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  background: #5b3a99;
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(91, 58, 153, 0.2);
}

.vision-mission-section .mission .desc {
  max-width: clamp(320px, 65%, 480px);
  margin: 0 auto;
  text-align: right;
  font-size: clamp(15px, 1.5vw, 17px);
  line-height: clamp(1.65, 2vw, 1.85);
  color: #555;
  transform: translateX(clamp(-55%, -45%, -28%));
  font-weight: 400;
}

/* Core Values Section - Separate from Vision Mission */
.core-value-section {
  padding: clamp(60px, 10%, 100px) 0;
  background-color: #faf9fb;
  position: relative;
  overflow: visible !important;
}

.core-value-section .core-value-wrapper {
  max-width: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  padding-left: clamp(40px, 6%, 80px) !important;
  overflow: visible !important;
}

.core-value-section .core-value-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: clamp(30px, 5%, 60px);
  margin-bottom: clamp(40px, 6%, 60px);
  padding: 0 clamp(40px, 6%, 80px);
}

.core-value-section .core-value-header .title {
  font-size: clamp(2.5rem, 4.5vw, 3.5rem);
  font-weight: 700;
  background: linear-gradient(to right, #4b318f, #4c318f63);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  flex: 0 0 auto;
  min-width: fit-content;
  padding-right: clamp(20px, 3%, 40px);
}

.core-value-section .core-value-header .desc {
  flex: 1;
  max-width: clamp(400px, 60%, 700px);
  font-size: clamp(14px, 1.6vw, 16px);
  line-height: clamp(1.6, 2vw, 1.8);
  color: #666;
  text-align: left;
}

.core-value-section .core-scroll {
  display: flex !important;
  gap: 20px !important;
  overflow-x: auto !important;
  overflow-y: visible !important;
  padding: 40px 0 40px clamp(40px, 6%, 80px) !important;
  margin-right: 0 !important;
  margin-left: 0 !important;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  min-height: 350px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.core-value-section .core-scroll::-webkit-scrollbar {
  display: none;
}

.core-value-section .core-card {
  background: linear-gradient(
    135deg,
    #ffffff 0%,
    #f8f8f8 30%,
    #ececec 50%,
    #f8f8f8 70%,
    #ffffff 100%
  );
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  padding: 32px 24px;
  min-width: 320px !important;
  max-width: 320px !important;
  flex-shrink: 0 !important;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: start;
  text-align: left;
  position: relative;
  z-index: 1;
  will-change: transform;
}

.core-value-section .core-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
  border-color: rgb(160, 160, 160);
  z-index: 999 !important;
}

.core-value-section .core-card .icon-wrapper {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.core-value-section .core-card .icon-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.core-value-section .core-card h3 {
  font-size: clamp(1.1rem, 2vw, 1.25rem);
  font-weight: 700;
  color: #5b3a99;
  margin-bottom: 12px;
}

.core-value-section .core-card p {
  font-size: clamp(0.9rem, 1.5vw, 0.95rem);
  line-height: 1.6;
  color: #666;
  margin: 0;
}

/* Core Value Section Divider - matching WSM */
.core-value-section .core-value-wrapper .section-divider {
  position: relative;
  height: 22px;
  margin-top: 0px;
  margin-left: clamp(40px, 6%, 80px);
  margin-right: clamp(40px, 6%, 80px);
}

.core-value-section .core-value-wrapper .section-divider:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 10px;
  height: 2px;
  background: gray;
}

/* Purple scrollbar-style thumb */
.core-value-section .core-value-wrapper .section-divider i {
  position: absolute;
  left: 0;
  top: 8px;
  height: 6px;
  background: #5a3ca7;
  transform: translateX(var(--thumbX, 0px));
  width: var(--thumbW, 50px);
  opacity: 1 !important;
  transition: transform 150ms ease;
  pointer-events: auto !important;
  cursor: grab;
  touch-action: none;
  z-index: 2;
}

/* When no horizontal overflow, make the thumb span full track width */
.core-value-section .core-value-wrapper .section-divider i.is-full {
  width: 100% !important;
  transform: translateX(0) !important;
  cursor: default;
}

/* Visual feedback when dragging */
.core-value-section .core-value-wrapper .section-divider i.is-dragging {
  cursor: grabbing;
}

/* Keep old styles for backward compatibility if needed */
/* Core Values */
.vision-mission-section .core-value-wrapper {
  margin-top: clamp(80px, 15%, 150px);
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 clamp(40px, 6%, 80px);
  padding-right: 0;
  overflow: hidden;
  background-image: url("/cfind/source/thumb/images/about/bg-gradient.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.vision-mission-section .core-value-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: clamp(30px, 5%, 60px);
  margin-bottom: clamp(40px, 6%, 60px);
}

.vision-mission-section .core-value-header .title {
  font-size: clamp(2.5rem, 4.5vw, 3.5rem);
  font-weight: 700;
  color: #5b3a99;
  flex: 0 0 auto;
  min-width: fit-content;
  padding-right: clamp(20px, 3%, 40px);
}

.vision-mission-section .core-value-header .desc {
  flex: 1;
  max-width: clamp(400px, 60%, 700px);
  font-size: clamp(14px, 1.6vw, 16px);
  line-height: clamp(1.6, 2vw, 1.8);
  color: #666;
  text-align: left;
}
.vision-mission-section .core-scroll {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  overflow-y: visible;
  gap: clamp(20px, 3%, 10px);
  padding-top: 10px;
  padding-bottom: clamp(30px, 4%, 40px);
  margin-top: -10px;
  margin-left: calc(-1 * clamp(40px, 6%, 80px));
  padding-left: clamp(40px, 6%, 80px);
  padding-right: clamp(40px, 6%, 80px);
  /* Custom purple scrollbar */
  scrollbar-width: thin;
  scrollbar-color: #5b3a99 transparent;
}

/* Purple scrollbar for webkit browsers */
.vision-mission-section .core-scroll::-webkit-scrollbar {
  height: 3px;
}

.vision-mission-section .core-scroll::-webkit-scrollbar-track {
  background: transparent;
}

.vision-mission-section .core-scroll::-webkit-scrollbar-thumb {
  background: #5b3a99;
  border-radius: 2px;
  min-width: 100px;
  max-width: 150px;
}

.vision-mission-section .core-scroll::-webkit-scrollbar-thumb:hover {
  background: #7b5ab8;
}

.vision-mission-section .core-card {
  min-width: clamp(220px, 28%, 280px);
  max-width: clamp(220px, 28%, 280px);
  background: linear-gradient(180deg, #f8f8f8 90%, #f0f0f0 100%);
  border: 1px solid #d8d8d8;
  border-radius: 8px;
  padding: 45px 30px;
  text-align: left;
  transition: all 0.3s ease;
  flex-shrink: 0;
  position: relative;
}

.vision-mission-section .core-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.vision-mission-section .core-card .icon-wrapper {
  width: clamp(60px, 8%, 70px);
  height: clamp(60px, 8%, 70px);
  margin-bottom: clamp(15px, 2.5%, 20px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.vision-mission-section .core-card .icon-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.vision-mission-section .core-card h3 {
  color: #5b3a99;
  font-size: clamp(16px, 2.2%, 18px);
  font-weight: 700;
  margin-bottom: clamp(10px, 1.8%, 12px);
  text-align: left;
}

.vision-mission-section .core-card p {
  color: #666;
  font-size: clamp(13px, 1.7%, 14px);
  line-height: clamp(1.5, 1.7, 1.8);
  text-align: left;
}

/* ===== RESPONSIVE DESIGN FOR ABOUT PAGE ===== */

/* Large Desktop (1600px+) */
@media (min-width: 1600px) {
  .bannerpage.about-banner .banner-content {
    margin-left: 100px;
    max-width: calc(100% - clamp(240px, 20%, 400px));
    width: 70%;
  }

  .bannerpage.about-banner .banner-title h1 {
    font-size: clamp(200px, 14vw, 350px) !important;
  }

  .bannerpage.about-banner .banner-headline h4 {
    font-size: clamp(28px, 1.8vw, 40px) !important;
  }

  .bannerpage.about-banner .banner-description p {
    font-size: clamp(16px, 1.2vw, 20px) !important;
  }
}

/* Tablet Portrait (769px - 1024px) */
@media (max-width: 1024px) and (min-width: 769px) {
  .bannerpage.about-banner .banner-content {
    margin-left: clamp(30px, 6%, 80px);
    max-width: calc(100% - clamp(60px, 12%, 160px));
  }

  .bannerpage.about-banner .banner-title h1 {
    font-size: clamp(70px, 12vw, 180px) !important;
  }

  .bannerpage.about-banner .banner-headline h4 {
    font-size: clamp(18px, 2.5vw, 28px) !important;
  }

  .vision-mission-section .vision .title,
  .vision-mission-section .mission .title,
  .vision-mission-section .core-value-header .title {
    font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  }

  .vision-mission-section .core-value-wrapper {
    padding: 0 clamp(30px, 5%, 60px);
    padding-right: 0;
  }

  .vision-mission-section .core-value-header {
    flex-direction: column;
    gap: clamp(20px, 3%, 30px);
  }

  .vision-mission-section .core-value-header .title {
    padding-right: 0;
  }

  .vision-mission-section .core-value-header .desc {
    max-width: 100%;
  }

  .vision-mission-section .core-scroll {
    padding-left: clamp(30px, 5%, 60px);
    padding-right: clamp(30px, 5%, 60px);
    margin-left: calc(-1 * clamp(30px, 5%, 60px));
  }

  .vision-mission-section .core-card {
    min-width: clamp(240px, 35%, 270px);
    max-width: clamp(240px, 35%, 270px);
  }
}

/* Mobile and Small Tablet (481px - 768px) */
@media (max-width: 768px) {
  .bannerpage.about-banner .banner-content {
    margin-left: clamp(20px, 5%, 40px);
    max-width: calc(100% - clamp(40px, 10%, 80px));
    padding: 0 15px;
  }

  .bannerpage.about-banner .banner-title h1 {
    font-size: clamp(50px, 14vw, 120px) !important;
    line-height: 0.8;
  }

  .bannerpage.about-banner .banner-headline h4 {
    font-size: clamp(16px, 4vw, 24px) !important;
  }

  .bannerpage.about-banner .banner-description p {
    font-size: clamp(14px, 3.5vw, 16px) !important;
    line-height: clamp(22px, 5vw, 28px);
    max-width: 100%;
  }

  .vision-mission-section::before {
    width: 50%;
  }

  .vision-mission-section .vision,
  .vision-mission-section .mission {
    text-align: center;
    transform: none;
    margin-bottom: clamp(60px, 12%, 100px);
  }

  .vision-mission-section .vision .title::before,
  .vision-mission-section .mission .title::before {
    display: none;
  }

  .vision-mission-section .vision .title::after,
  .vision-mission-section .mission .title::after {
    display: none;
  }

  .vision-mission-section .vision .desc,
  .vision-mission-section .mission .desc {
    transform: none;
    text-align: center;
    max-width: 100%;
    margin: 0 auto;
  }

  .vision-mission-section .core-value-wrapper {
    padding: 0 clamp(25px, 4%, 40px);
    padding-right: 0;
  }

  .vision-mission-section .core-value-header {
    flex-direction: column;
    gap: clamp(15px, 3%, 25px);
  }

  .vision-mission-section .core-value-header .title {
    padding-right: 0;
    text-align: center;
  }

  .vision-mission-section .core-value-header .desc {
    text-align: center;
    max-width: 100%;
  }

  .vision-mission-section .core-scroll {
    padding-left: clamp(25px, 4%, 40px);
    padding-right: clamp(25px, 4%, 40px);
    margin-left: calc(-1 * clamp(25px, 4%, 40px));
  }

  .vision-mission-section .core-card {
    min-width: clamp(220px, 45%, 260px);
    max-width: clamp(220px, 45%, 260px);
  }
}

/* Small Mobile (≤480px) */
@media (max-width: 480px) {
  .bannerpage.about-banner .banner-content {
    margin-left: 15px;
    max-width: calc(100% - 30px);
    padding: 0 10px;
  }

  .bannerpage.about-banner .banner-title h1 {
    font-size: clamp(35px, 16vw, 80px) !important;
    line-height: 0.75;
  }

  .bannerpage.about-banner .banner-headline h4 {
    font-size: clamp(14px, 4.5vw, 20px) !important;
  }

  .bannerpage.about-banner .banner-description p {
    font-size: clamp(13px, 4vw, 15px) !important;
    line-height: clamp(18px, 6vw, 22px);
  }

  .vision-mission-section .vision .title,
  .vision-mission-section .mission .title,
  .vision-mission-section .core-value-header .title {
    font-size: clamp(1.5rem, 6vw, 2rem);
  }

  .vision-mission-section .core-value-wrapper {
    padding: 0 clamp(20px, 4%, 30px);
    padding-right: 0;
  }

  .vision-mission-section .core-value-header {
    flex-direction: column;
    gap: clamp(12px, 2.5%, 20px);
  }

  .vision-mission-section .core-value-header .title {
    padding-right: 0;
    text-align: center;
  }

  .vision-mission-section .core-value-header .desc {
    text-align: center;
  }

  .vision-mission-section .core-scroll {
    padding-left: clamp(20px, 4%, 30px);
    padding-right: clamp(20px, 4%, 30px);
    margin-left: calc(-1 * clamp(20px, 4%, 30px));
  }

  .vision-mission-section .core-card {
    min-width: clamp(200px, 55%, 240px);
    max-width: clamp(200px, 55%, 240px);
    padding: clamp(20px, 4%, 25px) clamp(15px, 3%, 20px);
  }

  .vision-mission-section .core-card .icon-wrapper {
    width: clamp(50px, 8%, 60px);
    height: clamp(50px, 8%, 60px);
  }
}

/* Landscape orientation adjustments */
@media (orientation: landscape) and (max-height: 600px) {
  .bannerpage.about-banner .banner-headline h4 {
    margin-top: clamp(8%, 10vh, 15%);
  }
}

/* High DPI displays */
@media (min-resolution: 150dpi), (-webkit-min-device-pixel-ratio: 1.5) {
  .bannerpage.about-banner .banner-content {
    font-smooth: always;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
}

/* Additional stability for extreme zoom scenarios */
@media (min-width: 2000px) {
  .bannerpage.about-banner {
    max-width: none;
    width: 100%;
  }

  .bannerpage.about-banner .banner-content {
    margin-left: clamp(100px, 6%, 300px);
    max-width: calc(100% - clamp(200px, 12%, 600px));
  }
}

/* Certification Section */
/* Certification Section */
.home.certification-section {
  background: rgb(248, 248, 251);
  padding: 100px 0;
  position: relative;
  overflow: hidden; /* Prevent horizontal scrollbar from bleeding */
}
.home.certification-section .wrapper {
  display: flex;
  align-items: center;
  gap: 100px;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
}

/* Left Content */
.home.certification-section .certification-content {
  flex: 0 0 450px;
  position: relative;
  z-index: 1;
}

.home.certification-section .cert-header {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  margin-bottom: 30px;
}

.home.certification-section .cert-logo {
  width: 170px;
  height: auto;
  flex-shrink: 0;
}

.home.certification-section .certification-content h2 {
  font-size: 48px;
  font-weight: 700;
  background: linear-gradient(to right, #240a66, #4c318f5d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  margin-bottom: 0;
  line-height: 1.1;
}

.home.certification-section .certification-intro {
  font-size: 16px;
  line-height: 1.7;
  color: #3d2d6b;
  margin-bottom: 16px;
  margin-top: 16px;
  font-weight: 500;
}

.home.certification-section {
  overflow-x: hidden;
}

.home.certification-section .certification-description {
  font-size: 14px;
  line-height: 1.7;
  color: #999;
  margin: 0;
}

/* Right Certificates Images (Native Scroll Wrapper) */
.home.certification-section .certification-images {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: visible;
}

/* Ensure left content is protected and matches design */
.home.certification-section .certification-content {
  flex: 0 0 500px;
  min-width: 700px;
  z-index: 2;
  padding-right: 40px;
}

/* Native Horizontal Scroll Container */
.home.certification-section .slider-cert {
  display: flex !important;
  width: auto;
  /* Massive margin-right and balancing padding-right ensures bleed to edge without clipping scroll */
  margin-right: -100vw;
  padding-right: 100vw;
  overflow-x: auto !important;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  gap: 30px;
  padding-top: 10px;
  padding-bottom: 30px;
  -webkit-overflow-scrolling: touch;
}

.home.certification-section .slider-cert::-webkit-scrollbar {
  display: none;
}

.home.certification-section .cert-slide-item {
  flex: 0 0 700px;
  width: 700px;
  max-width: 85vw;
  scroll-snap-align: start;
  outline: none;
}

.home.certification-section .cert-image {
  position: relative;
  margin: 0;
  background: transparent;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: none;
  transition: transform 0.3s ease;
  display: block;
  width: 100%;
}

.home.certification-section .cert-image img {
  width: 100%;
  height: auto;
  min-height: 450px;
  max-height: 500px;
  object-fit: contain;
  background: transparent;
  display: block;
}

.home.certification-section .cert-image figcaption {
  font-size: 14px;
  line-height: 1.5;
  color: #777;
  text-align: center;
  background: transparent;
}

/* Custom Navigation Dots - Centered under images */
.home.certification-section .cert-dots {
  display: flex;
  list-style: none;
  padding: 0;
  margin: -10px 0 0 60px;
  gap: 12px;
  justify-content: center;
  width: 100%;
}

.home.certification-section .cert-dots li {
  width: 12px;
  height: 12px;
  cursor: pointer;
}

.home.certification-section .cert-dots li button {
  width: 12px;
  height: 12px;
  padding: 0;
  border: 0;
  outline: none;
  background: #d6d6d6;
  border-radius: 50%;
  transition:
    background 0.3s ease,
    transform 0.3s ease;
}

.home.certification-section .cert-dots li.active button {
  background: #4b308e;
  transform: scale(1.2);
}

@media (max-width: 1366px) {
  .home.certification-section {
    padding: 80px 0;
  }
  .home.certification-section .wrapper {
    gap: 60px;
    padding: 0 60px;
  }
  .home.certification-section .certification-content {
    flex: 0 0 400px;
  }
  .home.certification-section .certification-content h2 {
    font-size: 44px;
  }
  .home.certification-section .cert-logo {
    width: 110px;
  }
}

@media (max-width: 1023px) {
  .home.certification-section .wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
  }
  .home.certification-section .certification-content {
    flex: none;
    width: 100%;
    margin-bottom: 20px;
  }
  .home.certification-section .certification-images {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .home.certification-section {
    padding: 60px 0;
  }
  .home.certification-section .wrapper {
    padding: 0 20px;
    gap: 30px;
  }
  .home.certification-section .certification-content h2 {
    font-size: 32px;
  }
  .home.certification-section .cert-header {
    gap: 15px;
  }
  .home.certification-section .cert-logo {
    width: 80px;
  }
  .home.certification-section .slick-list {
    padding: 10px 0 30px !important;
  }
  .home.certification-section::before {
    top: 70%;
  }
}

/* Strong override: force purple overlay on small screens (ensure last in file) */
@media (max-width: 766px) {
  .bannerpage.about-banner figure::after {
    content: "" !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.4) 100%),
      linear-gradient(
        180deg,
        rgb(171 76 255 / 59%) 0%,
        rgb(12 26 102 / 89%) 100%
      ) !important;
    opacity: 1 !important;
    display: block !important;
    z-index: 2 !important;
    pointer-events: none !important;
  }

  /* Ensure text sits above overlay */
  .bannerpage.about-banner figcaption {
    z-index: 3 !important;
  }
}

/* Parent-level overlay fallback for small screens: place overlay on the banner container itself
   (useful if figure::after isn't rendering or is behind other positioned elements) */
@media (max-width: 766px) {
  .bannerpage.about-banner {
    position: relative !important;
  }

  .bannerpage.about-banner::before {
    content: "" !important;
    position: absolute !important;
    inset: 0 !important;
    /* slightly lighter overlay to match design but visible on mobile */
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.35) 100%),
      linear-gradient(
        180deg,
        rgba(119, 50, 180, 0.65) 0%,
        rgba(12, 26, 102, 0.9) 100%
      ) !important;
    z-index: 2 !important;
    pointer-events: none !important;
    display: block !important;
    opacity: 1 !important;
  }

  /* Make sure the banner image sits below the overlay */
  .bannerpage.about-banner img {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100vh !important;
    object-fit: cover !important;
    z-index: 1 !important;
  }

  /* Hide the old pseudo-element if it exists to avoid double overlay */
  .bannerpage.about-banner figure::after {
    display: none !important;
  }

  .bannerpage.about-banner figcaption {
    z-index: 3 !important;
  }
}

/*# sourceMappingURL=about.css.map*/
/* Mobile (<=600px): stack core value title and description */
@media (max-width: 600px) {
  .core-value-section .core-value-header {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 12px !important;
    margin-right: 0 !important;
  }
  .core-value-section .core-value-header .title {
    padding-right: 0 !important;
    margin: 0 0 4px 0 !important;
    text-align: left !important;
  }
  .core-value-section .core-value-header .desc {
    max-width: 100% !important;
    text-align: left !important;
  }
}

/* Override body cursor: none from JavaScript - ensure interactive elements show pointer */
body {
  cursor: auto !important;
}

/* Ensure cursor pointer for all interactive elements */
a,
a:hover,
a:focus,
a:active,
button,
button:hover,
button:focus,
button:active,
[onclick],
[onclick]:hover,
input[type="button"],
input[type="submit"],
input[type="button"]:hover,
input[type="submit"]:hover,
.double-slider .spot-asnav .slider-asnav .slick-list,
.double-slider .spot-asnav .slider-asnav .slick-list .list,
.double-slider .spot-asnav .slider-asnav .slick-list h1,
.slider-ourhistory .slider .list,
.slider-ourhistory .slider .list:hover,
header nav a,
header nav a:hover,
header .main-nav a,
header .main-nav a:hover,
header .main-nav .main-horizontal li a,
header .main-nav .main-horizontal li a:hover,
header .wrapper .wrap-burger,
header .wrapper .wrap-burger:hover,
.wrap-menu .inner nav ul li a,
.wrap-menu .inner nav ul li a:hover,
.wrap-menu .inner .box-bottom .language a,
.wrap-menu .inner .box-bottom .language a:hover,
.wrap-menu .inner .box-bottom .search button,
.wrap-menu .inner .box-bottom .search button:hover,
.main-nav .main-horizontal li a,
.main-nav .main-horizontal li a:hover,
.main-nav .main-horizontal li.has-child > ul.sub-menu li a,
.main-nav .main-horizontal li.has-child > ul.sub-menu li a:hover {
  cursor: pointer !important;
}

/* ===== HISTORY TIMELINE WITH DYNAMIC BACKGROUNDS ===== */
.history-timeline {
  position: relative;
  background: rgb(7, 16, 61);
}
.history-timeline .year-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  transition: opacity 0.6s ease-in-out;
}
.history-timeline .year-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(7, 16, 61, 0.075);
  z-index: 1;
  pointer-events: none;
}
.history-timeline .year-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(1.4) contrast(1.2);
  position: relative;
  z-index: 0;
}
.history-timeline .wrapper {
  position: relative;
  z-index: 1;
}

/* Enable mouse wheel scroll on sliders */
.slider-asnav,
.slider-history {
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}
