:root {
  --white: #ffffff;
  --lightgray: #cfcfcf;
  --highlightblue: #00aeef;
  --textColor: #141414;
  --textLightColor: #545454;
  --textAlert: #f00;
  --bgLightGray: #f7f7f7;
  --fontFamilyPrimary: "Cal Sans", sans-serif;
  --fontFamilySecondary: "Open Sans", sans-serif;
}

body {
  background-color: var(--white);
  color: var(--textColor);
  font-family: var(--fontFamilySecondary);
  font-style: normal;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.5rem;
}

.material-symbols-outlined-36 {
  font-size: 36px;
}

.material-symbols-outlined-48 {
  font-size: 48px;
}

.title-font {
  font-family: var(--fontFamilyPrimary);
  font-weight: 300;
}

h1,
h2,
h3,
h4,
h5,
h6,
b,
strong {
  font-family: var(--fontFamilyPrimary);
}

h1 {
  font-size: 2.5rem;
  line-height: 2.8rem;
}

.fs-28 {
  font-size: 28px;
}

.fs-24 {
  font-size: 24px;
}

.fs-20 {
  font-size: 20px;
}

h5,
.fs-18 {
  font-size: 18px;
}

strong,
b {
  font-weight: 700;
}

a,
a:visited {
  color: var(--highlightblue);
  text-decoration: underline;
}

a:hover {
  color: var(--highlightblue);
}

ol li {
  margin-bottom: 15px;
}

.pl-20 {
  padding-left: 20px;
}

.mb-10 {
  margin-bottom: 10px;
}

.mb-15 {
  margin-bottom: 15px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mt-10 {
  margin-top: 10px;
}

.mt-20 {
  margin-top: 20px;
}

.mt-40 {
  margin-top: 40px;
}

.mt-60 {
  margin-top: 60px;
}

.mr-10 {
  margin-right: 10px;
}

.border-primary {
  border-color: #223770 !important;
}

.btn {
  border-radius: 0.3125rem;
  font-size: 1rem;
  padding: 10px 20px;
}

.btn-primary,
.btn-primary:focus,
.btn-primary:active,
.btn-primary:not(:disabled):not(.disabled).active,
.btn-primary:not(:disabled):not(.disabled):active,
.show > .btn-primary.dropdown-toggle {
  background: var(--highlightblue);
  border-color: var(--highlightblue);
  color: var(--white) !important;
  text-decoration: none;
}

.btn-primary:hover,
.btn-outline-primary:hover,
.btn-secondary:hover {
  background: var(--highlightblue);
  border-color: var(--highlightblue);
  color: var(--white) !important;
}

.btn-outline-primary,
.btn-outline-primary:focus,
.btn-outline-primary:active,
.btn-outline-primary:not(:disabled):not(.disabled).active,
.btn-outline-primary:not(:disabled):not(.disabled):active,
.show > .btn-outline-primary.dropdown-toggle,
.btn-secondary,
.btn-secondary:focus,
.btn-secondary:active,
.btn-secondary:not(:disabled):not(.disabled).active,
.btn-secondary:not(:disabled):not(.disabled):active,
.show > .btn-secondary.dropdown-toggle {
  background: var(--white);
  border-color: var(--white);
  color: var(--highlightblue) !important;
  text-decoration: none;
}

[data-toggle="collapse"] {
  cursor: pointer;
}

img {
  max-width: 100%;
}

.aspect-ratio-3-2 {
  aspect-ratio: 3 / 2;
}

/************
Header & Main Navigation
***********/
header {
  transition: all 0.5s ease;
  position: fixed;
  z-index: 100;
  width: 100%;
}

header:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--white);
  z-index: -1;
  transition: transform 0.4s;
  transform-origin: 0 0;
  backdrop-filter: none;
  box-shadow: 0 4px 40px #00000014;
}

header .navbar-brand {
  background-image: url(../img/logo.png);
  background-size: 200px 28px;
  background-repeat: no-repeat;
  background-position: center center;
  height: 28px;
  width: 200px;
}

header.white:before {
  transform: scaleY(0);
}
/*
header.white .navbar-brand {
  background-image: url(../img/logo_white.png);
}
*/
nav {
  font-size: 1rem;
}

nav a {
  margin-left: 15px;
  text-decoration: none;
}
/*
header.white nav a {
  color: var(--white);
}
*/
.navbar-expand-md .navbar-nav .nav-link {
  font-weight: normal;
  padding-left: 0.875rem;
  padding-right: 0.875rem;
}

.navbar-toggler {
  color: #132048;
  border-color: transparent;
  margin-top: -12px;
  margin-right: 15px;
  padding-top: 0;
  padding-bottom: 0;
}

header.white .navbar-toggler {
  color: var(--white);
  border-color: var(--white);
}

.navbar-toggler-icon {
  background-image: url(../img/menu.png);
  background-size: 24px auto;
  background-position: center center;
  background-repeat: no-repeat;
}
/*
header.white .navbar-toggler-icon {
  filter: brightness(10000%);
}
*/
.mobile-nav {
  background: #fff;
  position: fixed;
  z-index: 9;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  transform: translateX(100%);
  transition: all 0.5s ease;
}

