    *{
    margin: 0;
    padding: 0;
    font-family: 'Archivo Black', sans-serif;
font-family: 'Montserrat', sans-serif;
font-family: 'Ubuntu', sans-serif;
box-sizing: border-box;

}
.header{
    height: 150px;
    box-sizing: border-box;
    background-image: linear-gradient(45deg,
    rgba(255, 255, 255, 0.05),
    rgba(0, 0, 0, 0.25));
       
}
.header:hover{
    box-shadow: 0 0 20px 0px rgba(253, 60, 60, 0.2);
    transition: 0.5s;
}
nav{
    display: flex;
    padding: 1% 2%;
    justify-content: space-between;
    align-items: center;
}
nav h2{
    margin-left: 40px;
    color: red;
}
nav img{
    width: 300px;
}
.nav-links{
    flex: 1;
    text-align: right;
    margin-right: 50px;
}
.nav-links ul li{
    list-style: none;
    display: inline-block;
    padding: 30px 30px;
    position: relative;
}
.nav-links ul li a{
    text-decoration: none;
    color: #000;
    font-size: 15px;
    font-family: 'Archivo Black', sans-serif;
}
.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%;
}

/* Images Slider */

.container2 {
    width: 100%;
    height: 100vh;
    background: #222;
    display: flex;
    align-items: center;
    justify-content: center;

}
.swiper {
    width: 80%;
    height: fit-content;
}
.swiper-slide img {
    width: 100%;
}

.swiper .swiper-button-prev, .swiper .swiper-button-next {
    color: #fff;
}

.swiper .swiper-pagination-bullet-active{
     background: #fff;
}

/* slides
.image-container {
    width: 100%;
    min-height: 100vh;
    align-items: center;
    justify-content: center;
    display: flex;
    background-color: #8f9292;

}
.slide-container {
    position: relative;
    width: 1200px;
    height: 350px;
    border: 3px solid #ede6d6;
    box-shadow: 0 0 8px 2px rgba(0,0,0,0.2);
    overflow: hidden;
   

}
.slide-container .slides{
    width: 100%;
    height: calc(100% - 40px);
    position: relative;
    
    
}
.slide-container .slides img{
    width: 100%;
    height: 100%;
    position: absolute;
    object-fit: cover;
    
}

.slide-container .slides img:not(.active){
    top: 0;
    left: -100%;    
}

span.next, span.prev {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    padding: 14px;
    color: #000;
    font-size: 24px;
    font-weight: bold;
    transform: 0.5s;
    border-radius: 3px;
    user-select: none;
    cursor: pointer;
    z-index: 1;
}
span.next {
    right: 20px;
}
span.prev {
    left: 20px;
}

span.next:hover, span.prev:hover {
    background-color: #fe8641;
    opacity: 0.8;
    color: #222;
    transition: 1s;
}

.dots-container {
    position: absolute;
    bottom: 5px;
    z-index: 3;
    left: 50%;
    transform: translateX(-50%);

}
.dot{
   cursor: pointer;
}

.dots-container .dot {
    width: 15px;
    height: 15px;
    margin: 0px 2px;
    border: 3px solid #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}
.dots-container .active {
    background-color: #555;
} */

/*Whatsapp and Telegram add websites*/

.my-float{
    margin-top: 16px;
     
}
.my-float:hover {
    color: green;
}
.float {
    
    position: fixed;
    z-index: 100;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 40px;
    background-color: #25D366;
    color: #fff;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;

}
.my-float2{
    margin-top: 16px;
  }
.my-float2:hover {
    color: blue;
}
.float2 {
    
    position: fixed;
    z-index: 100;
    width: 60px;
    height: 60px;
    bottom: 90px;
    right: 40px;
    background-color: #0088cc;
    color: #fff;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;

}



@keyframes next1{
    from {
        left: 0%
    }
    to {
        left: -100%;
    }
}
@keyframes next2{
    from {
        left: 100%
    }
    to {
        left: 0%;
    }
}

@keyframes prev1{
    from {
        left: 0%
    }
    to {
        left: 100%;
    }
}
@keyframes prev2{
    from {
        left: -100%
    }
    to {
        left: 0%;
    }
}




.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;
}
.text-box p{
    font-size: 14px;
    margin: 10px 0 40px;
    color: #fff;
}
.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;
}
.hero-btn:hover{
    border: 1px solid #f44336;
    background: #f44336;
    transition: 1s;
}

nav .fa{
    display: none;
}

