@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

* {
  padding: 0;
  margin: 0;
  list-style: none;
  box-sizing: border-box;
  outline: none;
} 
body {
  margin: 0px;
  padding: 0px;
  font-family: "Inter", serif;
}

.bg_img{
  background: url("./bg.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 23% 50%;
}
.logo{
  width: 250px;
}
.project_name{
  font-size: 36px;
  line-height: 38px;
  font-weight: 200;
  display: inline;
  position: relative;
  letter-spacing: 2px !important;
}
.project_name:after{
  content: "";
  bottom: -9px;
  position: absolute;
  height: 2px;
  width: 63%;
  background: gainsboro;
  margin: 0 auto;
  text-align: center;
  left: -14px;
  right: 0;
}

.par_btn{
  background-color: transparent;
  color: #1A1A1A;
  border: 1px solid #D8DDE1;
  border-radius: 35px;
  position: relative;
  z-index: 2;
  transition: all 1s cubic-bezier(0.05, 0.83, 0.43, 0.96);
  overflow: hidden;
  display: inline-block;
  font-size: 14px;
  padding: 14px 20px;
  letter-spacing: 0.5px;
  width: 245px;
  text-align: center;
}
.par_btn::before{
content: "";
  position: absolute;
  height: 100%;
  top: 0;
  left: 0;
  width: 0%;
  background-color: var(--white-color);
  z-index: -1;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.par_btn:hover {
  border-color: #ef6d36;
  color: white !important;
}
.par_btn:hover::before {
  width: 100%;
  background-color: #ef6d36;
}
.mr15{
  margin-right: 15px !important;
}
.subtitle{
  font-weight: 200;
  font-size: 26px;   
  line-height: 25px;
}
.mt40{
  margin-top: 40px;
}
.mt50{
  margin-top: 50px;
}
.main{
  display: flex;
  width: 100%;
  height: 100vh;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
a {
  text-decoration: none;
}
.launching {  
  font-size: 36px;
  font-weight: 200;
  letter-spacing: 1px;
  text-align: center;
  background: linear-gradient(45deg, #ef6d36, #ef6d36, #324f96, #324f96);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 300% 300%;
  -webkit-animation: launching-text 2s ease infinite;
  animation: launching-text 2s ease infinite;

  font-family: "Inter", serif;
  margin-bottom: 21px;
} 

@-webkit-keyframes launching-text {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
@keyframes gradient-text {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@media screen and (min-width:1025px) and (max-width:1299px){
  .logo {
    width: 210px;
  }
  .launching {
    font-size: 30px;
    font-weight: 200;
    margin-top: 30px;
  }
}

@media screen and (max-width:767px){
  .logo {
    width: 200px;
  }
  .launching {
    font-size: 26px;
    font-weight: 200;
    margin-top: 30px;
    line-height: 33px;
  }
  .par_btn{
    margin-right: 0 !important;
    background: #ffffffa8;
  }
  .res_mb15{
    margin-bottom: 15px !important;
  }
}
