* {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
}
.head {
    min-height: 100vh;
    width: 100%;
    background-image: linear-gradient(rgba(4,9,30,0.7),rgba(4,9,30,0.7)), url(images/Numschool.png);
    background-position: center;
    background-size: cover;
    position: relative;
}
nav {
    display: flex;
    padding: 2% 6%;
    justify-content: space-between;
    align-items: center;
}

nav image{
    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 ul li a{
    color: #fff;
    text-decoration: none;
    font-size: 13px;
}
.nav-links ul a{
    color: #fff;
    text-decoration: none;
    font-size: 13px;
}
.nav-links ul li::after{
    content: '';
    width: 0%;
    height: 2px;
    background: #3696dc;
    display: block;
    margin: auto;
    transition: 0.5s
}
.nav-links ul li:hover::after{
    width: 100%;
}
button{
    padding: 9px 25px;
    background-color:#3696dc;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease 0s;
}
button:hover{
    background-color: rgba(44, 44, 220,0.8);
}

.text-box{
    width: 90%;
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    text-align: center;
}
.text-box h1{ 
    font-size: 62px;
    animation: textbox 1s ;
    animation-duration: 2s;
  animation-direction: alternate; 
   animation-timing-function: ease-in
}


.text-box p{
    margin: 10px 0 40px;
    font-size: 14px;
    color: #fff;
    animation: textbox 1s ;
    animation-duration: 3s;
}

.text-box p h{
   text-decoration: underline;
}
@keyframes textbox{
    0%{
        transform: translate(0);
        opacity: 0;
    }
}
.hero-btn{
    display: inline-block;
    text-decoration: none;
    color: #fff;
    border: 1px solid #fff;
    padding: 12px 34px;
    font-size: 13px;
    background: transparent;
    position: relative;
    cursor: pointer;
    border-radius: 30px;
} 
.hero-btn:hover {
    border: 1px solid#3696dc;
    background: #3696dc;
    transition: 1s;
} 

nav .fa{
    display: none;
}
@media screen and (max-width: 992px) {
    .nav-links ul li {
        list-style: none;
        display: inline-block;
        padding: 8px 2px;
        position: relative;
    }
    nav {
        display: flex;
        padding: 2.5% 3.5%;
        justify-content: space-between;
        align-items: center;
    }
}

 @media(max-width:700px){
    .text-box h1{
        font-size: 20px;
    }
    .text-box p {
    font-size: xx-small;
    }
    .nav-links ul li{
        display: block;
    }
    .nav-links {
        display: none;
        position: absolute;
        background:#3696dc;
        height: 100vh;
        width: 200px;
        top: 0;
        right: -200px;
        text-align: left;
        z-index: 2;
        transition: 1s;
    }
    nav .fa{
        display: block;
        color: #fff;
        margin: 10px;
        cursor: pointer;
    }
    .nav-links ul{
        padding: 30px;
    }
    button {
        padding: 8px 2px;
        background-color: #3696dc;
        border: none;
        border-radius: 50px;
        cursor: pointer;
        transition: all 0.3s ease 0s;
    }
} 

/* ------------Search Bar ---------------- */

.container{

    width: 100%;
    min-height: 100vh;
    /* background-image: linear-gradient(rgba(4,9,30,0.7),rgba(4,9,30,0.7)),url(images/Numschool.png); */
    background-position: center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
}
.search-bar{
    width: 100%;
    max-width: 700px;
    background: rgba(255,255,255,0.2);
    display: flex;
    align-items:center;
    border-radius: 60px;
    padding: 10px 20px;
    backdrop-filter: blur(4px) saturate(180%);
}
.search-bar input{
    background: transparent;
    flex: 1;
    border: 0;
    outline: none;
    padding: 24px 20px;
    font-size: 20px;
    color: #cac7ff;
}
::placeholder{
    color: #cac7ff;
}
.search-bar button img{
    width: 25px;
}
.search-bar button{
    border: 0;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    background: #58629b;
    cursor: pointer;
    padding: 17px 0px;
}
nav .fa{
    display: none;
}
@media screen and (max-width: 992px) {
    .nav-links ul li {
        list-style: none;
        display: inline-block;
        padding: 8px 2px;
        position: relative;
    }
    nav {
        display: flex;
        padding: 2.5% 3.5%;
        justify-content: space-between;
        align-items: center;
    }
    .search-bar {
        width: 80%;
    }
}
@media(max-width: 700px){
    .nav-links ul li{
        display: block;
    }
    .nav-links {
        display: none;
        position: absolute;
        background:#3696dc;
        height: 100vh;
        width: 200px;
        top: 0;
        right: -200px;
        text-align: left;
        z-index: 2;
        transition: 1s;
    }
    nav .fa{
        display: block;
        color: #fff;
        margin: 10px;
        cursor: pointer;
    }
    .nav-links ul{
        padding: 30px;
    }
    .container {
        width: 100%;
        min-height: 60vh;
        /* background-image: linear-gradient(rgba(4,9,30,0.7),rgba(4,9,30,0.7)),url(images/Numschool.png); */
        background-position: center;
        background-size: cover;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .search-bar {
        width: fit-content;
        height: 50px;
        max-width: fit-content;
        background: rgba(255,255,255,0.2);
        display: flex;
        align-items: center;
        border-radius: 60px;
        padding: 10px 20px;
        backdrop-filter: blur(4px) saturate(180%);
    }
    .search-bar input {
        background: transparent;
        flex: 1;
        border: 0;
        outline: none;
        padding: 24px 20px;
        font-size: initial;
        color: #cac7ff;
    }
    .search-bar button {
        border: 0;
        border-radius: 50%;
        width: 30px;
        height: 30px;
        background: #58629b;
        cursor: pointer;
        padding: 9px 0px;
    }
    .search-bar button img {
        width: 15px;
    }
}

/* ---------- team ------------- */
.team{
    width: 80%;
    margin: auto;
    text-align: center;
    padding-top: 100px;
    
}

.h11{
    font-size: 36px;
    font-weight: 600;
    text-align: center;
}
.headteam{
    max-width: 1200px;
    margin: auto;
    padding: 48px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.member{
    margin: 10px;
    padding: 42px;
    max-width: 30%;
    cursor: pointer;
    transition: 0.4s ;
    box-sizing: border-box;
}
.member:hover{
    background:#ddd;
    border-radius: 12px;
}
.member img{
    width:150px ;
    height: fit-content;
    border-radius: 50%;
}
.name{
    padding: 12px;
    /* font-weight: bold; */
    font-size: 16px;
    text-transform: uppercase;
}
.social-links{
    margin: 14px;
}
.social-links a {
    display: inline-block;
    height: 30px;
    width: 30px;
    transition: -4s;
}
.social-links a:hover{
    transform: scale(1.5);
}
.social-links a i{
    color: #444;
}
@media screen and (max-width: 992px) {
    .headteam{
        max-width: 1200px;
        margin: auto;
        padding: 48px 0;
        display: inline-flex;
        flex-wrap: wrap;
        justify-content: center;
    }  
    .member{
        padding: 0px;
        margin: 16px;
        cursor: pointer;
        transition: 0.4s ;
        box-sizing: border-box;
    }
    .name{
        padding: 12px;
        /* font-weight: bold; */
        font-size: 12px;
        text-transform: uppercase;
    }
    .member img{
        width:100px ;
        height: fit-content;
        border-radius: 50%;
    }
    .social-links{
        margin: 0px;
    }    
      

  }
  @media screen and (max-width: 600px) {
    .headteam{
        max-width: 1200px;
        margin: auto;
        padding: 48px 0;
        display: inline-flex;
        flex-wrap: wrap;
        justify-content: center;
    }  
    .member{
        padding: 0px;
        margin: 16px;
        cursor: pointer;
        transition: 0.4s ;
        box-sizing: border-box;
    }
    .name{
        padding: 12px;
        /* font-weight: bold; */
        font-size: 12px;
        text-transform: uppercase;
    }
    .member img{
        width:100px ;
        height: fit-content;
        border-radius: 50%;
    }
    .social-links{
        margin: 0px;
    }
    .social-links a {
        display: inline-block;
        height: 20px;
        width: 20px;
        transition: -4s;

    }

    
      

  }

/* ---------- about us ------------- */
.aboutus{
    width: 80%;
    margin: auto;
    text-align: center;
    padding-top: 100px;
}
.abu{
    font-size: 36px;
    font-weight: 600;
    text-align: center;
    margin-top: 29px;
}
.text-box .abu .h4{
    padding-top: 20px;
}
h1{
    font-size: 36px;
    font-weight: 600;
    text-align: center;
    color:#fff
}
p{
    color: #777;
    font-size: 14px;
    font-weight: 300;
    line-height: 22px;
    padding: 10px;
    margin: 0 40px;
}
.head-1{
    min-height: 30vh;
    width: 100%;
    background-image: linear-gradient(rgba(4,9,30,0.7),rgba(4,9,30,0.7)), url(images/aboutus.jpg);
    background-position: center;
    background-size: cover;
    position: relative;
}
h4{ 
    font-size: 30px;
    text-align: center;
}
.row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  .row h1 {
    width: 100%;
    text-align: center;
    font-size: 3.75em;
    margin: 0.6em 0;
    font-weight: 600;
    color: #070024;
  }
  .column {
    padding: 1em;
  }
  .card1 {
    padding: 3.1em 1.25em;
    text-align: center;
    background: linear-gradient(0deg, #397ef6 9px, transparent 10px);
    background-repeat: no-repeat;
    background-position: 0 0.62em;
    box-shadow: 0 0 2.5em rgba(0, 0, 0, 0.15);
    border-radius: 0.5em;
    transition: 0.5s;
    cursor: pointer;
  }
  .card1 .icon {
    font-size: 2.5em;
    height: 2em;
    width: 2em;
    margin: auto;
    background-color: #397ef6;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #ffffff;
  }
  .icon1:before {
    position: absolute;
    content: "";
    height: 1.5em;
    width: 1.5em;
    border: 0.12em solid #397ef6;
    border-radius: 50%;
    transition: 0.5s;
  }
  .card1 h3 {
    font-size: 1.3em;
    margin: 1em 0 1.4em 0;
    font-weight: 600;
    letter-spacing: 0.3px;
    color: #070024;
  }
  .card1 p {
    line-height: 2em;
    color: #625a71;
  }
  .card1:hover {
    background-position: 0;
  }
  .card1:hover .icon:before {
    height: 2.25em;
    width: 2.25
  }
  .column1{
    margin: 0 15px 25px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 12),
    0 1px 2px rgba(0,0,0,24);
    background: #fff;
    border-radius: 10px;
    flex-basis: 23%;
    cursor: pointer;
    transition: 0.4s ;
    box-sizing: border-box;
    }
    @media(max-width:700px){
        .row {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-around;
            flex-direction: column;
        }
    }

    /* ----------- programs ------------ */
.programs{
    width: 100%;
    margin: auto;
    padding-top: 50px;
    padding-bottom: 50px;
    background-image: linear-gradient(rgba(4,9,30,0.7),rgba(4,9,30,0.7)),url(images/num2.png)
}

h2{
    color:#3696dc;
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 2px;
    padding-bottom: 20px;
}
.p1{
    font-size: 12px;
    line-height: 24px;
}
.container1{
    max-width: 1170px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    padding-top: 50px;

}
.column{
    margin: 0 15px 25px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 12),
    0 1px 2px rgba(0,0,0,24);
    background: #fff;
    border-radius: 10px;
    flex-basis: 33%;
    cursor: pointer;
    transition: 0.4s ;
    box-sizing: border-box;

}
.column:hover{
    background:#ddd;
    border-radius: 12px;
}

.card{
    padding: 15px 25px;
}
@media screen and (max-width: 992px) {
    .card {
        padding: 15px 25px;
        font-size: xx-small;
    }
    .programs {
        width: 100%;
        margin: auto;
        padding-top: 50px;
        background-image: linear-gradient(rgba(4,9,30,0.7),rgba(4,9,30,0.7)),url(images/num2.png);
    }
}
@media screen and (max-width: 700px) {
    .container1 {
        max-width: fit-content;
        width: 100%;
        margin: 0 auto;
        display: block;
        padding-top: 25px;
        padding-bottom: 50px;
        flex-direction: row;
    }
    .column {
        margin: 0px 25px 25px;
        box-shadow: 0 1px 3px rgb(0 0 0), 0 1px 2px rgb(0 0 0);
        background: #fff;
        border-radius: 10px;
        flex-basis: 33%;
        cursor: pointer;
        transition: 0.4s;
        box-sizing: border-box;
    }
    .card {
        padding: 15px 25px;
        font-size: xx-small;
    }
    .programs {
        width: 100%;
        margin: auto;
        padding-top: 50px;
        background-image: linear-gradient(rgba(4,9,30,0.7),rgba(4,9,30,0.7)),url(images/num2.png);
    }
}


/* ----------- facilities ------------ */
.facilities{
    width: 80%;
    margin: auto;
    text-align: center;
    padding-top: 100px;
    padding-bottom: 100px;
}
.head1 {
    min-height: 100vh;
    width: 100%;
    background-image: linear-gradient(rgba(4,9,30,0.7),rgba(4,9,30,0.7)), url(images/num3.png);
    background-position: center;
    background-size: cover;
    position: relative;
}
.fachead{
    max-width: 1200px;
    margin: auto;
    padding: 48px 0;
    display: flex;
    flex-wrap: wrap;    
    justify-content: center;
}

.pic{
    margin: 0 auto;
    padding: 42px 0;
    /* max-width: 30%; */
    cursor: pointer;
    transition: 0.4s ;
    box-sizing: border-box;
}
/* .pic img:hover{
    background-position:10px;
} */
.pic img{
    width: 100%;
    height: 367px;
    width: 550px;
    border-radius: 10px;
}
.pic1{
    margin: 0 auto;
    padding: 42px 0;
    /* max-width: 30%; */
    cursor: pointer;
    transition: 0.4s ;
    box-sizing: border-box;
}
.pic1 img{
    width: 100%;
    height: auto;
    width: 550px;
    border-radius: 10px;
}
@media screen and (max-width: 992px) {}
@media screen and (max-width: 700px) {
    .fachead {
        padding: 0px;
    }
    .pic{
        padding: 22px 0px;
    }
    .pic img {
        height: fit-content;
        width: 250px;
    }
    .pic1 img {
        height: auto;
        width: 250px;
    }
    .h11 {
        font-size: x-large;
    }
}


/* ----------- enrollment ------------ */
.enrollment{
    width: 80%;
    margin: auto;
    text-align: center;
    padding-top: 100px;
}
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins',sans-serif;
}
.container5{
  /* max-width: 700px; */
  width: 100%;
  background-color: #fff;
  padding: 25px 30px;
  border-radius: 5px;
  box-shadow: 0 5px 10px rgba(0,0,0,0.15);
}
.container5 .title5{
  font-size: 25px;
  font-weight: 500;
  position: relative;
}
.container5 .title5::before{
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 30px;
  border-radius: 5px;
  background-color: linear-gradient(135deg, #71b7e6, #9b59b6);
}
.content form .user-details{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 20px 0 12px 0;
}
form .user-details .input-box{
  margin-bottom: 15px;
  width: calc(100% / 2 - 20px);
}
form .input-box span.details{
  display: block;
  font-weight: 500;
  margin-bottom: 5px;
}
.user-details .input-box input{
  height: 45px;
  width: 100%;
  outline: none;
  font-size: 16px;
  border-radius: 5px;
  padding-left: 15px;
  border: 1px solid #ccc;
  border-bottom-width: 2px;
  transition: all 0.3s ease;
}
.user-details .input-box input:focus,
.user-details .input-box input:valid{
  border-color: #9b59b6;
}
 form .gender-details .gender-title{
  font-size: 20px;
  font-weight: 500;
 }
 form .category{
   display: flex;
   width: 80%;
   margin: 14px 0 ;
   justify-content: space-between;
 }
 form .category label{
   display: flex;
   align-items: center;
   cursor: pointer;
 }
 form .category label .dot{
  height: 18px;
  width: 18px;
  border-radius: 50%;
  margin-right: 10px;
  background: #d9d9d9;
  border: 5px solid transparent;
  transition: all 0.3s ease;
}
 #dot-1:checked ~ .category label .one,
 #dot-2:checked ~ .category label .two,
 #dot-3:checked ~ .category label .three{
   background: #9b59b6;
   border-color: #d9d9d9;
 }
 form input[type="radio"]{
   display: none;
 }

 form .button{
   height: 45px;
   margin: 35px 0
 }
 form .button input{
   height: 100%;
   width: 100%;
   border-radius: 5px;
   border: none;
   color: #fff;
   font-size: 18px;
   font-weight: 500;
   letter-spacing: 1px;
   cursor: pointer;
   transition: all 0.3s ease;
   background: linear-gradient(135deg, #71b7e6, #9b59b6);
 }
 form .button input:hover{
  /* transform: scale(0.99); */
  background: linear-gradient(-135deg, #71b7e6, #9b59b6);
  }
 @media(max-width: 584px){
 .container5{
  max-width: 100%;
}
form .user-details .input-box{
    margin-bottom: 15px;
    width: 100%;
  }
  form .category{
    width: 100%;
  }
  .content form .user-details{
    max-height: 300px;
    overflow-y: scroll;
  }
  .user-details::-webkit-scrollbar{
    width: 5px;
  }
  }
  @media(max-width: 459px){
  .container .content .category{
    flex-direction: column;
  }
}




/* ----------- contactus ------------ */
.contact{
    min-height: 100vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-image: linear-gradient(rgba(4,9,30,0.7),rgba(4,9,30,0.7)), url(images/numgrad.png);
    background-position: center;
    background-size: cover;
    position: relative;
}
.contact .content{
    text-align: center;
    max-width: 800px;
    margin: 10px;

}
.contact .content h3{
    font-size: 36px;
    font-weight: 500;
    color: #fff;
}
.contact .content p4{
    font-size: 36px;
    font-weight: 500;
    color: #fff;
}
.container2 {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
}
.container2 .contactInfo{
    width: 50%;
    display: flex;
    flex-direction: column;
    padding-left: 15px;
}
.container2 .contactInfo .box{
    position: relative;
    padding: 20px 0;
    display: flex;
}
.container2 .contactInfo .box .icon{
    min-width: 50px;
    height: 50px;
    background: #fff;
    /* justify-content: center;
    align-items: center; */
    border-radius: 50%;
    font-size: 22px;
    text-align: center;
}
.fa-solid, .fas{
    font-weight: 900;
    margin-top: 13px;
}
.fa-brands, .fab{
    font-weight: 400;
    margin-top: 13px;
}


.container2 .contactInfo .box .text{
    display: flex;
    margin-left: 20px;
    font-size: 16px;
    color: #fff;
    flex-direction: column;
    font-weight: 300;
}
.container2 .contactInfo .box .text h5{
    font-weight: 500;
    color: #00bcd4;
}
.contactForm{
    width: 40%;
    padding: 40px;
    background: #fff;
}
.contactForm h3{
    font-size: 30px;
    color: #333;
    font-weight: 500;
}
.contactForm .inputBox{
    position: relastive;
    width: 100%;
    margin-top: 10px;
}
.contactForm .inputBox input,
.contactForm .inputBox textarea{
    width: 100%;
    padding: 5px 0;
    font-size: 16px;
    margin: 10px 0;
    border: none;
    border-bottom: 2px solid #333;
    outline:none;
    resize: none;
}
.contactForm .inputBox span{
    position: unset;
    left: 0;
    padding: 5px 0;
    font-size: 16px;
    margin: 10px 0;
    pointer-events: none;
    transition: 0.5s;
    color: #666;
}
.contactForm .inputBox input:focus ~ span, 
.contactForm .inputBox input:valid ~ span,
.contactForm .inputBox textarea:focus ~ span,
.contactForm .inputBox textarea:valid ~ span{
    /* color: #391ee9; */
    font-size: 12px;
    transform: translate(-20px);
    
}
.contactForm .inputBox input[ type="submit"]{
    width: 100px;
    background: #00bcd4;
    color: #fff;
    border: none;
    cursor: pointer;
    padding: 10px;
}
@media(max-width:992px){
    .contact{
        min-height: fit-content;
        justify-content: start;
    }
    .contactForm {
        /* width: 40%; */
        padding: 40px;
        background: #fff;
        margin: 20px;
    }
    #powered {
        font-size: x-small;
    }
} 

@media(max-width:700px){
    .container2 {
        width: inherit;
        display: block;
    }
    .container2 .contactInfo {
        width: auto;
    }
    .contactForm {
        width: fit-content;
    }
    .container4 {
        width: auto;
    }
    #powered {
        color: #fff;
        font-size: 5px;
    }
    .container2 .contactInfo .box .text {
        font-size: 13px;
    }
    .contactForm .inputBox span {
        font-size: 13px;
    }    
}





/* ----------footer--------------- */
/* .footer{
    height: 344px;
    background: #2F506C;
    color: #fff;
    align-items: center;
}
.footer .footer-content {
    padding: 30px 0;
    font-size: 12px;
    min-height: 300px;
}
.containe {
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}
.row {
    margin-right: 30px;
    margin-left: 30px;
}
.foot{
    width: 25%;
}
.footer p {
    color: #dcdcdc;
  }
.footer .footer-content .foot .foot-col  {
    padding: 0 15px;
}
.foo-col {
    margin-bottom: 15px;
    box-sizing: border-box;
  }
.foot h3 {
    margin-top: 0;
    margin-bottom: 20px;
}
.foot ul {
    padding-left: 0;
  }
  .foot ul li a {
    color: #dcdcdc;
  }
  .footer .footer-content .adr {
    margin-bottom: 30px;
  }
  .col-md-12 {
    width: 100%;
  } */




  .footer_btm {
    background: linear-gradient(135deg,#0a193b 0%,#0a57a2 100%);
    border-top: 1px solid #ffffff38;
    padding: 13px 0 !important;
    text-align: center;
    clear: both;
    /* margin-top: 16px; */
    overflow: hidden;
  }
  .container4 {
    width: auto;
    margin: 0 auto;
    box-sizing: border-box;
  }
  #powered {
    color: #fff;
    float: none;
    margin-top: 2px;
    margin-right: 10px;
  }
.head-contactus {
    min-height: 100vh;
    width: 100%;
    padding-bottom: 100px;
    background-image: linear-gradient(rgba(4,9,30,0.7),rgba(4,9,30,0.7)), url(images/Numschool.png);
    background-position: center;
    background-size: cover;
    position: relative;
}