@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans+Thai:wght@100;200;300;400;500;600;700&display=swap');
@import url(//fonts.googleapis.com/css?family=Lato:300:400);
:root {
  --css-white: #FFFFFF;
  --css-grey: #707070;
  --css-black: #000000;
  --css-blue: #3693cc;
  --css-darkblue: #004578;
  --css-lightgrey: #A3ABBD;
}
html {
  margin: 0px;
  padding: 0px;
  border: 0;
  outline: 0;
  scroll-behavior: smooth;
  /* height: 100vh;*/
  overflow-x: hidden;
  color: var(--css-darkgrey);
  font-family: "IBM Plex Sans Thai", sans-serif;
  font-size: 15px;
  line-height: 18px;
}
body {
  font-family: "IBM Plex Sans Thai", sans-serif;
  font-optical-sizing: auto;
  background-color: var(--css-white);
  margin: 0px;
  padding: 0px;
  /* height: 100%;*/
  color: #383838;
  font-weight: 400;
  overflow-x: hidden;
}
body {
  animation: fadeInAnimation ease 3s;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
}
@keyframes fadeInAnimation {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
::-webkit-selection {
  color: var(--css-white);
  background: var(--css-darkblue);
}
::-moz-selection {
  color: var(--css-white);
  background: var(--css-darkblue);
}
::selection {
  color: var(--css-white);
  background: var(--css-darkblue);
}
a {
  color: var(--css-darkblue);
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  text-decoration: none;
  outline: none;
}
a:hover, a:active, a:focus {
  outline: none;
  text-decoration: none;
  cursor: pointer;
  opacity: .5;
  color: var(--css-darkblue);
}
*:focus {
  outline: none;
}
strong {
  font-weight: 600;
}
img a:hover, img a:active, img a:focus {
  opacity: .7;
}
.mobile {
  display: none;
}
.desktop {
  display: block;
}
@media (max-width:768px) {
  .mobile {
    display: block;
  }
  .desktop {
    display: none;
  }
}
@media (max-width:512px) {
  body {
    font-size: 16px;
    line-height: 22px;
  }
  a:hover, a:active, a:focus {
    opacity: 1;
  }
  img a:hover, img a:active, img a:focus {
    opacity: 1;
  }
}
/**************************** color ****************************/
.white {
  color: var(--css-white);
}
.grey {
  color: var(--css-grey);
}
.black {
  color: var(--css-black);
}
.blue {
  color: var(--css-blue);
}
.darkblue {
  color: var(--css-darkblue);
}
.textgradient {
  background: #ff5800;
  background: linear-gradient(to right, #ffe7bf 0%, #ff5800 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
/**************************** font ****************************/
.title {
  font-size: 64px;
  line-height: 64px;
  font-weight: 400;
  text-transform: uppercase;
}
.header {
  font-size: 38px;
  line-height: 42px;
  font-weight: 600;
  text-transform: uppercase;
}
.subheader {
  font-size: 26px;
  line-height: 40px;
}
.small {
  font-size: 11px;
  line-height: 14px;
}
.copy {
  font-size: 11px;
  line-height: 12px;
}
#footer {
  background: rgb(78, 166, 248);
  background: linear-gradient(0deg, rgba(78, 166, 248, 1) 0%, rgba(255, 255, 255, 1) 69%);
  padding-top: 90px; 
}
#footer .title {
  font-size: 16px;
  line-height: 18px;
  font-weight: 600; 
}
#footer {
  font-size: 12px;
  line-height: 16px;
}
#footer .small {
  font-size: 10px;
  line-height: 14px;
}  
/**************************** element ****************************/
.logo {
  width: 140px;
  margin-top: 3px;
  margin-bottom: 10px;
}
.box {
  box-shadow: rgba(17, 17, 26, 0.1) 0px 4px 16px, rgba(17, 17, 26, 0.1) 0px 8px 24px, rgba(17, 17, 26, 0.1) 0px 16px 56px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border: 2px solid rgba(255, 255, 255, .3);
  background: rgb(255, 255, 255);
  background: linear-gradient(180deg, rgba(233, 233, 233, .2) 2%, rgba(255, 255, 255, .2) 100%);
  text-decoration: none;
  border-radius: 12px;
  text-align: left;
  padding: 20px;
  padding-left: 30px;
  margin-top: 10px;
  height: auto;
  background: rgb(255, 255, 255);
  background: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .6) 100%);
}
.boxoutline {
  box-shadow: rgba(255, 255, 255, 1) 0px 0px 0px 1px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border: 1px solid #e9e9e9;
  text-decoration: none;
  margin-left: auto;
  margin-right: auto;
  border-radius: 12px;
  text-align: left;
  margin-top: 10px;
  margin-bottom: 30px;
  padding: 20px;
  background: rgb(255, 255, 255);
  background: linear-gradient(0deg, rgba(255, 255, 255, .6) 0%, rgba(255, 255, 255, 1) 100%);
  font-weight: 100;
}
.shadow {
  box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px;
}
/**************************** button ****************************/
.enter {
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  padding: 5px;
  font-size: 11px;
  line-height: 12px;
  font-weight: 400;
  text-align: center;
  border: 1px solid var(--css-white);
  border-radius: 6px;
  background-color: var(--css-darkblue);
  color: var(--css-white);
  text-decoration: none;
  margin-top: 10px;
  width: 90px;
}
.enter:hover {
  color: var(--css-darkblue);
  border: 1px solid var(--css-darkblue);
  text-decoration: none;
  background-color: var(--css-white);
}
.enter:active {
  color: var(--css-darkblue);
  text-decoration: none;
  background-color: var(--css-white);
}
.enter:hover {
  text-decoration: none;
}
.enter:focus {
  text-decoration: none;
}
.enteroutline {
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  padding: 10px;
  font-size: 20px;
  line-height: 24px;
  font-weight: 400;
  text-align: center;
  border: 1px solid var(--css-white);
  border-radius: 6px;
  background-color: transparent;
  color: var(--css-white);
  text-decoration: none;
  width: 140px;
}
.enteroutline:hover {
  color: var(--css-white);
  text-decoration: none;
  background-color: var(--css-darkblue);
}
.enteroutline:active {
  color: var(--css-white);
  text-decoration: none;
  background-color: var(--css-darkblue);
}
/**************************** others ****************************/
.zoom {
  transform: scale(1, 1);
  transition: transform .2s; /* Animation */
}
.zoom:hover {
  transform: scale(1.09); /* (150% zoom - Note: if the zoom is too large, it will go outside of the viewport) */
  moz-transform: scale(1.09);
  -webkit-transform: scale(1.09);
  -o-transform: scale(1.09);
  -ms-transform: scale(1.09);
  transform: scale(1.09);
}
.zoomin {
  transform: scale(1, 1);
  transition: transform .2s; /* Animation */
}
.zoomin:hover {
  opacity: .5;
  border: 2px solid var(--css-white);
  cursor: pointer;
}
.fadeIn {
  transition: transform .9s; /* Animation */
}
.fade-out {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.6s ease;
}
.fadeOut:hover {
  transition: transform .4s; /* Animation */
}

