/* ===== Google Font Import - Poppins ===== */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap');

body{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    transition: all 0.4s ease;;
}
ul{
  margin: 0;
  padding: 0;
  list-style: none;
}
.coming-area{
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  z-index: 999;
  height: 100vh;
  width: auto;
  overflow-y: auto;
}
.coming-content {
  text-align: start;
  padding-bottom: 39px;
  width: 60%;
}
.coming-text {
  padding-top: 37px;
}
.coming-text h2{
  color:#fff;
  font-size: 50px;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  z-index: 999;
}
.coming-text p{
  color:#fff;
  line-height: 30px;
}
.logo a img{
  width: 120px;
  height: auto;
}
.subscribe {
  position: relative;
  overflow: hidden;
  width: 60%;
  margin-top: 30px;
  margin-bottom: 80px;
  
}
.subscribe input[type="search"] {
  border: 1px solid #e7e7e7;
  padding: 18px 15px;
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  font-style: italic;
  color: #b3b3b3;
  font-size: 15px;
  width: 100%;
  border-radius: 3px;
  background: #232A31;
}

.subscribe button[type="submit"] {
  background: #0064ff;
  font-weight: 700;
  font-size: 14px;
  color: #FFF;
  text-transform: uppercase;
  border: none;
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 35%;
  cursor: pointer;
  transition: all 0.3s ease;

}
 .left-social ul{
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
 }
 .left-social ul li{
  margin: 2px 6px;
  padding: 0;
  overflow: visible;
 }

  .left-social ul li a{
  display: block;
  height: 26px;
  line-height: 26px;
  width: 26px;
  font-size: 18px;
  text-align: center;
  color: #fff;
  text-decoration: none;
  transition: all 0.2s ease;
 }
 .left-social ul li a:hover{
  color: #0064FF;
  transition: all 0.2s ease;
}
.global-overlay {
  position: fixed;
  top: 0;
  left: -100vw;
  height: 100%;
  overflow: hidden; 
  width: 100%;
  opacity: 0;
  z-index: -1;
}
.overlay {
  position: absolute;
  overflow: hidden;
  top: 0;
  left: -40%;
  background: #cac1c1;
  width: 100%;
  height: 100%;
  transition: all 0.5s cubic-bezier(0.7, 0, 0.3, 1);
  border-right: 1px solid #15171e;
  z-index: -1;
  opacity: 0.2;
}
.overlay.skew-part {
  transform: skew(-25deg, 0deg);
}