@font-face {
    font-family: myFirstFont;
    src: url(../Poppins/Poppins-Regular.ttf);
}
@font-face {
  font-family: bold;
  src: url(../Poppins/Poppins-Bold.ttf);
}
  body{
    background-image: linear-gradient(rgba(159, 172, 223, 0.438),rgba(3, 26, 9, 0.968)),url(../image/background.jpg);
    background-position: center;
    background-size: cover;
    position: relative;
    font-family: myFirstFont;
  }


    /* Website Scrollerbar */
    body::-webkit-scrollbar {
      width: 5px !important;
      height: 5px !important;
  }
  body::-webkit-scrollbar-track {
      background: #3838387c !important;
  }
  body::-webkit-scrollbar-thumb {
      background-color: #e0120ba4 !important;
      border: 1px solid #ff020279 !important;
      border-radius: 1px !important;
  }


  .header{
    min-height: 100vh;
    width: 100%;

}
nav{
    display: flex;
    padding: 2% 6%;
    justify-content: space-between;
    align-items: center;
}
nav img{
    width: 150px;
}
.nav-links{
    flex: 1;
    text-align: right;

}
.nav-links ul li{
    list-style: none;
    display: inline-block;
    padding: 8px 12px;
    position: relative;

}
.nav-links a{
    color: #fff;
    text-decoration: none;
    font-size: 16px;

}
.nav-links ul li::after{
    content: '';
    width: 0%;
    height: 2px;
    background: #ff0000;
    display: block;
    margin: auto;
    transition: 0.5s;

}
.nav-links ul li:hover::after{
    width: 100%;
}
.icon{
  display:none;
}
.text-box{
  width: 90%;
  color: #fff;
  position:absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%,50%);
  text-align: center;
}
.text-box h1{
  font-size: 62px;
  font-weight: bold;

}
.text-box p{
  margin: 10px 0 40px;
  font-size: 14px;
  color: #fff;

}
:root{
--white: #fff;
--text-clr: #000024;
--primary: #3e2093;
--secondary: #000008;
/* --secondary: #c0c1d2; */
--input-bg: #f1f1ff;
--btn-hvr: #1a0065;
--tra: rgba(255, 255, 255, 0.959);
/* --tra: rgba(255, 255, 255, 0.863); */
--bordcolor:rgba(0, 26, 255, 0.082);
/* --bordcolor:rgba(51, 61, 148, 0.521); */
}

*{
margin: 0;
padding: 0;
box-sizing: border-box;
outline: none;
font-family: myFirstFont;
}

body{
font-size: 14px;
color: var(--text-clr);
}

.wrapper{
width: 100%;
padding: 0 10px;
margin-top: 20px;
display: flex;
justify-content: center;
}

.r_form_wrap{
width: 500px;
max-width: 100%;
}

.r_form_wrap .title{
padding: 25px;
background: var(--white);
border-radius: 3px;
margin-bottom: 20px;

}

.r_form_wrap .title p{
font-size: 25px;
text-align: center;
font-family: bold;
}

.r_form{
padding: 40px;
border-radius: 3px;
background: var(--tra);
}

.r_form .input_wrap{
width: 100%;
margin-bottom: 25px;
}

.r_form .input_wrap label{
display: block;
margin-bottom: 5px;
}

.r_form .input_wrap .input_item{
position: relative;
width: 100%;
}

.r_form .input_wrap .input_item .input{
width: 100%;
border-radius: 3px;
height: 40px;
border: 2px solid var(--input-bg);
background: var(--input-bg);
padding: 10px 20px;
padding-left: 50px;
transition: 0.5s ease;
color: var(--secondary);
border-color: var(--bordcolor);
}

.r_form .input_wrap .input_item .input:focus{
border-color: var(--primary);
}

.r_form .input_wrap .input_item .icon{
position: absolute;
top: 12px;
left: 20px;
color: var(--secondary);
font-size: 16px;
}
#icon{
position: absolute;
top: 12px;
left: 20px;
color: var(--secondary);
font-size: 16px;
}

.r_form .input_wrap .input_radio{
display: flex;
}

.r_form .input_wrap .input_radio .input_radio_item{
background: var(--input-bg);
margin-right: 25px;
padding: 20px;
border-radius: 3px;
position: relative;
width: 100px;
}

