/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/

@import url('https://fonts.googleapis.com/css2?family=Dosis:wght@400;500;600&display=swap');
body{
   font-family: "Dosis",sans-serif;
   font-weight: 500;
   letter-spacing: 1px;
}
h1,h2,h3,h4,h5,h6{

    font-weight: 600;
    text-transform: uppercase;
   

}

a{
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
}

/*--------------------------------------------------------------
# Top Navbar
--------------------------------------------------------------*/

.top-nav a{
    text-decoration: none;
    transition: all 0.4s ease;
}

.top-nav{
    background-color: #343a40;
    font-size: 18px;
    padding-top: 5px;
    padding-bottom: 5px;
    

}
.top-nav i,
.top-nav span{
    vertical-align:middle;
    
    
}
.social-links a{
    width: 34px;
    height: 34px;
    background-color: rgba(255, 255, 255, 0.3);
    display: inline-flex;
    
    align-items: center;
    justify-content: center;
    color:#ffffff;
    font-size: 20px;
    border-radius: 100%;
}

.social-links a:hover{
    background-color:#ffffff;
    color:#1b76cc

}

.top-nav p{
    margin-bottom: 0;
    display:inline-block;
    margin-right: 16px;
    color:#ffffff;
}




section{

    padding-top: 40px;
    padding-bottom: 40px;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/

#hero{
    background-image: url(../img/uit1.jpg);
    height: 120vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
}
#hero h1{
    font-weight: 600;
    letter-spacing: 2px;
}

#hero h2{
    font-weight: 600;
    letter-spacing: 2px;
}

.overlay{
    position: relative;
    z-index: 2;

}
.overlay::after{
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(36, 44, 48, 0.6);
    z-index: -1;

}
.btn{
    padding: 14px 32 px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.btn-primary{
    background-color: #1b76cc;
    border-color: #1b76cc;
    border-radius: 100px;
}

.btn-primary:hover{
    background-color: transparent;
    border-color: #1b76cc;
}

.heading{
    font-size: 24px;
}



/*--------------------------------------------------------------
# Navigation bar
--------------------------------------------------------------*/

.navbar{
     
    background-color: #1b76cc; 
    box-shadow: 0px 6px 30px rgb(0,0,0,0.8);
    transition: all 0.4s ease;
}
.nabar img{
    image-rendering: auto;
  image-rendering: crisp-edges;
  image-rendering: pixelated;
 
    
}


.navbar{
    transition: all 0.4s ease;
}

.navbar-dark .navbar-nav .nav-link{
    color: #fff;
}

.navbar-dark .navbar-nav .nav-link.active{
    color:#10e0d5;
}






.intro .divider{

    background-color: #3a8878;
    height: 2px;
    width: 120px;
    margin: 24px auto;
}

/*--------------------------------------------------------------
# News and Events Section
--------------------------------------------------------------*/

.news{

    height: 350px;
}
/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/

.abbtn{
    color:#fff;
}
.abbtn:hover{

    color: tomato;
}

/*--------------------------------------------------------------
# Course
--------------------------------------------------------------*/

.icon-box{
    width: 54px;
    height:54px;
    background-color:#1b76cc ;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
    margin: 0 auto 24px auto;

    color:#fff;
   flex: none;

  }

.icon-box i{
    font-size: 32px;
}

.coursecard-effect{
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    padding:25px;
    transition: all 0.35s ease;

}
.coursecard-effect:hover{

    box-shadow: none;
    transform: translateY(5px);
}


.project{
    position:relative;
}



/*--------------------------------------------------------------
# Milestone
--------------------------------------------------------------*/

#milestone{
    background-image: url(../img/uit1.jpg);
    
}

/*--------------------------------------------------------------
# Counter
--------------------------------------------------------------*/
.counter .divider{
    width: 80px;
    height: 2px;
    background-color:#10e0d5 ;
    margin: 18px auto;

}
.counter .number{
    line-height: 1;
}
.course-box{
    display: flex;

}

/*--------------------------------------------------------------
# NSS and Women Study Unit
--------------------------------------------------------------*/
.card-effect{
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    background-color: #fff;
    padding:25px;
    transition: all 0.35s ease;

}
.card-effect:hover{
    box-shadow: none;
    transform: translateY(5px);

}
.iconbox{
    width: 54px;
    height:54px;
    display:flex;
    align-items: center;
    justify-content: center;
    background-color: #1b76cc;
    color:#fff;
    font-size: 32px;
    border-radius: 100px;
}

.service{
    position:relative;
    z-index:2;
    overflow:hidden;
}
.service::after{
    content:'';
    width:100%;
    height:100%;
    position: absolute;
    top:-100;
    left:0;
    background-color: #1b76cc;
    z-index:-1;
    opacity:0;
    transition: all 0.4s ease;

}



.service:hover .iconbox{
    background-color: #fff;
    color:#1b76cc;
}
.service:hover h2,
.service:hover p{
    color:#fff;
}
.service:hover button{
    background-color: #fff;
    color:#1b76cc;
}


