@charset "UTF-8";
@keyframes zoomIcon {
  0% {
    transform: scale(0.5, 0.5);
  }
  100% {
    transform: scale(1, 1);
  }
}
@keyframes marqueeSlogan {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100vw);
  }
}
@keyframes marqueeSloganReverse {
  0% {
    transform: translateX(100vw);
  }
  100% {
    transform: translateX(-100%);
  }
}
.mouse-enter-icon {
  content: "";
  width: 100%;
  height: 100%;
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  position: absolute;
  right: 0;
  bottom: 0;
  transition: all 0.3s ease-in-out;
}
@media screen and (min-width: 992px) {
  .mouse-enter-icon:hover::after {
    content: "";
    width: 60px;
    height: 60px;
    position: absolute;
    background-image: url("../img/icon/mouse-hover.svg");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    left: 42%;
    top: 37.5%;
    will-change: auto;
    animation: 0.5s zoomIcon;
    -webkit-animation: 0.5s zoomIcon;
    -moz-animation: 0.5s zoomIcon;
  }
}

html[lang=en] body.page .page-top .page-intro .title {
  font-size: 64px;
  max-width: 450px;
  /*
  @media screen and (max-width: $breakpoint_1200 - 1) {
    font-size: 54px;
    max-width: 400px;
  }*/
}
@media screen and (max-width: 991px) {
  html[lang=en] body.page .page-top .page-intro .title {
    font-size: 24px;
    height: auto;
  }
}
html[lang=en] body.page .page-top .page-intro .breadcrumb {
  /*
  @media screen and (max-width: $breakpoint_1200 - 1) {
    .item {
      max-width: 200px;

      .divider {
        align-content: center;
      }
    }
  }*/
}

html,
body {
  min-height: 100%;
}

body {
  font-family: "PT Sans", "PingFangHK", "PingFangSC", "Noto Sans TC", "Noto Sans SC", "Microsoft JhengHei", "微軟正黑體", "Microsoft YaHei", "SimHei", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #000000;
  background-color: #ffffff;
  line-height: 140%;
  margin: 0 auto;
  position: relative;
  overflow-x: hidden;
}
body.page {
  padding-top: 208px;
  /*
  @media screen and (min-width : $breakpoint_md ) {
    &.only-sub-menu {
      padding-top: 220px;

      header {
        transform: translateY(-200px);

        .top {
          height: 0px;
        }

        .menu {
          height: 0px;
          ;
        }
      }

      .page-sub-menu {
        position: fixed;
        top: 0;
        z-index: 99;
        width: 100vw;
        background: white;
      }
    }
  }
  */
}
@media screen and (max-width: 992px) {
  body.page .page-sub-menu {
    position: sticky;
    top: 48px;
    z-index: 20;
    width: 100vw;
    background: white;
  }
}
@media screen and (max-width: 991px) {
  body.page {
    padding-top: 52px;
  }
}
body.page header {
  background-color: #ffffff;
}
body:has(.mobile-menu-open) {
  overflow-x: hidden;
  overflow-y: hidden;
}
@media screen and (min-width: 992px) {
  body:has(.mobile-menu-open) {
    overflow-y: unset;
  }
}

* {
  box-sizing: border-box;
}

a {
  color: inherit;
  cursor: pointer;
  text-decoration: none;
}

.container {
  width: 100%;
  max-width: 100%;
  padding-left: 24px;
  padding-right: 24px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}
@media screen and (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}
@media screen and (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}
@media screen and (min-width: 1200px) {
  .container {
    max-width: 1170px;
  }
}
@media screen and (min-width: 1400px) {
  .container {
    max-width: 1328px;
  }
}

.row {
  margin-left: -24px;
  margin-right: -24px;
}

.flex {
  display: flex;
}

#scroll-top {
  display: none;
  position: fixed;
  right: 50px;
  bottom: 50px;
  width: 70px;
  height: 70px;
  background-image: url("../img/icon/go-top.svg");
  background-repeat: no-repeat;
  background-size: cover;
  cursor: pointer;
  z-index: 98;
}
@media screen and (max-width: 991px) {
  #scroll-top {
    right: 5%;
    bottom: 2%;
    width: 60.6px;
    height: 60.6px;
  }
}

