

#menu-botton{
display:none;
}

.header{
box-shadow: #000 2px 2px 5px;
 background-image: linear-gradient(rgb(0, 0, 0,0.4),rgba(0,0,0,0.4)),url(images/DSC_0455.JPG);
 width: 100%;
 height: 75%;
background-position:center;
background-size:cover;
animation:change-image 10s linear infinite;
z-index:-1;
display:flex;
justify-content:center;
align-items:center;
}

@keyframes change-image{

0%{
background-image: linear-gradient(rgb(0, 0, 0,0.4),rgba(0,0,0,0.4)),url(images/DSC_0455.JPG);
}

50%{
background-image: linear-gradient(rgb(0, 0, 0,0.4),rgba(0,0,0,0.4)),url(images/mmaa.JPG);
}

100%{
background-image: linear-gradient(rgb(0, 0, 0,0.4),rgba(0,0,0,0.4)),url(images/130.JPEG);
}


}

.text-area{
padding:40px;
padding-bottom:160px;
font-family:arial;
width:max-content;
height:max-content;
display:flex;
align-items:center;
color:#fff;
display:flex;
flex-direction:column;
font-size: 40px;
text-align:center;	
}

.text-area h5{
margin-left:5px;
margin-bottom:15px;
font-size:19px;
color:#FFF;
}

.text-area h1{
font-size:30px;
margin-bottom:20px;
color:#FFF;
}

.text-area span{
color:orange; 
font-size:40px;
animation:cut-to-full 10s infinite alternate;
background-image:linear-gradient(#FFA500,#FFA500);
-webkit-background-clip:text;
color:transparent;
background-repeat:no-repeat;
background-size:0%;
}

@keyframes cut-to-full{

0%{
background-size:0%;
}

100%{
background-size:110%;
}
}


.text-area p{
line-height:1.9;
font-size:18px;
}

.buttons{
margin-top:25px;
display:flex;
}

.btn{
display:inline-block;
padding:17px 38px;
margin-right:30px;
font-size:18px;
font-weight:bold;
background-image:linear-gradient(-45deg,#33c1cf 50%,#f89624 50%);
background-size:230%;
color:#fff;
cursor:pointer;
transition:.5s;
position:relative;
z-index:1;
border:0;
}



.btn:hover{
color:#fff;
background-size:100%;
}

.btn:hover::after{
transform:scale(0);
}

.btn:active{
transition:0.1s;
transform:translatey(10px);
}

.btttn{
color:#fff;
background-color:orange;
padding:12px 40px;
border:none;
overflow:hidden;
font-size:16px;
display:block;
margin-top:20px;
transition:0.7s;
position:relative;
z-index:20;
margin:20px auto;
}


#features{
margin-top:300px;
}

.features-row{
margin-top:65px;
}

.top-heading{
font-size:18px;
padding-bottom:10px;
}

#fea{
margin-top:-200px;
}

.row{
display:flex;
justify-content: space-between;
}

.feature-section .row{
  display:flex;
  gap:2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.features{
background-color:#F0FBFC;
font-family:arial;
padding:40px 40px;
width:320px;
transition:0.7s;
cursor:pointer;
box-shadow:2px 2px 15px  0px #626262;
}

.features i{
margin-left:40%;
font-size:50px;
padding-bottom:30px;
color:#06BBCC;
}

.features:hover i{
color:#fff;
}

.features:hover .btttn{
background-color:red;
}

.features:hover{
box-shadow:0 0 15px 5px rgba(0,0,0,0.5);
transform:translatey(-20px);
background-color:#06BBCC;
color:white;
border:none;
border-radius:10px;
}

.features:hover p{
color:#fff;
}

.features h4{
font-size:1.8rem;
font-weight:bold;
text-align:center;
margin-bottom:20px;
}

.features p{
color:grey;
text-align:center;
line-height:1.5;
font-size:1.1rem;
}

.features p a{
color:grey;
text-align:center;
}



.features:hover p a{
color:#fff;
}

#features-link{
background-color:#06BBCC;
}

.features:hover #features-link{
background-color:#fff;
color:#06BBCC;
font-weight:bold;
}

.facilities{

cursor:pointer;
width:100%; 
text-align:center;
}


.facilities h1{
font-size:35px;
margin-bottom:1px;
}

.facilities p{
font-size:18px;
margin-bottom:40px;
margin-top:15px;
}

.facilities-col{
border-radius:10px;
width:450px;
height:350px;
overflow:hidden;
text-align:center;
font-family:arial;
transition:0.5s;
}

.facilities-col img{
  margin-bottom:20px;
  height:80%;
  width:100%;
  border-radius:10px;
  transition:0.8s;
  }

.facilities-col img:hover{
transform:scale(1.1);
}

.facilities-col h2 {
font-size:25px;
margin-bottom:10px;
}

.facilities-col p{
font-size:17px
}