@media(max-width: 700px){
    .text-box h1{
        font-size: 20px;
}
.nav-links ul li{
    display: block;
}
.nav-links{
    position: fixed;
    background: #f44336;
    height: 500px;
    width: 150px;
    top: 0;
    right: -250px;
    text-align: left;
    z-index: 2;
    transition: 1s;
}
.contact-col div .fa {
    color: #f44336;
    font-size: 28px;
    margin: 10px;
    margin-right: 30px;
}

nav .fa{
    display: block;
    color: #fff;
    margin: 10px;
    font-size: 22px;
    cursor: pointer;
}
.nav-links ul{
    padding: 30px;
}
.row{
    flex-direction: column;
}

/* .image-container {
    width: 375px;
    min-height: 350px;
    align-items: center;
    justify-content: center;
    display: flex;
    background-color: #8f9292;

}
.slide-container {
    position: relative;
    width: 100%;
    height: 350px;
    border: 3px solid #ede6d6;
    box-shadow: 0 0 8px 2px rgba(0,0,0,0.2);
    overflow: hidden;
   

}
.slide-container .slides{
    width: 350px;
    height: calc(100% - 40px);
    position: relative;
    
    
}
.slide-container .slides img{
    width: 100%;
    height: 100%;
    position: absolute;
    object-fit: cover;
    
}

.slide-container .slides img:not(.active){
    top: 0;
    left: -100%;    
} */
.header img{
    width: 150px;
    height: 100px;
    margin-top: 25px;
} 
.header h2 {
    font-size: 15px;
    margin-left: 15px;
}

}

/*-----gallery-----------*/
.container-light {
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px 8%;
    
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-gap: 30px;
    
}
.gallery img {
    width: 100%;
    
}


/*----------- Course -------*/

