:root {
  --light-grey: #f4f4f4;
  --dark-grey: #242424;
  --blue: #1e60c3;
  --white: white;
  --dark-blue: #143e7f;
}

.w-layout-blockcontainer {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

@media screen and (max-width: 991px) {
  .w-layout-blockcontainer {
    max-width: 728px;
  }
}

@media screen and (max-width: 767px) {
  .w-layout-blockcontainer {
    max-width: none;
  }
}

body {
  background-color: var(--light-grey);
  color: var(--dark-grey);
  font-family: Montserrat, sans-serif;
  font-size: 16px;
  line-height: 150%;
}

h1 {
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Cormorant, sans-serif;
  font-size: 54px;
  font-weight: 700;
  line-height: 120%;
}

h2 {
  color: var(--blue);
  text-transform: uppercase;
  background-image: url('../images/dot-graphic.svg');
  background-position: 0%;
  background-repeat: no-repeat;
  background-size: auto;
  margin-top: 0;
  margin-bottom: 15px;
  padding-left: 15px;
  font-family: Cormorant, sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 120%;
}

h3 {
  margin-top: 0;
  margin-bottom: 0;
  font-family: Cormorant, sans-serif;
  font-size: 36px;
  font-weight: 700;
  line-height: 120%;
}

h4 {
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 15px;
  font-family: Cormorant, sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 120%;
}

h5 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 150%;
}

strong {
  font-weight: 600;
}

.section-content {
  padding-top: 60px;
  padding-bottom: 60px;
}

