@font-face {
    font-family: "Inter";
    src: url("../fonts/Inter18pt-Regular.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
  }
  @font-face {
    font-family: "DM Sans";
    src: url("../fonts/DMSans18pt-Bold.woff2") format("woff2");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
  }
  @font-face {
    font-family: "Poppins";
    src: url("../fonts/Poppins-Light.ttf") format("truetype");
    font-weight: 300;
    font-style: normal;
    font-display: swap;
  }
  @font-face {
    font-family: "Poppins";
    src: url("../fonts/Poppins-Regular.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
  }
  @font-face {
    font-family: "Poppins";
    src: url("../fonts/Poppins-Medium.ttf") format("truetype");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
  }
  @font-face {
    font-family: "Poppins";
    src: url("../fonts/Poppins-Bold.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
  }
  @font-face {
    font-family: "Poppins";
    src: url("../fonts/Poppins-SemiBold.ttf") format("truetype");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
  }
  @font-face {
    font-family: "Poppins";
    src: url("../fonts/Poppins-Black.ttf") format("truetype");
    font-weight: 900;
    font-style: normal;
    font-display: swap;
  }
  @font-face {
    font-family: "Roboto";
    src: url("../fonts/Roboto-Medium.ttf") format("truetype");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
  }
  * {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
  .wrapper {
    width: 1440px;
    max-width: 100%;
    margin: 0 auto;
    height: 100%;
  }
  
  body {
    background: rgb(8, 13, 39);
  }

  .comingsoon{
    padding: 0px 225px 100px 225px;
  }

  .comingsoon__wrapper{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    margin-top: 130px;
    margin-right: 400px;
    margin-bottom: 150px;
    position: relative;
    flex: 1; 
  }

  .comingsoon__title{
    font-family: "Poppins";
    font-size: 64px;
    font-weight: 900;
    color: #EAEDFF;
    line-height: 64px;
  }

  .comingsoon__text{
    font-family: "Poppins";
    font-size: 14px;
    font-weight: 400;
    color: #C4CBF5;
  }

  .comingsoon__formWrapper{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    padding: 48px;
    background: linear-gradient(180deg, #243474 0%, #0F1434 100%);
    border-radius: 40px;
    border: 3px solid #334679;
    width: 398px;
  }

  .comingsoon__formInput{
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  
  .comingsoon__formInputText{
    font-family: 'Roboto';
    font-weight: 500;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.45);
    margin-left: 15px;
  }


  .comingsoon__formInputInput input{
    border-radius: 14px;
    padding: 16px 16px 16px 16px;
    background-color: rgba(255, 255, 255, 0.04);
    font-family: 'Roboto';
    font-weight: 500;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.45);
    border: none;
    width: 302px;
    height: 56px;
  }

  .comingsoon__formButton{
    background: linear-gradient(180deg, #334679 0%, #162561 100%);
    width: 220px;
    height: 64px;
    border-radius: 16px;
    position: relative;
    cursor: pointer;
    z-index: 0;
  }

  .comingsoon__fornButtonMain{
    background: linear-gradient(180deg, #253575 0%, #162561 100%);
    position: absolute;
    width: 216px;
    height: 60px;
    border-radius: 16px;
    z-index: 2;
    left: 3px;
    top: 2px;
  }

  .comingsoon__formButtonArrowImg{
    position: absolute;
    top: 30%;
    left: -1px;
  }

  .comingsoon__formButtonLightImg{
    position: absolute;
    top: 15%;
    left: 5%;
  }

  .comingsoon__formButtonText{
    position: absolute;
    font-family: 'Popins';
    font-size: 16px;
    font-weight: 700;
    color: #2EF2FF;
    top: 30%;
    left: 50%;
  }

  .comingsoon__image{
    position: absolute;
    top: 18%;
    left: 25%;
    z-index: -1;
    display: visible;
  }

  .comingsoon__imageMob{
    display: none;
  }

  .comingsoon__image img{
    max-width: 1229px;
    width: 100%;
  }

  .comingsoon__imageMob img{
    max-width: 1229px;
    
  }

  @media (min-width: 2000px ){
    footer{
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
    }
  }
  
  @media(max-width: 1135px) {
    .comingsoon{
      padding:unset;
    }
    .comingsoon__wrapper{
      align-items: center;
      margin-right: 0;
    }
    .comingsoon__image{
      display: none;
    }
    .comingsoon__imageMob{
      display: flex;
    }
  }
  @media (max-width:580px) {
    .comingsoon__imageMob img{
      max-width: 350px;
    }
    .comingsoon{
      padding-bottom: 80px;
    }
    .comingsoon__title{
      font-size: 52px;
    }
    .comingsoon__text{
      text-align: center;
    }
    .comingsoon__formWrapper{
      width:400px;
    }
  }

  @media (max-width:391px){
    .comingsoon__title{
      font-size: 48px;
    }
    .comingsoon{
      padding-left: 32px;
    }
    .menu_list-footer{
      gap: 0;
    }
    .comingsoon__formWrapper{
      width: 375px;
    }
  }
  
  @media (max-width:415px){
    .comingsoon{
      padding-left: 10px;
    }
    .light__box.light__box-footer{
      top: -35%;
    }
  }

  @media (max-width:376px){
    .comingsoon{
      padding-left: 52px;
    }
    .comingsoon__title {
      font-size: 46px;
    }
  }
