@font-face {
  font-family: myriad;
  src: url(../fonts/myriad/regula.ttf);
}

@font-face {
  font-family: myriad;
  src: url(../fonts/myriad/bold.ttf);
  font-weight: bold;
}

@font-face {
  font-family: myriad;
  src: url(../fonts/myriad/italic.ttf);
  font-style: italic;
}

:root {
  --c1:#0075b7;
  --c2:#0caa9c;
  --c3:#6d6e71;
  --tc2:#4b9fd5;
  --tc3:#6bcef2;
  --tc4:#9cdbf0;
  --shadow: 0 0 3px rgb(0,0,0,0.2);
}

html:focus-within {
  scroll-behavior: smooth;
}

body {
  background-color: #fff;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  font-family: 'myriad',Arial;
  line-height: 1.425;
  overflow-x: hidden;
  overflow-y: hidden;
}

body.show {
  overflow-y: auto;
}

body.show .visible-in-show {
  opacity: 1;
  visibility: visible;
}

body.show .ss-home-slide .inner {
  -webkit-transform: scale(1);
          transform: scale(1);
}

.visible-in-show {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.bg-bl {
  background-color: #d4effc;
}

.bg-l {
  background-color: #5ec1c7;
}

.bg-d {
  background-color: #ebebeb;
}

.bg-hex {
  background-image: url("../img/bg-hex-light.png");
  background-size: cover;
}

.bg-hex-2 {
  background-image: url("../img/bg-hex-2.png");
  background-size: cover;
}

.bg-hex-3 {
  background-image: url("../img/gt-slide-bg.png");
  background-size: cover;
}

.text-c1 {
  color: var(--c1);
}

.bold {
  font-weight: bold !important;
}

.heading-1 {
  font-size: 2.5em;
  font-weight: 600;
  color: var(--c1);
  text-transform: uppercase;
}

.heading-1 span {
  display: inline-block;
}

.heading-2 {
  font-size: 1.65em;
  font-weight: 400;
  color: var(--c1);
  text-transform: uppercase;
}

.heading-2 span {
  display: inline-block;
}

.heading-2 span.underline:after {
  height: 1px;
  margin-bottom: 1rem;
}

.heading-3 {
  text-transform: uppercase;
  font-size: 20px;
  font-weight: bold;
}

.position-sticky {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
}

a {
  text-decoration: none;
  font-family: Montserrat,sans-serif;
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}

.btn {
  border-radius: 30px;
  padding: 11px 20px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.btn:before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  right: 100%;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  position: absolute;
  top: 0;
  border-radius: 30px;
  z-index: -2;
}

.btn-dlight {
  border: 1px solid var(--c1);
  background: white;
  color: var(--c1);
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
}

.btn-dlight:hover {
  color: #fff;
}

.btn-dlight:before {
  background: var(--c1);
}

.btn-dlight:hover:before {
  right: 0;
}

.btn-light:hover {
  color: white;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section, svg {
  display: block;
}

.wrap-content {
  position: relative;
  display: block;
  width: 90%;
  max-width: 1100px;
  margin: auto;
  height: auto;
  z-index: 10;
}

.mask {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 10000;
}

.mask:after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: #fff;
  -webkit-mask: url(../img/mask-01.png);
  mask: url(../img/mask-01.png);
  -webkit-mask-size: 2300% 100%;
  mask-size: 2300% 100%;
}

.mask.show::after {
  -webkit-animation: fadeOut 1s steps(22) forwards;
          animation: fadeOut 1s steps(22) forwards;
}

svg:not(:root) {
  overflow: hidden;
}

.loadicon {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 220px;
  height: 100px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 110000;
}

.loadicon .load-present {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
}

.loadicon .img {
  height: 100%;
  opacity: 0;
  -webkit-transition: all 0.8s;
  transition: all 0.8s;
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
  -webkit-transform: scale(0);
          transform: scale(0);
  opacity: 0;
}

.loadicon .stroke-line {
  fill-opacity: 0;
  stroke: #181818;
  fill: #181818;
  stroke-miterlimit: 10;
  stroke-width: .4;
  stroke-dasharray: 500;
  stroke-dashoffset: 500;
}

.loadicon .stroke-line.stroke-green {
  stroke: var(--c1);
  fill: var(--c1);
}

.loadicon .stroke-line.stroke-green-2 {
  stroke: var(--c2);
  fill: var(--c2);
}

.loadicon .stroke-line-1 {
  fill-opacity: 0;
  stroke-opacity: 0;
  fill: var(--c3);
  stroke-width: .4;
}

.loadicon.loader .stroke-line {
  -webkit-animation-name: DrawStroke;
          animation-name: DrawStroke;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-direction: normal;
          animation-direction: normal;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
}

.loadicon.loader .stroke-line-1 {
  -webkit-animation: fadeInStroke;
          animation: fadeInStroke;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
  -webkit-animation-delay: .5s;
          animation-delay: .5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

.loadicon.loader .img {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
}

.loadicon.show .stroke-line {
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
  fill-opacity: 1;
  stroke-opacity: 0;
}

.loadicon.hide {
  opacity: 0;
  z-index: -9999;
}

.loadicon.bscale {
  -webkit-transform: scale(3);
          transform: scale(3);
  -webkit-transition: all 1s !important;
  transition: all 1s !important;
  opacity: 0 !important;
}

.hide {
  opacity: 0;
}

/** page-header **/
.page-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: white;
  -webkit-box-shadow: var(--shadow);
          box-shadow: var(--shadow);
}

.page-header .logo {
  height: 70px;
  min-height: 60px;
  display: block;
  padding: 5px 0;
}

.page-header .logo img {
  height: 100%;
  width: auto;
}

.nav-click {
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  z-index: 999;
  color: var(--c1);
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  text-align: right;
}

.nav-click > span {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
}

.nav-click .nav-click-line {
  display: inline-block;
}

.nav-click .nav-click-line > span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  height: 3px;
  margin-bottom: 3px;
}

