:root {
  --blue: #0eb0ee;
  --dark-gray: #30355d;
  --light-gray: #aab9cd;
  --bg-gray: #ecedef;
}

.color-blue {
  color: var(--blue);
}

.color-dark-gray {
  color: var(--dark-gray);
}

.background-color-blue {
  background: var(--blue);
}

.background-color-dark-gray {
  background: var(--dark-gray);
}

.background-gray {
  background: var(--bg-gray);
}

* {
  box-sizing: border-box;
  font-size: Roboto;
  color: #3a3e64;
}

body {
  padding: 0;
  margin: 0;
}

p,
h5 {
  margin-bottom: 20px;
}

.font-weight-bolder {
  font-weight: 800;
}

/* ===== HEADER TOP ===== */
.header-top {
  padding: 16px 0;
  background-color: #ffffff;
  color: #aab9cd;
  display: flex;
  justify-content: space-between;
}

.header-top ul {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  align-items: center;
}
.header-top ul li {
  display: flex;
  align-items: baseline;
  font-weight: 900;
  font-size: 11px;
  text-transform: uppercase;
  margin-right: 15px;
  color: var(--light-gray);
}

.header-top ul li a {
  color: var(--light-gray);
}
.header-top ul li a:hover {
  text-decoration: none;
}
.header-top ul li a span {
  color: var(--light-gray);
}
.header-top ul li a strong {
  color: var(--blue);
  font-size: 14px;
}

.header-top ul li i {
  color: var(--blue);
  margin-right: 5px;
  line-height: 0;
}

/* ==== HEADER ==== */
header {
  margin-bottom: 10px;
  transition: all 0.3s;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header nav ul {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
}

header nav ul li {
  display: flex;
  align-items: center;
  justify-content: center;
}

header nav ul li a {
  display: block;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--dark-gray);
  padding: 13px 18px;
  font-weight: 900;
  font-size: 14px;
  font-family: Kanit;
}

header nav ul li a:hover {
  text-decoration: none;
  color: var(--blue);
}
header nav ul li a img {
  width: 70%;
}

header .logo {
  width: 230px;
  transition: all 0.3s;
}

.sticky-header {
  position: fixed;
  top: 0;
  left: 0;
  padding: 4px 0;
  width: 100%;
  background-color: white;
  z-index: 99;
  margin: 0;
  box-shadow: 0 4px 20px #ccccccb8;
}
.sticky-header .logo {
  width: 150px;
}
/* ===== SLIDER ====== */
.mySwiper {
  height: 750px;
  width: 100%;
  position: relative;
  overflow: hidden;
}
.other-swiper {
  background-color: #d7dce1;
  width: 100%;
  padding: 30px 0;
}

.about-swiper {
  background-color: #002c44;
  height: 400px;
  margin-bottom: 30px;
  position: relative;
}

.swiper-title {
  text-align: center;
  font-weight: 900;
  font-size: 50px;
  color: var(--dark-gray);
}
.slide-img {
  width: 100%;
  height: 100%;
}
.slide-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.slider-content {
  position: absolute;
  top: 50%;
  transform: translateY(-50%) !important;
  left: 25%;
  animation-name: backInUpCustom;
  opacity: 0;

  max-width: 754px;
}

.slider-content h2 {
  font-weight: 900;
  font-size: 80px;
  color: white;
}
.slider-content p {
  color: var(--blue);
  font-size: 24px;
  font-weight: bold;
}

.swiper-button-next,
.swiper-button-prev {
  width: 50px !important;
  height: 50px !important;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.5);
  border: solid 1px rgba(255, 255, 255, 0.3);
}
.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 14px !important;
  color: white !important;
}
.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: black;
  color: white;
}
@keyframes backInUpCustom {
  0% {
    -webkit-transform: translateY(1200px) scale(0.7);
    transform: translateY(1200px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    -webkit-transform: translateY(0) scale(0.7);
    transform: translateY(0) scale(0.7);
    opacity: 0.7;
  }
  to {
    -webkit-transform: translateY(-50%) scale(1);
    transform: translateY(-50%) scale(1);
    opacity: 1;
  }
}

/* ===== SPECIAL TITLE ===== */
.special-title {
  position: relative;
  padding-bottom: 31px;
  margin-bottom: 15px;
}
.special-title-smaller {
  padding-bottom: 17px !important;
}
.special-title::before {
  content: "";
  display: block;
  height: 2px;
  width: 30px;
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: var(--blue);
}
.special-title h2 {
  font-weight: 900;
  color: var(--dark-gray);
  font-size: 42px;
}

.special-title h5 {
  font-weight: 900;
  font-size: 18px;
  margin: 0;
}

.divider {
  margin-top: 48px;
}
.section {
  padding: 100px 0;
}
/* ==== BUTTON ===== */
.fw-btn {
  display: inline-block;
  font-family: "Kanit", sans-serif;
  font-size: 12px;
  color: white;
  font-weight: 700;
  line-height: 1.9167;
  height: 38px;
  padding: 7px 30px 6px 30px;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  vertical-align: middle;
  white-space: nowrap;
  cursor: pointer;
  outline: none;
  border-radius: 19px;
  border: none;
  margin-bottom: 0;
  background-color: var(--blue);
  transition: all 0.3s ease;
}
.fw-btn:hover {
  text-decoration: none;
  color: white;
}
.fw-btn-block {
  display: block;
}

.to-top {
  font-size: 23px;
  line-height: 40px;
  text-align: center;
  width: 40px;
  height: 40px;
  position: fixed;
  right: 0;
  bottom: -100px;
  z-index: 9999;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.4s ease-in-out;
  background-color: var(--blue);
  color: white;
}

/* ===== FOOTER ===== */
footer {
  background-color: var(--dark-gray);
  padding: 30px;
}

.bottom-contact {
  margin-top: 30px;
}
.bottom-contact ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.bottom-contact ul li {
  display: flex;
  margin-bottom: 20px;
}

.bottom-contact ul li .icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 0.5px solid #eee;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 13px;
  margin-right: 15px;
}
.bottom-contact ul li .icon i {
  color: white;
}
.bottom-contact ul li .content {
  display: flex;
  flex-direction: column;
}
.bottom-contact ul li .content p {
  font-size: 15px;
  margin: 0;
  color: white;
  font-weight: 900;
  text-transform: uppercase;
}

.footer-bottom {
  color: white;
  text-align: center;
  margin-top: 60px;
  font-weight: 900;
  font-size: 13px;
}
