@charset "utf-8";
 
@font-face {
    font-family: "OptimaLTPro-Roman";
    src: url("https://db.onlinewebfonts.com/t/b6718b05abed06cc4525f3a4ab71be65.eot");
    src: url("https://db.onlinewebfonts.com/t/b6718b05abed06cc4525f3a4ab71be65.eot?#iefix")format("embedded-opentype"),
    url("https://db.onlinewebfonts.com/t/b6718b05abed06cc4525f3a4ab71be65.woff2")format("woff2"),
    url("https://db.onlinewebfonts.com/t/b6718b05abed06cc4525f3a4ab71be65.woff")format("woff"),
    url("https://db.onlinewebfonts.com/t/b6718b05abed06cc4525f3a4ab71be65.ttf")format("truetype"),
    url("https://db.onlinewebfonts.com/t/b6718b05abed06cc4525f3a4ab71be65.svg#OptimaLTPro-Roman")format("svg");
}
 
 

 
@font-face {
  font-family: 'SukhumvitSet';
  src: url('./fonts/SukhumvitSet-Medium.woff2') format('woff2');
  font-weight: 400;  
  font-style: normal;
  font-display: swap;
}


 div#loadPage, div#loadPage_content {
   position: fixed;
   margin: auto;
   left: 0;
   top: 0;
   width: 100%;
   height: 100%;
   color: #000;
   background-color: #FFF;
   z-index: 500000000;
   text-align: center;
   opacity: .7;
   padding-top: 200px;
   vertical-align: middle;
   filter: alpha(opacity=70);
   display: none
 }
 /* ====== preload ========== */
 img {
   max-width: 100%;
 }
 html {
   width: 100%;
 }
 
 :root {
  --color-primary: #000000;
  --color-hover: #666666;
  --color-accent: #000000;
  --color-bg: #ffffff;
  --color-surface: #333333;
  --color-text:#000000;
  --color-text-muted: #B0B3C3;
  --color-border: #2C2C36;
  --border:#000;
}

/* Example usage */
body {
  background-color: var(--color-bg);
  color: var(--color-text);
  font-family: "OptimaLTPro-Roman" ,SukhumvitSet; 
}

  
.fade.in {
    opacity: 1
}

.background {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  overflow: hidden;
  z-index: -1;
}

 
.card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 1.5rem;
  transition: 0.3s ease;
}

.card:hover {
  border-color: var(--color-primary);
  box-shadow: 0 0 20px rgba(108, 99, 255, 0.2);
}

a {
  color: var(--color-accent);
  text-decoration: none;
}

a:hover {
  color: var(--color-hover);
}
  
 .stop-scrolling {
   /*overflow: hidden;*/
 }


.btn{
  display: block;
  background-color: #fff;
  border: solid 1px #333;
  width: 187px;
  padding: 14px 0;
  font-size: 15px;
  color: #333;
  text-align: center;
  line-height: 1;
  border-radius: 30px;
}

.btn:hover{
    background-color: #333;
    color: #fff;
    opacity: 1;
  }

 h1 {
   margin: 0;  
   padding: 0;  
   font-size: 36px;
   line-height: 120%;
   font-weight: normal;
   letter-spacing: 0px;
 }
 h2 {
   margin: 0;  
   padding: 0;    
   font-size: 2.865vw;
   line-height: 100%;
   font-weight: normal;
   letter-spacing: 1px;
 }
 h3 {
   margin: 0;  
   padding: 0;
   font-size: 24px;
   line-height: 100%;
   font-weight: normal;
   letter-spacing: 1px;
 }

 

 a, a:hover, a:link {
   text-decoration: none;
 }
 .bull {
   font-family: "sans-serif";
   width: 20px;
 }
 

input:focus::-webkit-input-placeholder {
    color: transparent;
}
 

.coming {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 32px;
    font-weight: 500;
    color: #333;
}

.coming img {
    max-width: 240px;
    margin-bottom: 24px;
}

.coming-text {
    opacity: 0;
    transform: translateY(8px);
    animation: jpFadeUp 1.4s ease-out forwards;
    animation-delay: 0.3s; margin-top: 40px;
}


 @media screen and (max-width: 50em) {
  
.coming {
     font-size: 24px;
}

.coming-text {
     margin-top: 20px;
}


}

@keyframes jpFadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