.mobile-nav.show {
  transform: translateX(0%);
}

.mobile-nav .placeholder a {
  color: var(--textColor) !important;
}

.mobile-nav .btn-close {
  display: flex;
  justify-content: end;
  padding: 0.875rem;
}

.mobile-nav .btn-close::before {
  font-family: "Material Symbols Outlined";
  font-size: 28px;
  content: "cancel";
  -webkit-font-feature-settings: "liga";
}

/************
Page Content
***********/
#page-content {
  padding: 80px 0 40px;
}

.section {
  padding: 60px 0;
}

.section.highlight {
  background-color: var(--highlightblue);
  color: var(--white);
}

.section.highlight-secondary {
  background-color: var(--bgLightGray);
}

.mtt-card {
  border: 1px solid var(--lightgray);
  border-radius: 5px;
}

.mtt-card.clickable {
  transition: all 0.5s ease;
}

.mtt-card.clickable a {
  text-decoration: none;
}

.mtt-card.clickable:hover {
  box-shadow: 0 8px 10px 1px rgba(0, 0, 0, 0.03),
    0 3px 14px 2px rgba(0, 0, 0, 0.03), 0 5px 5px -3px rgba(0, 0, 0, 0.04);
  cursor: pointer;
}

.mtt-card .content-placeholder {
  color: var(--textLightColor);
  padding: 1.25rem;
}

.mtt-card .content-placeholder .title-font {
  color: var(--textColor);
}

.asterisk {
  color: var(--textAlert);
}

/************
Footer
***********/
footer {
  padding: 1rem 0;
}

footer ul {
  list-style-type: none;
  line-height: 30px;
  margin: 0;
  padding: 0;
}

footer a,
footer a:hover {
  padding: 0.5rem 0;
  text-decoration: none;
}

footer .copyright {
  padding-top: 50px;
}

footer .col-md-4 {
  margin-bottom: 20px;
}

/************
Home
***********/
#hero {
  /*background-image: url(../img/hero_375.jpg);
  background-repeat: no-repeat;
  background-position: left center;
  background-size: cover;*/
  /*height: 670px;*/
  padding-bottom: 60px;
  position: relative;
}

#hero .welcome-msg {
  color: var(--textColor);
  font-weight: 400;
  margin-top: 100px;
}

/************
Core Business
***********/
.business-logo {
  background: var(--white);
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  padding: 50px 20px;
  text-align: center;
}

#key_partner {
  margin: 0 25px 25px;
}

#key_partner .slick-prev:before,
#key_partner .slick-next:before {
  color: #000;
}

#key_partner .box {
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  padding: 30px 15px;
  margin: 10px 10px;
}

/************
About Us
***********/
.vision-img {
  width: 100%;
}

/************
Career
***********/
.career-img {
  width: 100%;
}

/************
Promo
***********/
#promo-header {
  background-image: url(../img/promo/header.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  color: #fff;
  min-height: 340px;
  padding: 0 12px;
}

#promo-header h1 {
  font-size: 28px;
  margin: 0 0 16px;
  padding-top: 20px;
}

#promo-header p {
  font-size: 14px;
}

#promo-header .text-shadow {
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
}

/************
Blog
***********/
.blog-list a {
  text-decoration: none;
}

.blog-list a:hover {
  text-decoration: underline;
}

/************
HTML5 Video
***********/
.video-container {
  position: relative;
}

.c-youtube-video--showcase__icon {
  background: #223770;
  border-radius: 5px;
  left: 50%;
  opacity: 0.8;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}
.video-preview {
  cursor: pointer;
}
.video-clip {
  display: none;
}

/************
Captcha
***********/
.captcha-font {
  font-family: "Baskervville SC", serif;
  font-weight: 400;
  font-style: normal;
}

.captcha {
  background-color: #eaf0f9;
  font-size: 28px;
  margin: 0;
  padding: 16px 8px;
  text-align: center;
  width: 100%;
}

@media only screen and (min-width: 667px) {
  /* iphone6/7/8 landscape mode */
  /*#hero {
    background-image: url(../img/hero_667.jpg);
  }*/

  #promo-header h1 {
    font-size: 28px;
  }

  #promo-header p {
    font-size: 16px;
  }
}

@media only screen and (min-width: 768px) {
  nav a {
    margin-left: 0;
  }

  .mobile-nav {
    display: none;
  }

  #home {
    background-position: center center;
  }

  #hero .welcome-msg {
    margin-top: 160px;
  }

  .mt-md-60 {
    margin-top: 60px;
  }

  #promo-header h1 {
    padding-top: 80px;
  }

  footer .col-md-4 {
    margin-bottom: 0;
  }

  .mtt-card {
    height: 100%;
  }
}

@media only screen and (min-width: 992px) {
  footer a {
    padding: 0;
  }
}

@media only screen and (min-width: 1140px) {
  #promo-header {
    background-size: 100% auto;
    min-height: 550px;
  }

  #promo-header h1 {
    padding-top: 180px;
  }
}
