@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;
}

.logo{
  width: 220px;
}
.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 #55112A30;
  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: 297px;
  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: #55112a;
  color: #eeca84 !important;
}
.par_btn:hover::before {
  width: 100%;
  background-color: #55112a;
}
.mr15{
  margin-right: 15px !important;
}
.subtitle{
  font-weight: 200;
  font-size: 26px;   
  line-height: 25px;
}
.mt40{
  margin-top: 45px;
}
.mt50{
  margin-top: 62px;
}
.main{
  display: flex;
  width: 100%;
  height: 100vh;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: 100dvh;
  position: relative;
  overflow: hidden;
}
a {
  text-decoration: none;
}
.launching {  
  font-size: 36px;
  font-weight: 200;
  letter-spacing: 1px;
  text-align: center;
  background: linear-gradient(45deg, #775226, #c29a55, #e5bc6d, #55112a, #55112a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 300% 300%;
  -webkit-animation: launching-text 2s ease infinite alternate;
  animation: launching-text 2s linear infinite alternate;
  font-family: "Inter", serif;
  margin-bottom: 17px;
} 
@keyframes launching-text {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 100% 50%;
  }
}

.bg_logo{
position: absolute;
  opacity: 0.35;
  width: 100%; 
  top: 0;
  bottom: 0;
  background: linear-gradient(to top right, #794f22,#c39b57d1,#bf9752b8,#55112aa1,#54102a);
z-index: -1;
overflow: hidden;
}
.logo_icon{
  position: absolute;
  opacity: 0.05;
  width: 68%; 
  left: 50%;
  top: -6px;
  transform: translate(-50%);
}

 

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

@media screen and (max-width:767px){
 .logo {
    width: 200px;
  }
  .launching {
    font-size: 26px;
    font-weight: 200;
    margin-top: 35px;
    line-height: 33px;
  }
  .par_btn{
    margin-right: 0 !important;
    background: #fff0;
  }
  .res_mb15{
    margin-bottom: 15px !important;
  }
  .mt50 {
    margin-top: 50px;
  }
  .bg_img{
    background-position: 59% 50%;
  }
  .logo_icon{
  width: 1000px; 
  top: 0;
    opacity: 0.07;
}
}

@media screen and (min-width:599px) and (max-width:767px){
  .res_mb0{
    margin-bottom: 0px !important;
  }
}