.home .wrap .menu .menu-item.has-child .sub-menu {
  padding: 15px 30px 15px;
}
.home .sticky .wrap .menu .menu-item.has-child .sub-menu {
  padding: 18.5px 30px 15px;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 208px;
  padding: 32px 0;
  z-index: 99;
  /*transition: all 0.3s ease-in-out;*/
}
header.mobile-menu-open .mobile-menu {
  display: block;
  transform: translateX(0);
  padding-bottom: 200px;
}
@media screen and (min-width: 992px) {
  header.mobile-menu-open .mobile-menu {
    display: none;
  }
}
header .mobile-menu {
  overflow: auto;
  background-color: #ffffff;
  position: absolute;
  top: 0;
  width: 100%;
  height: 100vh;
  transition: all 0.3s ease-in-out;
  transform: translateX(100%);
  margin-top: 32px;
  overflow-y: scroll;
  scrollbar-width: none;
  -ms-overflow-style: none;
  z-index: 16;
}
header .mobile-menu .lang {
  position: relative;
  padding-right: 32px;
  width: 50%;
  z-index: 15;
}
header .mobile-menu .lang .current-lang {
  position: relative;
  cursor: pointer;
  padding-right: 24px;
  font-size: 0.875em;
  text-align: right;
  height: 50px;
  align-content: center;
}
header .mobile-menu .lang .current-lang::before {
  content: "";
  width: 12px;
  height: 6px;
  background-image: url("../img/icon/lang-arrow.svg");
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  right: 5px;
  transform: translateY(-50%);
}
header .mobile-menu .lang .lang-list {
  position: absolute;
  top: 30px;
  left: calc(100% - 66px);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  -webkit-transform: translateY(-4px);
  transition: opacity 0.25s, visibility 0.25s, transform 0.25s;
  width: auto;
  list-style: none;
  padding: 20px 0;
  margin: 0;
}
header .mobile-menu .lang .lang-list li {
  font-size: 0.875em;
}
header .mobile-menu .lang .lang-list li:not(:last-child) {
  margin-bottom: 15px;
}
header .mobile-menu .lang.active .lang-list {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
header .mobile-menu .tools {
  position: absolute;
  display: flex;
  align-items: center;
  right: 50%;
  transform: translate(50%, -50%);
  width: 100%;
}
header .mobile-menu .tools .nav {
  display: flex;
  align-items: center;
  width: 50%;
}
header .mobile-menu .tools .nav .contact-us {
  margin-right: 25px;
  font-size: 0.875em;
}
header .mobile-menu .tools .nav .linkedin {
  display: flex;
  align-items: center;
  position: relative;
  top: -1px;
}
header .mobile-menu::-webkit-scrollbar {
  display: none;
}
header .mobile-menu .container {
  padding-left: 0px;
  padding-right: 0px;
  margin: 0;
  max-width: none !important;
  margin-bottom: 64px;
}
header .mobile-menu .container .wrapper .col-t .menu {
  display: block;
}
header .mobile-menu .container .wrapper .col-t .menu .mobile-menu-item:has(.second-layer) .first-layer {
  transition: all 0.5s ease-out;
}
header .mobile-menu .container .wrapper .col-t .menu .mobile-menu-item:has(.second-layer) .first-layer > div:before {
  content: "";
  width: 25px;
  height: 25px;
  background: url(../img/icon/accordion-down-mobile-menu.svg);
  background-repeat: no-repeat;
  background-position: center center;
  position: absolute;
  right: 0;
  transition: transform 0.5s ease-in-out;
  transform: translate(0px, 50%) rotateX(0deg);
}
header .mobile-menu .container .wrapper .col-t .menu .mobile-menu-item:has(.second-layer) .first-layer.active {
  background-color: #BF382C;
  border-bottom: 0px;
  font-weight: bold;
}
header .mobile-menu .container .wrapper .col-t .menu .mobile-menu-item:has(.second-layer) .first-layer.active > div {
  color: #ffffff;
  border-bottom: 0px;
}
header .mobile-menu .container .wrapper .col-t .menu .mobile-menu-item:has(.second-layer) .first-layer.active > div a {
  font-weight: bold;
}
header .mobile-menu .container .wrapper .col-t .menu .mobile-menu-item:has(.second-layer) .first-layer.active > div:before {
  content: "";
  width: 25px;
  height: 25px;
  background: url(../img/icon/accordion-up-mobile-menu.svg);
  background-repeat: no-repeat;
  background-position: center center;
  position: absolute;
  right: 0;
  transform: translate(0px, 50%) rotateX(180deg);
  bottom: 50%;
}
header .mobile-menu .container .wrapper .col-t .menu .mobile-menu-item:has(.second-layer) .first-layer.active > div:has(.second-layer) {
  border-bottom: 0px;
}
header .mobile-menu .container .wrapper .col-t .menu .mobile-menu-item:has(.second-layer) .first-layer.active > div:has(.second-layer) .second-layer .div:last-child {
  padding-bottom: 0px;
  border-bottom: 0px;
}
header .mobile-menu .container .wrapper .col-t .menu .mobile-menu-item:has(.sub-menu-item) .second-layer > div:has(.third-layer) {
  transition: all 0.5s ease-in-out;
}
header .mobile-menu .container .wrapper .col-t .menu .mobile-menu-item:has(.sub-menu-item) .second-layer > div:has(.third-layer):before {
  content: "";
  width: 25px;
  height: 25px;
  background: url(../img/icon/accordion-down-mobile-menu.svg);
  background-repeat: no-repeat;
  background-position: center center;
  position: absolute;
  right: 33px;
  transition: transform 0.5s ease-in-out;
  transform: translate(0px, 50%) rotateX(0deg);
}
header .mobile-menu .container .wrapper .col-t .menu .mobile-menu-item:has(.sub-menu-item) .second-layer > div:has(.third-layer).active {
  padding-right: 16px;
  padding-bottom: 0px;
}
header .mobile-menu .container .wrapper .col-t .menu .mobile-menu-item:has(.sub-menu-item) .second-layer > div:has(.third-layer).active > div:first-child a {
  font-size: 18px;
  line-height: 200%;
  font-weight: bold;
  color: #BF382C;
}
header .mobile-menu .container .wrapper .col-t .menu .mobile-menu-item:has(.sub-menu-item) .second-layer > div:has(.third-layer).active:before {
  content: "";
  width: 25px;
  height: 25px;
  background: url(../img/icon/accordion-up-mobile-sub-menu.svg);
  background-repeat: no-repeat;
  background-position: center center;
  position: absolute;
  right: 33px;
  transform: translate(0px, 50%) rotateX(180deg);
}
header .mobile-menu .container .wrapper .col-t .menu .mobile-menu-item:has(.sub-menu-item) .second-layer > div:has(.third-layer).active div {
  border-bottom: 1px solid #C3B5AC;
}
header .mobile-menu .container .wrapper .col-t .menu .mobile-menu-item:has(.sub-menu-item) .second-layer > div:has(.third-layer).active .third-layer {
  border-bottom: 0px;
}
header .mobile-menu .container .wrapper .col-t .menu .mobile-menu-item .sub-menu-item {
  cursor: pointer;
  border-bottom: 0px;
}
header .mobile-menu .container .wrapper .col-t .menu .first-layer {
  padding-left: 32px;
  padding-right: 32px;
  cursor: pointer;
  position: relative;
}
header .mobile-menu .container .wrapper .col-t .menu .first-layer > div {
  position: relative;
  list-style-type: none;
  line-height: 200%;
  font-size: 1.25em;
  font-weight: bold;
  font-weight: 400;
  color: #483232;
  padding-top: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid #C3B5AC;
}
header .mobile-menu .container .wrapper .col-t .menu .first-layer > div a {
  width: inherit;
  display: block;
}
header .mobile-menu .container .wrapper .col-t .menu .second-layer {
  display: none;
  padding-left: 48px;
  padding-right: 16px;
  background: #F1E8E1;
  padding-top: 16px;
}
header .mobile-menu .container .wrapper .col-t .menu .second-layer:first-child {
  padding-top: 20px;
}
header .mobile-menu .container .wrapper .col-t .menu .second-layer > div.sub-menu-item:last-child {
  padding-bottom: 0px;
}
header .mobile-menu .container .wrapper .col-t .menu .second-layer div {
  list-style-type: none;
  line-height: 200%;
  font-size: 18px;
  font-weight: bold;
  font-weight: 400;
  color: #483232;
  padding-bottom: 16px;
  border-bottom: 1px solid #ffffff;
}
header .mobile-menu .container .wrapper .col-t .menu .second-layer div:not(:first-child) {
  padding-top: 16px;
}
@media screen and (max-width: 991px) {
  header .mobile-menu .container .wrapper .col-t .menu .second-layer div a {
    width: inherit;
    display: block;
  }
}
header .mobile-menu .container .wrapper .col-t .menu .second-layer .third-layer {
  display: none;
  padding-left: 24px;
  border-bottom: 0px;
  padding-bottom: 0px;
}
header .mobile-menu .container .wrapper .col-t .menu .second-layer .third-layer.active {
  border-bottom: 0px;
}
@media screen and (max-width: 991px) {
  header .mobile-menu .container .wrapper .col-t .menu .second-layer .third-layer a {
    width: inherit;
    display: block;
  }
}
header .mobile-menu .menu-footer {
  position: relative;
  bottom: 25px;
  display: flex;
  justify-content: center;
}
header .mobile-menu .menu-footer .footer-wrapper {
  display: flex;
  flex-direction: row;
}
header .mobile-menu .menu-footer .footer-wrapper .social-media-wrapper {
  display: flex;
  flex-direction: row;
}
@media screen and (max-width: 991px) {
  header {
    height: 52px;
    padding: 13px 0;
    background-color: #ffffff;
  }
}
header .wrap {
  position: relative;
}
header .wrap .top {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 60px;
  position: relative;
  margin-bottom: 50px;
  transition: all 0.3s ease-in-out;
  /*.hamburger {
    display: none;
    margin-left: auto;
    margin-right: 5px;
    width: 24px;
    height: 20px;
    background-image: url("../img/icon/icon-menu.svg");
    background-repeat: no-repeat;
    background-size: cover;

    @media screen and (max-width: $breakpoint_md - 1) {
      display: block;
    }
  }*/
}
@media screen and (max-width: 991px) {
  header .wrap .top {
    margin-bottom: 0;
    justify-content: flex-start;
    padding: 0 15px;
  }
}
header .wrap .top .logo {
  transition: all 0.3s ease-in-out;
}
header .wrap .top .logo .desktop {
  display: block;
}
header .wrap .top .logo .mobile {
  display: none;
}
@media screen and (max-width: 991px) {
  header .wrap .top .logo {
    margin-left: auto;
  }
  header .wrap .top .logo .desktop {
    display: none;
  }
  header .wrap .top .logo .mobile {
    display: block;
  }
}
header .wrap .top .logo a {
  display: block;
}
header .wrap .top .logo img {
  max-width: 461px;
  transition: all 0.3s ease-in-out;
}
@media screen and (max-width: 991px) {
  header .wrap .top .logo img {
    width: 182px;
    height: auto;
  }
}
header .wrap .top .lang {
  position: relative;
  margin-right: 25px;
}
header .wrap .top .lang .current-lang {
  position: relative;
  cursor: pointer;
  padding-right: 20px;
  font-size: 0.875em;
}
header .wrap .top .lang .current-lang::before {
  content: "";
  width: 12px;
  height: 6px;
  background-image: url("../img/icon/lang-arrow.svg");
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  right: 5px;
  transform: translateY(-50%);
}
header .wrap .top .lang .lang-list {
  position: absolute;
  top: 15px;
  left: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: opacity 0.25s, visibility 0.25s, transform 0.25s;
  width: auto;
  list-style: none;
  padding: 20px 0;
  margin: 0;
}
header .wrap .top .lang .lang-list li {
  font-size: 0.875em;
}
header .wrap .top .lang .lang-list li:not(:last-child) {
  margin-bottom: 15px;
}
header .wrap .top .lang:hover .lang-list {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
header .wrap .top .tools {
  position: absolute;
  right: 60px;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 991px) {
  header .wrap .top .tools {
    display: none;
  }
}
header .wrap .top .tools .nav {
  display: flex;
  align-items: center;
}
header .wrap .top .tools .nav .contact-us {
  margin-right: 30px;
  font-size: 0.875em;
}
header .wrap .top .tools .nav .linkedin {
  display: flex;
  align-items: center;
  position: relative;
  top: -1px;
}
header .wrap .top .hamburger {
  margin-left: auto;
  margin-right: 15px;
  position: static;
  width: 21px;
  height: 21px;
  z-index: 1;
  display: none;
  cursor: pointer;
  margin-top: -6px;
}
header .wrap .top .hamburger.active {
  margin-top: 0px;
}
@media screen and (max-width: 991px) {
  header .wrap .top .hamburger {
    display: block;
  }
}
header .wrap .top .hamburger:before, header .wrap .top .hamburger:after,
header .wrap .top .hamburger div {
  background: #483232;
  content: "";
  display: block;
  height: 2px;
  border-radius: 3px;
  margin: 6px 0;
  transition: 0.5s;
}
header .wrap .top .hamburger.active:before {
  height: 2px;
  color: #483232;
  top: -1px;
  position: relative;
  transform: translateY(9px) rotate(135deg);
}
header .wrap .top .hamburger.active:after {
  height: 2px;
  color: #483232;
  transform: translateY(-8px) rotate(-135deg);
}
header .wrap .top .hamburger.active div {
  transform: scale(0);
}
header .wrap .menu {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 991px) {
  header .wrap .menu {
    display: none;
  }
}
header .wrap .menu .menu-item {
  padding-bottom: 30px;
}
header .wrap .menu .menu-item > a {
  font-size: 1.25em;
  transition: all 0.1s ease-in;
}
header .wrap .menu .menu-item > a:hover {
  color: #BF382C;
  font-weight: bold;
}
header .wrap .menu .menu-item > a.active {
  color: #BF382C;
  font-weight: bold;
}
header .wrap .menu .menu-item:not(:last-child) {
  margin-right: 40px;
}
header .wrap .menu .menu-item.has-child {
  position: relative;
}
header .wrap .menu .menu-item.has-child:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
header .wrap .menu .menu-item.has-child .sub-menu {
  position: absolute;
  top: 50px;
  left: -50%;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: opacity 0.25s, visibility 0.25s, transform 0.25s;
  min-width: 160px;
  list-style: none;
  padding: 25px 30px 15px;
  margin: 0;
  text-align: center;
  background-color: #ffffff;
  text-align: left;
}
header .wrap .menu .menu-item.has-child .sub-menu li {
  font-size: 1.25em;
  white-space: nowrap;
  position: relative;
}
header .wrap .menu .menu-item.has-child .sub-menu li::before {
  content: "";
  transition: all 0.2s ease-in;
  background-color: #ffffff;
  background-position: center;
  background-size: cover;
  height: calc(100% + 30px);
  width: calc(100% + 60px);
  position: absolute;
  left: -30px;
  top: -15px;
}
header .wrap .menu .menu-item.has-child .sub-menu li:hover::before {
  content: "";
  background-color: #BF382C;
}
header .wrap .menu .menu-item.has-child .sub-menu li:hover a {
  color: #ffffff;
  position: relative;
}
header .wrap .menu .menu-item.has-child .sub-menu li:hover a.active {
  color: #ffffff;
}
header .wrap .menu .menu-item.has-child .sub-menu li:not(:last-child) {
  margin-bottom: 30px;
}
header .wrap .menu .menu-item.has-child .sub-menu li a {
  position: relative;
}
header .wrap .menu .menu-item.has-child .sub-menu li a.active {
  color: #BF382C;
  position: relative;
}
header.sticky {
  background-color: #ffffff;
  padding: 15px 0 10px;
  height: auto;
}
@media screen and (max-width: 991px) {
  header.sticky {
    padding: 11px 0;
  }
}
@media screen and (max-width: 991px) {
  header.sticky.mobile-menu-open {
    z-index: 100;
  }
}
header.sticky .wrap .top {
  margin-bottom: 20px;
}
@media screen and (max-width: 991px) {
  header.sticky .wrap .top {
    margin-bottom: 0;
  }
}
header.sticky .wrap .top .logo img {
  width: auto;
  height: auto;
}
@media screen and (max-width: 991px) {
  header.sticky .wrap .top .logo img {
    width: 182px;
    height: auto;
  }
}
header.sticky .wrap .menu .menu-item {
  padding-bottom: 10px;
}
header.sticky .wrap .menu .menu-item.has-child .sub-menu {
  top: 40px;
}

footer {
  position: relative;
  padding: 50px 56px 25px;
  background-color: #EFEDE9;
  z-index: 200;
}
footer .footer-links .flex:not(:first-child):not(.item) {
  padding-left: 15px;
}
@media screen and (max-width: 991px) {
  footer .footer-links .flex:not(:first-child):not(.item) {
    padding-left: 10px;
  }
  footer .footer-links .flex:not(:first-child):not(.item)::before {
    content: "|";
    padding-right: 10px;
  }
}
@media screen and (max-width: 460px) {
  footer .footer-links .flex:not(:first-child):not(.item) {
    padding-left: 0px;
  }
  footer .footer-links .flex:not(:first-child):not(.item)::before {
    content: "";
    padding-right: 0px;
  }
}
@media screen and (max-width: 1199px) {
  footer {
    padding: 32px;
    z-index: 99;
  }
}
@media screen and (max-width: 991px) {
  footer .container .footer-top {
    flex-direction: column;
  }
}
footer .container .footer-top .shkp-logo {
  flex-shrink: 0;
  margin-right: 80px;
}
@media screen and (max-width: 1199px) {
  footer .container .footer-top .shkp-logo {
    margin-right: 40px;
  }
}
@media screen and (max-width: 991px) {
  footer .container .footer-top .shkp-logo {
    margin-right: 0;
    margin-bottom: 16px;
  }
}
@media screen and (max-width: 991px) {
  footer .container .footer-top .shkp-logo img {
    width: 46vw;
    height: auto;
  }
}
footer .container .footer-top .navigation {
  display: flex;
  width: 100%;
}
@media screen and (max-width: 991px) {
  footer .container .footer-top .navigation {
    flex-direction: column;
    border-bottom: 0.5px solid #221F1F;
    margin-top: 16px;
  }
}
footer .container .footer-top .navigation .item {
  flex: auto;
}
@media screen and (max-width: 991px) {
  footer .container .footer-top .navigation .item {
    margin-bottom: 16px;
  }
}
footer .container .footer-top .navigation .item:not(:last-child) {
  margin-right: 65px;
}
@media screen and (max-width: 1199px) {
  footer .container .footer-top .navigation .item:not(:last-child) {
    margin-right: 35px;
  }
}
@media screen and (max-width: 991px) {
  footer .container .footer-top .navigation .item:not(:last-child) {
    border-bottom: none;
    line-height: 138.5%;
    margin-right: 0;
  }
}
footer .container .footer-top .navigation .item.active .main .arrow {
  transform: rotate(-180deg) translateY(5px);
}
footer .container .footer-top .navigation .item .main {
  position: relative;
  color: #BF382C;
  font-weight: 400;
  margin-bottom: 35px;
}
@media screen and (max-width: 991px) {
  footer .container .footer-top .navigation .item .main {
    margin-bottom: 0px;
    color: #221F1F;
    font-size: 1em;
  }
}
footer .container .footer-top .navigation .item .main .arrow {
  display: none;
  width: 20px;
  height: 12px;
  background-image: url(../img/icon/lang-arrow.svg);
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  top: 50%;
  right: 5px;
  transform: translateY(-50%);
  transition: transform 0.3s ease-in-out;
  cursor: pointer;
}
@media screen and (max-width: 991px) {
  footer .container .footer-top .navigation .item .main .arrow {
    display: block;
  }
}
footer .container .footer-top .navigation .item .sub {
  padding: 0;
  margin: 0;
  list-style: none;
}
@media screen and (min-width: 992px) {
  footer .container .footer-top .navigation .item .sub {
    display: block !important;
  }
}
@media screen and (max-width: 991px) {
  footer .container .footer-top .navigation .item .sub {
    display: none;
    margin-bottom: 15px;
    margin-top: 25px;
  }
}
footer .container .footer-top .navigation .item .sub li:not(:last-child) {
  margin-bottom: 15px;
}
footer .container .footer-top .navigation .item .sub li a {
  color: #483232;
}
@media screen and (max-width: 991px) {
  footer .container .footer-top .navigation .item .sub li a {
    font-size: 14px;
  }
}
footer .container .footer-bottom {
  margin-top: 75px;
  border-top: 1px solid #58626B;
  padding-top: 16px;
}
@media screen and (max-width: 991px) {
  footer .container .footer-bottom {
    margin-top: 0px;
    flex-direction: column;
    border-top: 0;
  }
}
@media screen and (max-width: 991px) {
  footer .container .footer-bottom .col-l {
    flex-direction: column;
    margin-bottom: 0;
    font-size: 12px;
  }
}
footer .container .footer-bottom .col-l .copyright {
  margin-right: 16px;
}
@media screen and (max-width: 991px) {
  footer .container .footer-bottom .col-l .copyright {
    margin-right: 0;
  }
}
footer .container .footer-bottom .col-l .license {
  display: block;
}
@media screen and (max-width: 991px) {
  footer .container .footer-bottom .col-l .license {
    display: none;
  }
}
footer .container .footer-bottom .col-l .license.mobile {
  display: none;
}
@media screen and (max-width: 991px) {
  footer .container .footer-bottom .col-l .license.mobile {
    display: block;
  }
}
footer .container .footer-bottom .col-r {
  margin-left: auto;
}
@media screen and (max-width: 991px) {
  footer .container .footer-bottom .col-r {
    margin-left: 0;
    font-size: 12px;
  }
}
@media screen and (max-width: 460px) {
  footer .container .footer-bottom .col-r .footer-links {
    display: block;
  }
}
@media screen and (max-width: 991px) {
  footer .container .footer-bottom .col-r .footer-links .item:not(:first-child) ::before {
    content: "|";
    padding-right: 5px;
  }
}
footer .container .footer-bottom .col-r .footer-links .item:not(:last-child) {
  margin-right: 16px;
}
@media screen and (max-width: 991px) {
  footer .container .footer-bottom .col-r .footer-links .item:not(:last-child) {
    margin-right: 10px;
  }
}

@media screen and (max-width: 991px) {
  html[lang=en] .btn::after {
    right: 24px;
  }
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 216px;
  height: 64px;
  border-radius: 105px;
  border: 1px solid #C3B5AC;
  background-color: #ffffff;
  position: relative;
}
.btn::after {
  content: "";
  width: 31px;
  height: 31px;
  background-repeat: no-repeat;
  background-image: url("../img/icon/circle-arrow-right.svg");
  position: absolute;
  right: 44px;
  transition: all 0.4s ease-in-out;
}
@media screen and (max-width: 991px) {
  .btn::after {
    right: 32px;
  }
}
.btn span {
  margin-right: 25px;
  font-weight: bold;
  color: #483232;
  letter-spacing: 0.3px;
}
.btn:hover::after {
  transform: translateX(5px);
}

.breadcrumb {
  display: flex;
  align-items: center;
  line-height: 1.1;
  width: calc(50% - 10px);
  flex-wrap: wrap;
  gap: 0.25em;
}
@media screen and (max-width: 991px) {
  .breadcrumb {
    font-size: 0.625em;
  }
}
.breadcrumb .b-home {
  width: 16px;
  height: 16px;
  background-image: url("../img/icon/home.svg");
  background-size: cover;
  background-repeat: no-repeat;
}
.breadcrumb .divider {
  font-family: "Roboto";
  margin: 0 9px;
}
.breadcrumb .item {
  display: flex;
  color: rgba(0, 0, 0, 0.3);
}
.breadcrumb .item.current {
  color: #221F1F;
}

.page .page-top {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  height: 400px;
  background-color: #FDF4ED;
}
@media screen and (max-width: 1199px) {
  .page .page-top {
    flex-direction: column;
    height: 500px;
  }
}
@media screen and (max-width: 991px) {
  .page .page-top {
    flex-direction: column;
  }
}
@media screen and (max-width: 991px) {
  .page .page-top .container {
    padding-left: unset;
    padding-right: unset;
  }
}
.page .page-top::before {
  content: "";
  position: absolute;
  top: 50px;
  left: -104px;
  width: 194px;
  height: 194px;
  border-radius: 10px;
  border: 2px solid #BF382C;
  transform: rotate(var(--rotate)) scale(var(--scale));
  opacity: var(--opacity);
}
@media screen and (max-width: 1199px) {
  .page .page-top::before {
    display: none;
  }
}
@media screen and (max-width: 991px) {
  .page .page-top::before {
    display: none;
  }
}
.page .page-top::after {
  content: "";
  position: absolute;
  top: 215px;
  left: 60px;
  width: 65px;
  height: 65px;
  border-radius: 10px;
  background-color: #BF382C;
  transform: rotate(var(--rotate)) scale(var(--scale));
  opacity: var(--opacity);
}
@media screen and (max-width: 1199px) {
  .page .page-top::after {
    display: none;
  }
}
@media screen and (max-width: 991px) {
  .page .page-top::after {
    display: none;
  }
}
.page .page-top .page-intro {
  padding: 0 100px;
  opacity: 0;
}
@media screen and (max-width: 991px) {
  .page .page-top .page-intro {
    padding: 12px 32px 13px;
  }
}
.page .page-top .page-intro .title {
  font-size: 64px;
  color: #BF382C;
  line-height: 1.13;
  margin-bottom: 60px;
  font-weight: bold;
  /* (14/08/24)  Comments : title is too long to display in desktop mode*/
  max-width: 500px;
  word-break: break-word;
}
@media screen and (max-width: 1399px) {
  .page .page-top .page-intro .title {
    max-width: 450px;
  }
}
@media screen and (max-width: 1199px) {
  .page .page-top .page-intro .title {
    margin-bottom: 36px;
    margin-top: 36px;
  }
}
@media screen and (max-width: 1199px) {
  .page .page-top .page-intro .title {
    max-width: unset;
  }
}
@media screen and (min-width: 991px) and (max-width: 1190px) {
  .page .page-top .page-intro .title {
    width: 100%;
  }
}
@media screen and (max-width: 991px) {
  .page .page-top .page-intro .title {
    font-size: 32px;
    margin-bottom: 4px;
    line-height: 130%;
    height: 48px;
    margin-top: 0px;
  }
}
@media screen and (max-width: 1199px) {
  .page .page-top .page-intro .breadcrumb {
    width: 100%;
    margin-bottom: 36px;
  }
}
@media screen and (max-width: 991px) {
  .page .page-top .page-intro .breadcrumb {
    width: 100%;
    margin-bottom: 0px;
  }
}
.page .page-top .filter {
  width: 100%;
  height: 100%;
  background-color: rgba(191, 56, 44, 0.1);
  background-size: cover;
  z-index: 3;
  position: absolute;
  transform: translateY(-100%);
}
.page .page-top .img {
  position: absolute;
  right: 0;
  width: calc(50% - 10px);
  height: 100%;
  top: 0;
  overflow: hidden;
}
@media screen and (max-width: 1199px) {
  .page .page-top .img {
    position: relative;
    width: 100%;
  }
}
@media screen and (max-width: 991px) {
  .page .page-top .img {
    position: relative;
    width: 100%;
  }
}
.page .page-top .img img {
  width: 100%;
  height: 100%;
  opacity: 0;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
  position: absolute;
  will-change: top;
}
@media screen and (max-width: 991px) {
  .page .page-top .img img {
    -o-object-position: center;
       object-position: center;
  }
}
.page .page-sub-menu {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 110px;
  overflow-y: hidden;
  transition: all 0.3s ease-in, background 1ms;
  padding-left: 16px;
  padding-right: 16px;
}
@media screen and (max-width: 991px) {
  .page .page-sub-menu {
    overflow-x: scroll;
    max-height: 56px;
    overflow-y: hidden;
    white-space: nowrap;
    scrollbar-width: none;
    height: 56px;
    justify-content: space-around;
    padding-left: 0px;
    padding-right: 0px;
  }
}
.page .page-sub-menu ul {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
}
@media screen and (max-width: 991px) {
  .page .page-sub-menu ul {
    padding: 16px 16px 16px;
  }
}
.page .page-sub-menu ul li:not(:last-child) {
  margin-right: 40px;
}
@media screen and (max-width: 991px) {
  .page .page-sub-menu ul li:not(:last-child) {
    margin-right: 26px;
  }
}
.page .page-sub-menu ul li a {
  font-size: 1.25em;
  color: rgba(34, 31, 31, 0.4);
}
@media screen and (max-width: 991px) {
  .page .page-sub-menu ul li a {
    font-size: 1.125em;
  }
}
.page .page-sub-menu ul li a.active {
  color: #BF382C;
  font-weight: 600;
  position: relative;
  z-index: 1;
  /*
  &::before{
    content: "";
    background-color: $red1;
    transition: all 0.2s ease-in;
    background-position: center;
    background-size: cover;
    height: 110px;
    width: calc(100% + 40px);
    position: absolute;
    z-index: -1;
    top:-39px;
    left:-25%;
    @media screen and (max-width: $breakpoint_md - 1){
      width: calc(100% + 26px);
      height: 56px;
      top: -14px;
      left: -12px;
    }
  }
    */
}
.page figcaption {
  width: auto;
  word-break: break-word;
}
.page figure[role=group] {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
}
.page figure[role=group] figcaption {
  flex-basis: 100%;
  text-align: center;
}
.page figure[role=group].align-left {
  display: inline-flex;
  justify-content: flex-start;
}
.page figure[role=group].align-left > * {
  flex-basis: 100%;
}
.page figure[role=group].align-center {
  justify-content: center;
}
.page figure[role=group].align-right {
  display: inline-flex;
  justify-content: flex-end;
}
.page figure[role=group].align-right > * {
  flex-basis: 100%;
}
.page .page-main {
  padding: 80px 0;
  background-color: #FDF4ED;
}
.page .page-main .marquee-slogan h1 {
  font-size: 200px;
}
.page .page-main .marquee-slogan h1.slogan {
  letter-spacing: 40px;
}
@media screen and (max-width: 991px) {
  .page .page-main {
    padding: 20px 0;
  }
}
.page .page-main h2, .page .page-main h3, .page .page-main h4, .page .page-main h5, .page .page-main h6 {
  line-height: 1.5;
}
.page .page-main blockquote h2, .page .page-main blockquote h3, .page .page-main blockquote h4, .page .page-main blockquote h5, .page .page-main blockquote h6, .page .page-main blockquote p {
  line-height: 1.5;
  word-break: break-word;
}
.page .page-main ul > li, .page .page-main ol > li {
  line-height: 2;
}
.page .page-main p {
  margin: 0 0 32px;
  font-size: 1.125em;
  line-height: 40px;
  color: #483232;
}
.page .page-main .align-left {
  margin-right: 1em;
}
.page .page-main .align-right {
  margin-left: 1em;
}

.marquee-slogan {
  position: absolute;
  overflow: hidden;
  display: flex;
}
.marquee-slogan.single {
  width: 100vw;
}
.marquee-slogan.ltr {
  right: 0;
}
.marquee-slogan h1 {
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #ffffff;
  font-size: 128px;
  font-weight: 600;
  line-height: 1.45;
  font-family: "PT Sans";
  opacity: 0.8;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  white-space: nowrap;
  margin: 0;
}
.marquee-slogan h1.slogan {
  -webkit-text-stroke-width: 2px;
  animation: marqueeSlogan 7s infinite linear;
  line-height: 138.5%;
  letter-spacing: 20%;
}
@media screen and (max-width: 991px) {
  .marquee-slogan h1.slogan {
    display: none;
  }
}
.marquee-slogan h1.slogan.reverse {
  animation: marqueeSloganReverse 7s infinite linear;
}

.relevant-awards {
  /* (08/10/24) UAT Comment */
  height: 100%;
  /*(23/10/24) COmments */
  min-height: 784px;
  padding-bottom: 152px;
  /*height: 575px;*/
  /*padding-bottom: 152px;*/
  background: #ffffff;
  padding-left: 0px;
  padding-right: 0px;
  background-clip: content-box, padding-box;
  width: 100vw;
  position: relative;
  left: calc(-50vw + 50%);
  overflow-x: clip;
}
@media screen and (max-width: 991px) {
  .relevant-awards {
    height: 100%;
    padding-bottom: 94px;
  }
}
.relevant-awards .title {
  margin: 0 auto;
  padding-top: 54px;
  font-weight: bold;
  font-size: 2.5em;
  line-height: 120%;
  text-align: center;
  padding-bottom: 26px;
  color: #483232;
}
@media screen and (max-width: 991px) {
  .relevant-awards .title {
    font-size: 2em;
    font-weight: bold;
    line-height: 130%;
    padding-bottom: 12px;
    padding-top: 40px;
  }
}
.relevant-awards .awards-swiper {
  padding-left: 64px;
}
@media screen and (max-width: 991px) {
  .relevant-awards .awards-swiper {
    padding-left: 8.5333333333vw;
    padding-right: 8.5333333333vw;
    padding-bottom: 40px;
  }
}
.relevant-awards .awards-swiper .swiper-wrapper .swiper-slide .award-item {
  display: flex;
  padding-bottom: 48px;
}
@media screen and (max-width: 991px) {
  .relevant-awards .awards-swiper .swiper-wrapper .swiper-slide .award-item {
    flex-direction: column;
    padding-bottom: 12px;
  }
}
.relevant-awards .awards-swiper .swiper-wrapper .swiper-slide .award-item .awards-img {
  height: 192px;
  width: 20vw;
  z-index: 2;
}
@media screen and (max-width: 991px) {
  .relevant-awards .awards-swiper .swiper-wrapper .swiper-slide .award-item .awards-img {
    width: 82.93333333vw;
    height: auto;
  }
}
.relevant-awards .awards-swiper .swiper-wrapper .swiper-slide .award-item .awards-img img {
  width: inherit;
  border-radius: 5px 5px;
}
@media screen and (max-width: 991px) {
  .relevant-awards .awards-swiper .swiper-wrapper .swiper-slide .award-item .awards-img img {
    height: inherit;
  }
}
.relevant-awards .awards-swiper .swiper-wrapper .swiper-slide .award-item .awards-description {
  padding-top: 24px;
  padding-left: 16px;
  z-index: 2;
  /* (08/10/24) UAT Comment*/
  /*max-height: 168px;*/
  /*&:before {
    content: '';
    position: absolute;
    background-color: $red3;
    z-index: 1;
    height: 189px;
    width: 43.61111111111vw;
    left: 9.236111111vw;
    top: 40px;

    @media screen and (max-width: $breakpoint_md - 1) {
      display: none;
    }
  }*/
}
@media screen and (max-width: 991px) {
  .relevant-awards .awards-swiper .swiper-wrapper .swiper-slide .award-item .awards-description {
    max-height: unset;
    background-color: rgba(217, 0, 0, 0.05);
    margin-top: 12px;
    padding-top: 10px;
  }
}
.relevant-awards .awards-swiper .swiper-wrapper .swiper-slide .award-item .awards-description .awards-background {
  content: "";
  position: absolute;
  background-color: rgba(217, 0, 0, 0.05);
  z-index: 1;
  /* (08/10/24) UAT Comment */
  /*height: 189px;*/
  height: calc(100% - 40px - 36px);
  width: 43.6111111111vw;
  left: 9.236111111vw;
  top: 40px;
}
@media screen and (max-width: 991px) {
  .relevant-awards .awards-swiper .swiper-wrapper .swiper-slide .award-item .awards-description .awards-background {
    display: none;
  }
}
.relevant-awards .awards-swiper .swiper-wrapper .swiper-slide .award-item .awards-description .event-name {
  font-weight: bold;
  font-size: 1.5em;
  line-height: 140%;
  color: #483232;
  padding-bottom: 24px;
  z-index: 5;
  width: 31.7083333333vw;
}
@media screen and (max-width: 991px) {
  .relevant-awards .awards-swiper .swiper-wrapper .swiper-slide .award-item .awards-description .event-name {
    font-size: 1.25em;
    width: auto;
    line-height: 130%;
    padding-bottom: 8px;
  }
}
.relevant-awards .awards-swiper .swiper-wrapper .swiper-slide .award-item .awards-description .awards-list {
  width: 31.7083333333vw;
}
@media screen and (max-width: 991px) {
  .relevant-awards .awards-swiper .swiper-wrapper .swiper-slide .award-item .awards-description .awards-list {
    width: 100%;
    padding-bottom: 25px;
  }
}
.relevant-awards .awards-swiper .swiper-wrapper .swiper-slide .award-item .awards-description .awards-list .awards-name {
  font-size: 1.125em;
  line-height: 40px;
  font-weight: 400;
  color: #483232;
  width: -moz-fit-content;
  width: fit-content;
  z-index: 5;
  position: relative;
  background-size: 28px;
  /*(08/10/24) UAT Comment*/
  overflow: hidden;
}
.relevant-awards .awards-swiper .swiper-wrapper .swiper-slide .award-item .awards-description .awards-list .awards-name:not(:last-child) {
  padding-bottom: 8px;
}
.relevant-awards .awards-swiper .swiper-wrapper .swiper-slide .award-item .awards-description .awards-list .awards-name:before {
  content: "";
  background: #ffffff;
  width: 95%;
  /*( 08/10/24) UAt Comment*/
  /*height: 58.5%;*/
  height: 86%;
  position: absolute;
  top: 20px;
  left: 0;
  padding-left: 10px;
}
@media screen and (max-width: 991px) {
  .relevant-awards .awards-swiper .swiper-wrapper .swiper-slide .award-item .awards-description .awards-list .awards-name:before {
    top: 15px;
    /* (08/10/24) UAT Comment*/
    /*height: 70%;*/
    height: 100%;
    padding-left: 0px;
  }
}
.relevant-awards .awards-swiper .swiper-wrapper .swiper-slide .award-item .awards-description .awards-list .awards-name div {
  /*background: linear-gradient(to bottom, transparent 50%, $white 50%);
  box-shadow:  0 0.5em 0 0px $white;*/
  padding-right: 0.9027777778vw;
  position: relative;
  display: flex;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  display: -webkit-box;
}
@media screen and (max-width: 991px) {
  .relevant-awards .awards-swiper .swiper-wrapper .swiper-slide .award-item .awards-description .awards-list .awards-name div {
    padding-right: 6vw;
    font-size: 0.8888888em;
    -webkit-line-clamp: 2;
  }
}
.relevant-awards .awards-swiper .swiper-wrapper .swiper-slide .award-item .awards-description .awards-list .awards-name div.org:before {
  content: "";
  display: inline-block;
  background-image: url(../img/icon/awards-organization.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: left center;
  width: 28px;
  height: 28px;
  vertical-align: text-bottom;
  margin-top: 5px;
  min-width: 28px;
  padding-right: 8px;
  margin-left: 1px;
  max-width: 28px;
  max-height: 28px;
}
.relevant-awards .awards-swiper .swiper-wrapper .swiper-slide .award-item .awards-description .awards-list .awards-name div.unit:before {
  content: "";
  display: inline-block;
  background-image: url(../img/icon/awards-unit.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: left center;
  width: 28px;
  height: 28px;
  vertical-align: text-bottom;
  margin-top: 5px;
  min-width: 28px;
  padding-right: 8px;
  max-width: 28px;
  max-height: 28px;
}
.relevant-awards .awards-swiper .swiper-wrapper .swiper-slide .award-item .awards-description .awards-list .awards-name div:before {
  content: "";
  display: inline-block;
  background-image: url(../img/icon/awards.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: left center;
  width: 28px;
  height: 28px;
  vertical-align: text-bottom;
  margin-top: 5px;
  min-width: 28px;
  padding-right: 8px;
  max-width: 28px;
  max-height: 28px;
}
.relevant-awards .awards-swiper .swiper-pagination {
  display: none;
}
@media screen and (max-width: 991px) {
  .relevant-awards .awards-swiper .swiper-pagination {
    display: block;
    bottom: 120px;
  }
}
.relevant-awards .awards-swiper .swiper-buttons {
  padding-top: 100px;
  padding-bottom: 10px;
  position: absolute;
  width: 118px;
  float: right;
  height: 51px;
  bottom: 100px;
  left: 81.5vw;
}
@media screen and (max-width: 991px) {
  .relevant-awards .awards-swiper .swiper-buttons {
    padding-top: 0px;
    padding-bottom: 0px;
  }
}
.relevant-awards .awards-swiper .swiper-buttons .swiper-pagination {
  display: none;
  --swiper-pagination-bullet-inactive-color: #C3B5AC;
}
@media screen and (max-width: 991px) {
  .relevant-awards .awards-swiper .swiper-buttons .swiper-pagination {
    display: block;
    bottom: 116px;
  }
}
.relevant-awards .awards-swiper .swiper-buttons .swiper-button-prev {
  position: absolute;
  left: 0;
}
.relevant-awards .awards-swiper .swiper-buttons .swiper-button-prev::before {
  transition: all 0.2s ease-in;
}
.relevant-awards .awards-swiper .swiper-buttons .swiper-button-prev::after {
  color: #483232;
  position: absolute;
  float: right;
  top: 0;
  width: 24px;
  height: 51px;
}
.relevant-awards .awards-swiper .swiper-buttons .swiper-button-prev:hover::after {
  width: 70px;
  height: 70px;
  transition: background 0.2s ease-in, color 0.2s ease-in;
  background-color: #BF382C;
  background-size: 70px 70px;
  border-radius: 90px 90px;
  color: #ffffff;
  position: absolute;
  z-index: 50;
  display: grid;
  text-align: center;
  top: -13px;
  align-items: center;
  left: -22px;
}
@media screen and (max-width: 991px) {
  .relevant-awards .awards-swiper .swiper-buttons .swiper-button-prev {
    display: none;
  }
}
.relevant-awards .awards-swiper .swiper-buttons .swiper-button-next {
  position: absolute;
  right: 0;
  /*
  color: $black1;
  position: relative;
  float: right;
  //margin-right: -9.3305555556vw;
  content-visibility: hidden;
  background-image: url(../img/icon/gallery_slider_right_button.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 24px;
  height: 51px;
  margin-right: calc(100% - (100% + 148px - 21px));
  */
}
.relevant-awards .awards-swiper .swiper-buttons .swiper-button-next::before {
  transition: all 0.2s ease-in;
}
.relevant-awards .awards-swiper .swiper-buttons .swiper-button-next::after {
  color: #483232;
  position: absolute;
  float: right;
  width: 24px;
  height: 51px;
  z-index: 51;
  top: 0;
}
.relevant-awards .awards-swiper .swiper-buttons .swiper-button-next:hover {
  /*
  width: 70px;
  height: 70px;
  &::after {
    transition: background 0.2s ease-in, color 0.2s ease-in;
    background-color: $red1;
    background-size: 70px 70px;
    padding: 18px 28.7px 18px 28.7px;
    border-radius: 90px 90px;
    color: $white;
    top: -18px;
    position: absolute;
    left: 16px;
  }*/
}
.relevant-awards .awards-swiper .swiper-buttons .swiper-button-next:hover::after {
  width: 70px;
  height: 70px;
  transition: background 0.2s ease-in, color 0.2s ease-in;
  background-color: #BF382C;
  background-size: 70px 70px;
  border-radius: 90px 90px;
  color: #ffffff;
  position: absolute;
  z-index: 50;
  display: grid;
  text-align: center;
  top: -13px;
  align-items: center;
  left: -22px;
}
@media screen and (max-width: 991px) {
  .relevant-awards .awards-swiper .swiper-buttons .swiper-button-next {
    display: none;
  }
}

.boxItem {
  opacity: 0;
  transition: all 0.2s ease-in-out;
}/*# sourceMappingURL=common.css.map */