/*------------------------------------------------------------------
Project:  ComingSoon
Version:  
Last change:  
Assigned to:  Bach Le
Primary use:  
-------------------------------------------------------------------*/

/*//////////////////////////////////////////////////////////////////
[ FONT ]*/

@font-face {
  font-family: Poppins-Regular;
  src: url('../fonts/Poppins/Poppins-Regular.ttf'); 
}

@font-face {
  font-family: Poppins-Light;
  src: url('../fonts/Poppins/Poppins-Light.ttf'); 
}

@font-face {
  font-family: Poppins-Bold;
  src: url('../fonts/Poppins/Poppins-Bold.ttf'); 
}

@font-face {
  font-family: PlayfairDisplay-Regular;
  src: url('../fonts/PlayfairDisplay/PlayfairDisplay-Regular.ttf'); 
}

@font-face {
  font-family: PlayfairDisplay-Italic;
  src: url('../fonts/PlayfairDisplay/PlayfairDisplay-Italic.ttf'); 
}

/*//////////////////////////////////////////////////////////////////
[ RS PLUGIN ]*/
.container {max-width: 1200px;}

/*//////////////////////////////////////////////////////////////////
[ Form ]*/
.contact100-form {
  width: 100%;
}

/*------------------------------------------------------------------
[ Input ]*/
.wrap-input100 {
  width: 500px;
  max-width: calc(100% - 10px);
  position: relative;
  background-color: transparent;
  height: 50px;
  border: 2px solid rgba(255,255,255,0.5);
  border-radius: 25px;
}

.input100 {
  display: block;
  width: 100%;
  background: transparent;
}

input.input100 {
  height: 100%;
  padding: 0 38px 0 38px;
}

/*------------------------------------------------------------------
[ Focus Input ]*/
.focus-input100 {
  position: absolute;
  display: block;
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  top: -2px;
  left: -2px;
  pointer-events: none;
  border: 2px solid #4272d7;
  border-radius: 25px;
  visibility: hidden;
  opacity: 0;
  transition: all 0.4s;
  transform: scaleX(1.1) scaleY(1.2);
}

.input100:focus + .focus-input100 {
  visibility: visible;
  opacity: 1;
  transform: scale(1);
}

/*------------------------------------------------------------------
[ Alert validate ]*/
.validate-input { position: relative; }

.alert-validate::before {
  content: attr(data-validate);
  position: absolute;
  max-width: 70%;
  background-color: #fff;
  border: 1px solid #c80000;
  border-radius: 15px;
  padding: 4px 25px 4px 10px;
  top: 50%;
  transform: translateY(-50%);
  right: 12px;
  pointer-events: none;
  font-family: Poppins-Regular;
  color: #c80000;
  font-size: 14px;
  line-height: 1.4;
  text-align: left;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.4s;
}

.alert-validate::after {
  content: "\f071";
  font-family: FontAwesome;
  display: block;
  position: absolute;
  color: #c80000;
  font-size: 14px;
  top: 50%;
  transform: translateY(-50%);
  right: 18px;
}

.alert-validate:hover:before {
  visibility: visible;
  opacity: 1;
}

@media (max-width: 992px) {
  .alert-validate::before {
    visibility: visible;
    opacity: 1;
  }
}

/*==================================================================
[ Colors ]*/
.cl0 { color: #fff; }

/*//////////////////////////////////////////////////////////////////
[ S-Text 0 - 15 ]*/
.s1-txt1 {
  font-family: Poppins-Regular;
  font-size: 15px;
  color: #fff;
  line-height: 1.2;
}

/*//////////////////////////////////////////////////////////////////
[ M-Text 16 - 25 ]*/
.m2-txt1 {
  font-family: PlayfairDisplay-Regular;
  font-size: 25px;
  color: #fff;
  line-height: 1.2;
}

.m2-txt2 {
  font-family: PlayfairDisplay-Italic;
  font-size: 18px;
  color: #fff;
  line-height: 1;
}

/*//////////////////////////////////////////////////////////////////
[ L-Text >= 26 ]*/
.l1-txt1 {
  font-family: Poppins-Bold;
  font-size: 48px;
  color: #fff;
  line-height: 1.2;
  text-transform: uppercase;
}

.l1-txt2 {
  font-family: Poppins-Light;
  font-size: 70px;
  color: #fff;
  line-height: 1;
}

/*//////////////////////////////////////////////////////////////////
[ Size / Width ]*/
.size1 { width: 100%; min-height: 100vh; }
.size2 { min-width: 160px; height: 50px; }
.wsize1 { max-width: 100%; width: 790px; }
.wsize2 { width: 100px; }

/*//////////////////////////////////////////////////////////////////
[ Background ]*/
.bg0 { background-color: #fff; }
.bg1 { background-color: rgba(255,255,255,0.8); }

.bg-img1 {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

/*//////////////////////////////////////////////////////////////////
[ Border ]*/
.bor1 { border: 2px solid rgba(255,255,255,0.35); }

/*//////////////////////////////////////////////////////////////////
[ Margin helper ]*/
.where1 { margin: 20px 5px 0px 5px; }

/*//////////////////////////////////////////////////////////////////
[ Input placeholder ]*/
.placeholder0::-webkit-input-placeholder { color: #fff; }
.placeholder0:-moz-placeholder { color: #fff; }
.placeholder0::-moz-placeholder { color: #fff; }
.placeholder0:-ms-input-placeholder { color: #fff; }

/*//////////////////////////////////////////////////////////////////
[ Overlay (UPDATED TO GREEN GRADIENT) ]*/
.overlay1 {
  position: relative;
  z-index: 1;
}
.overlay1::before {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #0f9d58;
  background: -webkit-linear-gradient(bottom, #0f9d58, #034d1e);
  background: -o-linear-gradient(bottom, #0f9d58, #034d1e);
  background: -moz-linear-gradient(bottom, #0f9d58, #034d1e);
  background: linear-gradient(to top, #0f9d58, #034d1e);
  opacity: 0.9;
}

.overlay1::after {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0,0,0,0.2);
}

/*//////////////////////////////////////////////////////////////////
[ Button ]*/
.how-btn {
  padding: 0 20px;
  background-color: #4272d7;
  border-radius: 25px;
}

.how-btn:hover {
  background-color: #fff;
  color: #4272d7;
}

/*//////////////////////////////////////////////////////////////////
[ Pseudo - focus + hover ]*/
.focus-in0:focus::-webkit-input-placeholder { color: transparent; }
.focus-in0:focus:-moz-placeholder { color: transparent; }
.focus-in0:focus::-moz-placeholder { color: transparent; }
.focus-in0:focus:-ms-input-placeholder { color: transparent; }

.hov-cl0:hover { color: #fff; }
.hov-bg0:hover { background-color: #fff; }

/*//////////////////////////////////////////////////////////////////
[ Responsive Styles ]*/
@media (max-width: 1200px) { .w-full-xl { width: 100%; } }
@media (max-width: 992px)  { .w-full-lg { width: 100%; } }
@media (max-width: 768px)  {
  .w-full-md { width: 100%; }
  .respon1 { padding-left: 15px; padding-right: 15px; max-width: 340px; margin: 0 auto; }
  .respon2 { display: none; }
}
@media (max-width: 576px)  { .w-full-sm { width: 100%; } }
@media (max-width: 480px)  { .w-full-ssm { width: 100%; } }
