* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  
}

body {
  font-family: "Roboto", "sans-serif";
  flex-direction: column;
  height: 100vh;
  overflow: hidden;
  margin: 0;
  background: transparent;
    overflow-x: hidden;

}


/* Header Starts */




.logo {
  margin-top: 11px;
  height: 45px;
  margin-left: 11px;
}



@media only screen and (max-width: 350px) {



.main-container p {
    display: flex;
    color : #fff;
    font-size: 11px;
    align-items: center;
    justify-content: center;
    
  }
  
  .footer {
 
  font-size: 7px;
 
}

  .main-container a {
  /*  width: 11rem;  */
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  
}



@media only screen and (min-width: 351px) and (max-width: 399px) {


  
  .footer {
 
  font-size: 11px;
 
}

  
  
}



@media only screen and (min-width: 400px) and (max-width: 499px) {


  .footer {
 
  font-size: 11px;
 
}

}


@media only screen and (min-width: 500px) and (max-width: 699px) {


  .footer {
 
  font-size: 11px;
 
}

}


@media only screen and (min-width: 700px) and (max-width: 799px) {


  .footer {
 
  font-size: 14px;
 
}

}














.main-container {
  width: 100%;
  height: 100vh;
  font-family: "Roboto", sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
     
}

.main-container .left,
.main-container .right {
  width: 50vw;
  height: 100vh;
  flex-direction: column;
  flex: 1 20vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: /* var(--gradient-left), */url("images/1.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  transition: all 1000ms ease-in-out;
  

}

.main-container .left:hover,
.main-container .right:hover {
  flex: 2;
 /* flex-grow: 2; */
}

.main-container .right {
  background: /* var(--gradient-left), */url("images/2.jpg");
  background-repeat: no-repeat;
  background-size: cover;
}

.main-container h1 {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 60px;
  font-weight: 900;
  
}

.main-container p {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
 
}

.main-container .right {
  color: #fff;
}

.main-container .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  /* border: #fff solid 0.2rem; 
  width:10rem; 
  font-size: 1rem;
  font-weight: bold;
  text-transform: uppercase;
  font-weight: bold; */
  padding: 1.5rem;
  cursor: pointer;
  background: #fff;
  padding: 12px 32px;
  text-decoration: none;
  /* display: inline-block; */
  margin-top: 24px;
  color: #222;
  box-shadow: 0 4px 16px -4px rgba(0, 0, 0, 0.3);
  opacity: 0;
  transition: all 1000ms ease-in-out;
}

.btn:hover {
  transform: scale(0.95);
}

.main-container a {
  display: flex;
  align-items: center;
  justify-content: center;
  /* width: 11rem; */
  font-size: 18px;
  font-weight: 600;
}

/* .left .btn:hover {
  background-color: var(--left-btn-hover-color);
  border-color: var(--left-btn-hover-color);
}

.right .btn:hover {
  background-color: var(--right-btn-hover-color);
  border-color: var(--right-btn-hover-color);
}

.btn:hover {
  transform: scale(1.2);
} */

.main-container .left:hover .btn,
.main-container .right:hover .btn {
  opacity: 1;
}


 label {
        background-color: rgba(255, 255, 255, 0); /* set the opacity to 0 */
        height: 100px; /* adjust the height as needed */
        position: fixed; /* make the header fixed */
        top: 0; /* position the header at the top of the page */
        width: 100%; /* make the header width 100% */
        z-index: 999; /* set a high z-index value to make the header on top of other elements */
      }


label .menu {
  position: absolute;
  right: -100px;
  top: -100px;
  z-index: 100;
  width: 200px;
  height: 200px;
  background: #FFF;
  border-radius: 50% 50% 50% 50%;
  -webkit-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  box-shadow: 0 0 0 0 #FFF, 0 0 0 0 #FFF;
  cursor: pointer;

  
}

label .hamburger {
  position: absolute;
  top: 135px;
  left: 50px;
  width: 30px;
  height: 2px;
  background: #4285f4;
  display: block;
  -webkit-transform-origin: center;
  transform-origin: center;
  -webkit-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
}

label .hamburger:after, label .hamburger:before {
  -webkit-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  content: "";
  position: absolute;
  display: block;
  width: 50%;
  height: 50%;
  background: #4285f4;
}

label .hamburger:before { top: -10px; }

label .hamburger:after { bottom: -10px; }

label input { display: none; }

label input:checked + .menu {
  box-shadow: 0 0 0 100vw #FFF, 0 0 0 100vh #FFF;
  border-radius: 0;
  
}

label input:checked + .menu .hamburger {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  
}

label input:checked + .menu .hamburger:after {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  bottom: 0;
  
}

label input:checked + .menu .hamburger:before {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  top: 0;
  
}

label input:checked + .menu + ul { opacity: 1; }


label ul {
  z-index: 200;
  position: fixed;
  top: 20%;
  left: 80%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  opacity: 0;

  -webkit-transition: .25s 0s ease-in-out;
  transition: .25s 0s ease-in-out;
}


/* 
label a {
      margin-bottom: 1em;
  display: block;
  color: #2bde73;
  text-decoration: none;
  font-size: 20px;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  
  
} */

label h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 25px;
  font-weight: 700;
  text-align: center;
}