.r_form .input_wrap .input_radio .input_radio_item .radio_mark{
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
display: flex;
align-items: center;
justify-content: center;
color: var(--secondary);
border: 2px solid transparent;
border-radius: 3px;
margin: 0;
cursor: pointer;
transition: 0.5s ease;
}

.r_form .input_wrap .input_radio .input_radio_item .radio_mark .i{
margin-right: 5px;
display: inline-block;
}

.r_form .input_wrap .input_radio .input_radio_item .radio{
position: absolute;
top: 0;
left: 0;
opacity: 0;
}

.r_form .input_wrap .input_radio .input_radio_item .radio:checked ~ .radio_mark{
color: var(--primary);
border-color: var(--primary);
}

.button{
width: 100%;
border: 0;
background: var(--primary);
padding: 10px;
border-radius: 3px;
height: 40px;
color: var(--white);
cursor: pointer;
transition: 0.5s ease;
}

.button:hover{
background: var(--btn-hvr);
}

.none_div{
  height: 100px;
}
/* Course */
#course{
  border-color: var(--bordcolor);
}

  #course:focus{
  border-color: var(--primary);
  }

.r_form .input_wrap .input_item{
  position: relative;
  width: 100%;
  }

  .r_form .input_wrap .input_item .input{
  width: 100%;
  border-radius: 3px;
  height: 40px;
  border: 2px solid var(--input-bg);
  background: var(--input-bg);
  padding: 10px 20px;
  padding-left: 50px;
  transition: 0.5s ease;
  color: var(--secondary);
  border-color: var(--bordcolor);
  }



  .clear_ad{
    margin-top: 10px;
  width: 100%;
  border: 0;
  background: var(--btn-hvr);
  padding: 10px;
  border-radius: 3px;
  height: 40px;
  color: var(--white);
  cursor: pointer;
  transition: 0.5s ease;
  }

    .clear_ad:hover{
  background: var(--primary);
  }



/* Media query for responsive */

@media (max-width: 700px) {

  *{
      overflow-x: hidden;
      margin: 0;
      padding: 0;

  }

  #logo-img{
      padding: 10px;
  }

  .nav-links ul li{
      display: block;
  }
  .nav-links{
      position: absolute;
      background: #f44336;
      height: 100vh;
      width: 200px;
      top: 0%;
      right: -200px;
      text-align: left;
      z-index: 2;
      transition: 1s;
  }
  .icon{
      display: block;
      color: #fff;
      margin: 10px;
      font-size: 25px;
      cursor: pointer;
  }
  .nav-links ul{
      padding: 30px;
  }
    /* Admission form */
  .input_item{
    overflow: hidden;
  }
}
.row{
  margin-top: 5%;
  display: flex;
  justify-content: space-between;
}
#footer{
  color: #d0d0d0;
  font-size: 14px;
  background: #252525;
  font-family: 'Roboto Slab', serif;
}
#footer .footer-top{
  padding: 5px 0 30px;
  background: #303032;
  color: white;
}
#footer .footer-top .footer-contact h2{
  color: white;
  text-shadow: 1px 1px 1px black;
}
#footer .footer-top .footer-contact h5{
  font-size: 30px;
  margin:  0 0 300px 0;
  padding: 2px 0 2px 0;
  line-height: 6;
  font-weight: 700;
}
#footer .footer-top .footer-contact h6{
  font-size: 16px;
  margin: 0;
  color: white;
  line-height: 5;
  font-weight: 700;
}
#footer .footer-top h4{
  font-size: 20px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}
#footer .footer-top .footer-links{
  margin-bottom: 30px;
}
#footer .footer-top .footer-links ul{
  list-style: none;
  padding: 0;
  margin: 0;
}
#footer .footer-top .footer-links ul li{
  padding-right: 10px 0;
  display: flex;
  align-items: center;
}
#footer .footer-top .footer-links ul li:first-child{
  padding: 0;
}
#footer .footer-top .footer-links ul li a{
  color: white;
  line-height: 2;
}
#footer .footer-top .socail-links a{
  font-size: 18px;
  display: inline-block;
  color: white;
  line-height:5;
  padding-right: 4px;
  border-radius: 50px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.5s ease;
}
#footer .copyright{
  text-align: center;
  float: left; 
}
#footer .credits{
  float: right;
  text-align: center;
}
/* footer */