﻿@font-face {
    font-family: 'Poppins-Regular';
    src: url('../fonts/Poppins-Regular.ttf');
}
@font-face {
    font-family: 'Poppins-Medium';
    src: url('../fonts/Poppins-Medium.ttf');
}
@font-face {
    font-family: 'Poppins-SemiBold';
    src: url('../fonts/Poppins-SemiBold.ttf');
}
@font-face {
    font-family: 'LibreBaskerville-Bold';
    src: url('../fonts/LibreBaskerville-Bold.ttf');
}

body {
    width: 100%;
    height: 100%;
    font-family: 'Poppins-Regular';
    font-size:16px;
    background-color:#fff;
    line-height:28px;
	color: #000;
}
html {
    width: 100%;
    height: 100%;
}
a {
    color: #333;
    text-decoration: none;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}
a:hover,
a:focus {
    text-decoration: none;
    color:#0498CF;
    outline: none;
}
button:focus {
    outline: 0px dotted;
}

b{
	font-weight:normal;
	color:#000;
	font-family: 'Poppins-SemiBold';
	}
p{
	color:#000;
	line-height:30px;
	font-size: 16px;
	font-family: 'Poppins-Regular';
	}

h1{
    color:#393185;
    line-height:35px;
    font-size:26px;
    font-weight: normal;
    font-family: 'LibreBaskerville-Bold';
    margin-top: 0;
    margin-bottom:20px;
}
h1 small{
  font-size: 18px;
  color: #413297;
  border-left: 1px solid #ababab;
  padding-left: 21px;
  margin-left: 15px;
}
h2{
    color: #000;
    line-height:30px;
    font-size:22px;	
    font-family: 'Poppins-Medium';
	  margin-bottom: 15px;
}
h4{
    color:#413297;
    line-height:28px;
    font-size:18px;	
    font-family: 'Poppins-Medium';
}
h5{
  line-height:30px;
}

.text-justify{
	text-align: justify;
}
.row-box{
	width:100%;
	clear:both;
	display:-webkit-flex;
    display:-webkit-box;
    display:-moz-flex;
    display:-moz-box;
    display:-ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}
