.reg-body{
  overflow: hidden;
}

.reg-body.show{
  overflow: visible;
}

.carousel{
    width: 100vw;
    height:100vh;
    text-align: center;
    display: block;
    top:0;
    overflow: hidden;
    position: fixed;
    z-index: 9999 !important;

    transition-property: all;
    transition-duration: 1s;
    transition-timing-function: ease-in-out;
  }

  .carousel.disapear{
    opacity: 0%;
    z-index: -9999 !important;
  }

  .page_cont{
    height: 100%;
    display:flex;
    justify-content:center;
    align-items:center;
    width:300%;
    
    transition-property: all;
    transition-duration: 1s;
    transition-timing-function: ease-in-out;

  }


  .page{
    height: 100%;
    width:100vw;
    background-image: url(../../public/img/reg-1.jpg);
    background-blend-mode: multiply;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: rgba(1, 26, 107, 0.632);
    
    padding: 30px;
    display:flex;
    justify-content: center;
    align-items:center;
  }

  .radio_cont{
    height: 50px;
    display:flex;
    justify-content: center;
    align-items: center;
    gap:5px;
    padding: 10px;
    width: 100%;
    top:90%;
    position: fixed;
  }

  .button-cont{
    position: fixed;
    top: 85%;
  }

  .r_title2{
    color:#fff;
    position: fixed;
    top:45%;
    text-align: center;
    width: clamp(280px, 100vw, 900px);
    padding-left: 10px;
    padding-right: 10px;

  }

  .r_title1{
    color:#fff;
    position: fixed;
    top:10%;
    text-align: center;
    font-size: 60px;
    width: clamp(280px, 100vw, 900px);
    padding-left: 10px;
    padding-right: 10px;
  }

  .r_writeup{
    color:#fff;
    position: fixed;
    top:55%;
    text-align: center;
    width: clamp(280px, 100vw, 900px);
    padding-left: 20px;
    padding-right: 20px;
  }

  @media (max-width:900px) {
    
    .r_title1{
      font-size: 40px;
      top:30%;
    }

  }

  @media (max-width:550px) {

    .r_title1{
      font-size: 30px;
      
    }

    .page{
      background-position-x:-400px ;
    }
  }

  