@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');
 
*
{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Outfit", sans-serif;
    font-weight: 600;
    font-style: normal;
}

main{
    position: relative;
}

nav
{
    display: flex;
    height: 90px;
    position: relative;
    width: 100%;
    background: #ffffff;
    justify-content: space-between;
    flex-wrap: wrap;
    padding-left: 2vw;
    padding-right: 2vw;
}

.logo
{
    display: flex;
	flex-direction: row;
	align-items: center;
}

.logo img
{
    height: 70px;
    width: auto;
}

.logo h1{
    color: #000000;
    font-size: 25px;
    font-weight: 600;       
    text-align: center;
    padding-left: 5px;
}

.logo a{
    text-decoration: none;
}

nav ul
{
    display: flex;
    flex-wrap: wrap;
    list-style: none;
}

nav ul li
{
    margin: 35px 5px;
}

nav ul li a
{
    color: #1b1b1b;
    text-decoration: none;
    font-size: 19px;
    padding: 15px;
    /* padding: 5px 8px; */
    border-radius: 5px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.dropdown-menu-1 {
    display: none;
}

.dropdown-menu-2 {
    display: none;
}

.menu-bar ul li:hover .dropdown-menu-1 {
    display: block;
    position: absolute;
    border-radius: 5px;
    margin: 0;
    padding: 2px;
    left: 68.5%;
    top: 80%;
    background-color: #ffffff;
}

.menu-bar ul li:hover .dropdown-menu-2 {
    display: block;
    position: absolute;
    border-radius: 3px;
    margin: 0;
    left: 78%;
    top: 80%;
    background-color: #ffffff;
}

.menu-bar ul li:hover .dropdown-menu-1 ul {
    display: block;
    margin: 0px;
    margin-top: 15px;
}

.menu-bar ul li:hover .dropdown-menu-1 ul li {
    width: 100%;
    margin: 0px;
    margin-bottom: 20px;
}

.menu-bar ul li:hover .dropdown-menu-2 ul {
    display: block;
    margin: 0px;
    margin-top: 25px;
}

.menu-bar ul li:hover .dropdown-menu-2 ul li {
    width: 100%;
    margin: 0px;
    margin-bottom: 25px;
}
  


nav ul li a.active
{
    color: #ee1d15;
}

nav ul li a:hover
{
    color: #fbc000;
}

nav .menu-btn i
{
    color: #000000;
    font-size: 22px;
    cursor: pointer;
    display: none;
}

input[type="checkbox"]
{
    display: none;
}

@media (max-width: 100px)
{
    nav{
        padding: 0 40px 0 50px;
    }


}

@media (max-width: 920px)
{

    nav{
        height: 70px;
        padding-left: 5px;
        padding-right: 10px;
    }
    nav .menu-btn i{
        display: block;
        margin-top: 23px;
        margin-left: 20px;
    }
    #click:checked ~ .menu-btn i:before{
        content: "\f00d";
    }
    .logo img{
        height: 50px;
        width: auto;
    }
    .logo h1
    {
        font-size: 5vw;
        font-weight: 600;       
        text-align: center;
        padding-left: 2px;
    }
    nav ul{
        position: fixed;
        top: 70px;
        left: -100%;
        background: #0f1657;
        height: 100vh;
        width: 100%;
        text-align: center;
        display: block;
        transition: all 0.3s ease;
    }
  #click:checked ~ ul{
        left: 0;
  }
  nav ul li{
        width: 100%;
        margin: 30px 0;
  }
  nav ul li a{
        width: 100%;
        margin-left: -100%;
        display: block;
        font-size: 20px;
        color: #ffffff80;
        transition: 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  }
  #click:checked ~ ul li a{
        margin-left: 0px;
  }
    nav ul li a.active{
        background: none;
        color: #0fabde;
  }

}

 .content
{
    position: absolute;
    text-align: center;
    z-index: -1;
    width: 100%;
    color: #1b1b1b;
}

 .content div
{
    font-size: 40px;
    font-weight: 700;
} 

