/* Font Import - Start */
@font-face {
  font-family: Sarabun;
  src: url("../font/Sarabun-Regular.ttf");
  font-weight: 400;
}

@font-face {
  font-family: Sarabun;
  src: url("../font/Sarabun-Medium.ttf");
  font-weight: 500;
}

@font-face {
  font-family: Sarabun;
  src: url("../font/Sarabun-Bold.ttf");
  font-weight: 700;
}

@font-face {
  font-family: Lato;
  src: url("../font/Lato-LightItalic.ttf");
  font-weight: 300;
  font-style: italic;
}

@font-face {
  font-family: Lato;
  src: url("../font/Lato-BlackItalic.ttf");
  font-weight: 900;
  font-style: italic;
}

/* Font Import - End */
/* General override for elements - Start */
* {
  margin: 0;
  padding: 0;
  outline: none;
  font-family: Sarabun;
  word-break: break-word;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-user-select: none !important;
  -moz-user-select: none !important;
  -ms-user-select: none !important;
  user-select: none !important;
}

html, body {
  width: 100%;
  height: 100%;
  background: #ffffff;
  position: relative;
}

::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-thumb {
  background: #2dd6ae;
}

::-webkit-scrollbar-track {
  background: #0e2948;
}

.bt_big_green {
  cursor: pointer !important;
  width: auto;
  display: block;
  font-family: Sarabun;
  font-weight: 700;
  color: #2dd6ae;
  text-align: center;
  text-decoration: none;
  border: 4px solid #2dd6ae;
  border-radius: 100px;
  margin: 0 auto;
  -webkit-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.bt_big_green:hover, .bt_big_green:active {
  color: #0e2b4b !important;
  background: #2dd6ae;
  -webkit-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.divisor {
  width: 100%;
  height: 5px;
  position: relative;
  margin: 0 auto;
}

.divisor:after {
  position: absolute;
  top: 50%;
  bottom: 50%;
  left: 50%;
  right: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  content: "";
  border-radius: 1000px;
}

.divisor.blue {
  background: #0e2b4b;
}

.divisor.blue:after {
  background: #0e2b4b;
}

.divisor.white {
  background: #ffffff;
}

.divisor.white:after {
  background: #ffffff;
}

/* General override for elements - End */
/* Global Animation Classes - Start */
.animate {
  opacity: 0;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transition: all 0.6s ease-out;
  -o-transition: all 0.6s ease-out;
  transition: all 0.6s ease-out;
}

.animate.active {
  opacity: 1;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  -webkit-transition: all 0.6s ease-out;
  -o-transition: all 0.6s ease-out;
  transition: all 0.6s ease-out;
}

/* Global Animation Classes - End */
/* Mobile CSS - Start */
footer {
  width: 100%;
}

footer.white {
  background: #ffffff;
}

footer.white .wrapper ul li h2, footer.white .wrapper ul li p {
  color: #0e2948;
}

footer.white .wrapper ul li a {
  color: #0e2948;
  -webkit-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

footer.white .wrapper ul li a:hover, footer.white .wrapper ul li a:active {
  color: #2dd6ae;
  -webkit-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

footer.white .wrapper ul li ul li a:hover, footer.white .wrapper ul li ul li a:active {
  color: #2dd6ae;
  -webkit-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

footer.blue {
  background: #0e2b4b;
}

footer.blue .wrapper ul li h2, footer.blue .wrapper ul li p {
  color: #ffffff;
}

footer.blue .wrapper ul li a {
  color: #ffffff;
  -webkit-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

footer.blue .wrapper ul li a:hover, footer.blue .wrapper ul li a:active {
  color: #2dd6ae;
  -webkit-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

footer.blue .wrapper ul li ul li a:hover, footer.blue .wrapper ul li ul li a:active {
  color: #2dd6ae;
  -webkit-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

footer .wrapper {
  width: 100%;
  padding: 20px 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

footer .wrapper ul {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

footer .wrapper ul li {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  list-style: none;
  margin-bottom: 20px;
}

footer .wrapper ul li:nth-child(2) {
  margin-bottom: 30px;
}

footer .wrapper ul li:nth-child(4) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-bottom: 0;
}

footer .wrapper ul li ul {
  width: 118px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin: 0 auto;
}

footer .wrapper ul li ul li {
  list-style: none;
  margin-bottom: 5px;
}

footer .wrapper ul li ul li:nth-child(1), footer .wrapper ul li ul li:nth-child(2), footer .wrapper ul li ul li:nth-child(3), footer .wrapper ul li ul li:nth-child(4) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  margin: 0 0 10px 0 !important;
}

footer .wrapper ul li ul li a {
  cursor: pointer !important;
  font-family: Sarabun;
  font-size: 18px;
  font-weight: 700;
  text-align: left;
  text-decoration: none;
  padding: 0 !important;
  margin: 0 !important;
  -webkit-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

footer .wrapper ul li h2 {
  font-family: Sarabun;
  font-size: 16px;
  font-weight: 400;
  text-align: center;
}

footer .wrapper ul li p {
  font-family: Sarabun;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
}

footer .wrapper ul li a {
  cursor: pointer !important;
  font-size: 20px;
  margin: 0 15px;
}

/* Mobile CSS - End */
/* Tablet CSS - Start */
@media (min-width: 768px) and (max-width: 1023px) {
  footer .wrapper {
    padding: 30px 20px;
  }
  footer .wrapper ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  footer .wrapper ul li {
    margin-bottom: 0;
  }
  footer .wrapper ul li:nth-child(1) {
    width: 30%;
  }
  footer .wrapper ul li:nth-child(2) {
    width: 17%;
    margin-bottom: 0;
  }
  footer .wrapper ul li:nth-child(3) {
    width: 16%;
  }
  footer .wrapper ul li:nth-child(4) {
    width: 17%;
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
  }
  footer .wrapper ul li ul {
    width: 100%;
  }
  footer .wrapper ul li ul li {
    width: 100%;
  }
  footer .wrapper ul li ul li:nth-child(1), footer .wrapper ul li ul li:nth-child(2), footer .wrapper ul li ul li:nth-child(3), footer .wrapper ul li ul li:nth-child(4) {
    width: 100%;
  }
  footer .wrapper ul li h2 {
    text-align: left;
  }
  footer .wrapper ul li p {
    text-align: left;
  }
}

/* Tablet CSS - End */
/* Desktop CSS - Start */
@media (min-width: 1024px) {
  footer .wrapper {
    width: 1024px;
    padding: 40px 20px;
    margin: 0 auto;
  }
  footer .wrapper ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  footer .wrapper ul li {
    margin-bottom: 0;
  }
  footer .wrapper ul li:nth-child(1) {
    width: 40%;
  }
  footer .wrapper ul li:nth-child(2) {
    width: 14%;
    margin-bottom: 0;
  }
  footer .wrapper ul li:nth-child(3) {
    width: 16%;
  }
  footer .wrapper ul li:nth-child(4) {
    width: 14%;
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
  }
  footer .wrapper ul li ul {
    width: 100%;
  }
  footer .wrapper ul li ul li {
    width: 100%;
  }
  footer .wrapper ul li ul li:nth-child(1), footer .wrapper ul li ul li:nth-child(2), footer .wrapper ul li ul li:nth-child(3), footer .wrapper ul li ul li:nth-child(4) {
    width: 100%;
  }
  footer .wrapper ul li h2 {
    font-size: 18px;
    text-align: left;
  }
  footer .wrapper ul li p {
    font-size: 20px;
    text-align: left;
  }
}

/* Desktop CSS - End */