.grid{
  display:grid;
  }
  
  .grid-two-cols{
  grid-template-columns:1fr 1fr;
  gap:50px;
  <!--background-color:#F0FBFC;-->
  }
  
  .left-grid, .right-grid{
  display:flex;
  align-items:center;
  justify-content:center;
  }
  
   .right-grid{
  background-color:#fff;
  padding:40px;
  padding-bottom:20px;
  }
  
  .left-grid img{
  width:90%;
  height:95%;
  }
  
  .right-grid{
  padding-right:30px;
  }
  
  .right-grid button{
  margin:0px;
  position:relative;
  background-color:#eea412;
  border:3px solid #eea412;
  }
  
  .right-grid button::after{
  z-index:-1;
  content:'';
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background-color:#333;
  transform:scale(1);
  transition:.3s;
  }
  
  .right-grid button:hover::after{
  transform:scale(0);
  }
  
  .right-grid button:hover{
  color:#000;
  }
  
  .our-content h1{
  font-size:3.5rem;
  letter-spacing:2;
  font-weight:500;
  text-transform:uppercase;
  position:relative;
  width:max-content;
  margin-bottom:40px;
  }
  
  .our-content h1::before{
  content:'';
  position:absolute;
  bottom:-8;
  right:0;
  background-color:#eea412;
  width:100%;
  height:3px;
  }
  
  .our-content h1::after{
  content:'';
  position:absolute;
  bottom:-13;
  right:0;
  background-color:#eea412;
  width:13px;
  height:13px;
  border-radius:50%;

  }
  
  @keyframes right-to-left {
  0%{
  right:0;
  }
  
  100%{
  right:100%;
  }
  }
  
  .our-content p{
  margin:20px 0px;
  line-height:1.6;
  font-size:17px;
  width:90%;
  }


.campus-images{
width:25%;
height:450px;
margin:0px 10px;
border-radius:10px;
position:relative;
overflow:hidden;
cursor:pointer;
display:flex;
justify-content:center;
align-items:center;
}

.campus-images img{
border-radius:10px;
width:100%;
height:100%;
}

.layer{
font-size:25px;
background-color:transparent;
width:100%;
height: 100%;
position:absolute;
top:0;
left:0;
transition:0.8s;
}

.layer:hover{
background-color:rgba(0,176,155,0.7);
}

.layer h3{
width:100%;
font-weight:400;
color:black;
font-size:26px;
position:absolute;
bottom: 0;
left:0;
transition:0.9s;
}

.layer:hover h3{
color:#fff;
bottom:49%;
opacity:1;
transform:rotatey(360deg);
}

#heading{
background-color: #f2f1f6;
}

.main-heading{
cursor:pointer;
background-color:;
width:100%;
text-align:center;

}

.main-heading h5{
padding-bottom:10px;
}

.main-heading h1{
font-size:40px;
margin-bottom:5px;
}

.main-heading p{
font-size:20px;
margin-top:15px;
}



.course-row .row{
display:flex;
justify-content:center;
flex-wrap:wrap;
width:100%;
}

.course-main-image{
width:100%;
height:auto;
background-image:linear-gradient(90deg,rgba(132,144,225,0.5),rgba(98,189,252,.5)),url("cover.png");
background-size:cover;
background-position:center;
background-attachment:fixed;
display:flex;
justify-content:center;
align-items:center;
flex-direction:column;
color:#fff;
padding:50px 0px;
margin-bottom:50px;
}


.course-image2{
width:350px;
height:260px;
position:relative;
margin:10px;
overflow:hidden;
box-shadow:0 0 8px 5px rgba(132,144,225,0.7);
}

.course-image2 a{
padding:15px 0px;
width:200px;
background-image:linear-gradient(90deg,rgba(132,144,225),rgba(98,189,252));
color:#fff;
font-size:17px;
font-weight:bold;
}

.course-image2 h5{
margin:15px 0px;
font-size:17px;
}

.course-row .row .course-image2:hover img{
  box-shadow:0 0 15px 5px rgba(0,0,0,0.5);
  transform:scale(1.2);
  color:white;
  border:none;
  border-radius:5px;
}

.course-image2 img{
width:100%;
height:100%;
transition: .7s;
border-radius:5px;
}

.course-layer{
width:auto;
position:absolute;
top:-100%;
left:0;
background-image:linear-gradient(to right,rgba(132,144,225,0.7),rgba(98,189,252,0.7));
width:100%;
height:100%;
font-size:15px;
color:#fff;
display:flex;
flex-direction:column;
align-items:center;
justify-content:center;
transition:0.5s;
}


.course-image2:hover .course-layer{
top:0%;
}

.course-layer-1{
width:auto;
position:absolute;
top:0%;
left:-100%;
background-image:linear-gradient(to right,rgba(132,144,225,0.7),rgba(98,189,252,0.7));
width:100%;
height:100%;
font-size:15px;
color:#fff;
display:flex;
flex-direction:column;
align-items:center;
justify-content:center;
transition:0.5s;
}


.course-image2:hover .course-layer-1{
left:0%;
}


.course-layer-2{
width:auto;
position:absolute;
bottom:-100%;
left:0;
background-image:linear-gradient(to right,rgba(132,144,225,0.7),rgba(98,189,252,0.7));
width:100%;
height:100%;
font-size:15px;
color:#fff;
display:flex;
flex-direction:column;
align-items:center;
justify-content:center;
transition:0.5s;
}



.course-image2:hover .course-layer-2{
bottom:0%;
}

.course-layer-3{
width:auto;
position:absolute;
top:0;
right:-100%;
background-image:linear-gradient(to right,rgba(132,144,225,0.7),rgba(98,189,252,0.7));
width:100%;
height:100%;
font-size:15px;
color:#fff;
display:flex;
flex-direction:column;
align-items:center;
justify-content:center;
transition:0.5s;
}



.course-image2:hover .course-layer-3{
right:0%;
}






#courses{
width:100%;
height:auto;
display:flex;
align-items:center;
justify-content:center;
flex-direction:column;
background-image:linear-gradient(rgba(0,0,0,0.3),rgba(0,0,0,0.3)),url(MON2.jpeg)
background-size:100% 100%;
background-position:center;
padding-top:80px;
background-color:re
}



.container{
width:1600px;
margin:0px auto;
padding:60px 70px;

}