.section-content.bg-home-stat {
  background-image: url('../images/home-stat-bg.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}

.section-content.bg-home-video {
  background-image: url('../images/home-video-bg.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}

.section-content.home-top-content {
  flex-flow: column;
  justify-content: flex-end;
  height: 100vh;
  display: flex;
}

.section-content.inner-top-content {
  flex-flow: column;
  justify-content: flex-end;
  height: 540px;
  display: flex;
}

.section-content.bg-white {
  background-color: var(--white);
}

.section-content.bg-contact {
  color: var(--white);
  background-image: url('../images/engagement-bottom-bg.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}

.section-content.bg-about-milestone {
  background-image: url('../images/about-milestone-bg.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  padding-top: 0;
}

.container {
  width: 100%;
  max-width: 100%;
  padding-left: 5%;
  padding-right: 5%;
}

.home-stat-row {
  flex-flow: wrap;
  margin-left: -2.5%;
  margin-right: -2.5%;
  display: flex;
}

.home-stat-col {
  perspective: 2000px;
  width: 25%;
  padding-left: 2.5%;
  padding-right: 2.5%;
  transform: none;
}

.home-stat-b {
  background-color: var(--white);
  border-radius: 10px;
  flex-flow: column;
  justify-content: space-between;
  height: 340px;
  padding: 30px;
  display: flex;
}

.home-stat-number {
  font-family: Cormorant, sans-serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 130%;
}

.home-stat-txt {
  border-top: 1px solid var(--blue);
  padding-top: 15px;
  font-weight: 500;
}

.home-service-row {
  flex-flow: wrap;
  margin-top: 60px;
  margin-left: -2.5%;
  margin-right: -2.5%;
  display: flex;
}

.home-service-col {
  width: 50%;
  padding-left: 2.5%;
  padding-right: 2.5%;
}

.home-service-img {
  border-radius: 10px;
  padding-top: 65%;
  position: relative;
  overflow: hidden;
}

.img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.subtxt {
  color: var(--blue);
  text-transform: uppercase;
  margin-bottom: 5px;
  font-family: Cormorant, sans-serif;
  font-size: 20px;
  font-weight: 700;
}

.content-link {
  border-bottom: 1px solid var(--blue);
  color: var(--dark-grey);
  background-image: url('../images/arrow-blue.svg');
  background-position: 0%;
  background-repeat: no-repeat;
  background-size: auto;
  padding-top: 15px;
  padding-bottom: 15px;
  padding-left: 15px;
  text-decoration: none;
  transition: color .5s;
  display: block;
}

.content-link:hover {
  color: var(--blue);
}

.content-link-b {
  margin-top: 15px;
}

.home-awards-row {
  flex-flow: wrap;
  margin-left: -2.5%;
  margin-right: -2.5%;
  display: flex;
}

.home-awards-col {
  width: 50%;
  padding-left: 2.5%;
  padding-right: 2.5%;
}

.home-video-thumbnail {
  border-radius: 10px;
  max-width: 1000px;
  display: block;
  position: relative;
  left: 50%;
  overflow: hidden;
  transform: translate(-50%);
}

.home-video-btn {
  z-index: 1;
  background-color: var(--blue);
  background-image: url('../images/arrow-video.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: auto;
  border-radius: 100%;
  width: 60px;
  height: 60px;
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
}

.home-about-row {
  flex-flow: wrap;
  margin-left: -2.5%;
  margin-right: -2.5%;
}

.home-about-r {
  float: right;
  width: 50%;
  padding-left: 2.5%;
  padding-right: 2.5%;
}

.home-about-list {
  background-color: var(--white);
  border-radius: 10px;
  min-height: 290px;
  margin-bottom: 15px;
  padding: 30px 180px 30px 30px;
  position: relative;
}

.home-about-list-all {
  margin-bottom: -15px;
}

.home-about-l {
  float: left;
  width: 50%;
  padding-left: 2.5%;
  padding-right: 2.5%;
  position: sticky;
  top: 60px;
}

.footer {
  background-color: var(--white);
}

.footer-row {
  flex-flow: wrap;
  margin-left: -2.5%;
  margin-right: -2.5%;
  display: flex;
}

.footer-col {
  width: 50%;
  padding-left: 2.5%;
  padding-right: 2.5%;
}

.footer-line {
  height: 5px;
  margin-top: 60px;
  position: relative;
}

.line-animate {
  background-color: var(--blue);
  width: 100%;
  position: absolute;
  inset: 0% auto 0% 0%;
}

.footer-subrow {
  margin-bottom: 60px;
  margin-left: -1.5%;
  margin-right: -1.5%;
  display: flex;
}

.footer-subcol {
  width: 50%;
  padding-left: 1.5%;
  padding-right: 1.5%;
}

.footer-title {
  text-transform: uppercase;
  margin-bottom: 15px;
  font-family: Cormorant, sans-serif;
  font-weight: 700;
}

.social-btn {
  border: 1px solid var(--dark-grey);
  border-radius: 100%;
  margin-right: 15px;
  position: relative;
}

.social-btn-img-hover {
  opacity: 0;
  position: absolute;
  inset: 0%;
}

.home-video-thumbnail-img {
  width: 100%;
}

.home-banner-slider {
  background-color: #fff0;
  height: 100vh;
  position: fixed;
  inset: 0%;
}

.all {
  z-index: 1;
  background-color: var(--light-grey);
  position: relative;
}

.home-banner-slide {
  overflow: hidden;
}

.home-top-content02-row {
  flex-flow: wrap;
  margin-left: -2.5%;
  margin-right: -2.5%;
  display: flex;
}

.home-top-content02-col {
  width: 50%;
  padding-left: 2.5%;
  padding-right: 2.5%;
}

.home-top {
  z-index: 1;
  color: var(--white);
  background-image: linear-gradient(0deg, #000000bf, #0000 70%);
  position: relative;
}

.home-top-subtxt {
  color: var(--white);
  text-transform: none;
  background-image: none;
  margin-bottom: 0;
  padding-left: 0;
  font-size: 36px;
}

.btn-b {
  margin-top: 15px;
}

.btn {
  border: 1px solid var(--blue);
  background-color: var(--blue);
  color: var(--white);
  text-transform: uppercase;
  margin-top: 15px;
  margin-right: 20px;
  padding: 15px 30px;
  font-family: Cormorant, sans-serif;
  font-weight: 700;
  text-decoration: none;
  position: relative;
}

.btn02 {
  border: 1px solid var(--white);
  color: var(--white);
  text-transform: uppercase;
  margin-top: 15px;
  padding: 15px 30px;
  font-family: Cormorant, sans-serif;
  font-weight: 700;
  text-decoration: none;
  position: relative;
}

.btn-txt {
  z-index: 1;
  position: relative;
}

.btn-hover {
  background-color: var(--dark-blue);
  width: 0%;
  position: absolute;
  inset: 0% auto 0% 0%;
}

.home-awards-logo-b {
  justify-content: center;
  align-items: stretch;
  margin-top: 60px;
}

.home-awards-logo-carousel {
  flex-flow: wrap;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  width: 100%;
}

.slide {
  background-color: var(--white);
  width: 280px;
  height: 350px;
  color: var(--dark-grey);
  text-align: center;
  vertical-align: top;
  border-radius: 10px;
  margin-right: 30px;
  padding: 30px;
  text-decoration: none;
  display: inline-block;
}

.home-awards-logo-img {
  margin-bottom: 15px;
  padding-top: 85%;
  position: relative;
}

.about-icon {
  width: 150px;
  margin-bottom: 15px;
  margin-right: 15px;
  position: absolute;
  inset: auto 0% 0% auto;
}

.lang-dropdown {
  margin-left: 0;
  margin-right: 0;
  display: inline-block;
}

.lang-mobile-link {
  color: var(--dark-grey);
  padding-top: 5px;
  padding-bottom: 5px;
  font-family: Cormorant, sans-serif;
  text-decoration: none;
  transition: all .5s;
  display: inline-block;
}

.lang-mobile-link:hover {
  color: #1e60c3;
}

.lang-mobile-b {
  align-items: center;
  width: 100%;
  display: flex;
}

.nav-link-b {
  position: relative;
}

.container-menu {
  justify-content: flex-end;
  align-items: center;
  max-width: 100%;
  padding: 25px 5%;
  display: flex;
}

.nav-menu-mobile-bottom-content-b {
  border-top: 1px solid var(--blue);
  background-color: var(--light-grey);
  align-items: center;
  width: 100%;
  padding-right: 150px;
  position: relative;
}

.lang-link-arrow {
  margin-left: 5px;
}

.nav-menu-mobile-bottom {
  justify-content: space-between;
  align-items: stretch;
  display: none;
}

.lang-mobile-line {
  background-color: var(--dark-grey);
  opacity: 1;
  width: 1px;
  height: 15px;
  margin-left: 15px;
  margin-right: 15px;
}

.header {
  z-index: 1000;
  background-color: #fff0;
  position: fixed;
  inset: 0% 0% auto;
}

.lang-link-arrow-grey {
  opacity: 0;
  margin-left: 5px;
  position: absolute;
  inset: 50% 0% auto auto;
  transform: translate(0, -50%);
}

.nav-link {
  color: #fff;
  text-transform: uppercase;
  padding-top: 5px;
  padding-bottom: 5px;
  font-family: Cormorant, sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: all .5s;
  position: relative;
}

.nav-link:hover {
  opacity: .5;
}

.lang-dropdown-list {
  background-color: #fff;
  margin-top: 30px;
  margin-left: -20px;
  overflow: hidden;
}

.menu-open-logo {
  z-index: 1;
  width: 140px;
  margin-left: 5%;
  display: none;
  position: absolute;
  inset: 50% auto auto 0%;
  transform: translate(0, -50%);
}

.menu-btn-line01 {
  background-color: #fff;
  width: 34px;
  height: 2px;
}

.lang-dropdown-content-b {
  padding-top: 5px;
  padding-bottom: 5px;
}

.nav-menu {
  justify-content: space-between;
  align-items: center;
  width: 70%;
  max-width: 700px;
  display: flex;
}

.menu-btn {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.lang-link-b {
  display: flex;
}

.header-social-btn {
  border: 1px solid var(--dark-grey);
  border-radius: 100px;
  width: 50px;
  height: 50px;
  margin-left: 15px;
  position: relative;
}

.lang-dropdown-link {
  text-align: center;
  padding-top: 4px;
  padding-bottom: 4px;
  font-family: Cormorant, sans-serif;
  font-weight: 700;
  transition: color .5s;
}

.lang-dropdown-link:hover {
  color: var(--blue);
}

.header-logo-img-white {
  width: 100%;
}

.menu-btn-line02 {
  background-color: #fff;
  width: 34px;
  height: 2px;
}

.header-logo-img {
  z-index: 1;
  opacity: 0;
  border-radius: 0;
  width: 100%;
  position: absolute;
  inset: 0%;
}

.header-social-b {
  flex-wrap: wrap;
  justify-content: flex-end;
  display: flex;
  position: absolute;
  inset: 50% 0% auto auto;
  transform: translate(0, -50%);
}

.header-logo {
  width: 140px;
  margin-left: 5%;
  position: absolute;
  inset: 50% auto auto 0%;
  transform: translate(0, -50%);
}

.lang-dropdown-toggle {
  color: #fff;
  padding: 0;
  font-family: Cormorant, sans-serif;
  font-weight: 700;
}

.home-banner-img-mask {
  z-index: 1;
  background-image: linear-gradient(#000000b3, #0000);
  height: 100px;
  position: absolute;
  inset: 0% 0% auto;
}

.font-tc {
  font-family: Noto Serif TC, sans-serif;
}

.font-sc {
  font-family: Noto Serif SC, sans-serif;
}

.menu-btn-line01-open, .menu-btn-line02-open {
  background-color: #fff;
  width: 34px;
  height: 2px;
}

.inner-banner {
  height: 540px;
  position: fixed;
  inset: 0% 0% auto;
  overflow: hidden;
}

.inner-page-top {
  z-index: 1;
  color: var(--white);
  position: relative;
}

.inner-banner-top-mask {
  z-index: 2;
  background-image: linear-gradient(#00000040, #0000);
  height: 100px;
  position: absolute;
  inset: 0% 0% auto;
}

.inner-banner-mask {
  z-index: 1;
  background-color: #0000001a;
  position: absolute;
  inset: 0%;
}

.contact-row {
  flex-flow: wrap;
  margin-left: -2.5%;
  margin-right: -2.5%;
  display: flex;
}

.contact-col {
  width: 50%;
  padding-left: 2.5%;
  padding-right: 2.5%;
}

.contact-location-row {
  flex-flow: wrap;
  margin-left: -2.5%;
  margin-right: -2.5%;
  display: flex;
}

.contact-location-col {
  width: 50%;
  padding-left: 2.5%;
  padding-right: 2.5%;
}

.contact-location-img {
  border-radius: 10px;
  margin-top: 15px;
  margin-bottom: 15px;
  padding-top: 60%;
  position: relative;
  overflow: hidden;
}

.h2-color-white {
  color: var(--white);
  background-image: url('../images/dot-graphic-white.svg');
}

.link-txt-white {
  color: var(--white);
  border-bottom: 1px solid #fff0;
  text-decoration: none;
  transition: all .5s;
  display: inline-block;
}

.link-txt-white:hover {
  border-bottom-color: var(--white);
}

.contact-location-b {
  border-radius: 10px;
  flex-flow: column;
  justify-content: space-between;
  height: 100%;
  display: flex;
  position: relative;
  overflow: hidden;
}

.about-row {
  flex-flow: wrap;
  margin-left: -2.5%;
  margin-right: -2.5%;
  display: flex;
}

.about-col {
  width: 50%;
  padding-left: 2.5%;
  padding-right: 2.5%;
}

.about-milestone-row {
  flex-flow: wrap;
  margin-left: -2.5%;
  margin-right: -2.5%;
  display: flex;
}

.about-milestone-col {
  perspective: 2000px;
  width: 25%;
  padding-left: 2.5%;
  padding-right: 2.5%;
  transform: none;
}

.about-milestone-b {
  background-color: var(--white);
  border-radius: 10px;
  flex-flow: column;
  justify-content: space-between;
  height: 100%;
  padding: 30px;
}

.about-milestone-year {
  color: var(--blue);
  margin-bottom: 15px;
  font-family: Cormorant, sans-serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 130%;
}

.capabilities-intro-row {
  flex-flow: wrap;
  margin-left: -2.5%;
  margin-right: -2.5%;
  display: flex;
}

.capabilities-intro-col {
  width: 50%;
  padding-left: 2.5%;
  padding-right: 2.5%;
}

.capabilities-row {
  flex-flow: wrap;
  margin-left: -2.5%;
  margin-right: -2.5%;
  display: flex;
}

.capabilities-col {
  width: 50%;
  margin-top: 30px;
  padding-left: 2.5%;
  padding-right: 2.5%;
}

.capabilties01-b {
  height: 100%;
  min-height: 630px;
  color: var(--white);
  border-radius: 10px;
  position: relative;
  overflow: hidden;
}

.capabilities01-img {
  position: absolute;
  inset: 0%;
  overflow: hidden;
}

.capabilities01-b-align {
  flex-flow: column;
  justify-content: space-between;
  height: 100%;
  padding: 30px;
  display: flex;
  position: relative;
}

.capabilities-img-mask {
  background-color: #00000059;
  position: absolute;
  inset: 0%;
}

.capabilities01-expand-link {
  color: var(--white);
  padding-top: 10px;
  padding-bottom: 10px;
  padding-right: 30px;
  font-family: Cormorant, sans-serif;
  font-size: 24px;
  line-height: 150%;
  text-decoration: none;
  display: block;
  position: relative;
}

.capabilities01-expand-list {
  border-top: 1px solid var(--white);
}

.capabilities-btn-expand {
  position: absolute;
  inset: 50% 0% auto auto;
  transform: translate(0, -50%);
}

.capabilities-title-b {
  margin-bottom: 120px;
}

.capabilities-expand-content {
  position: relative;
  overflow: hidden;
}

.capabilities-title {
  margin-bottom: 15px;
}

.capabilities-expand-title {
  margin-bottom: 0;
}

.capabilities-expand-content-txt {
  padding-bottom: 15px;
}

.capabilties02-b {
  background-color: var(--white);
  border-radius: 10px;
  flex-flow: column;
  justify-content: space-between;
  height: 100%;
  padding: 10px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.capabilities02-img {
  border-radius: 5px;
  margin-top: 15px;
  padding-top: 45%;
  position: relative;
  overflow: hidden;
}

.capabilities02-expand-list {
  border-top: 1px solid var(--white);
  padding: 10px 20px;
}

.capabilities02-expand-link {
  color: var(--dark-grey);
  padding-top: 10px;
  padding-bottom: 10px;
  padding-right: 30px;
  font-family: Cormorant, sans-serif;
  font-size: 24px;
  line-height: 150%;
  text-decoration: none;
  display: block;
  position: relative;
}

.about-list {
  background-color: var(--white);
  border-radius: 10px;
  height: 100%;
  padding: 30px 180px 30px 30px;
  position: relative;
}

.about-list-row {
  flex-flow: wrap;
  margin-left: -2.5%;
  margin-right: -2.5%;
  display: flex;
}

.about-list-col {
  width: 50%;
  margin-top: 30px;
  padding-left: 2.5%;
  padding-right: 2.5%;
}

.about-leadership-row {
  flex-flow: wrap;
  margin-top: -30px;
  margin-left: -2.5%;
  margin-right: -2.54%;
  display: flex;
}

.about-leadership-col {
  width: 25%;
  margin-top: 30px;
  padding-left: 2.5%;
  padding-right: 2.5%;
}

.about-leadership-link {
  background-color: var(--white);
  height: 100%;
  color: var(--dark-grey);
  border-radius: 10px;
  padding: 10px;
  text-decoration: none;
  display: block;
}

.about-leadership-img {
  border-radius: 5px;
  padding-top: 120%;
  position: relative;
  overflow: hidden;
}

.about-leadership-txt-b {
  margin-top: 15px;
  padding-left: 5px;
  padding-right: 5px;
}

.about-leadership-title {
  text-transform: uppercase;
  margin-bottom: 5px;
  font-family: Cormorant, sans-serif;
  font-size: 24px;
  font-weight: 700;
}

.about-leadership-link-b {
  margin-top: 20px;
}

.about-leadership-submenu-link {
  color: var(--dark-grey);
  text-transform: uppercase;
  margin-top: 10px;
  padding-left: 15px;
  font-family: Cormorant, sans-serif;
  font-weight: 700;
  text-decoration: none;
  transition: color .5s;
  display: block;
}

.about-leadership-submenu-link:hover {
  color: var(--blue);
}

.about-leadership-submenu-link.active {
  color: var(--blue);
  background-image: url('../images/arrow-blue.svg');
  background-position: 0%;
  background-repeat: no-repeat;
  background-size: auto;
}

.about-leadership-col-title {
  width: 25%;
  margin-top: 30px;
  padding-left: 2.5%;
  padding-right: 2.5%;
}

.about-leadership-mobile-dropdown {
  background-color: #fff;
  display: block;
}

.about-leadership-dropdown-toggle {
  background-image: url('../images/lang-arrow-grey.svg');
  background-position: 98%;
  background-repeat: no-repeat;
  background-size: 14px;
  display: block;
}

.about-leadership-dropdown-list {
  background-color: #fff;
}

.about-leadership-dropdown-link.active {
  color: #fff;
  background-color: #1e60c3;
}

.about-leadership-mobile-dropdown-b {
  display: none;
}

.popup {
  z-index: 2000;
  padding: 60px 5%;
  display: none;
  position: fixed;
  inset: 0%;
}

.popup.disclaimer {
  display: none;
}

.pop-bg {
  background-color: #00000080;
  position: fixed;
  inset: 0%;
}

.pop-about-leadership-content-b {
  z-index: 1;
  background-color: var(--white);
  border-radius: 10px;
  width: 100%;
  max-width: 900px;
  height: 400px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.about-leadership-details-img-b {
  width: 35%;
  padding: 10px;
  position: absolute;
  inset: 0% auto 0% 0%;
}

.about-leadership-details-img {
  border-radius: 5px;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.about-leadership-details-txt-b {
  float: right;
  width: 65%;
  height: 100%;
  padding: 30px;
  overflow: auto;
}

.popup-btn-close {
  z-index: 1;
  width: 50px;
  height: 50px;
  color: var(--white);
  text-transform: uppercase;
  background-image: url('../images/icon-close.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: auto;
  font-family: Cormorant, sans-serif;
  font-weight: 700;
  text-decoration: none;
  position: absolute;
  inset: 0% 0% auto auto;
}

.popup-btn-close-txt {
  display: none;
}

.link-txt {
  color: var(--dark-grey);
  text-decoration: none;
  transition: color .2s;
  display: inline-block;
}

.link-txt:hover {
  color: var(--blue);
}

.swiper-wrapper {
  display: flex;
}

.home-collection-img {
  padding-top: 65%;
  position: relative;
  overflow: hidden;
}

.swiper-nav {
  z-index: 10;
  cursor: pointer;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  margin-bottom: -50px;
  transition: all .5s;
  position: absolute;
  inset: auto auto 0% 50%;
  transform: translate(-50%);
}

.swiper-nav.next {
  background-image: url('../images/arrow-video.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: auto;
  margin-left: 25px;
}

.swiper-nav.prev {
  background-image: url('../images/arrow-prev.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: auto;
  margin-left: -25px;
}

.home-collection-txt {
  z-index: 2;
  margin-top: 10px;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
}

.swiper-container {
  flex-direction: row;
  justify-content: center;
  align-items: center;
  max-width: 100%;
  margin-top: -9px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.swiper-embed {
  display: none;
}

.swiper {
  width: 100%;
  height: 100%;
  position: relative;
}

.swiper-slide {
  grid-row-gap: 10px;
  color: #2b2b2b;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  width: 25%;
  margin-top: 60px;
  text-decoration: none;
  position: relative;
}

.about-milestone-line {
  background-color: var(--white);
  width: 1px;
  height: 60px;
  margin-top: -60px;
  margin-left: auto;
  margin-right: auto;
  position: absolute;
  left: 50%;
  transform: translate(-50%);
}

.about-milestone-dot {
  z-index: 1;
  margin-top: -60px;
  position: absolute;
  inset: 0% auto auto 50%;
  transform: translate(-50%);
}

.pop-disclaimer-content-b {
  z-index: 1;
  background-color: var(--white);
  border-radius: 10px;
  width: 100%;
  max-width: 900px;
  height: 100%;
  max-height: 570px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 30px;
  padding-right: 30px;
  position: relative;
  overflow: auto;
}

.pop-disclaimer-top {
  border-bottom: 1px solid var(--blue);
  background-color: var(--white);
  text-transform: uppercase;
  padding-top: 30px;
  padding-bottom: 10px;
  font-family: Cormorant, sans-serif;
  font-size: 24px;
  font-weight: 700;
  position: sticky;
  top: 0;
}

.pop-disclaimer-txt-b {
  padding-top: 30px;
  padding-bottom: 30px;
}

.pop-disclaimer-bottom {
  border-top: 1px solid var(--blue);
  background-color: var(--white);
  text-transform: uppercase;
  flex-flow: row-reverse wrap;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  padding-bottom: 30px;
  font-family: Cormorant, sans-serif;
  font-weight: 700;
  display: flex;
  position: sticky;
  bottom: 0;
}

.btn03 {
  border: 1px solid var(--blue);
  color: var(--blue);
  text-transform: uppercase;
  margin-top: 15px;
  padding: 15px 30px;
  font-family: Cormorant, sans-serif;
  font-weight: 700;
  text-decoration: none;
  position: relative;
}

.btn03:hover {
  color: var(--white);
}

.pop-disclaimer-btn-b {
  margin-top: -15px;
}

.popup-disclaimer-btn-close {
  z-index: 1;
  width: 50px;
  height: 50px;
  color: var(--white);
  text-transform: uppercase;
  background-image: url('../images/icon-close.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: auto;
  margin-top: 15px;
  font-family: Cormorant, sans-serif;
  font-weight: 700;
  text-decoration: none;
  position: absolute;
  inset: 0% 0% auto auto;
}

.swiper-nav-b {
  justify-content: center;
  display: none;
}

@media screen and (min-width: 1280px) {
  .menu-open-logo {
    width: 140px;
  }
}

@media screen and (min-width: 1440px) {
  .home-awards-logo-b {
    justify-content: center;
  }
}

@media screen and (max-width: 991px) {
  h1 {
    font-size: 50px;
  }

  .section-content.home-top-content {
    height: 95vh;
  }

  .section-content.inner-top-content {
    height: 400px;
  }

  .section-content.bg-contact {
    background-image: linear-gradient(#0000004d, #0000004d), url('../images/engagement-bottom-bg.jpg');
    background-position: 0 0, 50%;
    background-repeat: repeat, no-repeat;
    background-size: auto, cover;
    background-attachment: scroll, scroll;
  }

  .home-stat-row {
    margin-bottom: -30px;
  }

  .home-stat-col {
    width: 50%;
    margin-bottom: 30px;
  }

  .home-about-r {
    width: 100%;
    margin-top: 30px;
  }

  .home-about-l {
    width: 100%;
    position: relative;
    top: 0;
  }

  .home-banner-slider {
    height: 100vh;
  }

  .home-top-content02-row {
    margin-top: -60px;
  }

  .home-top-content02-col {
    width: 100%;
  }

  .lang-dropdown {
    display: none;
  }

  .lang-mobile-link {
    font-weight: 700;
    transition-property: none;
  }

  .lang-mobile-link:hover {
    color: var(--dark-grey);
  }

  .nav-link-b {
    text-align: left;
    overflow: hidden;
  }

  .container-menu {
    z-index: 10;
    padding-top: 15px;
    padding-bottom: 15px;
    position: static;
  }

  .nav-menu-mobile-bottom-content-b {
    display: flex;
  }

  .nav-menu-mobile-bottom {
    z-index: 1;
    width: 100%;
    height: 100px;
    margin-top: 50px;
    display: flex;
    position: relative;
    bottom: 0%;
  }

  .nav-link {
    color: var(--dark-grey);
    padding-top: 15px;
    padding-bottom: 15px;
    font-size: 30px;
    line-height: 120%;
    transition-property: none;
  }

  .nav-link:hover {
    opacity: 1;
  }

  .menu-btn-line01 {
    background-color: var(--white);
    margin-top: 5px;
    margin-bottom: 5px;
  }

  .menu-open-btn-line-b {
    z-index: 10;
    opacity: 0;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 34px;
    display: none;
    position: absolute;
    inset: 0% auto 0% 50%;
    transform: translate(-50%);
  }

  .nav-menu {
    background-color: var(--light-grey);
    width: 100%;
    max-width: none;
    height: 100vh;
    padding: 120px 5% 150px;
    position: fixed;
    inset: 0% 0% auto;
    overflow: auto;
  }

  .menu-btn {
    z-index: 1;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-right: -18px;
    padding-top: 15px;
    padding-bottom: 15px;
  }

  .menu-btn.w--open {
    background-color: #c8c8c800;
  }

  .menu-btn-line-b {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .header-social-btn {
    border-color: var(--dark-grey);
  }

  .menu-btn-line02 {
    background-color: var(--white);
    margin-top: 5px;
    margin-bottom: 5px;
  }

  .header-social-b {
    justify-content: flex-start;
  }

  .menu-open-logo-img {
    width: 100%;
  }

  .menu-btn-line01-open, .menu-btn-line02-open {
    background-color: var(--dark-grey);
    margin-top: 5px;
    margin-bottom: 5px;
  }

  .inner-banner {
    height: 400px;
  }

  .about-milestone-row {
    margin-bottom: -30px;
  }

  .about-milestone-col {
    width: 50%;
    margin-bottom: 30px;
  }

  .about-list-col {
    width: 100%;
  }

  .about-leadership-col {
    width: 33.33%;
  }

  .about-leadership-link-b {
    display: none;
  }

  .about-leadership-col-title, .about-leadership-mobile-dropdown {
    width: 100%;
  }

  .about-leadership-dropdown-toggle {
    text-transform: uppercase;
    background-image: url('../images/arrow-lang-grey.svg');
    background-position: 97% 51%;
    background-size: 10px;
    padding-top: 10px;
    padding-bottom: 10px;
    font-family: Cormorant, sans-serif;
    font-weight: 700;
  }

  .about-leadership-dropdown-list {
    background-color: #fff0;
    overflow: hidden;
  }

  .about-leadership-dropdown-content {
    background-color: #fff;
    border: 1px solid #fff;
    overflow: hidden;
  }

  .about-leadership-dropdown-link {
    text-transform: uppercase;
    font-family: Cormorant, sans-serif;
    font-weight: 700;
  }

  .about-leadership-mobile-dropdown-b {
    z-index: 2;
    width: 100%;
    margin-top: 15px;
    padding-left: 2.5%;
    padding-right: 2.5%;
    display: block;
    position: sticky;
    top: 100px;
  }

  .about-leadership-details-img-b {
    width: 45%;
  }

  .about-leadership-details-txt-b {
    width: 55%;
  }

  .swiper-slide {
    width: 33.33%;
  }

  .swiper-nav-b {
    display: flex;
  }
}

@media screen and (max-width: 767px) {
  h1 {
    font-size: 40px;
  }

  h2 {
    margin-bottom: 10px;
    font-size: 18px;
  }

  h3 {
    font-size: 28px;
  }

  h4 {
    margin-bottom: 10px;
    font-size: 22px;
  }

  .section-content {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .section-content.inner-top-content {
    height: 300px;
  }

  .section-content.bg-about-milestone {
    padding-bottom: 50px;
  }

  .home-stat-b {
    height: 280px;
    padding: 20px;
  }

  .home-stat-number {
    font-size: 32px;
  }

  .home-service-row {
    margin-top: 40px;
    margin-bottom: -20px;
  }

  .home-service-col {
    width: 100%;
    margin-bottom: 20px;
  }

  .home-awards-row {
    margin-bottom: -20px;
  }

  .home-awards-col {
    width: 100%;
    margin-bottom: 20px;
  }

  .home-video-btn {
    width: 50px;
    height: 50px;
  }

  .home-about-list {
    min-height: 0;
    margin-bottom: 10px;
    padding: 20px 120px 20px 20px;
  }

  .home-about-list-all {
    margin-bottom: -10px;
  }

  .footer-row {
    margin-bottom: -20px;
  }

  .footer-col {
    width: 100%;
    margin-bottom: 20px;
  }

  .footer-line {
    margin-top: 40px;
  }

  .footer-subrow {
    margin-bottom: 40px;
  }

  .footer-logo {
    width: 160px;
  }

  .home-top-content02-row {
    margin-top: -40px;
  }

  .home-top-subtxt {
    font-size: 28px;
  }

  .btn-b {
    margin-top: 10px;
  }

  .btn {
    margin-top: 10px;
    margin-right: 10px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .btn02 {
    margin-top: 10px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .home-awards-logo-b {
    margin-top: 40px;
  }

  .slide {
    padding: 20px;
  }

  .home-awards-logo-img {
    margin-bottom: 10px;
  }

  .about-icon {
    width: 100px;
    margin-bottom: 10px;
    margin-right: 10px;
  }

  .container-menu {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .nav-menu-mobile-bottom {
    height: 80px;
    margin-top: 40px;
  }

  .nav-link {
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 20px;
  }

  .menu-open-logo {
    width: 110px;
  }

  .nav-menu {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .header-logo {
    width: 110px;
  }

  .inner-banner {
    height: 300px;
  }

  .contact-row {
    margin-bottom: -20px;
  }

  .contact-col {
    width: 100%;
    margin-bottom: 20px;
  }

  .contact-location-row {
    margin-bottom: -20px;
  }

  .contact-location-col {
    width: 100%;
    margin-bottom: 20px;
  }

  .about-row {
    margin-bottom: -20px;
  }

  .about-col {
    width: 100%;
    margin-bottom: 20px;
  }

  .about-milestone-b {
    padding: 20px;
  }

  .about-milestone-year {
    font-size: 32px;
  }

  .capabilities-intro-row {
    margin-bottom: -20px;
  }

  .capabilities-intro-col {
    width: 100%;
    margin-bottom: 20px;
  }

  .capabilities-row {
    margin-top: -20px;
  }

  .capabilities-col {
    width: 100%;
    margin-top: 20px;
  }

  .capabilties01-b {
    min-height: 0;
  }

  .capabilities01-b-align {
    padding: 20px;
  }

  .capabilities-expand-content-txt {
    padding-bottom: 10px;
  }

  .capabilities02-expand-list {
    padding: 0 10px;
  }

  .about-list {
    min-height: 0;
    margin-bottom: 10px;
    padding: 20px 120px 20px 20px;
  }

  .about-list-col {
    width: 100%;
    margin-top: 20px;
  }

  .about-leadership-col {
    width: 50%;
    margin-top: 20px;
  }

  .about-leadership-title {
    font-size: 22px;
  }

  .about-leadership-mobile-dropdown-b {
    top: 90px;
  }

  .popup {
    padding: 0 0%;
  }

  .popup.disclaimer {
    padding: 40px 5%;
  }

  .pop-about-leadership-content-b {
    border-radius: 0;
    height: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .about-leadership-details-txt-b {
    padding: 50px 20px;
  }

  .swiper-slide {
    width: 50%;
    margin-top: 40px;
  }

  .about-milestone-line {
    height: 40px;
    margin-top: -40px;
  }

  .about-milestone-dot {
    margin-top: -40px;
  }

  .pop-disclaimer-content-b {
    height: 100%;
    max-height: none;
    margin-left: 0;
    margin-right: 0;
    padding-left: 20px;
    padding-right: 20px;
  }

  .pop-disclaimer-top {
    padding-top: 20px;
    font-size: 22px;
  }

  .pop-disclaimer-txt-b, .pop-disclaimer-bottom {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .btn03 {
    margin-top: 10px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .pop-disclaimer-btn-b {
    margin-top: -10px;
  }

  .popup-disclaimer-btn-close {
    margin-top: 5px;
  }
}

@media screen and (max-width: 479px) {
  .home-stat-col {
    width: 100%;
  }

  .home-stat-b {
    height: 180px;
  }

  .home-about-list {
    padding-bottom: 10px;
    padding-right: 20px;
  }

  .btn.disclaimer-btn {
    width: 48%;
  }

  .about-icon {
    margin-bottom: 0;
    margin-right: 0;
    position: relative;
  }

  .about-milestone-col {
    width: 100%;
  }

  .about-list {
    padding-right: 20px;
  }

  .about-leadership-col {
    width: 100%;
  }

  .about-leadership-dropdown-toggle {
    background-position: 94%;
  }

  .pop-about-leadership-content-b {
    overflow: auto;
  }

  .about-leadership-details-img-b {
    width: 100%;
    position: relative;
  }

  .about-leadership-details-img {
    height: auto;
    padding-top: 100%;
  }

  .about-leadership-details-txt-b {
    float: none;
    width: 100%;
    height: auto;
    padding-top: 20px;
    padding-bottom: 70px;
    overflow: visible;
  }

  .popup-btn-close {
    background-color: var(--blue);
    background-image: none;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    display: flex;
    position: fixed;
    inset: auto 0% 0%;
  }

  .popup-btn-close-txt {
    display: block;
  }

  .swiper-slide {
    width: 75%;
  }

  .pop-disclaimer-content-b {
    overflow: auto;
  }

  .pop-disclaimer-bottom {
    text-align: center;
    display: block;
  }

  .btn03.disclaimer-btn {
    width: 48%;
  }

  .pop-disclaimer-btn-b {
    justify-content: space-between;
    width: 100%;
    margin-bottom: 10px;
    display: flex;
  }

  .popup-disclaimer-btn-close {
    flex-flow: column;
    justify-content: center;
    align-items: center;
  }
}