.d-center{
  width: 100%;
	display:-webkit-flex;
    display:-webkit-box;
    display:-moz-flex;
    display:-moz-box;
    display:-ms-flexbox;
    display: flex;
	align-items: center;
	justify-content: center;
}
.d-left {
    display: flex;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    justify-content: start;
}
.v-center {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
section, footer{
	width:100%;
	clear:both;
  display: flex;
	flex-wrap: wrap;
	}
.ml-auto{
	margin-left: auto;
}	
.padding{
	padding:50px 0;
	}
.padding-sm{
	padding:40px 0;
	}
.navbar-toggler{
	border:0;
}
.navbar-toggler span {
    width: 25px;
    height:2px;
    background:#000;
    display: block;
    -webkit-border-radius: 10px;
    border-radius: 10px;
    margin-bottom: 4px;
    -webkit-transition: all .3s;
    transition: all .3s;
}
.navbar-toggler span:nth-child(1) {
    width: 16px;
}
.navbar-toggler:hover span:nth-child(1) {
    width: 25px;
}
.navbar-toggler[aria-expanded="true"] span:nth-child(1) {
    width: 25px;
    -webkit-transform: rotate(45deg) translate(5px,5px);
    -ms-transform: rotate(45deg) translate(5px,5px);
    transform: rotate(45deg) translate(5px,5px);
}
.navbar-toggler[aria-expanded="true"] span:nth-child(2){
	opacity: 0;
}
.navbar-toggler[aria-expanded="true"] span:nth-child(3){
	-webkit-transform:rotate(-45deg) translate(4px,-4px);
	-ms-transform:rotate(-45deg) translate(4px,-4px);
	transform:rotate(-45deg) translate(4px,-4px);
}
.navbar-dark{
	background-color: #fff;
	padding: 0;
	background-color: #fff;
-webkit-box-shadow: 0px 2px 6px 0px rgba(54, 54, 54, 0.17);
-moz-box-shadow: 0px 2px 6px 0px rgba(54, 54, 54, 0.17);
box-shadow: 0px 2px 6px 0px rgba(54, 54, 54, 0.17);
	-webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}
.navbar-dark .navbar-brand {
    -webkit-transition: all 0.3s ease-in-out 0s;
    -moz-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}
.navbar-dark .navbar-brand img{
  border-radius:50%;
  border:5px solid #fff;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}
.navbar-dark .navbar-nav .nav-link {
  color:#000;
	font-size:15px;
	padding:1.4rem 1.5rem;
  border-bottom:3px solid transparent;
}
.navbar-dark .navbar-nav .nav-link:focus, .navbar-dark .navbar-nav .nav-link:hover {
    color:#0498CF;
}
.navbar-dark .navbar-nav .active > .nav-link{
	color:#0498CF;
}
.navbar-expand-lg .navbar-nav {
  align-items: center;
  margin-right: 20px;
}
.navbar-dark .navbar-nav .nav-link.btn {
  font-size: 15px;
  padding:9px 15px;
  color:#fff;
  margin-left: 10px;
}
.navbar-dark .navbar-nav .nav-link.btn:hover{
  color:#0498CF;
}

.dropdown-menu{
	min-width: 16rem;
	margin-top: 0;
  border:0;
  border-top: 1px solid #ddd;
	box-shadow:0 14px 14px 0 rgba(0, 0, 0, 0.185);
	border-top-left-radius: 0;
	border-top-right-radius: 0;
	border-radius: 0;
}
.dropdown-menu .dropdown-item {
    padding:.46rem 1.5rem;
    font-weight: normal;
    font-family: 'Poppins-Medium';
    font-size:14px;
    border: 0;
    color: #000;
    line-height:22px;
    white-space: normal;
}
.nav-link.dropdown-toggle::after{
  border-top: 0.3em solid #666;
  content:none;
}
.dropdown-menu li.dropdown::after {
  position: absolute;
  content: "›";
  right: 17px;
  top:1px;
  font-size: 19px;
  color: #333;
  border:0;
}

.dropdown-menu li.dropdown:hover::after{color:#0498CF;}
.dropdown-menu li.dropdown .dropdown-toggle::after{
content: none;
}
.navbar  li.dropdown:hover > a{color:#0498CF; border-color: #0498CF;}
.navbar ul.dropdown-menu > li.dropdown:hover > a{background: #fff; color:#0498CF;}
.dropdown-item:hover{background: #fff; color:#0498CF;}
@media only screen and (min-width:991px) {
  .navbar ul li:hover> .dropdown-menu{display:block}
  .navbar ul .dropdown-menu{position:absolute;top:100%;left:0;min-width:280px;display:none;margin:0;}
  .navbar ul .dropdown-menu li{position:relative}
  .navbar ul .dropdown-menu li:hover> .dropdown-menu{display:block}
  .navbar ul .dropdown-menu .dropdown-menu{position:absolute;top:0;left:100%;min-width:300px;display:none}
  .navbar ul .dropdown-menu .dropdown-menu li{position:relative}
  .navbar ul .dropdown-menu .dropdown-menu li:hover .dropdown-menu{display:block}
  .navbar ul .dropdown-menu .dropdown-menu .dropdown-menu{position:absolute;top:0;left:-100%;min-width:250px;display:none;z-index:1}
.mega-menu{
  position:inherit;
}
.navbar-expand-lg .navbar-nav .mega-menu .dropdown-menu{
  width:100%;
  padding:30px 0;
}
.navbar-expand-lg .navbar-nav .mega-menu .dropdown-menu li a{
  padding: 0.36rem 0;
}
.navbar-expand-lg .navbar-nav .mega-menu .dropdown-menu .dropdown-menu li a:hover{
  padding-left:8px;
}
.navbar-expand-lg .navbar-nav .mega-menu .dropdown-menu .dropdown-menu{
  position: relative;
  padding:0;
  left:0;
  display: block;
  width:100%;
  box-shadow: none;
}
.navbar-expand-lg .navbar-nav .mega-menu .dropdown-menu .dropdown-menu li{
  display: block;
  width: 100%;
  padding: 0;
}
.navbar-expand-lg .navbar-nav .mega-menu .dropdown-menu li.dropdown::after {
  content: none;
}
.navbar-expand-lg .navbar-nav .mega-menu .dropdown-menu li.dropdown .dropdown-toggle{ 
    line-height:26px;
    font-size:16px;
    font-family: 'Montserrat-SemiBold';
    color:#0498CF;
    border-bottom: 1px solid #e5e5e5;
    margin-bottom: 12px;
}

.menu-list li {
  flex: 0 0 auto;
  width: 25%;
}

}
.menu-list{
  padding-left:0;
  margin-bottom:0;
  display: flex;
 flex-wrap: wrap;
 list-style-type: none;
}
.menu-list li span{
  font-family:'Poppins-Medium';
  font-size:15px;
}
.menu-list li a img{
  margin-right:12px;
  width:26px;
  opacity:0.9;
  filter: gray; 
  -webkit-filter: grayscale(1);
  transition: all .8s ease-in-out; 
  -webkit-transition: all .8s ease-in-out; 
}
.navbar-expand-lg .navbar-nav .mega-menu .menu-list li a{
  padding:15px 0;
}
.menu-list li a:hover img{
  opacity:1;
  filter: none;
  -webkit-filter: grayscale(0);
  transform: scale(1.01);
  -webkit-transform: scale(1.01);
}
.menu-list li a:hover{
  color:#0498CF;
}
.menu-list li a img {
  -webkit-transition: all 0.35s ease-in-out;
  -moz-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}
.menu-list li a:hover img {
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -ms-transform: scale(1.2);
  -o-transform: scale(1.2);
  transform: scale(1.2);
}
.fix-nav .navbar-dark .navbar-brand img{
  width:80px;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}
.right-fixed {
	position: fixed;
  top:54%;
  right: 6px;
  z-index: 99;
}
.follo-icon {
    display: flex;
    flex-direction: column;
    align-items: end;
    background-color: #fff;
    border-radius: 50px;
    padding: 5px 2px;
    -webkit-box-shadow: 0px 2px 6px 0px rgba(54, 54, 54, 0.17);
    -moz-box-shadow: 0px 2px 6px 0px rgba(54, 54, 54, 0.17);
    box-shadow: 0px 2px 6px 0px rgba(54, 54, 54, 0.17);
}
.follo-icon a {
    background-color: #424141;
    padding:2px;
    border-radius: 50%;
    display: block;
    width:30px;
    height:30px;
    text-align: center;
    margin: 3px 5px;
	  color: #fff;
}
.follo-icon a:hover{
	transform: scale(1.2);
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -o-transform: scale(1.2);
}
.follo-icon a.facebook{
	background-color: #4868AF;
}
.follo-icon a.instagram{
	background-color: #E23367;
}
.follo-icon a.twitter{
	background-color: #1DA1F2;
}
.follo-icon a.linkedin{
	background-color: #0274B3;
}
.follo-icon a.youtube{
	background-color: #FF0000;
}
.btn-inquire {
  vertical-align: top;
  transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);
  -webkit-transform: rotate(-90deg);
  -o-transform: rotate(-90deg);
  margin: 0;
  padding:9px 19px;
  background-color:#14b63f;
  font-size: 16px;
  text-decoration: none;
  color: #fff;
  font-family: 'Poppins-Medium';
  border-radius:50px;
  position: fixed;
  right:-53px;
  top:35%;
  white-space: nowrap;
  z-index: 9;
  box-shadow:0px 2px 6px 0px rgb(54 54 54 / 17%);
}
.btn-inquire:hover{
  background-color: #333;
  color:#fff;
}
.whatsapp_btn{
  position: fixed;
  bottom:1em;
  right:8px;
  width: 55px;
  height: 55px;
  z-index: 11;
}
.whatsapp_btn .icon_logo{
  position: relative;
  z-index: 100;
  padding: 5px;
}
.whatsapp_btn .icon_logo > a > img{
  width: 100%;
}
.whatsapp_btn .circle_waves{
  border-radius: 50%;
  background-color: #3cc04e;
  width: 55px;
  height: 55px;
  position: absolute;
  opacity: 0;
  bottom: 1px;
  left: 0px;
  z-index: 99;
  animation: waves 4s infinite cubic-bezier(.36, .11, .89, .32);
}
@keyframes waves {
  from {
      transform: scale(.55, .55);
      opacity: .6;
  }
  to {
      transform: scale(1.8, 1.8);
      opacity: 0;
  }
}

.navbar-dark .navbar-brand{
    position: absolute;
    top: 0;
    padding-top: 0;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;  
}
.navbar-dark .navbar-brand img{
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;  
}

.banner{
    display: block;
    background-color: #000;
  }
  .banner img{
    opacity:0.6;
  }
  .banner-text{
    position: absolute;
    top: 0;
    z-index: 9;
    width:100%;
    color: #fff;
    bottom: 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
  }
  .banner-text::before{
    position: absolute;
    left:0;
    top:0;
    width:50%;
    height:100%;
    content:'';
    z-index:-1;
    background: rgb(0,0,0);
    background: -moz-linear-gradient(90deg, rgba(0,0,0,0.4822303921568627) 0%, rgba(0,0,0,0) 100%);
    background: -webkit-linear-gradient(90deg, rgba(0,0,0,0.4822303921568627) 0%, rgba(0,0,0,0) 100%);
    background: linear-gradient(90deg, rgba(0,0,0,0.4822303921568627) 0%, rgba(0,0,0,0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000",endColorstr="#000000",GradientType=1);
  }
  .banner-text h1{
    color:#fff;
    font-size:45px;
    line-height:55px;
  }
  .banner-text p{
    color:#fff;
    font-size: 18px;
    margin-bottom:0;
  }
  .b-text-m{
    max-width:405px;
  }
  .banner .slick-prev {
    left:30px;
    z-index:2;
  }
  .banner .slick-next {
    right:30px;
    z-index:2;
  }
  .banner .slick-prev:before, .banner .slick-next:before{
    color:#fff;
  }
  .banner .slick-slide img {
    transition: all 1s cubic-bezier(0.7, 0, 0.3, 1);
    transform: scale(1.2);
  }
  .banner .slick-active img {
    transform: scale(1);
  }
  .slick-slide .b-text-m{
    display: none;
  }
  .slick-slide.slick-active .b-text-m{
     display: block;
  }
  .delay-1s{
    -webkit-animation-delay:0.6s;
    animation-delay:0.6s;
  }
 
  .delay-1-5s{
    -webkit-animation-delay: 1.3s;
    animation-delay: 1.3s;
  }
  .slick-slide .mob-img{
    display:none;
  }
.btn-blue{
  border-radius:50px;
  background-color:#0498CF;
  color:#fff;
  padding: 9px 22px;
}
.btn-blue:hover{
  background-color:#14b63f;
  color:#fff;
}
.btn-link{
  font-size: 15px;
  text-decoration: none;
  font-weight: normal;
  color: #06B138;
} 
.v-sec{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius:20px;
  height:376px;
  overflow: hidden;
}
.why-sec .v-sec img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.v-sec span {
  width: 75px;
  height: 75px;
  position: absolute;
  top: auto;
  background-color: #fff;
  font-size: 20px;
  color: #333;
  border-radius: 50%;
  line-height: 30px;
  display: flex;
    justify-content: center;
    align-items: center;
}
.v-sec:hover span{
  background-color:#FECC00;
  color:#fff;
} 
.news-box{
  background-image: url(../images/news-bg.jpg);
  background-repeat: no-repeat;
  background-size:cover;
  position: relative;
  padding:30px;
  border-radius:10px;
  overflow: hidden;
  height:302px;
}
.news-box h2{
  color:#fff;
}
.news-box::before{
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background-color:rgba(0, 0, 0, 0.7);
  content:'';
}
.box-title{
  position: relative;
  margin-bottom:15px;
  display: flex;
  justify-content: space-between;
}
.n-list{
  list-style-type:none;
  padding-left:0;
  position: relative;
}
.n-list::before{
  position:absolute;
  top:10px;
  left:3px;
  width:1px;
  height:100%;
  background-color:#fff;
  content:'';
  opacity: 0.4;
}
.n-list li{
  color:#fff;
  padding-left:24px;
  position: relative;
  line-height:26px;
}
.n-list li b, .n-list li p{
  color:#fff;
  line-height: 24px;
}
.n-list li::before{
  position:absolute;
  top:8px;
  left: 0;
  width:8px;
  height:8px;
  background-color:#FFEA03;
  border-radius:50%;
  content:'';
}
.arrow-next{
  position: relative;
}
.arrow-next:before {
  content: 'next';
  font-family: 'swiper-icons';
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.news-box .btn-link{
   color:#fff;
}
.btn-link .arrow-next {
  padding-left:3px;
}
.btn-link .arrow-next:before{
   font-size:14px;
}
.nb{
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  border-bottom:1px solid #ddd;
  padding-bottom:10px;
  margin-bottom:10px;
}
.nb p{
  font-size:14px;
  margin-bottom:0;
  color:#333;
}
.nb h4{
  margin-bottom:0;
}
.w-box{
  background-color:#fff;
  padding:30px;
  border-radius:10px;
  -webkit-box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.11);
  box-shadow: 0px 0px 12px 0px rgb(0, 0, 0, 0.11);
}
.gray-bg{
  background-color:#F5F5F5;
}
.facilities .box{
  padding:0 15px;
  display: block;
}
.round-10{
  border-radius:10px;
}
.facilities .box h4{
  overflow: hidden;
  text-overflow: ellipsis;
  white-space:nowrap;
}
.facilities .box p{
  font-size:15px;
  color:#222;
  line-height:25px;
  overflow: hidden;
  text-overflow: ellipsis;
  height:75px;
}
.img-b{
  overflow: hidden;
  border-radius:10px;
}
.img-zoom img {
  -webkit-transition: all 0.35s ease-in-out;
  -moz-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}
.img-zoom:hover img {
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -ms-transform: scale(1.2);
  -o-transform: scale(1.2);
  transform: scale(1.2);
}
.facilities .img-b{
  height:224px;
}
.modal-lg {
  max-width: 950px;
}
#videoModal .btn-close {
  position: absolute;
  right: -34px;
  top: 0;
  color: #fff;
  background: url(../images/close.svg);
  opacity: 1;
}
.principal-desk{
  text-align: center;
}
.test-left {
  align-self: center;
  display: flex;
  margin-right:15px;
  overflow: hidden;
  width:68px;
  border-radius: 50%;

}
.test-box img {
  width:100%;
}
.test-text {
  text-align: left;
}
.virtual-t{
  border-radius:10px;
  position: relative;
  overflow: hidden;
}
.vir-text{
  position: absolute;
  bottom:0;
  left: 0;
  right:0;
  z-index: 1;
  align-items: end;
  padding:18px 30px;
}
.vir-text::after{
  content:'';
  position: absolute;
  bottom: 0;
  left: 0;
  right:0;
  width: 100%;
  height:200px;
  z-index:-1;
  background: rgb(0,0,0);
  background: -moz-linear-gradient(360deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 100%);
  background: -webkit-linear-gradient(360deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 100%);
  background: linear-gradient(360deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 100%);
}
.vir-text p{
  color:#fff;
  margin-bottom:0;
  flex: 1 0 auto;
}
.glance p{
  height:204px;
  overflow: hidden;
}
.life-sec{
  display: block;
  width:100%;
}
.life-sec .slide-arrow{
  position: absolute;
  top:-48px;
  border: 0;
  background-color: transparent;
  font-size:15px;
  color:#14B63F;
  line-height: 15px;
}
.life-sec .prev-arrow{
  right: 139px;
  border-right: 1px solid #14B63F;
  padding-right: 22px;
}
.life-sec .prev-arrow::before{
  content: 'prev';
  font-family: 'swiper-icons';
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  left: -8px;
  position: relative;
  font-size: 14px;
}
.life-sec .next-arrow{
  right:77px;
}
.life-sec .next-arrow::before{
  content: 'next';
  font-family: 'swiper-icons';
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  left:50px;
  position: relative;
  font-size: 14px;
}
.life-slide{
  position: relative;
  width:100%;
  display: block;
}
.life-slide::after{
  content:'';
  position: absolute;
  bottom: 0;
  left: 0;
  right:0;
  width: 100%;
  height:150px;
  z-index:0;
  background: rgb(0,0,0);
  background: -moz-linear-gradient(360deg, rgba(1,71,33,0.9) 0%, rgba(21,160,85,0.0) 100%);
  background: -webkit-linear-gradient(360deg, rgba(1,71,33,0.9) 0%, rgba(21,160,85,0.0) 100%);
  background: linear-gradient(360deg, rgba(1,71,33,0.9) 0%, rgba(21,160,85,0.0) 100%);
}
.life-slide h4{
  position: absolute;
  bottom: 15px;
  display: block;
  text-align: center;
  width: 100%;
  color: #fff;
  z-index:1;
}
.life-sec .slick-slide{
  padding:0 2px;
}
.life-slide-img{
  overflow: hidden;
  width:100%;
  height:260px;
}
.app-btn{
  border:1px solid rgba(255, 255, 255, 0.48);
  border-radius:8px;
  display: block;
  max-width: 215px;
  margin: 10px auto;
}
.app-btn:hover{
  background-color:#0498CF;
}
.app-btn img{
  width:100%;
}
footer {
  background-color:#393185;
  padding-top: 45px;
  position: relative;
}
footer h5 {
  color: #fff;
  font-size:15px;
  font-family:'Poppins-Medium';
}
footer ul {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 0;
}
footer ul li a {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  text-decoration: none;
  display: block;
  padding: 5px 0;
  line-height: 22px;
}
footer ul li a:hover{
  padding-left:5px;
}
.con-icon {
  margin: 18px 0;
}
.con-icon i {
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 15px;
  width:18px;
}
.con-icon p {
  width: 88%;
  margin-left: 5px;
  line-height: 26px;
  margin-bottom: 0px;
  color:rgba(255, 255, 255, 0.9);
  font-size: 14px;
}
footer p {
  color:rgba(255, 255, 255, 0.9);
  font-size: 14px;
}
footer p a, footer p b{
  color:rgba(255, 255, 255, 0.9);
}
footer p b{
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  display: block;
}
.footer-bottom {
  display: -webkit-flex;
  display: -webkit-box;
  display: -moz-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
  padding-top: 15px;
  margin-top: 45px;
  border-top: 1px solid #719AA2;
}
.f-logo{
  margin-bottom:6px;
  border-radius: 50%;
  border: 4px solid #fff;
  width: 120px;
}
.br-l {
  border-left: 1px solid rgba(255, 255, 255, 0.4);
  padding-left:40px;
}
footer a:hover{
  color:#fff;
}
.m-top{
  margin-top:75px;
}
.list-dot{
    width: 100%;
    padding-left: 0;
    list-style-type: none;
}
.list-dot li {
  font-size: 16px;
  position: relative;
  padding-left: 19px;
  line-height: 28px;
  padding-bottom:12px;
}
.list-dot li a:hover{
  color:#413297;
}
.list-dot li::after {
  position: absolute;
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color:#413297;
  top: 10px;
  left: 0;
}
.list-dot li ul li::after{
  content:none;
}
.list-dot li ul li{
  padding-left:0;
}
.list-dot li ul{
  padding-top:15px;
}
.half-list{
  display: flex;
  flex-wrap: wrap;
}
.half-list li{
  flex: 0 0 auto;
  width:50%;
}
.curr-r{
  padding-left:40px;
  border-left:1px solid #ddd;
}
.curr-l{
  padding-right:40px;
}
.rd-10{
  border-radius:10px;
}
.btn-sm{
  border: 1px solid #ddd;
  color: #06B138;
  font-size: 14px;
  border-radius: 50px;
  line-height: 15px;
  padding: 6px 14px;
}
.btn-sm:hover{
  background-color: #06B138;
  color: #fff;
  border-color:#06B138;
}
.tblbtn{
  border: 1px solid #06B138;
  color: #fff;
  background-color: #06B138;
  font-size: 14px;
  border-radius: 50px;
  line-height: 15px;
  padding:5px 14px;
}
.tblbtn:hover{
  background-color: #fff;
  color:#06B138;
  border-color:#06B138;
}
.news-list{
  padding-left:25px;
  padding-top:5px;
  padding-bottom:5px;
  position: relative;
  display: block;
  
}
.news-list::before{
  position: absolute;
  top: 0;
  left: 5px;
  content: '';
  width: 1px;
  height: 100%;
  background-color: #fff;
  opacity: 0.3;
}
.news-list b, .news-list p{
  color:#fff;
}
.news-list b{
  font-family: 'Poppins-Medium';
  font-weight: normal;
  position: relative;
}
.news-list b::before{
  position:absolute;
  top:5px;
  left:-24px;
  content:'';
  width:10px;
  height:10px;
  background-color:#FFEA03;
  border-radius: 50%;
}
.news-list p{
  font-size: 15px;
  font-family: 'Poppins-Regular';
  margin-bottom:0;
  line-height: 26px;
}
.news-marquee.slick-vertical .slick-slide{
  border:0;
}
.map-link{
  display: block;
  color:#fff;
  text-decoration: underline;
  font-family: 'Poppins-Medium';
}
.banner-inner{
  background-color: #111;
  position: relative;
  align-items: center;
}
.banner-inner img{
  opacity:0.6;
}
.banner-inner h1{
  font-size:30px;
  color:#fff;
  position: absolute;
  top: auto;
  left: 0;
  right: 0;
  margin-bottom:0;
  text-align: center;
}
.ima-box{
  width:100%;
  overflow: hidden;
  border-radius:10px;
}
.padd-2{
  padding:0 50px;
}
.bor-r{
  border-right:1px solid #B5B5B5;
}
table.table-bordered thead tr th{
  padding:.5rem 1rem;
  background-color: #F5F5F5;
}
table.table-bordered tbody tr td{
  padding:.5rem 1rem;
}
table.tbl tr th{
  background-color: #F5F5F5;
}
table.tbl tbody tr td, table.tbl tr th{
  padding:.5rem 1rem;
}
.c-green{
  color:#06B138;
}
table.cbse-tab thead tr th {
  background-color:#393185;
  color: white;
  font-size: 14px;
  font-weight: normal;
  font-family: 'Poppins-Medium';
}
.half-3{
  display: flex;
  flex-wrap: wrap;
}
.half-3 li{
  flex: 0 0 auto;
  width:33.333%;
}
.wow{
  overflow: hidden;
  border-radius:10px;
}
.wow a{
  cursor:zoom-in;
}
#gallery .wow img, .gallery .wow img{
  -webkit-transition: all 0.35s ease-in-out;
  -moz-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}
#gallery .wow a:hover img, .gallery .wow a:hover img{
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -ms-transform: scale(1.2);
  -o-transform: scale(1.2);
  transform: scale(1.2);
}
.facili-sec .box p{
  font-size:15px;
  color:#666666;
  line-height:25px;
  overflow: hidden;
  text-overflow: ellipsis;
  height:75px;
  margin-bottom:40px;
}
.box:hover h4{
  color:#0498CF;
}
.video-page .v-sec{
  height: 260px;
  overflow: hidden;
  border-radius: 12px;
  background-color: #ddd;
}
.video-page .v-sec img{
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.video-page .v-sec span {
  width: 60px;
  height: 60px;
  font-size: 18px;
}
.gallery-details .wow {
  overflow: hidden;
  border-radius:0;
  height:200px;
}
.gallery-details .wow img{
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.gallery-page .life-slide-img {
  overflow: hidden;
  width: 100%;
  height: 230px;
  margin-bottom: 22px;
}
.gallery-page .life-slide h4 {
  bottom: 8px;
  font-size: 16px;
  line-height: 23px;
  padding: 0 10px;
}
.gallery-page .life-slide-img img{
  height: 100%;
  width: 100%;
  object-fit: cover;
}
input.form-control{
  height:45px;
}
.datepicker {
  background-image: url(../images/calendar.png);
  background-position: right 12px center;
  background-repeat: no-repeat;
  padding-right: 28px;
}
.ui-datepicker {
  padding: 10px;
  background-color: #fff;
  border: 1px solid #c6c6c6;
  border-radius: 5px;
  width: 100%;
  position: relative;
  -webkit-box-shadow: 0px 0px 12px 0px rgba(86, 86, 86, 0.27);
          box-shadow: 0px 0px 12px 0px rgba(86, 86, 86, 0.27);
  width: 17em;
}
.ui-widget-header {
  border: 0px solid #ddd;
  background: #fbfbfb;
}
.ui-datepicker th {
  text-align: center;
  font-weight: normal;
  color: #666;
}
.ui-datepicker.ui-widget-content td a {
  border: 0;
  border-radius: 50px;
  height: 34px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 34px;
  color: #111;
}
.ui-datepicker td a.ui-state-active {
  background:#0498cf;
  color: #fff;
}
.ui-datepicker .ui-datepicker-prev span {
  background-image: url(../images/left-arrow.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 7px;
}
.ui-datepicker .ui-datepicker-next span {
  background-image: url(../images/right-arrow.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 7px;
}
.ui-state-hover, .ui-widget-content .ui-state-hover, .ui-widget-header .ui-state-hover, .ui-state-focus, .ui-widget-content .ui-state-focus, .ui-widget-header .ui-state-focus, .ui-button:hover, .ui-button:focus {
  border: 0px solid #ccc;
  background:#ffe165;
  font-weight: normal;
  color: #111;
}
.ui-datepicker .ui-datepicker-prev-hover {
  left: 2px;
}
.ui-datepicker .ui-datepicker-next-hover {
  right: 2px;
}
.ui-datepicker .ui-datepicker-prev-hover, .ui-datepicker .ui-datepicker-next-hover {
  top: 2px;
}
.thum4 .wow {
  height: 185px;
}
.contact-page .con-icon i {
  color:#393185;
}
.contact-page .con-icon p {
  color: #111;
}
.contact-page .follo-icon {
  flex-direction: row;
  box-shadow: none;
}
.tab-content{
  display: block;
  width:100%;
}
.tab-content>.tab-pane{
  width:100%;
  display: block;
  height:0;
  opacity:0;
  z-index:0;
  position: relative;
}
.tab-content>.active{
  height:auto;
  opacity:1;
  z-index:1;
}

.life-sec{
  position: relative;
}
.life-sec .nav-tabs{
  position: absolute;
  top: -60px;
  left: 0;
  right: 0;
  border: 0;
}
.life-slide span{
  position:absolute;
  top:30%;
  left: 0;
  right:0;
  margin:0 auto;
  width: 50px;
  height:50px;
  font-size: 16px;
  background-color:rgba(0, 0, 0, 0.55);
  color: #fff;
  border-radius: 50%;
  line-height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.life-slide:hover span{
  background-color:#FECC00;
}
.life-sec .nav-tabs .nav-link{
  color: #777;
  line-height: 28px;
  font-size: 18px;
  font-family: 'Poppins-Medium';
  background-color:transparent;
  border:0;
}
.life-sec .nav-tabs .nav-item.show .nav-link, .life-sec .nav-tabs .nav-link.active{
  color: #413297;
}
.list-video .v-sec span{
  background-color:rgba(0, 0, 0, 0.55);
  color:#fff;
}
.list-video .life-slide{
  margin:15px 0;
}
.uniform-photos .wow{
  height:400px;
}
.timings hr{
  margin:10px 0;
}
.timings .w-box{
  height:100%;
}
.right-menu .btn{
  animation: blink 1s infinite;
}
@keyframes blink {
  0% { background-color: #0498CF;}
  50% { background-color: #fe9000;}
  100% { background-color: #0498CF;}

}
.uniform .w-box {
  padding: 8px;
}

.faculties h1{
  font-size:21px;
  line-height: 31px;
}
.faculties h1 small{
  font-size: 15px;
  padding-left: 12px;
  margin-left: 9px;
}
.faculties .w-box{
  height:100%;
}
.faculties .w-box p{
  margin-bottom:0;
  font-size:15px;
  line-height:26px;
}
.thum-slide .slick-slide{
  padding:10px;
}
.thum-slide .slick-slide img {
  object-fit: cover;
  height: 100%;
  width: 100%;
}

@media (max-width:991px) {
  .navbar-dark .navbar-brand {
    position: absolute;
    padding-top: 0;
  }
  .navbar-dark .navbar-brand img{
    width: 70px;
  }
  .navbar-dark .navbar-toggler{
    margin-left: auto;
  }
  header .btn-blue {
    padding: 7px 15px;
  }
  .right-menu{
    position: absolute;
    right: 80px;
    top: 6px;
  }
  .navbar-dark {
    padding: 13px 0;
  }
  .fix-nav .navbar-dark .navbar-brand img {
    width: 50px;
  }
  .navbar-expand-lg .navbar-nav {
    align-items: start;
    margin-right: 15px;
  }
  .navbar-expand-lg .navbar-nav  .nav-item{
    width: 100%;
  }
  .navbar-dark .navbar-nav .nav-link {
    padding: 0.6rem 1rem;
  }
  .navbar-dark .navbar-collapse {
    padding-top: 27px;
  }
  .navbar-expand-lg .navbar-nav .mega-menu .menu-list li a {
    padding: 10px 0;
  }
  nav .img-fluid.rd-10{
   display:none;
  }
  nav .list-dot li {
    padding-bottom: 8px;
  } 
  .curr-l {
    padding-right: 15px;
  }
  .curr-r {
    padding-left: 15px;
    border-left: 0;
    padding-top: 12px;
  }
  .menu-list li{
    width:100%;
  }
  .menu-list li a img {
    margin-right: 10px;
    width: 20px;
  }
  .m-top {
    margin-top: 52px;
  }
  .btn-inquire{
    padding: 3px 16px;
    font-size: 15px;
  }
  .follo-icon{
    padding: 5px 0px;
  }
  .follo-icon a{
    padding: 0px;
    width: 26px;
    height: 26px;
    font-size: 14px;
  } 
}
@media (min-width:320px) and (max-width:575px) {
  .banner .slick-next {
    right:5px;
  }
  .banner .slick-prev {
    left:5px;
  }
  .banner img {
    height: 200px;
    width: 100%;
    object-fit: cover;
  }
  .banner-text p {
    font-size: 15px;
    line-height: 21px;
  }
  .banner-text h1 {
    font-size: 18px;
    line-height: 33px;
    margin-bottom: 2px;
  }
  .b-text-m {
    max-width: 365px;
    margin: 0 auto;
    padding:0 21px;
  }
  h1 {
    line-height: 33px;
    font-size: 24px;
  }
  .v-sec{
    margin-bottom:15px;
  }
  .v-sec span {
    width: 65px;
    height: 65px;
  }
  .padding {
    padding:35px 0;
  }
  .notice-box{
    margin-top:20px;
  }
  .slick-next {
    right: -7px;
  }
  .slick-prev {
    left: -7px;
  }
  .glance p {
    height: auto;
  }
  .glance .col-md-3{
    margin:15px 0;
  }

  .app-btn {
    width: auto;
    margin-bottom:10px;
  }
  .br-l {
    padding-left: 15px;
    border:0;
  }
 footer .col{
  margin:15px 0;
 }
 .footer-bottom{
  margin-top: 0;
  flex-direction: column;
 }
 .mb4{
  margin-bottom:20px;
 }
.banner-inner h1 {
  font-size: 20px;
 }

.padd-2 {
  padding: 0 18px;
} 
.bor-r {
  border-right: 0px solid #B5B5B5;
  border-bottom: 1px solid #B5B5B5;
  padding-bottom:20px;
  margin-bottom:20px;
}
h1 small {
  border-left: 0px solid #ababab;
  padding-left: 0;
  margin-left: 0;
  display: block;
}
.uniform .w-box{
  margin:15px 0;
}
.glance .col-lg-3{
  margin:20px 0;
}
.life-sec .next-arrow {
  right: 30px;
}
.life-sec .prev-arrow {
  right: 87px;
}
.why-sec .v-sec {
  height: 266px;
  overflow: hidden;
}
.rd-sm-1{
  order:1;
}
.half-3 li {
  width: 50%;
}
.life-sec {
  padding-top:60px;
}
.life-sec .slide-arrow {
  top: -104px;
}
.life-sec .nav-tabs {
  top: 0;
}
.list-video .life-slide-img {
  height: 245px;
}
.vir-text {
  padding: 8px 30px;
}
.faculties h1 small {
  padding-left: 0;
  margin-left: 0;
}
.faculties .w-box{
  text-align: center;
}
.faculties .ima-box {
  max-width: 250px;
  margin: 0 auto;
}
.faculties h1 {
  margin-top: 13px;
}
.thum-slide .wow {
  height:200px;
}

}
@media (min-width:576px) and (max-width:767px) {
  .right-menu {
    right: 190px;
  }
  .banner .slick-next {
    right:5px;
  }
  .banner .slick-prev {
    left:5px;
  }
  .banner-text p {
    font-size:16px;
    line-height:26px;
  }
  .banner-text h1 {
    font-size:22px;
    line-height:36px;
    margin-bottom:8px;
  }
  .b-text-m {
    max-width: 365px;
  }
  h1 {
    line-height: 33px;
    font-size: 24px;
  }
  .v-sec{
    margin-bottom:15px;
  }
  .v-sec span {
    width: 65px;
    height: 65px;
  }
  .padding {
    padding:35px 0;
  }
  .notice-box{
    margin-top:20px;
  }
  .slick-next {
    right:-24px;
  }
  .slick-prev {
    left:-24px;
  }
  .virtual-t {
    margin-top: 30px;
  }
  .glance p {
    height: auto;
  }
  .glance .col-md-3{
    margin:15px 0;
  }
  .app-btn {
    width: auto;
    margin-bottom:10px;
  }
  .br-l {
    padding-left: 15px;
    border:0;
  }
 footer .col{
  margin:15px 0;
 }
 .footer-bottom{
  margin-top: 0;
 }
 .life-slide-img {
  height: 237px;
}
footer .row .col:last-child{
  width:100%;
}
.mb4{
  margin-bottom:20px;
 }
 .banner-inner h1 {
  font-size:24px;
 }
 .uniform .w-box{
  margin:15px 0;
} 
.glance .col-lg-3{
  margin:20px 0;
}
.rd-sm-1{
  order:1;
}
.life-sec .nav-tabs .nav-link {
  font-size: 16px;
  padding: 11px 6px;
}
.life-sec .next-arrow {
  right: 37px;
}
.life-sec .prev-arrow {
  right: 89px;
  padding-right:18px;
}
.list-video .life-slide-img {
  height:180px;
}

}
@media (min-width:768px) and (max-width:991px) {
  .right-menu {
    right:220px;
  }
  .v-sec{
    margin-bottom:25px;
  }
  .life-slide-img {
    height: 216px;
  }
  .virtual-t {
    margin: 30px auto 0 auto;
    max-width: 90%;
  }
  footer .row .col:last-child{
    width:66%;
  }
  .glance .col-md-6{
    margin:15px 0;
  }
  .glance p {
    height: 150px;
  }
  .ima-box {
    max-width: 575px;
    margin: 0 auto;
  } 
  .mb4{
    margin-bottom:20px;
   }
  .padd-2 {
    padding: 0 20px;
  }
  .uniform .w-box{
    margin:15px 0;
  }
  .facili-sec .box h4 {
    line-height: 23px;
    font-size: 17px;
  }
  .gallery-page .life-slide-img {
    height: 180px;
  }
  .gallery-page .life-slide h4 {
    bottom: 5px;
    font-size: 14px;
    line-height: 20px;
    padding: 0 10px;
  }
  .thum4 .wow {
    height: 95px;
  }
  .col-md-6 .wow {
    max-height: 220px;
  }
  .uniform-photos .wow {
    height: 300px;
  }
  .thum-slide .wow {
    height:150px;
  } 

}
@media (min-width:992px) and (max-width:1199px) {
  .navbar-dark .navbar-nav .nav-link {
    padding:1.4rem 0.6rem;
  }
  .navbar-dark .navbar-brand img {
    width: 120px;
  }
  .right-menu .btn-blue {
    padding: 6px 16px;
  }
  .life-slide-img {
    height:206px;
  } 
  footer .row .col:last-child {
    width: 66%;
  }
  .max-500{
    max-width:500px;
  }
  .thum4 .wow {
    height: 135px;
  }
  .col-md-6 .wow {
    max-height: 280px;
  }
  .faculties h1 small {
    padding-left: 0;
    margin-left: 0;
    border: 0;
    display: block;
  }
  .thum-slide .wow {
    height:190px;
  } 

}
@media (min-width:1200px) and (max-width:1300px) {
  .life-slide-img {
    height: 244px;
  }
  .facilities .img-b {
    height: 194px;
  }
  .max-900{
    max-width:900px;
  } 
  .max-500{
    max-width:500px;
  }
  .thum4 .wow {
    height: 165px;
  }
  .navbar-dark .navbar-nav .nav-link {
    padding: 1.4rem 1.1rem;
  }
}
@media (min-width:1300px) and (max-width:1566px) {
  .container{
    max-width:1250px;
  }
  .max-900{
    max-width:900px;
  }
  .max-500{
    max-width:500px;
  }
}

@media (min-width:1600px) {
  .principal-desk {
    padding:0 35px;
  }
  .principal-desk p{
    line-height: 33px;
  }
  .max-900{
    max-width:900px;
  }
  .container{
    max-width:1400px;
  }
  .navbar-expand-lg .navbar-nav {
    margin-right: 35px;
  }
  .navbar-dark .navbar-nav .nav-link {
    padding: 1.4rem 1.8rem;
  }
  .banner img{
    width:100%;
  }
  .life-slide-img {
    height: 300px;
  }
  .video-page .v-sec {
    height: 280px;
  }
  .gallery-details .wow {
    height: 220px;
  }
  .max-500{
    max-width:500px;
  }
}


