/********** Template CSS **********/

@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap');

/* 
font-family: 'Roboto', sans-serif;
*/


:root {
    --primary: #06BBCC;
    --light: #F0FBFC;
    --dark: #181d38;
    --green:#1d780c;
    --blue:#156b8b;
     --gold:#d8a505;
    --gray:#eeeeee;
}

body{
    font-family: 'Roboto', sans-serif;
}

.btn-green{background: var(--green); color: var(--light);}
.text-green {color: var(--green);}
.text-blue {color: var(--blue);}
.text-gold {color: var(--gold);}

.bg-green {background: var(--green);}
.bg-blue {background: var(--blue);}
.bg-gold {background: var(--gold);}
.bg-gray {background: var(--gray) !important;}

.layer{position: relative;}
.layer:before{ content: ''; width: 100%; height: 100%; position:absolute; top:0; left:0;z-index: 0; background:#000000b0; }

.fw-medium {
    font-weight: 600 !important;
}

.fw-semi-bold {
    font-weight: 700 !important;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 150px;
    z-index: 99;
}
.mission {box-shadow: 0 0 21px #a4d6fe;
/*    background: #fff;*/
    margin: 10px;
    padding: 30px 15px;}

.mission:hover{background: #fff}

/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-secondary {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 0px;
}


/*** Navbar ***/

.navbar{display: block !important;}
.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar-light .navbar-nav .nav-link {
    margin-right: 20px;
    padding: 10px 0;
    color: #FFFFFF;
    font-size: 14px;
    text-transform: uppercase;
    outline: none;
}

.navbar-light .navbar-nav .show>.nav-link, 
.navbar-light .navbar-nav .nav-link.active {
    color: rgb(216 165 5);
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
   color: rgb(216 165 5);
}

@media (max-width: 991.98px) {
    .navbar-light .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar-light .navbar-nav {
        border-top: 1px solid #EEEEEE;
    }
}

.footer img{width: 160px}

/*.navbar-light .navbar-brand,
.navbar-light a.btn {
    height: 150px;
}*/
/*.navbar-light .navbar-brand {
    height: 150px;
}*/


.navbar-light .navbar-brand{padding:0 0px 0 20px !important;}

/*.navbar-light .navbar-nav .nav-link {
    color: var(--dark);
    font-weight: 500;
}*/

.navbar-light.sticky-top {
    top: -100px;
    transition: .5s;
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        margin-top: 0;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .dropdown-menu.fade-down {
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        transform: rotateX(0deg);
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header carousel ***/
@media (max-width: 768px) {
    .header-carousel .owl-carousel-item {
        position: relative;
        min-height: 500px;
    }
    
    .header-carousel .owl-carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.header-carousel .owl-nav {
    position: absolute;
    top: 50%;
    right: 8%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    margin: 7px 0;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: transparent;
    border: 1px solid #FFFFFF;
    font-size: 22px;
    transition: .5s;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    background: var(--gold);
    border-color: var(--gold);
}

.page-header {
    background: linear-gradient(rgba(24, 29, 56, .7), rgba(24, 29, 56, .7)), url(../img/carousel-1.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.page-header-inner {
    background: rgba(15, 23, 43, .7);
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--light);
}


/*** Section Title ***/
.section-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
}

.section-title::before {
    position: absolute;
    content: "";
    width: calc(100% + 80px);
    height: 2px;
    top: 4px;
    left: -40px;
    background: var(--gold);
    z-index: -1;
}

.section-title::after {
    position: absolute;
    content: "";
    width: calc(100% + 120px);
    height: 2px;
    bottom: 5px;
    left: -60px;
    background: var(--gold);
    z-index: -1;
}

.section-title.text-start::before {
    width: calc(100% + 40px);
    left: 0;
}

.section-title.text-start::after {
    width: calc(100% + 60px);
    left: 0;
}


/*** Service ***/
.service-item {
    background: var(--light);
    transition: .5s;
}

.service-item:hover {
    margin-top: -10px;
    background: var(--primary);
}

.service-item * {
    transition: .5s;
}

.service-item:hover * {
    color: var(--light) !important;
}


/*** Categories & Courses ***/
.category img,
.course-item img {
    transition: .5s;
}

.category a:hover img,
.course-item:hover img {
    transform: scale(1.1);
}


/*** Team ***/

.staff{}
.team-img img {
    transition: .5s;
}

.team-img:hover img {
    transform: scale(1.1); transition: .5s;
}

.team-item {max-width:340px;margin: 40px auto; }

blockquote { 
  display: block;
  margin-top: 1em;
  margin-bottom: 1em;
  margin-left: 20px;
  padding-left:20px;
  margin-right: 20px;
  border-left: 5px solid var(--gold);
}

/*** Testimonial ***/
.testimonial-carousel::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

.testimonial-carousel::after {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

@media (min-width: 768px) {
    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 200px;
    }

}

@media (min-width: 992px) {
    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 300px;
    }
}

.testimonial-carousel .owl-item .testimonial-text,
.testimonial-carousel .owl-item.center .testimonial-text * {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-text {
    background: var(--gold) !important;
}

.testimonial-carousel .owl-item.center .testimonial-text * {
    color: #FFFFFF !important;
}

.testimonial-carousel .owl-dots {
    margin-top: 24px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    border: 1px solid #CCCCCC;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    background: var(--gold);
    border-color: var(--gold);
}


/*** Footer ***/
.footer .btn.btn-social {
    margin-right: 5px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    font-weight: normal;
    border: 1px solid #FFFFFF;
    border-radius: 35px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--gold);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 15px;
    padding: 0;
    text-align: left;
    color: #FFFFFF;
    font-size: 15px;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .footer-menu{margin: 0; padding: 0}
.footer .footer-menu li{margin: 0; padding: 0; width: 48%; float: left;}
.footer .footer-menu li a{ color:#fff;  padding-left: 15px;}
.footer .footer-menu li a:before{position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px }


.address {
    position: relative;
    padding-left: 30px;
}
.address i{position: absolute; top: 6px; left: 2px;}
/*.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .1);
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}*/




ul{margin: 0; padding: 0px;}
ul li{margin: 0; padding: 0px;display: block; margin-left: 30px;position: relative; line-height: 36px;}
ul li i{position: absolute; left: -30px; top: 10px; }

.steps-box{min-height: 250px; border:4px dotted #06BBCC !important; border-radius: 20px;}
.steps-box1{min-height: 250px; border-radius: 20px;}
/*.homebanner.position-relative{min-height: 550px;}*/


.homebanner .owl-carousel-item {max-height: 600px;}
.dropdown-item{font-size: 16px;  font-weight: 500; border-top: 1px dashed #ddd;}
.mynavbar img.logo{width: 120px}

.navbar-text-brand{text-align: center !important; }
.navbar-text-brand h2{font-size: 32px; font-family: 'Roboto', sans-serif; color: #156b8b;}
.navbar-text-brand h4{font-size: 24px; font-family: 'Roboto', sans-serif;}
.navbar-text-brand h5{font-size: 18px; font-family: 'Roboto', sans-serif; color: #d8a505;}




.menubar{background: #156b8b}

section#counter-stats {
    display: flex;
    justify-content: center;
    margin-top: 60px; color: #fff;
    background: #156b8b;
    padding: 60PX 0 ;
}

.stats {
  text-align: center;
  font-size: 35px; color: #fff;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
}
.stats h5{color: #fff}

.stats .fa {
  color: #fff;
  font-size: 60px;
}
.mainstaff{ margin:0 auto;text-align:center; }
.mainstaff img{ width:300px; border:2px solid #156b8b; }
.mainstaff h4{text-align: center; padding: 5px 10px; color: #156b8b; margin: 0;}
.mainstaff p{text-align: center; padding: 5px 10px; color: #156b8b; margin: 0;}

.Noticeboard{ overflow: hidden; height: 300px;}

.Noticeboard1{ overflow: hidden; height: 300px; background: #ddd !important}
/* =========================================
            Marquee
============================================*/
.marquee {        
    width: 100%;
    top: 360px;
    position: relative;
    box-sizing: border-box;
    animation: marquee 10s linear infinite;
    margin: 0 auto;
   
}

.marquee:hover {
    animation-play-state: paused;
}

/* Make it move! */
@keyframes marquee {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-150%);
  }
}

/*============== EMD Marquee ==========================*/
.marquee-text{border-bottom:1px solid #ddd; padding: 15px 0}
.marquee-text h5{font-size: 24px; background: #dc3545;transition: 2s all; padding: 10px !important; color: #fff; line-height: 20px; margin-right:20px;border-radius: 50%; width:70px; height:70px }
.marquee-text h5 small{font-size: 14px; font-weight: 600} 
.marquee-text h5 p{margin: 0}

.events-box { background: #e6f8ff;
    border-radius: 20px;transition: 2s all;
    border: 2px dashed #b6e1f1;
}
.events-box .team-item img {transform: scale(1.0);transition: 2s all; border-radius: 20px;}
.events-box .team-item{padding: 0px; margin: 0px;max-width: 100%; transition: 2s all;}
/*.events-box .calendar {background: var(--gold); color: #fff;transition: 2s all;}*/
.events-box:hover { background: var(--blue); border: 2px solid #b6e1f1;transition: 2s all;}
.events-box:hover .team-item img {transform: scale(1.1);transition: 2s all;}
.events-box:hover h5{ color : #fff  !important;transition: 2s all;}
.events-box:hover .calendar {background: var(--gold); color: #fff}
.events-box:hover .calendar h4{color: #fff;}

.events-box .calendar h4 {
    font-size: 18px;
    line-height: 24px;color: #fff;
}
.events-box .calendar p{color: #fff;}

.events-box .calendar{   
      margin: -70px auto 0;
    background: var(--blue);
    position: relative;
    z-index: 3;
    width: 90px;
    border-radius: 50%;transition: 2s all;
    height: 90px;
    line-height: 0;
    border: 1px dashed;
    display: flex;
    align-items: center;
    justify-content: center;}

.events-box h5{    font-size: 18px;
    text-transform: capitalize !important;
    max-height: 55px;
    width: 100%;
    height: 55px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;}

.event-text{border-bottom: 1px dashed #fff; overflow: hidden;
    padding: 5px 0;
    padding-left: 120px;
    position: relative;
    min-height: 100px;
    margin: 10px 0;}
.event-text img{width: 110px; height: 80px; float: left; position: absolute; left: 0; top: 0}
.event-text a{display: block; float: left; color: #fff;}
.event-text p{color: #fff}



.dropdown-item:hover, .dropdown-item:focus{color: #fff; text-decoration: none; background-color: #156b8b;}
.mobile-btn {
    background: #156b8b !important;
    padding: 10px;
    margin-top: 21px;
}
.mobile-btn i{color: #fff}

.first-letter{font-size: 40px; line-height: 20px; font-weight: 900; color: var(--gold);}
.iframe1{width: 100%; min-height: 1150px; border: 5px solid var(--blue);}


.photoframe img{padding: 6px; background:#fff; border-radius: 0px;}
.photoframe { background:#f5f5f5; padding:20px; overflow: hidden;}
.photoframe .team-item .team-img{  overflow: hidden; border: 5px solid #156b8b;}


.gallery{margin-bottom: 30px}

.gallery .zoom{ overflow: hidden !important;
    border: 2px solid #ddd;
    max-height: 260px;}
.gallery .zoom img {
    transition: .5s;
}

.gallery .zoom:hover img {
    transform: scale(1.1); transition: .5s;
}


/* =========================================
            Button
============================================*/

.blueBg {
   background-color: #0b8fd8!important;
    background-image: linear-gradient(90deg, #0b8fd8, #007fc5);
     right: 26px;
     top: 88%;
}
.greenBg {
    background-color: #03db0c!important;
    background-image: linear-gradient(90deg, #1ea824, #039908);
     left: 26px;
       top: 88%;

}

.intro-banner-vdo-play-btn {
    height: 60px;
    width: 60px;
    position: fixed;
  
   
    text-align: center;
    /* margin: -30px 0 0 -30px; */
    border-radius: 100px;
    z-index: 9999;
}
.intro-banner-vdo-play-btn i {
    line-height: 63px;
    font-size: 30px;
    color: #fff;
}
.intro-banner-vdo-play-btn .ripple{
    position:absolute;
    width:160px;
    height:160px;
    z-index:-1;
    left:50%;
    top:50%;
    opacity:0;
    margin:-80px 0 0 -80px;
    border-radius:100px;
    -webkit-animation:ripple 1.8s infinite;
    animation:ripple 1.8s infinite
}

@-webkit-keyframes ripple{
    0%{
        opacity:1;
        -webkit-transform:scale(0);
        transform:scale(0)
    }
    100%{
        opacity:0;
        -webkit-transform:scale(1);
        transform:scale(1)
    }
}
@keyframes ripple{
    0%{
        opacity:1;
        -webkit-transform:scale(0);
        transform:scale(0)
    }
    100%{
        opacity:0;
        -webkit-transform:scale(1);
        transform:scale(1)
    }
}
.intro-banner-vdo-play-btn .ripple:nth-child(2){
    animation-delay:.3s;
    -webkit-animation-delay:.3s
}
.intro-banner-vdo-play-btn .ripple:nth-child(3){
    animation-delay:.6s;
    -webkit-animation-delay:.6s
}



/*============== End button ==========================*/




@media (max-width: 1200px) {
 .mynavbar img.logo{width: 100px !important;}
}
@media (max-width: 991.98px) {
    .social-icon{display: none !important;}
    .navbar-light .navbar-nav .nav-link{  margin-right: 0px; text-align: center;}
    .navbar-text-brand{display: none;}
    .navbar-nav .dropdown-menu{width: 100%; text-align: center;}

}


@media (max-width: 768px) {
   
    .navbar-text-brand{display: none !important;}
    .mynavbar img.logo{width: 80px !important;}
    .navbar-light .navbar-brand, .navbar-light a.btn{padding:0 0px 0px  !important;width: 81%;  margin: 0;}
    .navbar-toggler{padding: .25rem 0.25rem}
    .team-item{width: 100%;}
    .container-mobile{padding: 0 !important;}
}
@media (max-width: 320px) {
   
    .mynavbar a  img{width: 218px !important;}
    .navbar-light .navbar-brand, .navbar-light a.btn{padding:0 0px 0px  !important;width: 81%;
    margin: 0;}
    .navbar-toggler{padding: .25rem 0.25rem}
}