.linetitle {
   border: 1px;
   border-bottom: 0px;
   border-right-style: none;
   border-left-style: solid;
   padding-right: 5px;
   padding-left: 5px;
   border-color: #e0e0e0;
   padding-bottom: 20px;
   margin-top: 5px; 
   margin-bottom: 10px;
 }

/**************************** tablet  ****************************/
@media (max-width:1024px) {
  .logo {
    width: 120px;
    margin-bottom: 5px;
  }
}
/**************************** mobile  ****************************/
@media (max-width:512px) {
  .title {
    font-size: 42px;
    line-height: 48px;
  }
  .header {
    font-size: 34px;
    line-height: 38px;
    margin-bottom: 10px;
  }
  .subheader {
    font-size: 19px;
    line-height: 24px;
  }
	
.linetitle {
   border: 0px; 
 }
	
}
/**************************** small mobile  ****************************/
@media (max-width:414px) {
  .title {
    font-size: 38px;
    line-height: 40px;
  }
  .header {
    font-size: 30px;
    line-height: 32px;
  }
}
@media (max-width:214px) {
  .title {
    font-size: 24px;
    line-height: 28px;
  }
  .header {
    font-size: 20px;
    line-height: 24px;
  }
}
/************************************ text wrap ******************************************************/
.textwrapinside {
  margin-left: auto;
  margin-right: auto;
  text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.4);
}
.textwrap {
  margin-left: auto;
  margin-right: auto;
  text-shadow: 1px 1px 5px rgba(211, 57, 15, 0.1);
	
  font-size: 12px;
	line-height: 16px;
  font-weight: 700;
}
.textwrap .title {
  font-size: 70px;
  font-weight: 800;
  letter-spacing: 1px;
  letter-spacing: -3px;
  background-size: cover;
  background-image: url('../images/front.jpg');
  background-position: top right;
  -webkit-background-clip: text;
}
.textwrap .text {
  color: rgba(211, 57, 15, 0.03);
  font-size: 55px;
  line-height: 90px;
  font-weight: 700;
  letter-spacing: -3px;
  background-size: cover;
  background-image: url('../images/front.jpg');
  background-position: top right;
  -webkit-background-clip: text;
}
@media (max-width:512px) {
  .textwrap .title {
    font-size: 46px;
    line-height: 50px;
    letter-spacing: normal;
  }
  .textwrap .text {
    font-size: 38px;
    line-height: 55px;
  }
}
 