.nav-click .nav-click-line > span:after, .nav-click .nav-click-line > span:before {
  content: '';
  height: 100%;
  background: var(--c1);
}

.nav-click .nav-click-line > span:before {
  width: 12px;
}

.nav-click .nav-click-line > span:after {
  width: calc(100% - 16px);
}

.nav-click .nav-click-text:before {
  content: 'MENU';
  color: var(--c1);
}

.navigation {
  position: relative;
  z-index: 999;
}

.navigation a {
  color: white;
}

.menu {
  list-style: none;
  padding: 0;
  margin: 0;
  position: absolute;
  z-index: 999;
  top: 100%;
  right: 0;
  width: auto;
  max-width: 300px;
  max-width: 450px;
  -webkit-transform: translateX(120%);
          transform: translateX(120%);
  visibility: hidden;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.menu li {
  display: block;
  text-align: right;
  width: 100%;
  margin: 0;
  position: relative;
  opacity: 0;
  -webkit-transform: translate(150%, 0%) matrix(1, 0, 0, 1, 0, 0);
          transform: translate(150%, 0%) matrix(1, 0, 0, 1, 0, 0);
}

.menu li.active {
  font-weight: bold;
}

.menu > li {
  padding: 0;
}

.menu > li > a {
  padding: 12px 8px;
  display: block;
  white-space: nowrap;
  border-bottom: 2px solid var(--c1);
  border-right: 1px solid #e6e7e9;
}

.menu > li > a span {
  color: var(--c1);
}

.menu > li > a:after {
  content: '';
  display: block;
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: #e6e7e9;
  z-index: 1;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.menu > li:hover a:after, .menu > li.active a:after {
  background-color: var(--c1);
}

.menu > li:hover a span, .menu > li.active a span {
  color: #fff;
}

.menu a {
  display: inline-block;
  position: relative;
}

.menu a span {
  display: inline-block;
  font-size: calc(100vh/26);
  font-weight: 300;
  line-height: 1.4;
  color: #fff;
  position: relative;
  z-index: 2;
  -webkit-transition: all 300ms;
  transition: all 300ms;
}

.menu a span:hover {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.menu a:hover:after {
  width: 100%;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}

.menu .social {
  margin: 0 0 20px;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.menu .social li {
  margin: 0 5px;
  width: auto;
  position: relative;
  opacity: 1;
  -webkit-transform: none;
          transform: none;
}

.menu .social li:after {
  position: absolute;
  right: -2px;
  top: 50%;
  width: 1px;
  height: 40%;
  background: #fff;
  content: '';
  display: block;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  opacity: 0.7;
}

.menu .social li:last-child {
  margin-right: 0;
}

.menu .social li:last-child:after {
  display: none;
}

.menu .social li a {
  width: 55px;
  line-height: 1;
  height: 55px;
  display: block;
}

.menu .social li a:hover {
  color: var(--c1);
}

.menu .social li a:hover .foreground {
  stroke-dashoffset: 0;
  fill: #fff;
}

.menu .social li a:hover .stroke-line {
  fill: var(--c1) !important;
}

.menu .social li a:after {
  display: none !important;
}

.menu .social svg {
  width: 100%;
  height: 100%;
}

.menu-ovelay {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  /*background-image: url('../img/bg-menu.png');*/
  background-repeat: repeat-y;
  background-size: 100% auto;
  z-index: 998;
  opacity: 0;
  -webkit-transition: all 1s;
  transition: all 1s;
  visibility: hidden;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
}

.foreground {
  fill: transparent;
  stroke-dasharray: 377;
  stroke-dashoffset: 377;
  stroke: CurrentColor;
  stroke-width: 1.5;
  -webkit-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
  -webkit-transition: all .6s ease-in-out;
  transition: all .6s ease-in-out;
}

body.show-menu {
  overflow: hidden;
}

body.show-menu .menu,
body.show-menu .menu-ovelay {
  opacity: 1;
  visibility: visible;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

body.show-menu .nav-click-line {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  position: absolute;
  right: 100%;
  top: 50%;
  margin-right: 6px;
  width: 28px;
}

body.show-menu .nav-click-line > span {
  -webkit-transition: -webkit-transform 0.6s;
  transition: -webkit-transform 0.6s;
  transition: transform 0.6s;
  transition: transform 0.6s, -webkit-transform 0.6s;
  position: absolute;
  top: 50%;
}

body.show-menu .nav-click-line > span:after, body.show-menu .nav-click-line > span:before {
  background: white;
}

body.show-menu .nav-click-line > span.nav-line-2 {
  -webkit-transform: translateY(-50%) rotate(-45deg);
          transform: translateY(-50%) rotate(-45deg);
}

body.show-menu .nav-click-line > span.nav-line-1 {
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}

body.show-menu .nav-click .nav-click-text:before {
  color: white;
  content: 'close';
}

body.show-menu .menu > li {
  opacity: 1;
  -webkit-transform: matrix(1, 0, 0, 1, 0, 0);
          transform: matrix(1, 0, 0, 1, 0, 0);
  -webkit-transition: all 1.5s ease-in-out;
  transition: all 1.5s ease-in-out;
}

body.menu-transparent .page-header {
  background: transparent;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}

body.menu-transparent .page-header .logo {
  margin: 15px 0;
  height: 7.5vw;
}

/** page-header **/
.bg-cover {
  background-size: cover;
  background-position: center;
}

.bg-cover > img {
  width: 100%;
  visibility: hidden;
}

.ss-home-slide .owl-item {
  overflow: hidden;
}

.ss-home-slide .inner {
  width: 100%;
  height: 100vh;
  -webkit-transition: all 1s ease-out;
  transition: all 1s ease-out;
  -webkit-transform: scale(1.5);
          transform: scale(1.5);
}

.bottom-line {
  position: relative;
}

.bottom-line:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 4px;
  bottom: 0;
  left: 0;
  background: var(--c1);
  z-index: 2;
}

.quote {
  background: url(../img/qoute.png) no-repeat center center/contain;
}

.ss-home-about .title {
  color: var(--c1);
  font-weight: 700;
  font-size:1.75rem;
}

.ss-home-about .title .quote {
  width: 60px;
  height: 60px;
  margin: 5px 0;
  display: block;
}

.ss-home-about .desc {
  color: var(--c2);
  font-size: 15px;
}

.un-list {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.dlist {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.dlist-4 > .dcol {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 25%;
          flex: 0 0 25%;
  width: 100%;
}

.dlist-2 > .dcol {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 1;
          flex: 0 0 1;
  width: 50%;
}

.hex-cart {
  width: 200px;
  margin-left: auto;
  margin-right: auto;
}

.img-hex {
  position: relative;
  display: block;
}

.img-hex .img-hex-inner {
  display: block;
  background-size: 100%;
  -webkit-mask-image: url("../img/hex-inner.png");
          mask-image: url("../img/hex-inner.png");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-transition: all 1.3s ease-out;
  transition: all 1.3s ease-out;
  background-position: center;
}

.img-hex img {
  visibility: hidden;
  width: 100%;
}

.img-hex:after {
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -webkit-transform: scale(1.12);
          transform: scale(1.12);
  background-size: contain;
  background-image: url("../img/hex-outer.png");
  background-repeat: no-repeat;
  content: '';
  background-position: center;
}

.img-hex:hover .img-hex-inner {
  background-size: 160%;
}

.bg-hex-2 {
  background-image: url("../img/bg-hex-2.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.ss-org {
  color: var(--c1);
}

.ss-org .heading-2 {
  min-height: 4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.iframe-fw {
  width: 100%;
}

.iframe-fw iframe {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.underline:after {
  content: '';
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--c1);
  margin-top: 0.5rem;
}

.wrap-content-sm {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.news-thumb .heading-3 a {
  color: #000;
}

.news-thumb .heading-3 a:hover {
  color: var(--c1);
}

.news-thumb .img {
  display: block;
  height: 15rem;
  overflow: hidden;
}

.news-thumb figure {
  height: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
}

.news-thumb img {
  visibility: hidden;
}

.page-footer {
  color: #fff;
}

.page-footer .logo {
  height: 60px;
  width: auto;
}

.page-footer .logo img {
  height: 100%;
  width: auto;
}

.page-footer a {
  color: white;
}

.page-footer .menu-footer .dcol {
  min-width: 200px;
}

.v-hidden {
  visibility: hidden;
}

.menu-footer {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
}

.t {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.t span:first-child {
  width: 50px;
  display: block;
  position: relative;
  background-position: center;
  background-repeat: no-repeat;
}

.t span:last-child {
  width: calc(100% - 50px);
}

.t span.icon {
  background: white;
  -webkit-mask-size: auto;
          mask-size: auto;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
}

.icon-phone {
  -webkit-mask-image: url("../img/icon-phone.png");
          mask-image: url("../img/icon-phone.png");
}

.icon-web {
  -webkit-mask-image: url("../img/icon-web.png");
          mask-image: url("../img/icon-web.png");
}

.icon-map {
  -webkit-mask-image: url("../img/icon-map.png");
          mask-image: url("../img/icon-map.png");
}

.icon-fanpage {
  -webkit-mask-image: url("../img/icon-fanpage.png");
          mask-image: url("../img/icon-fanpage.png");
}

.menu-footer .active .t span:first-child:after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border-radius: 50%;
  width: 12px;
  height: 12px;
  background: #fff;
}

.ss-banner .outer {
  min-height: 100vh;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
}

.ss-banner .title {
  color: #fff;
  text-shadow: 1px 1px var(--c1);
  text-transform: uppercase;
  font-weight: bold;
}

.ss-banner .sub-title {
  color: #fff;
  text-shadow: 1px 1px var(--c1);
}

.smenu {
  padding: 30px 0;
}

.smenu.stick {
  top: 70px;
  position: -webkit-sticky;
  position: sticky;
  z-index: 998;
  padding: 10px 0;
}

.smenu ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  overflow: auto;
  -ms-scroll-snap-type: x mandatory;
      scroll-snap-type: x mandatory;
}

.smenu ul li:first-child > a {
  margin-left: 0;
}

.smenu ul li:last-child > a {
  margin-right: 0;
}

.smenu li a {
  display: block;
  padding: 10px 12px;
  font-size: 14px;
  background: white;
  text-transform: uppercase;
  white-space: nowrap;
  margin: 0 5px;
}

.smenu li:hover a,
.smenu li.active a {
  background-color: var(--c1);
  color: #fff;
}

.ucard {
  background: var(--c1);
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 20px;
  padding: 15px;
  height: 150px;
  max-width: 100%;
  width: 300px;
}

.ucard h3 {
  font-size: 14px;
  font-weight: bold;
  white-space: nowrap;
  margin-bottom: 5px;
}

.ucard p {
  margin: 0;
  font-size: 13px;
  white-space: nowrap;
}

.ucard .desc {
  padding: 25px 10px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
}

.ucard .img {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  position: relative;
  margin: 0;
}

.ucard .img img {
  width: 100%;
  position: absolute;
  bottom: -15px;
}

.text-right {
  text-align: right;
}

.sbox {
  max-width: 440px;
}

.sbox-right {
  text-align: right;
  padding-right: 30px;
}

.ibox {
  background: #c7eafb;
  color: var(--c1);
  width: 235px;
  text-align: center;
  padding: 20px 0;
  height: 100%;
}

.ibox .title {
  font-size: 14px;
  font-weight: bold;
  margin: 0;
  line-height: 1.425;
}

.ibox img {
  height: 60px;
  margin-bottom: 15px;
}

.ibox small {
  font-weight: normal;
}

.m-list {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.m-list li {
  margin: 5px;
}

.list-his li {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 2rem;
}

.list-his .year {
  font-size: 2.5rem;
  font-weight: bold;
  display: block;
  margin: 0.5rem 0;
  color: var(--c1);
}

.list-his img {
  height: 3rem;
}

.list-his li {
  width: 50%;
  margin-bottom: 0;
}

.list-his li:not(:first-child) {
  margin-top: -3px;
}

.list-his li .line {
  display: block;
  position: absolute;
  top: 0;
  height: 100%;
}

.list-his li .line span {
  display: block;
  background: var(--c1);
  margin: 0 auto;
}

.list-his li .line span:nth-child(2) {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  margin-top: 3px;
  margin-bottom: 3px;
}

.list-his li .line span:first-child,
.list-his li .line span:last-child {
  width: 1px;
  background-color: var(--c1);
}

.list-his li .line span:first-child {
  height: calc(5rem - 3px);
  top: 0;
}

.list-his li .line span:last-child {
  height: calc(100% - 5rem - 19px);
}

.list-his li:nth-child(2n+1) {
  text-align: right;
}

.list-his li:nth-child(2n+1) .inner {
  padding-right: 30px;
}

.list-his li:nth-child(2n+1) .line {
  right: 0;
  -webkit-transform: translateX(50%);
          transform: translateX(50%);
}

.list-his li:nth-child(2n) {
  text-align: left;
  margin-left: 50%;
}

.list-his li:nth-child(2n) .inner {
  padding-left: 30px;
}

.list-his li:nth-child(2n) .line {
  left: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.mb-on {
  display: none;
}

.dbox {
  padding: 0 15px;
  margin-bottom: 1.5em;
}

.dbox .img {
  height: 140px;
  margin-bottom: 1.5em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
}

.dbox .img img {
  max-width: 170px;
  max-height: 140px;
  width: auto;
}

.dbox .title {
  font-size: 14px;
  font-weight: bold;
  line-height: 1.425;
  margin: 0 auto;
  max-width: 300px;
}

.ss-danh-hieu .img-big {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  padding-bottom: 1rem;
}

.member-thumb {
  text-align: center;
  text-transform: uppercase;
}

.member-thumb img {
  width: 60% !important;
  margin: 0 auto;
  margin-top: 20%;
}

.member-thumb .img {
  width: 200px;
  height: 200px;
  margin: 0 auto;
  background: white;
  border-radius: 50%;
  overflow: hidden;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}

.member-thumb .desc {
  padding-top: 2rem;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}

.member-thumb .name {
  color: var(--c1);
  font-weight: bold;
}

.member-thumb .name span {
  color: #000;
  font-weight: normal;
  text-transform: capitalize;
}

.member-thumb .pos {
  font-weight: bold;
  margin: 0;
}

.scale-item .member-thumb .desc {
  opacity: 0;
}

.scale-item .member-thumb .img {
  -webkit-transform: scale(0.7);
          transform: scale(0.7);
}

.owl-carousel .owl-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  display: block;
  height: 0px;
}

.owl-carousel .owl-nav > button {
  position: relative;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.owl-carousel .owl-nav > button > span {
  color: var(--c1);
  font-size: 4rem;
  line-height: 1 !important;
  margin-top: -1rem;
}

.owl-carousel .owl-nav > button:last-child {
  float: right;
}

.owl-member .owl-nav {
  top: 100px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 0px;
}

.owl-member .owl-nav button {
  color: var(--c1) !important;
  font-size: 4rem !important;
  position: relative;
  top: -2rem;
  line-height: 1 !important;
}

.touch-tab .inner {
  border-width: 0 4px 4px 4px;
  border-style: solid;
  border-color: var(--c1);
  padding: 6rem 30px 3rem;
  position: relative;
}

.touch-tab .inner .heading-2 {
  position: absolute;
  color: #fff;
  background: var(--c1);
  top: 0;
  left: 0;
  width: 100%;
  margin: 0;
  font-size: 1.5em;
  font-weight: bold;
  padding: 17px 30px;
  text-align: center;
}

.touch-tab .owl-touch-tab {
  z-index: 9;
  border-radius: 30px 30px 0 0;
  overflow: hidden;
}

.touch-tab .owl-item:nth-child(1) .inner {
  border-color: var(--c1);
}

.touch-tab .owl-item:nth-child(1) .heading-2 {
  background-color: var(--c1);
}

.touch-tab .owl-item:nth-child(2) .inner {
  border-color: var(--tc2);
}

.touch-tab .owl-item:nth-child(2) .heading-2 {
  background-color: var(--tc2);
}

.touch-tab .owl-item:nth-child(3) .inner {
  border-color: var(--tc3);
}

.touch-tab .owl-item:nth-child(3) .heading-2 {
  background-color: var(--tc3);
}

.touch-tab .owl-item:nth-child(4) .inner {
  border-color: var(--tc4);
}

.touch-tab .owl-item:nth-child(4) .heading-2 {
  background-color: var(--tc4);
}

.icon {
  display: inline-block;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 20px;
  height: 20px;
}

.icon.icon-l-1 {
  background-image: url("../img/l-1.png");
}

.icon.icon-l-2 {
  background-image: url("../img/l-2.png");
}

.icon.icon-l-3 {
  background-image: url("../img/l-3.png");
}

.icon.icon-l-4 {
  background-image: url("../img/l-4.png");
}

.org-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.org-nav li {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  position: relative;
}

.org-nav li:first-child {
  border-radius: 30px 0 0 0;
}

.org-nav li:last-child {
  border-radius: 0 30px 0 0;
}

.org-nav li .bg {
  width: calc(100% + 60px);
  height: 200%;
  display: block;
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 30px 30px 0 0;
  margin-left: -30px;
}

.org-nav li .bg :after {
  width: 100%;
  height: 100%;
  display: block;
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  background-image: -webkit-gradient(linear, left top, right bottom, from(#fff), to(transparent));
  background-image: linear-gradient(to bottom right, #fff, transparent);
  opacity: 0.1;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.org-nav li:nth-child(1) .bg {
  background-color: var(--c1);
  z-index: 4;
  width: calc(100% + 15px);
  margin-left: 0;
}

.org-nav li:nth-child(2) .bg {
  background-color: var(--tc2);
  z-index: 3;
}

.org-nav li:nth-child(3) .bg {
  background-color: var(--tc3);
  z-index: 2;
}

.org-nav li:nth-child(4) .bg {
  background-color: var(--tc4);
  z-index: 1;
  width: calc(100% + 30px);
}

.org-nav li.active .bg {
  z-index: 8;
}

.org-nav li.active .bg:after {
  opacity: 0;
}

.org-nav li:hover .bg {
  z-index: 9;
}

.org-nav a {
  position: relative;
  z-index: 10;
  color: white;
  text-transform: uppercase;
  font-weight: bold;
  line-height: 1.425;
  padding: 8px 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
}

.org-nav a .text {
  padding-left: 15px;
}

.org-nav a .icon {
  height: 30px;
  width: 30px;
}

.ss-recuit .img-hex::after {
  visibility: hidden;
}

.video-container {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 30px;
  height: 0;
  overflow: hidden;
}

.video-container iframe,
.video-container object,
.video-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.ss-news-slide .owl-nav {
  position: absolute;
  top: 7.5rem;
  left: 0;
  width: 100%;
  text-align: left;
}

.ss-news-slide .owl-nav button {
  color: var(--c1) !important;
  font-size: 6rem !important;
}

.ss-news-slide .owl-nav button.owl-prev {
  -webkit-transform: translate(-150%, -50%) !important;
          transform: translate(-150%, -50%) !important;
}

.ss-news-slide .owl-nav button.owl-next {
  -webkit-transform: translate(150%, -50%) !important;
          transform: translate(150%, -50%) !important;
  float: right;
}

.vsnap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow-x: auto;
  -ms-scroll-snap-type: x mandatory;
      scroll-snap-type: x mandatory;
}

.vsnap .vsnap-item {
  scroll-snap-align: start;
  scroll-snap-stop: always;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
}

.gt-nav-tab-content > .item {
  display: none;
}

.org-scrolls {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: auto;
  -ms-scroll-snap-type: x mandatory;
      scroll-snap-type: x mandatory;
}

.org-scrolls > .inner {
  scroll-snap-align: center;
  scroll-snap-stop: always;
}

.org-swiper .swiper-slide {
  max-width: 350px;
}

.org-inner {
  border: 1px solid var(--c1);
  padding: 10px;
  height: calc(100vh - 70px - 5rem);
  min-height: 520px;
  overflow-y: hidden;
  overflow-x: hidden;
}

.org-inner .img {
  height: auto;
}

.org-inner .img img {
  visibility: hidden;
  width: 100%;
}

.lang {
  font-size: 1rem;
  font-weight: bold;
  margin-right: 3rem;
  color: var(--c1);
}

.lang a {
  color: var(--c1);
}

.lang a :hover {
  color: var(--c1);
  text-shadow: 1px 1px #000;
}

.swiper-3d {
  -webkit-perspective: 900px;
          perspective: 900px;
  padding-bottom: 3rem;
}

.modal .btn-close {
  position: absolute;
  right: 5px;
  top: 5px;
}

.modal .modal-header {
  height: 0;
  padding: 0;
  border: 0;
}

.hex-cart .img-hex .img-hex-inner {
  min-height: 210px;
}

.ss-partner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: calc(100vh - 70px);
}

.ss-partner img {
  max-width: 200px;
  margin: 0 auto;
}

.ss-contact h3 {
  font-size: 1.3rem;
}

.ss-contact .t span.icon {
  background-color: var(--c1);
}

.blog-thumb2 .img {
  display: block;
}

.blog-thumb2 .img img {
  visibility: hidden !important;
}

.blog-thumb2 .text {
  padding: 1.5rem 1rem 0 1rem;
  text-align: center;
}

.blog-thumb2 .date {
  margin: 0;
}

.blog-thumb2 .title {
  font-size: 1rem;
  text-transform: uppercase;
  margin-bottom: 1rem;
  font-weight: bold;
}

.blog-grids .desc {
  text-align: left !important;
}

.text-split {
  display: -webkit-box;
  overflow: hidden;
  line-clamp: 3;
  -webkit-line-clamp: 3;
  box-orient: vertilcal;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.text-split.text-split-2 {
  line-clamp: 2;
  -webkit-line-clamp: 2;
}

.modal .modal-header {
  position: relative;
  z-index: 9;
}

.partner-thumb img {
  -webkit-transition: all 0.8s ease-in;
  transition: all 0.8s ease-in;
  max-width: 100%;
  max-height: 110px;
}

.partner-thumb:hover img {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

.swiper-container {
  padding: 0 15px;
}

.swiper-button-next {
  right: -10px;
}

.swiper-button-prev {
  left: -10px;
}

.ss-contact {
  background-position: 0 100%;
  background-position: 0 100%;
}

.bl1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.bl1 > li {
  -webkit-box-flex: 33.33%;
      -ms-flex: 33.33%;
          flex: 33.33%;
  text-align: center;
  text-transform: uppercase;
  background: #abe1f8;
  padding: 5px;
  min-height: 79px;
  height: 100%;
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 16px;
}

.bl1 > li:nth-child(2n) {
  background: #d4f0fc;
}

.bl2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  background-color: rgba(171, 225, 248, 0.3);
  background-image: url(../img/bg-contact.jpg);
  background-size: cover;
  background-position: left bottom;
}

.bl2 .col {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0%;
          flex: 1 0 0%;
  border-right: 2px solid white;
}

.bl2 .col:last-child {
  border: none;
}

.bl2 .col-hd {
  background: #abe1f8;
  padding: 22px 10px;
  text-align: center;
  text-transform: uppercase;
  font-size: 17px;
  font-weight: bold;
}

.bl2 .col-bd {
  padding: 15px;
}

.accordion-1 {
  border: 0;
}

.accordion-1 .accordion-item {
  border: 0;
  margin-bottom: 1px;
}

.accordion-1 .accordion-body {
  padding: 0;
}

.accordion-1 .accordion-button {
  background: #0073bb;
  color: white;
  text-transform: uppercase;
  padding: 15px 12px;
  margin: 0;
  -webkit-box-flex: 100%;
      -ms-flex: 100%;
          flex: 100%;
  font-size: 20px;
  border: 0;
  outline: none !important;
  margin: 0;
  border-radius: 0;
  font-weight: bold;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  border-radius: 0;
  border-radius: 0;
}

.accordion-1 .accordion-button:after {
  background: transparent !important;
  content: "\f078";
  font: normal normal normal 14px/1 FontAwesome;
}
.partner-owl .owl-carousel .owl-nav{
    display: flex;
    justify-content: space-between;
    margin-top: -32px;
}
.partner-owl .owl-carousel .owl-nav .owl-prev{
    transform: translateX(-15px);
}
.partner-owl .owl-carousel .owl-nav .owl-next{
    transform: translateX(15px);
}
.partner-owl .owl-carousel .owl-item img{
    height: 7rem;
    width: auto;
}
.social-box{
    position: fixed;
    right:1rem;
    top:50%;
    transform:translatey(-50%);
    z-index: 10;
}
.social-box a{
    width: 65px;
    background: var(--tc2);
    color: white;
    font-size: 1.75rem;
    font-weight: bold;
    display: block;
    margin: 10px 0;
    position: relative;
    text-transform: uppercase;
    border-radius: 1.45rem;
    text-align: center;
    line-height: 1;
    padding: 1rem 0;
}
.social-box a span{
    visibility: hidden;
    opacity: 0;
    position: absolute;
    right: 0;
    padding-left: 25px;
    padding-right: 65px;
    display: flex;
    align-items: center;
    height: 100%;
    z-index: -1;
    border-radius: 1.45rem;
    background: var(--c1);
    line-height: 1;
    transition: all 0.5s;
    top:0;
}
.social-box a:hover{
    background: var(--c1);
}
.social-box a:hover span{
    visibility: visible;
    opacity: 1;
    transform: translatex(0);
    padding-right: 85px;
}