.slider{
    width: 100%; 
    height: 42.85vw; /* height:width ratio = 9/16 = .5625  */
    max-height: 100vh;
    margin: auto;
    position: relative;
    overflow: hidden;
    
}
.slider .list{
    position: absolute;
    width: max-content;
    /* height: 100%;
    left: 0;
    top: 0; */
    display: flex;
    transition: 1s;
    width: 100vw; 
    height: 42.85vw; /* height:width ratio = 9/16 = .5625  */
    max-height: 100vh;
    margin: auto;

}
.slider .list img{
    width: 100vw;
    max-width: 100vw;
    height: 100%;
    object-fit: cover;
}
.slider .buttons{
    position: absolute;
    top: 45%;
    left: 5%;
    width: 90%;
    display: flex;
    justify-content: space-between;
}
.slider .buttons button{
    /* width: 50px;
    height: 50px;
    border-radius: 40%; */
    background-color: rgba(0, 0, 0, 0);
    color: #fff;
    border: none;
    font-size: 50px;
    font-family: monospace;
}
.slider .dots{
    position: absolute;
    bottom: 10px;
    left: 0;
    color: #fff;
    width: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
}
.slider .dots li{
    list-style: none;
    width: 10px;
    height: 10px;
    background-color: #fff;
    margin: 10px;
    border-radius: 20px;
    transition: 0.5s;
}
.slider .dots li.active{
    width: 30px;
}


.main-box{
    display: flex;
    margin-right: 5vw;
    margin-left: 5vw;
    margin-top: 45px;
    margin-bottom: 40px;
}

.img-box{
    text-align: center;
    
}

.img-box img{
    height: auto;
    width: 500px;
    border-radius: 25px;
}

.para-box{
    text-align: left;
    margin-left: 40px;
}

.para-box p{
    font-size: 22px;
    text-align: left;
}

.para-box a{
    text-decoration: none;
}

.para-box button{
    margin-top: 20px;
    display: flex;
    align-items: center;
    padding: 10px 30px;
    font-size: 20px;
    color: #ffffff;
    background-color: #0f1657;
    gap: 10px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
}

.random{
    display: grid;
    align-items: center;
}

.random-h1{
    height: 50px;
}

.random-h3{
    height: 27px;
}

.stats{
    margin-right: 5vw;
    margin-left: 5vw;
    border-radius: 25px;
    border: 4px solid #0f1657;
}

.stats-title{
    padding: 10px;
}

.stats-title h1{
    font-size: 60px;
    font-weight: 600;
    font-style: normal;
    color: #0f1657;
}

.stats-title h3{
    font-size: 30px;
    font-weight: 600;
    font-style: normal;
    color: #0f1657;
}

.stats hr{
    border: 2px solid #0f1657;
}

.vertical{
    display:grid;
    grid-template-columns: 1fr 1fr 1fr;
    column-gap: 20px;
    margin: 20px;
}

.vertical img{
    width: 120px;
    margin: 0;
    padding: 0;
}

.vertical h1{
    font-size: 50px;
    font-weight: 600;
    font-style: normal;
    bottom: 0;
}

.vertical h3{
    font-size: 27px;
    font-weight: 600;
    font-style: normal;
    top: 0;
}

.students{
    border: 4px solid #ee1d15;
    border-radius: 23px;
    display:grid;
    grid-template-columns: 1fr 2fr;
    padding: 20px;
    align-items: center;
}

.students h1{
    color: #ee1d15;
}

.students h3{
    color: #ee1d15;
}

.teachers{
    border: 4px solid #fbc000;
    padding: 20px;
    display:grid;
    grid-template-columns: 2fr 1fr;
    border-radius: 23px;
    align-items: center;
}

.teachers h1{
    color: #fbc000;
}

.teachers h3{
    color: #fbc000;
}

.ratio{
    border: 4px solid #4CC417;
    border-radius: 23px;
    display:grid;
    grid-template-columns: 1fr 1fr;
    padding-top: 20px;
    padding-bottom: 20px;
    align-items: center;
}

.ratio h1{
    color: #4CC417;
}

.ratio h3{
    color: #4CC417;
}

.difference{
    margin-right: 5vw;
    margin-left: 5vw;
    border-radius: 25px;
    margin-top: 40px;
}

.difference-table{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    column-gap: 20px;
}


.difference h1{
    font-size: 60px;
    font-weight: 600;
    font-style: normal;
    color: #0f1657;
    letter-spacing: 0.5px;
}