.title-text{
    text-align: center;
    /* padding-bottom: 10px; */
}
.title-text p{
    margin: auto;
    font-size: 20px;
    color: #009688;
    font-weight: bold;
    position: relative;
    z-index: 1;
    display: inline-block;
    margin-top: 100px;
}
.title-text p::after{
    content: '';
    width: 50px;
    height: 35px;
    background: linear-gradient(#019587,#fff);
    position: absolute;
    top: -20px;
    left: 0;
    z-index: -1;
    transform: rotate(10deg);
    border-top-left-radius: 35px;
    border-bottom-right-radius: 35px;
}

.course{
    width: 90%;
    margin: auto;
    /* text-align: center; */
    
}

.sub-center {
    text-align: center;
    
}

.bottom {
    text-align: center;
    font-size: 20px;
}

.bottom span{
    color: red;
}

.course-para {
    text-align: center;
}
h1{
    font-size: 36px;
    font-weight: 600;

}

p{
    color: #284502;
    font-size: 14px;
    font-weight: 500;
    line-height: 22px;
    padding: 10px;

}
.row{
    margin-top: 5px;
    display: flex;
    justify-content: space-between;
}
.course-col{
    flex-basis: 32%;
    background: #fff3f3;
    border-radius: 10px;
    margin-top: 40px;
    padding: 20px 12px;
    box-sizing: border-box;
    transition: 0.5s;
}

.course-col h5{
    color: red;
}

.course-col .bglevel {
align-items: left;
}


h3{
    text-align: center;
    font-weight: 600;
    margin: 10px 0;
}
.course-col:hover{
    box-shadow: 0 0 20px 0px #009688;
    transform: translateY(-7px);
}
.course-col a{
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    color: red;
}
.course-col b{
    font-size: 15px;
    color: blue;
    padding-right: 10px;
}
/*-----------Campus -------------*/
.campus{
    width: 90%;
    margin: auto;
    text-align: center;
    padding-top: 20px;
}
.campus-col{
    flex-basis: 32%;
    border-radius: 10px;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
   }
   .campus-col img{
    width: 100%;
    display: block;
   }
   .layer{
    background: transparent;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transition: 0.5s;
   }
   .layer:hover{
    background: rgba(226, 0, 0, 0.7);
   }
   .layer h3{
    width: 100%;
    font-weight: 500;
    color: #fff;
    font-size: 26px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    position: absolute;
    opacity: 0;
    transition: 0.5s;
   }
   .layer:hover h3{
    bottom: 49%;
    opacity: 1;
   }



   /*------------Facilities-------------*/
   /* .facilites {
    width: 90%;
    padding: 70px 0;
    background: #efefef;
   } */
   /* .facilitypara {
    align-items: center;
    justify-content: center;
   } */

  

   .row {
    width: 80%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    margin: auto;
   }

   .facilities-col {
    flex-basis: 48%;
    text-align: center;
    border-radius: 7px;
    margin-bottom: 20px;
    color: #fff;
    position: relative;
   }

   .facilities-col img {
    width: 100%;
    border-radius: 7px;
   }

  

   .overlay{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    border-radius: 7px;
    cursor: pointer;
    background: linear-gradient(rgba(0,0,0,0.5),#009688);
    opacity: 0;
    transition: 1s;
}

.facilities-col:hover .overlay {
    opacity: 1;
    
}

.service-desc{
    width: 80%;
    position: absolute;
    bottom: 0;
    left: 50%;
    opacity: 0;
    transform: translateX(-50%);
    transition: 1s;
}
hr{
    background: #fff;
    height: 2px;
    border: 0;
    margin: 15px auto;
    width: 60%;
}
.service-desc p{
    font-size: 20px;
    color: #fff;
}
.facilities-col:hover .service-desc{
    bottom: 25%;
    opacity: 1;
}

.facility {
    /* margin: auto; */
    text-align: center;
    margin-bottom: 50px;
}

/* .facilites{
    width: 90%;
    margin: auto;
    padding-top: 20px;
    text-align: center;
}
.facilities-col{
    flex-basis: 32%;
    border-radius: 10px;
    margin-top: 40px;
    text-align: center;
    transition: 0.5s;
}
.facilities-col img{
    width: 100%;
    border-radius: 10px;
}
.facilities-col:hover{
    box-shadow: 0 0 20px 0px #009688;
    transform: translateY(-7px);
    
}


.facilities-col p{
    padding: 0;
}
.facilities-col h3{
    margin-top: 16px;
    margin-bottom: 15px;
    text-align: center;
} */

    /*------------Testimonials-------------*/  
.testimonials{
    width: 90%;
    margin: auto;
    padding-top: 20px;
    text-align: center;

}
.testimonial-col{
    flex-basis: 32%;
    border-radius: 10px;
    margin-bottom: 5%;
    text-align: left;
    background: #fff3f3;
    padding: 25px;
    cursor: pointer;
    display: flex;
   margin-top: 50px;
   transition: transform .5s;
}
.testimonial-col img{
    height: 40px;
    margin-left: 5px;
    margin-right: 30px;
    border-radius: 50%;
}
.testimonial-col p{
    padding: 0;
}
.testimonial-col h3{
    margin-top: 15px;
    text-align: left;
}
.testimonial-col .fa{
    color: #f44336;
}

.testimonial-col:hover{
    transform: translateY(-14px);
}
@media(max-width: 700px){
    .testimonial-col img{
        margin-left: 0px;
        margin-right: 15px;
        
    }
    .testimonial-col{
        margin-top: 0px;    
    }

    /*testimonial*/
    .single-service{
        flex-basis: 100%;
        margin-bottom: 30px;
    }
    .single-service p{
        font-size: 12px;
    }
    hr{
        margin: 5px auto;
    }
    .single-service:hover .service-desc{
        bottom: 25% !important;
    }
}



/*-------------Call To Action ---------*/

.cta{
    width: 90%;
    margin: 100px auto;
    background-image: linear-gradient(rgba(0,0,0,0.7),rgba(0,0,0,0.7)),url(images/broucher\ 2.jpeg);
    background-position: center;
    text-align: center;
    background-size: cover;
    border-radius: 10px;
    padding: 100px 0;
}
.cta h1{
    color: #fff;
    margin-bottom: 40px;
    padding: 0;
}

@media(max-width: 700px){
    .cta h1{
        font-size: 24px;
    }
}

/*---------Footer-------------*/
.footer{
    width: 100%;
    text-align: center;
    padding: 30px 0;
    background-color: #fff3f3;
}
.footer h4{
margin-bottom: 25px;
margin-top: 20px;
font-weight: 600;
}

.social-links{
    text-align: center;
}
.social-links .fa{
    height: 40px;
    width: 40px;
    font-size: 20px;
    line-height: 40px;
    border: 1px solid #009688;
    margin: 40px 5px 0;
    color: #009688;
    cursor: pointer;
    transition: .5s;
    }
    
#facebook{
    color: #1877F2;
    border: 1px solid #1877F2;
}

.social-links #facebook:hover{
    background: #1877F2;
    color: #fff;
    transform: translateY(-7px);
}

#youtube{
    color: #CD201F;
    border: 1px solid #CD201F;
}

.social-links #youtube:hover{
    background: #CD201F;
    color: #fff;
    transform: translateY(-7px);
}

#instagram{
    color: #E1306C;
    border: 1px solid #E1306C;
}

.social-links #instagram:hover{
    background: #E1306C;
    color: #fff;
    transform: translateY(-7px);
}


        .social-links .fa:hover{
        background: #009688;
        color: #fff;
        transform: translateY(-7px);
    }

/* .icons .fa{
    color: #f44336;
    margin: 0 13px;
    cursor: pointer;
    padding: 18px 0;
} */
.fa-heart-o{
    color: #f44336;
}

/*------------------About Us Page ----------------------*/