label h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 600;
  text-align: center;
    color: #000;
}




/* Header Ends */













@media (max-width: 700px) {
    
    body {
  font-family: "Roboto", "sans-serif";
  flex-direction: column;
  height: 100vh;
  overflow: hidden;
  margin: 0;
}

.logo {
  margin-top: 9px;
  height: 36px;
  margin-left: 9px;
}



  .main-container {
    display: flex;
    flex-direction: column;

  }
  .main-container .left,
  .main-container .right {
    width: 100vw;
    height: 50vh;
    align-items: center;
    justify-content: center;
    display: flex;
    flex: 1 5vh;
  }



  .main-container .btn {
 
    /* border: #fff solid 0.2rem; 
    width:10rem; 
    font-size: 1rem;
    font-weight: bold;
    text-transform: uppercase;
    font-weight: bold; */
    cursor: pointer;
    background: #fff;
    padding: 20px 32px;
    text-decoration: none;
    display: flex;
    margin-top: 12px;
    color: #222;
    box-shadow: 0 4px 16px -4px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: all 1000ms ease-in-out;
  }

  .main-container h1 {
    font-size: 32px;
    font-weight: 900;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .main-container p {
    display: flex;
    color : #fff;
    font-size: 14px;
    align-items: center;
    justify-content: center;
    
  }

  .main-container a {
  /*  width: 11rem;  */
    font-size: 20px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .main-container text-content {
   justify-content: center;
  }

  .main-container .left .btn,
.main-container .right .btn {
  opacity: 1;
}

  .btn {
    transform: scale(0.7);
  }

  .btn:hover {
    transform: scale(0.65);
  }



label ul {
  z-index: 200;
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  opacity: 0;

  -webkit-transition: .25s 0s ease-in-out;
  transition: .25s 0s ease-in-out;
}



  label .menu {
    position: absolute;
    right: -125px;
    top: -130px;
    

  }
  
  label .hamburger {
    position: absolute;
    top: 152px;
    left: 37px;
    width: 27px;
    height: 2px;
  }

  label .hamburger:after, label .hamburger:before {
    -webkit-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    content: "";
    position: absolute;
    display: block;
    width: 50%;
    height: 50%;
    background: #69d2e7;
  }



}



@media only screen and (max-width: 1100px) and (min-width: 701px) {



  .main-container .btn {
 
    /* border: #fff solid 0.2rem; 
    width:10rem; 
    font-size: 1rem;
    font-weight: bold;
    text-transform: uppercase;
    font-weight: bold; */
    cursor: pointer;
    background: #fff;
    padding: 20px 32px;
    text-decoration: none;
    display: flex;
    margin-top: 12px;
    color: #222;
    box-shadow: 0 4px 16px -4px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: all 1000ms ease-in-out;
  }

  .main-container h1 {
    font-size: 30px;
    font-weight: 900;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .main-container p {
    display: flex;
    font-size: 16px;
    color: #fff;
    align-items: center;
    justify-content: center;
  }

  .main-container a {
  /*  width: 11rem; */
  display: flex;
  align-items: center;
  justify-content: center;
    font-size: 20px;
    font-weight: 700;
  }

  .main-container text-content {
   display: flex;
   align-items: center;
   justify-content: center;
  }

  .main-container .left .btn,
.main-container .right .btn {
  opacity: 1;
}

  .btn {
    transform: scale(0.7);
  }

  .btn:hover {
    transform: scale(0.7);
  }
}


/* Mobile Header Starts */



/*   *, *:before, *:after 
{ box-sizing: border-box; }

html { font-size: 18px; }  */




/* Mobile Header Ends */


/* Footer */

.footer {
  position: absolute;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem;
  /* background: purple; */
  color: white;
  font-weight: 500;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.2rem;
}

/* Footer End */