.difference-box{
    margin: 20px;
    border: 4px solid #0f1657;
    border-radius: 25px;
    padding: 20px;
}

.difference-box h1{
    color: #000000;
    font-weight: 600;
    font-style: normal;
    font-size: 30px;
}

.difference-box h3{
    color: #0f1657;
    font-weight: 600;
    font-style: normal;
    font-size: 20px;
    text-align: justify;
    padding-top: 10px;
}

.admission{
    margin-top: 40px;
    margin-bottom: 40px;
    padding-top: 40px;
    padding-bottom: 40px;
    background-color: #0f1657;
}

.admission h1{
    color: #ffffff;
    font-weight: 600;
    font-style: normal;
    font-size: 60px;
}

.admission h3{
    color: #0fabde;
    font-weight: 600;
    font-style: normal;
    font-size: 30px;
}

.variety{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    column-gap: 40px;
    margin: 20px;
    margin-left: 10vw;
    margin-right: 10vw;
}

.variety h1{
    color: #000000;
    font-weight: 600;
    font-style: normal;
    font-size: 30px;
}

.variety h3{
    color: #0f1657;
    font-weight: 600;
    font-style: normal;
    font-size: 20px;
}

.variety img{
    width: 120px;
    margin: 0;
    padding: 0;
}

.variety-box{
    background-color: #ffffff;
    border-radius: 23px;
    padding: 20px;
}

.admission button{
    align-items: center;
    padding: 10px 30px;
    font-size: 20px;
    background-color: #ffffff;
    color: #0f1657;
    gap: 10px;
    border: none;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
}

.variety a{
    text-decoration: none;
}

.event{
    height: auto;
    text-align: center;
    margin-bottom: 40px;
}

.event h1{
    font-size: 60px;
    font-weight: 600;
    font-style: normal;
    color: #0f1657;
}

.video-container{
    position: relative;
	padding-bottom: 45%; /* 16:9 */
	margin-top: 25px;
	height: 0;
}

.video-container iframe{
    position: absolute;
	top: 0;
	left: 10%;
	width: 80%;
	height: 100%;
}