.sub-header{
    height: 50vh;
    width: 100%;
    background-image: linear-gradient(rgba(4,9,30,0.7),rgba(4,9,30,0.7)),url(images/background.jpg);
    background-position: center;
    color: #fff;
    text-align: center;
    background-size: cover;
}
.sub-header h1{
    margin-top: 100px;
}

.about-us{
    width: 80%;
    margin: auto;
    padding-top: 80px;
    padding-bottom: 50px;
}
.about-col{
    flex-basis: 48%;
    padding: 30px 2px;
}
.about-col img{
    width: 100%;
}
.about-col h1{
    padding-top: 0;
}
.about-col p{
    padding: 15px 0 25px;
}
.red-btn{
    border: 1px solid #f44336;
    background: transparent;
    color: #f44336;
}
.red-btn:hover{
    color: #fff;
}

.aboutpara {
    font-size: 16px;
}

/*------------blog page --------------*/
.blog-content{
    width: 80%;
    margin: auto;
    padding: 60px 0;
}
.blog-left{
    flex-basis: 33%;
    }
.blog-left img{
    width: 100%;
}
.blog-left h2{
    color: #222;
    font-weight: 600;
    margin: 30px 0;
}
.blog-left p{
    color: #999;
    padding: 0;
}
.blog-right{
    flex-basis: 47%;
}
.blog-right h3{
    background: #f44336;
    color: #fff;
    padding: 7px 0;
    font-size: 16px;
    margin-bottom: 20px;
}
.blog-right div{
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #555;
    padding: 8px;
    box-sizing: border-box;
}
.comment-box{
    border: 1px solid #ccc;
    margin: 50px 0;
    padding: 10px 20px;
}
.comment-box h3{
    text-align: left;
}
.comment-form input, .comment-form textarea{
    width: 100%;
    padding: 10px;
    margin: 15px 0;
    box-sizing: border-box;
    border: none;
    outline: none;
    background: #f0f0f0;
}
.comment-form button{
    margin: 10px 0;
}

@media(max-width: 700px){
    .sub-header h1{
        font-size: 24px;
    }
    
}

/*--------Contact Us Page------------*/
.location{
    width: 80%;
    margin: auto;
    padding: 80px 0;
}

.location iframe{
    width: 100%;
}

.contact-us{
    width: 80%;
    margin: auto;
}
.contact-col{
    flex-basis: 48%;
    margin-bottom: 30px;
}
.contact-col div{
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}
.contact-col div .fa {
    color: #f44336;
    font-size: 28px;
    margin: 10px;
    margin-right: 30px;
}
.contact-col div p{
    padding: 0;
}
.contact-col div h5{
    font-size: 20px;
    color: #555;
    font-weight: 400;
    margin-bottom: 5px;
}
.contact-col input, .contact-col textarea{
    width: 100%;
    padding: 15px;
    margin-bottom: 17px;
    outline: none;
    border: 1px solic #ccc;
    box-sizing: border-box;
}

/*-----Image Gallery------*/
h1{
    text-align: center;
    font-size: 2em;
    font-family: 'Montserrat', sans-serif;
    margin-top: 25px;
}
.grid-wrap{
    position: relative;
    margin: 0;
    padding: 5px;
}

.grid-wrap ul li{
    list-style: none;
    padding: 0;
    margin: 5px;
}
.grid-wrap ul {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(150px, fit));
    grid-auto-flow: dense;
    grid-gap: 2px;
    justify-content: center;
    margin: 0 auto;
    padding: 0;
}
.grid-wrap ul li {
    position: relative;
}
.grid-wrap ul li:nth-child(1){
    grid-row: span 2;
    grid-column: span 4;
}
.grid-wrap ul li:nth-child(2){
    grid-row: span 2;
    grid-column: span 4;
}
.grid-wrap ul li:nth-child(3){
    grid-row: span 2;
    grid-column: span 5;
}
.grid-wrap ul li:nth-child(4){
    grid-row: span 2;
    grid-column: span 6;
}
.grid-wrap ul li:nth-child(5){
    grid-row: span 2;
    grid-column: span 3;
}
.grid-wrap ul li:nth-child(6){
    grid-row: span 3;
    grid-column: span 4;
}
.grid-wrap ul li:nth-child(7){
    grid-row: span 2;
    grid-column: span 4;
}
.grid-wrap ul li:nth-child(8){
    grid-row: span 2;
    grid-column: span 5;
}
.grid-wrap ul li:nth-child(9){
    grid-row: span 3;
    grid-column: span 4;
}
.grid-wrap ul li:nth-child(10){
    grid-row: span 2;
    grid-column: span 5;
}
.grid-wrap ul li:nth-child(11){
    grid-row: span 2;
    grid-column: span 4;
}
.grid-wrap ul img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.grid-wrap ul li:hover {
    filter: opacity(0.8);
    transition: 0.2s;
    cursor: pointer;
}



















