@import url('https://fonts.googleapis.com/css2?family=Sarabun:wght@100;300&display=swap');

:root {
  --sk-background-light: #eee8e8;
  --sk-background-dark: #333;
  --sk-background-dark-transparent: #33333385;
  --sk-text-light: #eee;
  --sk-text-dark: #333;

  --sk-blue-light: #409bf7;
  --sk-blue-dark: #06427e;
  --sk-blue-hover: #5ba0e6;

}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  list-style: none;
}

body {
  font-family: Sarabun, 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 1em;
  color: #000;
  /* background-color: #d2d7df; */
  overflow-x: hidden;
  background-image: url('../images/bg04.svg');
  background-size: cover;
}


.padding-20 {
  padding-left: 20px !important;
  padding-right: 20px !important;
}

th {
  vertical-align: middle;
}

.main-div {
  /* background-color: #fdfffc; */
  background-color: #ffffff;
  border-radius: 10px;
  margin: 20px 30px;
  padding: 35px 20px 10px 20px;
}

.margin-top-15 {
  margin-top: 15px !important;
}

a {
  cursor: pointer;
}

.iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
}

.card-header {
  /* font-size: medium; */
  font-size: 1.2rem;
}

.img-display {
  /* max-width: 100px;
  max-height: 80px; */
  /* max-width: 10vw; */
  /* max-height: 12vh; */
  /* height: 3vw; */
  width: 40px;
}

/* .card-body {
  font-size: 1.8rem;
} */

.card-header.text-bg-primary {
  background-color: #0041C2 !important;
}

.text-bg-water1 {
  color: #fff !important;
  background-color: #0041C2 !important;
}

.text-bg-water2 {
  color: #fff !important;
  background-color: #00A2C2 !important;
}

/* start water css */

.ocean-bg {
  position: relative;
}

.ocean {
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  overflow-x: hidden;
  overflow-y: hidden;
}

.wave {
  background: url("../images/wave06.png");
  position: absolute;
  width: 200%;
  height: 100%;
  animation: wave 20s -3s linear infinite;
  transform: translate3d(0, 0, 0);
  opacity: 0.5;
  background-size: contain;
  background-repeat: round;
}

.wave:nth-of-type(2) {
  bottom: -30%;
  animation: wave 25s linear reverse infinite;
  opacity: 0.25;
}

.wave:nth-of-type(3) {
  bottom: -60%;
  animation: wave 37s -1s linear infinite;
  opacity: 0.3;
}

@keyframes wave {
  0% {
    transform: translateX(-50%);
  }

  50% {
    transform: translateX(-25%);
  }

  100% {
    transform: translateX(-0%);
  }
}

/* end water css */

@media (min-width: 992px) {
  .d-lg-inline-flex {
    display: inline-flex !important;
  }
}

/* start loader css */

.loader {
  width: 16px;
  height: 16px;
  box-shadow: 0 30px, 0 -30px;
  border-radius: 4px;
  background: currentColor;
  display: block;
  margin: -50px auto 0;
  position: relative;
  color: #8ecae6;
  transform: translateY(30px);
  box-sizing: border-box;
  animation: animloader 2s ease infinite;
}

.loader::after,
.loader::before {
  content: '';
  box-sizing: border-box;
  width: 16px;
  height: 16px;
  box-shadow: 0 30px, 0 -30px;
  border-radius: 4px;
  background: currentColor;
  color: #8ecae6;
  position: absolute;
  left: 30px;
  top: 0;
  animation: animloader 2s 0.2s ease infinite;
}

.loader::before {
  animation-delay: 0.4s;
  left: 60px;
}

@keyframes animloader {
  0% {
    top: 0;
    color: #219ebc;
  }

  50% {
    top: 30px;
    color: rgba(255, 255, 255, 0.2);
  }

  100% {
    top: 0;
    color: #219ebc;
  }
}

/* end loader css */

.vl {
  border-left: 3px dotted red;
  height: 5%;
  text-wrap: nowrap;
  position: absolute;
  bottom: 82px;
  align-content: center;
  z-index: 1;
}

.gate-text {
  text-wrap: nowrap;
  position: absolute;
  font-weight: bold;
  text-shadow: rgb(255, 255, 255) 0px 0px 5px;
  left: 42%;
  /* top: 37%; */
}

.gate-door {
  background-color: #9a031e;
  width: 6%;
  height: 125px;
  text-wrap: nowrap;
  position: absolute;
  z-index: 1;
  margin: 0 auto;
}

.gate-door2{ 
  background-color: #9a031e;
  height: 130px;
  z-index: 1;
}

@media (max-width: 576px) {
  .main-div{
    margin: 0px;
  }
}

.icon-32 {
  width: 32px;
  border-radius: 50%;
  background-color: #fff;
  border: #ccc 1px solid;
  padding: 2px;
  /*margin: 5px;*/
  object-fit: scale-down ;
}

.icon-42 {
  width: 42px;
}

.icon-64 {
  width: 64px;
}


.text-logo{
  text-shadow: 1px 1px 5px rgb(209, 218, 206);
}