@media only screen and (max-width: 786px) {

    .main-box{
        display: block;
        margin-right: 5vw;
        margin-left: 5vw;
        margin-top: 45px;
        margin-bottom: 40px;
    }
    
    .img-box{
        text-align: center;
    }
    
    .img-box img{
        height: auto;
        width: 90vw;
        border-radius: 10px;
    }
    
    .para-box{
        margin-left: 0px;
        justify-content: center;  
        align-items: center;  
    }
    
    .para-box p{
        font-size: 19px;
        text-align: center;
    }
    
    .para-box a{
        text-decoration: none;
        text-align: center;
    }

    .para-button{
        display: flex;  
    justify-content: center;  
    align-items: center;  
    }
    
    .para-box button{
        margin-top: 10px;
        display: flex;
        align-items: center;
        padding: 10px 30px;
        font-size: 20px;
        color: #ffffff;
        background-color: #0f1657;
        gap: 10px;
        border: none;
        border-radius: 50px;
        cursor: pointer;
    }
    
    .stats{
        margin-right: 5vw;
        margin-left: 5vw;
        border-radius: 25px;
        border: 4px solid #0f1657;
    }
    
    .stats-title{
        padding: 10px;
    }
    
    .stats-title h1{
        font-size: 40px;
        font-weight: 600;
        font-style: normal;
        color: #0f1657;
        line-height: 40px;
    }
    
    .stats-title h3{
        padding-top: 5px;
        font-size: 22px;
        font-weight: 600;
        font-style: normal;
        color: #0f1657;
    }
    
    .stats hr{
        border: 2px solid #0f1657;
    }
    
    .vertical{
        display:grid;
        grid-template-columns: 1fr;
        grid-template-rows: 1fr 1fr 1fr;
        row-gap: 10px;
        margin: 20px;
    }
    
    .vertical img{
        width: 100px;
        height: auto;
        margin: 0;
        padding: 0;
    }
    
    .vertical h1{
        font-size: 40px;
        font-weight: 600;
        font-style: normal;
        bottom: 0;
    }
    
    .vertical h3{
        font-size: 22px;
        font-weight: 600;
        font-style: normal;
        top: 0;
    }
    
    .students{
        border: 4px solid #ee1d15;
        border-radius: 23px;
        display:grid;
        grid-template-columns: 1fr 2fr;
        align-items: center;
    }
    
    .students h1{
        color: #ee1d15;
    }
    
    .students h3{
        color: #ee1d15;
    }
    
    .teachers{
        border: 4px solid #fbc000;
        display:grid;
        grid-template-columns: 1fr 21fr;
        border-radius: 23px;
        align-items: center;
    }
    
    .teachers h1{
        color: #fbc000;
    }
    
    .teachers h3{
        color: #fbc000;
    }
    
    .ratio{
        border: 4px solid #4CC417;
        border-radius: 23px;
        display:grid;
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }
    
    .ratio h1{
        color: #4CC417;
    }
    
    .ratio h3{
        color: #4CC417;
    }

    .difference{
        margin-right: 5vw;
        margin-left: 5vw;
        margin-top: 40px;
        border: 4px solid #0f1657;
        padding-top: 20px;
        padding-left: 10px;
        padding-right: 10px;
    }
    
    .difference-table{
        display: grid;
        grid-template-columns: 1fr;
        row-gap: 20px;
        margin-top: 20px;
        border-radius: 25px;
        padding-bottom: 20px;
        padding-left: 10px;
        padding-right: 10px;
    }
    
    
    .difference h1{
        font-size: 40px;
        font-weight: 600;
        font-style: normal;
        color: #0f1657;
        letter-spacing: 0.1px;
    }
    
    .difference-box{
        margin: 00px;
        border: 0px solid #0f1657;
        border-radius: 25px;
        padding: 0;
    }
    
    .difference-box h1{
        color: #000000;
        font-weight: 600;
        font-style: normal;
        font-size: 30px;
    }
    
    .difference-box h3{
        color: #0f1657;
        font-weight: 600;
        font-style: normal;
        font-size: 20px;
        padding-top: 10px;
    }

    .admission{
        margin-top: 20px;
        margin-bottom: 20px;
        padding-top: 20px;
        padding-bottom: 20px;
        background-color: #0f1657;
    }
    
    .admission h1{
        color: #ffffff;
        font-weight: 600;
        font-style: normal;
        font-size: 40px;
    }
    
    .admission h3{
        color: #0fabde;
        font-weight: 600;
        font-style: normal;
        font-size: 22px;
    }

    .variety{
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: 1fr 1fr 1fr;
        row-gap: 20px;
        margin-top: 20px;
        margin-bottom: 20px;
        margin-left: 5vw;
        margin-right: 5vw;
    }
    
    .variety h1{
        color: #000000;
        font-weight: 600;
        font-style: normal;
        font-size: 30px;
    }
    
    .variety h3{
        color: #0f1657;
        font-weight: 600;
        font-style: normal;
        font-size: 20px;
    }
    
    .variety img{
        width: 100px;
        margin: 0;
        padding: 0;
    }
    
    .variety-box{
        background-color: #ffffff;
        border-radius: 23px;
        padding: 20px;
    }
    
    .admission button{
        align-items: center;
        padding: 10px 30px;
        font-size: 20px;
        background-color: #ffffff;
        color: #0f1657;
        gap: 10px;
        border: none;
        font-weight: 700;
        border-radius: 50px;
        cursor: pointer;
    }

    .event{
        height: auto;
        text-align: center;
        padding-bottom: 20px;
    }
    
    .event h1{
        font-size: 40px;
        font-weight: 600;
        font-style: normal;
        color: #0f1657;
    }
    
    .video-container{
        position: relative;
        padding-bottom: 56.25%; /* 16:9 */
        margin-top: 25px;
        height: 0;
    }
    
    .video-container iframe{
        position: absolute;
        top: 0;
        left: 5%;
        width: 90%;
        height: 90%;
    }

}

.footer{
    background: #0f1657;
	width: 100%;
	text-align: left;
	padding-top: 40px;
    padding-bottom: 40px;
}

  .footer-left,
  .footer-center,
  .footer-right{
	display: inline-block;
	vertical-align: top;
}

/* Footer left */

  .footer-left{
	width: 45%;
    padding-left: 25px;
}

