
@font-face {
  font-family: Sarabun;
  src: url('../fonts/Sarabun.woff2');
}

@font-face {
  font-family: SarabunLatin;
  src: url('../fonts/SarabunLatin.woff2');
}

@font-face {
  font-family: PoppinLatin;
  src: url('../fonts/PoppinLatin.woff2');
}


html, body{
    font-family: 'Sarabun', 'SarabunLatin', cursive;
}
.text-gradient {
 /** TEXT GRADIENT */
  color: #3c367b;
  background-image: -webkit-linear-gradient(225deg, #3c367b 6%, #789cb6 70%);
  background-clip: text;
  -webkit-background-clip: text;
  text-fill-color: transparent;
  -webkit-text-fill-color: transparent;
  line-height: 2;
}

.banner{
    background-image: linear-gradient(180deg, #FFFFFF 2%, #eaebecAB 50%), url('../imgs/banner23.jpg');
    /*background-color: #8950fc;*/
    background-size: cover;
    height: 70vh;
     background-position: top left;
    animation: mymove 5s;
}

@keyframes mymove {
  50% {background-position: center;}
}

@media (max-width: 576px){
    .pic-map{
        display: none;
    }
    html, body{
      font-size: 10px !important;
    }
    .w-150 { width:80px !important; }
    .banner-xs{
      background-image: linear-gradient(180deg, #FFFFFF 2%, #eaebecAB 50%), url('../imgs/banner23.jpg');
      /*background-color: #8950fc;*/
      background-size: cover;
      height: 40vh;
    }
}

@media (max-width: 768px){
    .pic-map{
        display: none;
    }
}
.w-150 { width:150px; }

.btn-hover:hover{
    --bs-bg-opacity: 0.15;
}

.navbar-nav .nav-item .nav-link:hover{
  color:#ff0000;
}

.divider {
  font-size: 30px;
  display: flex;
  align-items: center;
}

.divider::before, .divider::after {
  flex: 1;
  content: '';
  padding: 3px;
  background-color: #d5d5d5;
  margin: 5px;
}

.animate-charcter
{
   text-transform: uppercase;
  background-size: auto auto;
  background-clip: border-box;
  background-size: 200% auto;
  color: #fff;
  background-clip: text;
  text-fill-color: transparent;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: textclip 2s linear infinite;
  display: inline-block;
      font-size: 190px;
}

@keyframes textclip {
  to {
    background-position: 200% center;
  }
}