@media (max-width:360px) {
  .textwrap .title {
    font-size: 34px;
    line-height: 34px;
  }
  .textwrap .text {
    font-size: 28px;
    line-height: 48px;
  }
}
.blink {
  animation: blink-animation 1s steps(2, start) infinite;
}
@keyframes blink-animation {
  to {
    visibility: hidden;
  }
	  }



/***************  custom *****************/


.name {
	height: 100%;
	width: auto;
   max-height: 60vh;  
/*  background-image: url(../images/name.png);
  background-position: top right; */
}
.inner-header {
    height: 78vh;
    width: 100%;
    /*margin: 0;*/
    text-align: center;
    padding: 0;
    justify-content: center;
    align-items: center;
    text-align: center;

}
.center-arrow {
    width: 20px;
    height: 20px;
    border-left: 3px solid #333;
    border-bottom: 3px solid #333;
    transform: rotate(-45deg);
    position: absolute;
    bottom: 30px;
    left: 50%;
    margin-left: -10px; /* Half of width to truly center */
    animation: bounceDown 2s infinite;
    opacity: 0.6;
}
@keyframes bounceDown {
0%, 100% {
transform: translateY(0) rotate(-45deg);
}
50% {
transform: translateY(10px) rotate(-45deg);
}
}
.spacetop {
    margin-top: 60px;
}
#footer {
    height: 120px;
}
.contentin {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #000;
    background-color: rgba(255,255,255,0.7);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    position: absolute;
    width: auto;
    max-height: 100vh;
}
.sticker {
    position: sticky;
    z-index: 0;
}
.sticker img {
    top: 0;
    left: 0;
    height: 100%;
    max-height: 90vh;
    width: 100%;
    max-width: 100wh;
    object-fit: cover;
    opacity: 0;
    transform: scale(1);
    transition: opacity 1s ease, transform 1s ease;
}
.sticker.visible img {
    opacity: 1;
    transform: scale(1);
}
.splash {
    width: 250px;
    margin-top: -120px;
    z-index: 1;
    position: absolute;
}

@media (max-width:512px) {
.name {
    max-height: 55vh;
}
.contentin {
    width: 90%;
}
.sticker img {
    height: 90vh;
    width: 100wh;
    overflow: hidden;
}
.splash {
    width: 150px;
    margin-top: -60px;
}
}
/***************   *****************/
.sec2 {
    position: relative;
    min-height: 900px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}
.bgsplash {
    position: absolute;
    top: 20px;
    left: 0;
    width: auto;
    height: 100%;
    min-height: 800px;
    z-index: 0;
    opacity: 0;
    transition: opacity 1.2s ease;
    filter: blur(.5px); /* ← this creates the blur effect */
}
.bgsplash.visible {
    opacity: 1;
}
.bgsplash img {
    width: auto;
    height: 774px;
}

@media (max-width:1366px) {
.sec2 {
    min-height: 110vh;
}
.bgsplash {
    min-height: 65vh;
}
}

@media (max-width:768px) {
.sec2 {
    min-height: 100vh;
}
.bgsplash {
    min-height: 65vh;
}
}
/***************   *****************/
.sec3 {
    min-height: auto;
    margin-bottom: 0px;
    background: #a4cef5;
    background: linear-gradient(5deg, rgba(164, 206, 245, 1) 0%, rgba(255, 255, 255, 1) 82%);
    margin-top: -120px;
}

@media (max-width:1024px) {
.sec3 {
    margin-top: -90px;
}
}

@media (max-width:512px) {
.sec3 {
    margin-top: 20px;
}
}
.list-group li
{
	padding-bottom: 10px;
} 


.bgsea
{
	 background: linear-gradient(60deg, rgba(84,58,183,1) 0%, rgba(0,172,193,1) 100%);
	color: #FFFFFF;
}