/* The company logo */

    .footer img{
        height: 80px;
        width: auto;
}

    .footer h1{
      margin: 5px;
	  color: #ffffff;
      font-size: 25px;
      font-weight: 600;       
      text-align: center;
}

/* Footer links */

  .footer-links{
	color:  #ffffff;
	padding: 0;
}

  .footer-links a{
	display:inline-block;
	line-height: 1;
    padding: 0;
    font-size: 20px;
    font-weight:600;
	text-decoration: none;
	color:  inherit;
}


/* Footer Center */

  .footer-center{
	width: 28%;
}

  .footer-center i{
	background-color:  #ffffff;
	color: #0f1657;
	font-size: 25px;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	text-align: center;
	line-height: 42px;
	vertical-align: middle;
}

  .footer-center i.fa-envelope{
	font-size: 17px;
	line-height: 38px;
}

  .footer-center p{
	display: inline-block;
	color: #ffffff;
    font-size:18px;
    font-weight:400;
	vertical-align: middle;
	margin: 5px;;
}

  .footer-center p span{
	display:block;
	font-weight: normal;
	font-size:18px;
	line-height:2;
}

  .footer-center p a{
    font-size:18px;
	color:  #00ade6;
	text-decoration: none;;
}

  .footer-links .link-1:before {
  content: none;
}

/* Footer Right */

  .footer-right{
	width: 23%;
}

  .footer-company-about{
	line-height: 20px;
	color:  #cecece;
	font-size: 18px;
	font-weight: normal;
	margin: 0;
}

  .footer-company-about span{
	display: block;
	color:  #ffffff;
	font-size: 20px;
	font-weight: 600;
	margin-bottom: 20px;
}

@media (max-width: 880px) {

    .footer{
        background: #0f1657;
        width: 100%;
        text-align: left;
        padding-top: 20px;
        padding-bottom: 20px;
        padding-left: 5vw;
        padding-right: 5vw;
    }
    
      .footer-left,
      .footer-center,
      .footer-right{
        display: inline-block;
        vertical-align: top;
    }
    
    /* Footer left */
    
      .footer-left{
        width: 45%;
        padding: 0;
    }
    
    /* The company logo */
    
        .footer img{
            height: 60px;
            width: auto;
    }
    
        .footer h1{
          margin: 5px;
          color: #ffffff;
          font-size: 25px;
          font-weight: 600;       
          text-align: center;
    }
    
    /* Footer links */
    
      .footer-links{
        color:  #ffffff;
        padding: 0;
    }
    
      .footer-links a{
        display:inline-block;
        line-height: 1;
        padding: 0;
        font-size: 20px;
        font-weight:600;
        text-decoration: none;
        color:  inherit;
    }
    
    
    /* Footer Center */
    
      .footer-center{
        width: 28%;
        padding-bottom: 10px;
        align-items: start;
    }

    .contact-box{
        width: 100%;
        align-items: start;
    }
    
      .footer-center i{
        background-color:  #ffffff;
        color: #0f1657;
        font-size: 25px;
        width: 38px;
        height: 38px;
        border-radius: 50%;
        text-align: center;
        line-height: 42px;
        vertical-align: left;
    }
    
      .footer-center i.fa-envelope{
        font-size: 17px;
        line-height: 38px;
    }
    
      .footer-center p{
        display: inline-block;
        color: #ffffff;
        font-size:18px;
        font-weight:400;
        vertical-align: middle;
        margin: 5px;
    }
    
      .footer-center p span{
        display:block;
        font-weight: normal;
        font-size:18px;
        line-height:1;
    }
    
      .footer-center p a{
        font-size:18px;
        color:  #00ade6;
        text-decoration: none;;
    }
    
      .footer-links .link-1:before {
      content: none;
    }
    
    /* Footer Right */
    
      .footer-right{
        width: 23%;
    }
    
      .footer-company-about{
        line-height: 20px;
        color:  #cecece;
        font-size: 18px;
        font-weight: normal;
        margin: 0;
    }
    
      .footer-company-about span{
        display: block;
        color:  #ffffff;
        font-size: 20px;
        font-weight: 600;
        margin-bottom: 20px;
    }

	  .footer-left,
	  .footer-center,
	  .footer-right{
		display: block;
		width: 100%;
		margin-bottom: 20px;
	}

	  .footer-center i{
		margin-left: 0;
	}

}