.service:hover::after{
    opacity: 1;
    top:0;
}

#cta{
    background-color:#1b76cc ;

}
#cta .btn{
    background-color:tomato ;
    
}
#cta .btn:hover{
    background-color:rgb(192, 97, 80) ;
    
}

footer a{
    color: #fff;
    text-decoration: none;
    margin-left: 10px;
    margin-right: 10px;
}

/*--------------------------------------------------------------
# Navbar Decoration 

--------------------------------------------------------------*/
.dropdown:hover .dropdown-menu{
    display: block;
}
.navbar li a{
    color:#1b76cc;
    font-weight: 800;
}

/* Underline From Center */
.hvr-underline-from-center {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
    overflow: hidden;
}
.hvr-underline-from-center:before {
    content: "";
    position: absolute;
    z-index: -1;
    left: 50%;
    right: 50%;
    bottom: 0;
    background:rgb(238, 134, 37);
    height: 4px;
    -webkit-transition-property: left, right;
    transition-property: left, right;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}
.hvr-underline-from-center:hover:before, .hvr-underline-from-center:focus:before, .hvr-underline-from-center:active:before {
    left: 0;
    right: 0;
}
/* Shutter Out Horizontal */
.hvr-shutter-out-horizontal {
   display: inline-block;
    vertical-align: middle;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
}
.hvr-shutter-out-horizontal:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgb(238, 134, 37);
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: 50%;
    transform-origin: 50%;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}
.hvr-shutter-out-horizontal:hover, .hvr-shutter-out-horizontal:focus, .hvr-shutter-out-horizontal:active {
    color: #fff;
}
.hvr-shutter-out-horizontal:hover:before, .hvr-shutter-out-horizontal:focus:before, .hvr-shutter-out-horizontal:active:before {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
}
/* Fix bootstrap */
.dropdown-menu > li > a:hover, .dropdown-menu > li > a:focus, .dropdown-menu > li > a:active {
    background: none;
    color: #fff;
}
.navbar-default .navbar-nav > .open > a:hover, .navbar-default .navbar-nav > .open>a:focus, .navbar-default .navbar-nav > .open > a:active {
    background: none;
    color: #555;
}

  
 
/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
    padding: 20px 0;
    background-color: #f1f6fe;
    min-height: 40px;
  }
  .breadcrumbs h2 {
      
    font-size: 24px;
    font-weight: 300;
    margin: 0;
  }
  @media (max-width: 992px) {
    .breadcrumbs h2 {
      margin: 0 0 10px 0;
    }
  }
 .navpage{
     font-size: 16;
 }

  .breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 14px;
  }
  .breadcrumbs ol li + li {
    padding-left: 10px;
  }
  .breadcrumbs ol li + li::before {
    display: inline-block;
    padding-right: 10px;
    color: #6c757d;
    content: "/";
  }
  @media (max-width: 768px) {
    .breadcrumbs .d-flex {
      display: block !important;
    }
    .breadcrumbs ol {
      display: block;
    }
    .breadcrumbs ol li {
      display: inline-block;
    }
  }

  /*--------------------------------------------------------------
 Former principals 
--------------------------------------------------------------*/
.team-member img{
    width: 230px;
    height:230px;
    border-radius: 100px;
}

/*--------------------------------------------------------------
# Principal Section
--------------------------------------------------------------*/
.col-img{
    background-image: url(../img/principal.jpg);
    background-position: center;
    background-size: cover;
    min-height: 400px;

       
}

.vision i{
    font-size: 20px;
    color:#1b76cc;
}
.vision ul li{
    margin-top: 8px;
}

/*--------------------------------------------------------------
# Office Staff
--------------------------------------------------------------*/
.officestaff h5{
    text-transform: none;

}

/*--------------------------------------------------------------
# course
--------------------------------------------------------------*/
.dbtn{
    background-color: DodgerBlue;
  border: none;
  color: white;
  padding: 12px 30px;
  cursor: pointer;
  font-size: 20px;
}

.dbtn:hover {
    background-color: rgb(235, 88, 47);
  }

  /*--------------------------------------------------------------
# Faculties
--------------------------------------------------------------*/
.Faculties h5{
    text-transform: none;

}

 /*--------------------------------------------------------------
# Club
--------------------------------------------------------------*/

.display{
    font-size: 1em;
}

/*--------------------------------------------------------------
# NSS
--------------------------------------------------------------*/
.card{
    box-shadow: 0 0 5px 0 rgba(22, 22, 26, .25);
}
.col-sm{
    margin-bottom: 1em;
}

/*--------------------------------------------------------------
# News Section
--------------------------------------------------------------*/


.news span {
    background: #2066f1;
    float: left;
    color: rgb(250, 239, 239);
    padding: 9px;
    top: 1%;
    box-shadow: inset 0 -15px 30px rgba(0,0,0,0.4);
    cursor: pointer;
    font-size: 1.5em;
}

.text1{
   color: red;
   width: 100%;
    
}

