﻿@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-SemiBold.woff2') format('woff2'),
      url('../fonts/Poppins-SemiBold.woff') format('woff');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-Light.woff2') format('woff2'),
      url('../fonts/Poppins-Light.woff') format('woff');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-Regular.woff2') format('woff2'),
      url('../fonts/Poppins-Regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-Medium.woff2') format('woff2'),
      url('../fonts/Poppins-Medium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
:root{
  --primary-font:'Poppins', sans-serif;
  --black:#111;
  --gray:#666;
  --red:#D7192B;
  --blue:#1F4F88;
  --white:#fff;
  --bg-red:#D7192B;
  --bg-blue:#1F4F88;
}

body {
    width: 100%;
    height: 100%;
    font-family:var(--primary-font);
    font-size:16px;
    background-color:var(--white);
    line-height:1.25;
	  color:var(--black);
    font-weight: 500;
}
html {
    width: 100%;
    height: 100%;
}
a {
    color:var(--black);
    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:var(--red);
    outline: none;
}
button:focus {
    outline: 0px dotted;
}

b{
	font-weight:normal;
	color:#000;
	font-family: var(--primary-font);
  font-weight: 600;
	}
p{
	color:#000;
	line-height:2;
	font-size: 16px;
	font-family:var(--primary-font);
  font-weight: normal;
	}
h1, h2, h3, h4, h5, h6{
  font-family:var(--primary-font);
}  

h1{
    color:var(--blue);
    line-height:1.4;
    font-size:40px;
    font-weight: 600;
    margin-top: 0;
    margin-bottom:30px;
}
h2{
  color:var(--blue);
  line-height:1.4;
  font-size:36px;
  font-weight:500;
  margin-top: 0;
  margin-bottom:25px;
}
h3{
  color:var(--black);
  line-height:1.5;
  font-size:21px;	
  font-weight:600;
  margin-bottom: 15px;
}
h4{
  color:var(--black);
  line-height:1.5;
  font-size:18px;	
  font-weight:500;
  margin-bottom: 15px;
}

.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:60px 0;
	}
.padding-sm{
	padding:40px 0;
	}
.navbar-toggler{
	background-color:var(--white);
}
.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:transparent;
	padding: 0;
	-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{
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}
.navbar-dark .navbar-nav .nav-link {
  color:#fff;
  font-size: 15px;
  padding: 2.3rem 1rem;
  border-bottom:3px solid transparent;
  font-weight: normal;
}
.navbar-dark .navbar-nav .nav-link:focus, .navbar-dark .navbar-nav .nav-link:hover {
    color:#fff;
}
.navbar-dark .navbar-nav .active > .nav-link{
	color:#fff;
}
.navbar-expand-lg .navbar-nav {
  align-items: center;
  margin-right: 20px;
}
.navbar-dark .navbar-nav .nav-link.btn {
  font-size:16px;
  padding:9px 15px;
  color:#fff;
  margin-left: 10px;
}
.navbar-dark .navbar-nav .nav-link.btn:hover{
  color:#1C4F8D;
}
.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:.6rem 1.5rem;
    font-weight: normal;
    font-size:16px;
    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:#1C4F8D;}
.dropdown-menu li.dropdown .dropdown-toggle::after{
content: none;
}
.navbar  li.dropdown:hover > a{color:#1C4F8D; border-color: #1C4F8D;}
.navbar ul.dropdown-menu > li.dropdown:hover > a{background: #fff; color:#1C4F8D;}
.dropdown-item:hover{background: #fff; color:#1C4F8D; padding-left: 1.9rem;}
@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:330px;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:330px;display:none;z-index:1}
   .navbar ul .dep-menu:hover .dropdown-menu{
    display: flex;
   }
   .navbar ul .dep-menu .dropdown-menu{
    min-width: 530px;
    flex-wrap: wrap;
   }
   .navbar ul .dep-menu .dropdown-menu li{
    width:50%;
    flex:0 0 auto;
   }
}
.mega-drop {
  position: inherit;
}
/* .navbar ul li:hover > .list-menu {
 max-width: 890px;
  min-width: auto;
} */
.navbar ul .list-menu {
  min-width: 100%;
  left: 0;
  padding:20px 30px;
  border-top: 1px solid #97101e;
  -webkit-column-count:3;
  -moz-column-count:3;
  column-count: 3;
  -webkit-column-gap: 15px;
  -moz-column-gap: 15px;
  column-gap: 15px;
}
.navbar ul .list-menu li{
  -webkit-column-break-inside: avoid;
-moz-column-break-inside: avoid;
break-inside: avoid;
width: 100%;
}
.sub-list{
  list-style: none;
  padding-left:0;
}
.navbar ul .list-menu .sub-list ul li{
 position: relative;
}
.navbar ul .list-menu .sub-list ul{
  padding-left:10px;
  margin-top:5px;
  margin-bottom:8px;
}
.navbar ul .list-menu .sub-list ul li::after {
  position: absolute;
  content: '';
  width:4px;
  height:4px;
  border-radius: 50%;
  background-color:#9b9b9b;
  top: 9px;
  left: -10px;
}
.navbar ul .list-menu>li{
  margin-bottom:18px;
}
.navbar ul .list-menu h4{
  font-size:17px;
  color:var(--blue);
  margin-bottom:5px;
}
.dropdown-menu  .sub-list li{
  padding: 0.2rem 1.5rem 0.2rem 0;
  font-size: 14px;
  display: block;
  color: #555;
  font-weight: 300;
}
.navbar ul .list-menu li a:hover h4{
  color: var(--red);
}
.fix-nav header{
  background-color:var(--white);
}
.fix-nav .navbar-dark .navbar-brand img{
  width:180px;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}
.fix-nav .navbar-dark .navbar-nav .nav-link {
  padding:1.2rem 1rem;
  color: var(--black);
}
.navbar-dark .navbar-brand{
    padding: 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{
    width:250px;
    padding: 2px;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;  
}
.video-area {
  overflow: hidden;
  background-color: #fff;
  height: 100vh;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: end;
}
.video-text{
  position: absolute;
  z-index:2;
  max-width: 700px;
  text-align: center;
  bottom:40px;
}
.video-text h1{
  font-size:50px;
  color: var(--white);
  margin-bottom: 10px;
}
.video-text p{
  color: var(--white);
  font-size:30px;
  font-weight: 300;
  line-height: 1.4;
}
.video-background{background:#000;position:absolute;top:0;right:0;bottom:0;left:0;z-index:1;}
.video-foreground,
.video-background iframe{position:absolute;top:0;left:0;width:100%;height:100%;pointer-events:none;}
@media (min-aspect-ratio:16/9){.video-foreground{height:300%;top:-100%;}
}
@media (max-aspect-ratio:16/9){.video-foreground{width:300%;left:-100%;}
}
@media all and (max-width:600px){.vid-info{width:50%;padding:.5rem;}
.vid-info h1{margin-bottom:.2rem;}
}
@media all and (max-width:500px){.vid-info .acronym{display:none;}
}
.video-area::after {
  position: absolute;
  content: '';
  width: 100%;
  height: 150px;
  top: 0;
  left: 0;
  background: rgba(0,0,0,0.87);
  background: -moz-linear-gradient(top, rgba(0,0,0,0.87) 0%, rgba(0,0,0,0) 100%);
  background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(0,0,0,0.87)), color-stop(100%, rgba(0,0,0,0)));
  background: -webkit-linear-gradient(top, rgba(0,0,0,0.87) 0%, rgba(0,0,0,0) 100%);
  background: -o-linear-gradient(top, rgba(0,0,0,0.87) 0%, rgba(0,0,0,0) 100%);
  background: -ms-linear-gradient(top, rgba(0,0,0,0.87) 0%, rgba(0,0,0,0) 100%);
  background: linear-gradient(to bottom, rgba(0,0,0,0.87) 0%, rgba(0,0,0,0) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#000000', endColorstr='#000000', GradientType=0);
  z-index:1;
}
.video-area::before {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index:2;
  background: rgba(0,0,0,0.5);
}
.banner-main{
    display: block;
    background-color: #000;
  }
.banner-main img{
    opacity:1;
  }
.banner-main-text{
    position: absolute;
    z-index: 9;
    width:500px;
    left:0;
    bottom: 0;
    color: #fff;
    background-color:rgba(215, 25, 44, 0.904);
    padding:45px;
    text-align: center;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    margin-bottom:0;
  }

  .banner-main-text h1{
    color:#fff;
    font-size:36px;
    margin-bottom:20px;
  }
  .banner-main-text p{
    font-size:24px;
    color:#fff;
    margin-bottom:0;
  }
  .b-text-m{
    max-width: 445px;
    margin: 0 auto;
    text-align: center;
  }
  .banner-main .slick-prev {
    left:30px;
    z-index:2;
  }
  .banner-main .slick-next {
    right:30px;
    z-index:2;
  }
  .banner-main .slick-prev:before, .banner-main .slick-next:before{
    color:#fff;
  }
  .banner-main .slick-slide img {
    transition: all 1s cubic-bezier(0.7, 0, 0.3, 1);
    transform: scale(1.2);
  }
  .banner-main .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{
    border-radius:6px;
    padding: 9px 22px;
    font-family:var(--primary-font);
    font-weight:normal;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    transition: all 500ms ease;
  }  
.btn-red{
  border:0;
  background-color:#fff;
  color: #ffffff;
  -webkit-box-shadow: 0 0 0 3em var(--bg-blue) inset;
  box-shadow: 0 0 0 3em var(--bg-blue) inset;
}
.btn-red:hover{
  background-color:#fff;
  color:var(--bg-blue);
  -webkit-box-shadow: 0 0 0 1px var(--bg-blue) inset;
  box-shadow: 0 0 0 1px var(--bg-blue) inset;
}
.btn-blue{
  border:0;
  background-color:#fff;
  color: #ffffff;
  -webkit-box-shadow: 0 0 0 3em var(--bg-blue) inset;
  box-shadow: 0 0 0 3em var(--bg-blue) inset;
}
.btn-blue:hover{
  background-color:#fff;
  color:var(--bg-blue);
  -webkit-box-shadow: 0 0 0 1px var(--bg-blue) inset;
  box-shadow: 0 0 0 1px var(--bg-blue) inset;
}
.btn-orange{
  border:0;
  background-color:#fff;
  color: #ffffff;
  -webkit-box-shadow: 0 0 0 3em #fea002 inset;
  box-shadow: 0 0 0 3em #fea002 inset;
}
.btn-orange:hover{
  background-color:#fff;
  color:#fea002;
  -webkit-box-shadow: 0 0 0 1px #fea002 inset;
  box-shadow: 0 0 0 1px #fea002 inset;
}
.white-red{
  border:0;
  background-color:transparent;
  color:var(--black);
  -webkit-box-shadow: 0 0 0 3em #fff inset;
  box-shadow: 0 0 0 3em #fff inset;
}
.white-red:hover{
  background-color:transparent;
  color:var(--white);
  -webkit-box-shadow: 0 0 0 1px #fff inset;
  box-shadow: 0 0 0 1px #fff inset;
}
.btn-link{
  font-size: 16px;
  text-decoration: none;
  font-weight: normal;
  position: relative;
  color:var(--bg-red);
}
.btn-link:before {
  position: absolute;
  right:-14px;
  top:5px;
  font-size: 12px;
  font-weight: bold;
  content: 'next';
  font-family: 'swiper-icons';
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
} 
.btn-link:hover:before{
  right:-18px;
}
.btn-br{
  background-color:transparent;
  border-color:#fff;
  color:#fff;
}
.btn-br:hover{
  background-color:#fff;
  border-color:#fff;
  color:#222;

}
.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);
}
.m-top{
  margin-top:100px;
}
.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;
  font-weight: normal;
}
.list-dot li a:hover{
  color:var(--blue);
}
.list-dot li::after {
  position: absolute;
  content: '';
  width:4px;
  height: 4px;
  border-radius: 50%;
  background-color:var(--blue);
  top: 8px;
  left: 0;
}
.list-half, .list-half3{
  display:flex;
  flex-wrap: wrap;
}
.list-half li{
  width:50%;
}
.list-half3 li{
  width:33%;
}
.gray-bg{
  background-color:#F4F5F7;
}

 .icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color:#fff;
  color:#333;
  margin-right: 15px;
  margin-top: 6px;
  text-align: center;
  font-size: 17px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.icon-text {
  -ms-flex: 1;
  flex: 1;
}
.contact-sec h6 {
  margin-bottom: 0;
}
footer{
  padding-top:50px;
  background-color:#333;
  position: relative;
  z-index:1;
}
footer hr{
  border-color:#fff;
}
footer p{
  line-height: 26px;
} 
footer.white-text ul li a{
  color:#DCDCDC;
  font-weight:300;
}
footer .icon-text h4{
  font-size:16px;
}
footer .icon-text p{
  font-size:15px;
  font-weight:300;
}
.list-arrow{
  width:100%;
  display: block;
  list-style-type: none;
  padding-left:0px;
}
.list-arrow li a{
  font-size:15px;
  position: relative;
  font-weight: 400;
}
.list-arrow li a:hover{
  padding-left:5px;
}
.list-arrow li{
  padding:5px 0;
  display: block;
}
.list4, .list2{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.list4 li{
  flex: 0 0 auto;
  width:25%;
}
.list2 li{
  flex: 0 0 auto;
  width:50%;
}
.footer-bottom {
  padding-top: 15px;
  margin-top: 12px;
  width:100%;
  background-color: var(--white);
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
}
footer .footer-bottom p, .footer-bottom  a {
  color:#333;
  font-size: 15px;
}

.mess-img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.fob-imabox{
  overflow: hidden;
}
.zoom{
  -webkit-animation: zoomout 10s ease-in infinite;
  animation: zoomout 10s ease-in infinite;
  transition: all .5s ease-in-out;
  overflow: hidden;
}
/* Zoom in Keyframes */
@-webkit-keyframes zoomin {
  0% {transform: scale(1);}
  50% {transform: scale(1.2);}
  100% {transform: scale(1);}
}
@keyframes zoomin {
  0% {transform: scale(1);}
  50% {transform: scale(1.2);}
  100% {transform: scale(1);}
} /*End of Zoom in Keyframes */

/* Zoom out Keyframes */
@-webkit-keyframes zoomout {
  0% {transform: scale(1.2);}
  50% {transform: scale(1);}
  100% {transform: scale(1.2);}
}
@keyframes zoomout {
    0% {transform: scale(1.2);}
  50% {transform: scale(1);}
  100% {transform: scale(1.2);}
}/*End of Zoom out Keyframes */


.num-count .icon-text{
  display: flex;
  align-items: start;
  justify-content:start;
}
.num-count .icon-text{
  flex-direction: row;
  text-align: left;
}
.icon-text img{
  flex: 0 0 auto;
}
.num-count .icon-text img{
  opacity:0.7;
}
.text-num{
  padding-left:15px;
}
.text-num h3{
  font-weight:600;
  color:var(--black);
  margin-bottom: 5px;
  font-size: 30px
}
.text-num p{
  margin-bottom:0;
  line-height:1.5;
  color:var(--gray);
}
.institute-sec{
  background-image:url(../images/bg.jpg);
  background-repeat: no-repeat;
  background-size:100%;
  position: relative;
  z-index: 1;
}
.institute-sec::after{
  background-color:#F9F9F9;
  position: absolute;
  content:'';
  left:0;
  right:0;
  height:100%;
  top:0;
  z-index: -1;
  opacity: 0.8;
}
.inst-box{
  position: relative;
  overflow: hidden;
  display: block;
}
.institute-sec .slick-slide{
  padding:0 15px;
}
.inst-box-img{
  background-color:var(--black);
  overflow: hidden;
  position: relative;
  z-index:0;
}
.inst-box-img::before{
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height:300px;
    z-index:1;
    background: rgb(0,0,0);
    background: -moz-linear-gradient(0deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 65%);
    background: -webkit-linear-gradient(0deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 65%);
    background: linear-gradient(0deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 65%);
}
.inst-box-img img{
  opacity:0.8;
}
.inst-content{
  position: absolute;
  top:100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  left: 0;
  right: 0;
  height: auto;
  flex-direction: column;
  padding: 20px;
  -webkit-transition: all .6s ease-in-out;
  -moz-transition: all .6s ease-in-out;
  transition: all .6s ease-in-out;
}
.inst-content .fo{
  margin-top:-100px;
}
.inst-content p, .inst-content h3, .inst-content .view-link{
  color: var(--white);
}
.inst-content ul{
  width: auto;
}
.fo{
  margin-bottom:5px;
  -webkit-transition: all .6s ease-in-out;
  -moz-transition: all .6s ease-in-out;
  transition: all .6s ease-in-out;
}
.inst-content ul li{
  color: var(--white);
  font-size: 13px;
  padding-bottom: 2px;
  line-height: 1.5;
  padding-left: 11px;
}
.inst-content .list-dot li::after{
  background-color: var(--white);
}
.inst-box:hover .inst-content{
  top:0;
}
.inst-box:hover .inst-content .fo{
  margin-top:-30px;
}
.inst-box:hover .inst-content .fo{
 opacity: 0;
}
.inst-box:hover .inst-box-img img{
  opacity:0.3;
}
.inst-box .btn-br-w{
  background-color: rgba(0, 0, 0, 0.5);
  color: var(--white);
  border: 1px solid var(--white);
  border-radius:0;
  position: absolute;
  bottom: -100%;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 165px;
  -webkit-transition: all .6s ease-in-out;
  -moz-transition: all .6s ease-in-out;
  transition: all .6s ease-in-out;
}
.inst-box .btn-br-w:hover{
  background-color: var(--white);
  color: var(--black);
}
.inst-box:hover .btn-br-w{
  bottom:25px;
}
.view-link{
  font-weight:300;
  position: relative;
  margin-bottom:8px;
}
.view-link::before{
  position: absolute;
  content: '';
  bottom: -8px;
  left: 0;
  right: 0;
  width: 100%;
  height: 1px;
  background-color: var(--white);
  opacity: 0.5;
}
.img-box-h {
  overflow: hidden;
}
.img-box-h img {
  width: 100%;
  height:auto;
  object-fit: cover;
  object-position: center;
}
.life-sec{
  border-bottom:1px solid #C7C7C7;
}
.life-sec h3{
  font-size:24px;
  color: var(--blue);
}

.life-sec .btn{
  margin-top:20px;
}
.life-sec .red-bg, .life-sec .blue-bg{
  height:100%;
  position: relative;
  z-index:1;
}
.life-sec .red-bg::before, .life-sec .blue-bg::before{
  position: absolute;
  content:'';
  top:0;
  left:0;
  right:0;
  height:100%;
  background-size:cover;
  background-repeat: no-repeat;
  z-index: -1;
}
.life-sec .red-bg::before{
  background-image: url(../images/life-bg.png);
}
.life-sec .blue-bg::before{
  background-image: url(../images/international-bg.png);
}
.red-bg{
  background-color: var(--bg-red);
}
.blue-bg{
  background-color: var(--bg-blue);
}
.white-text h2, .white-text h3, .white-text p, .white-text h4, .white-text ul li a{
  color:var(--white);
}
.industry .slick-slide{
  padding:0 15px;
}
.industry .industry-box{
  border:1px solid #ddd;
  width:100%;
  overflow: hidden;
  padding:15px;
}
.industry .industry-box img{
  margin:0 auto;
}
.w-box {
  display: block;
  position: relative;
  overflow: hidden;
  background-color: #fff;
  -webkit-box-shadow: 0px 0px 9px 0px rgb(0, 0, 0, 0.06);
  box-shadow: 0px 0px 9px 0px rgba(0, 0, 0, 0.06);
}
.box-con {
  padding: 21px;
  text-align: center;
}
.box-con h4 {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-weight:600;
  color: var(--blue);
}
.box-con p{
  line-height:1.6;
  font-size: 15px;
  margin-bottom:0;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  overflow: hidden;
  word-break: break-word;
  -webkit-line-clamp: 3;
}
.img-b {
  display: block;
  width: 100%;
  overflow: hidden;
  position: relative;
  background-color: #ddd;
}
.img-b img{
  width:100%;
  height: auto;
  object-fit: cover;
  object-position:top;
  aspect-ratio:100/70;
}
.events-home .slick-slide{
  padding:15px;
}
.news-box{
  display: flex;
  background-color:#F5F5F5;
}
.news-box .news-box-img{
  flex: 0 0 auto;
  width: 40%;
  overflow: hidden;
}
.news-box .news-box-img img{
  height: 100%;
  object-fit: cover;
}
.news-box-content{
  padding:30px;
}
.news-box-content h4, .news-box-content p{
  -webkit-box-orient: vertical;
  display: -webkit-box;
  overflow: hidden;
  word-break: break-word;
  -webkit-line-clamp:2;
}
.follo-icon {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-top:15px;
}
.follo-icon a {
  background-color:#2e2e2e;
  padding: 9px;
  border-radius: 50%;
  display: block;
  width: 35px;
  height: 35px;
  text-align: center;
  margin:5px 8px;
  color:var(--white);
}
.follo-icon a:hover{
  background-color:var(--white);
  color:var(--red);
  transform: scale(1.2);
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -ms-transform: scale(1.2);
  -o-transform: scale(1.2);
}
.inner-banner{
  position: relative;
  text-align: center;
  justify-content: center;
  overflow: hidden;
}
.inner-banner h1{
  position: absolute;
  bottom: 0;
  left: auto;
  right: auto;
  z-index: 1;
  text-align: center;
  color: #fff;
  margin-bottom: 0;
  background-color:rgba(18, 70, 132, 0.86);
  padding: 15px 40px;
  font-size: 36px;
}
.ab-img {
  float: right;
  max-width: 575px;
  margin-left: 30px;
  margin-bottom: 20px;
}
.text-j p{
  text-align: justify;
}
.br-box-r{
  border: 1px solid #e5e5e5;
  border-radius: 4px;
  padding:30px;
  margin: 15px 0;
}
.btn-br {
  border: 1px solid var(--red);
  color:var(--red);
  display: inline-block;
  border-radius: 6px;
    padding: 9px 22px;
}
.btn-br:hover{
  color:var(--white);
  background-color: var(--bg-red);
}
.office-bearers .br-box-r p{
  line-height: 1.4;
  height:45px;
}
.table {
  text-align: center;
  background-color: #fff;
  -webkit-box-shadow: 0px 2px 9px 0px rgba(54, 54, 54, 0.09);
  -moz-box-shadow: 0px 2px 9px 0px rgba(54, 54, 54, 0.09);
  box-shadow: 0px 2px 9px 0px rgba(54, 54, 54, 0.09);
}
.table tr th {
  background-color: #0D3F77 !important;
  color: #fff;
  font-weight: normal;
  font-size: 16px;
}
.table>:not(caption)>* {
  border-width: 1px 0;
  border-color: #dee2e6;
}
.table>tbody>tr:nth-of-type(odd)>* {
  background-color: #FBFBFB;
}
.table tr td, table tr th {
  padding: 0.9rem 0.7rem !important;
}
.table tr td {
  line-height: 24px;
  vertical-align: middle;
}
.wow {
  overflow: hidden;
}
.grid-box {
  -webkit-column-count: 3;
  -moz-column-count: 3;
  column-count: 3;
  -webkit-column-gap: 25px;
  -moz-column-gap: 25px;
  column-gap: 25px;
}
.grid-item {
  -webkit-column-break-inside: avoid;
  -moz-column-break-inside: avoid;
  break-inside: avoid;
  margin-bottom: 25px;
  width: 100%;
}
.events-list .img-b {
  display: block;
  width: 100%;
  overflow: hidden;
  position: relative;
  height: 263px;
  background-color: #ddd;
}
.events-list .img-b img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.event-date {
  font-size: 15px;
  color: #555;
  font-weight: normal;
}
.date{
  color:#878787;
  font-size:14px;
  margin:15px 0;
}
.b-padd {
  padding: 30px;
}
.research h3, .title-3{
  font-size:24px;
}
.contact-page .icon{
  background-color:var(--bg-red);
  color:var(--white);
}
.fix-btn{
  position: fixed;
  top:80px;
  right: 0;
  z-index: 3;
}
.fix-btn .btn{
  display: block;
  margin: 6px 0;
  font-weight: 600;
  font-size:16px;
  text-transform: uppercase;
  border-radius: 8px 0 0 8px;
  padding: 9px 14px;
}
.fix-btn .btn-red{
  color: #ffffff;
  -webkit-box-shadow: 0 0 0 3em #fd2e01 inset;
  box-shadow: 0 0 0 3em #fd2e01 inset;
}
.fix-btn .btn-red:hover {
  background-color: #fff;
  color:#fd2e01;
  -webkit-box-shadow: 0 0 0 1px #fd2e01 inset;
  box-shadow: 0 0 0 1px #fd2e01 inset;
}
.fix-btn .btn-blue{
  color: #ffffff;
  -webkit-box-shadow: 0 0 0 3em #fea002 inset;
  box-shadow: 0 0 0 3em #fea002 inset;
}
.fix-btn .btn-blue:hover {
  background-color: #fff;
  color:#fea002;
  -webkit-box-shadow: 0 0 0 1px #fea002 inset;
  box-shadow: 0 0 0 1px #fea002 inset;
}
.admission-page .grid-box{
  -webkit-column-count: 2;
    -moz-column-count: 2;
    column-count: 2;
}
.box-n{
  background: #FFF;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  gap:10px;
}
.box-n p{
  line-height: 1.7;
  margin-bottom:0;
}
.box-n ul li{
  font-size:13px;
  padding-left:11px;
  line-height: 1.6;
  padding-bottom: 3px;
}
.box-n .btn{
  min-width:135px;
}
.box-nn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.box-n ul li::after {
  width: 4px;
  height: 4px;
  top: 8px;
  left: 0;
}
.box-n b{
  font-weight: bold;
  color:var(--blue);
}
.br-box{
  border:1px solid #cacaca;
  padding:15px;
}
.adm-title-box{
  display: flex;
  justify-content:space-between;
}
.brochure-page h4{
  min-height:54px;
}
.red{
  color: var(--red);
}
.blink-btn{
  animation: blink 1s infinite;
}
.blink-btn:hover{
  animation: blink 1s step-end;
}
.input.form-control {
  height:46px;
}
.form-control, select{
  height:46px;
}
.recruitment-form label{
  margin-bottom:10px;
}

.datepicker {
  background-image: url(../images/calendar.png);
  background-position: right 12px center;
  background-repeat: no-repeat;
  padding-right: 28px;
  font-size: 14px;
}

.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 th {
  text-align: center;
  font-weight: normal;
  color: #666;
}

.ui-widget-header {
  border: 0px solid #ddd;
  background: #fbfbfb;
}

.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-active,
.ui-widget-content .ui-state-active {
  color: #fff;
}
.ui-datepicker {
  width: 18em;
}
.form-group{
  margin-bottom:35px;
}
.form-control[type=file] {
  line-height: 2;
}
.sm-text{
  font-size: 12px;
  font-style: normal;
  margin-top: 6px;
  display: block;
  font-weight: normal;
}
.form-check-label{
  font-weight: normal;
}
.btns .btn{
  min-width:150px;
}
.f-ex{
  margin-bottom:15px;

}
.t-justify{
  text-align: justify;
}

@keyframes blink {
  0% { 
    -webkit-box-shadow: 0 0 0 3em #fd2e01 inset;
    box-shadow: 0 0 0 3em #fd2e01 inset;
  }
  50% { 
    -webkit-box-shadow: 0 0 0 3em var(--bg-red) inset;
    box-shadow: 0 0 0 3em var(--bg-red) inset;
  }
  100% { 
    -webkit-box-shadow: 0 0 0 3em var(--bg-blue) inset;
    box-shadow: 0 0 0 3em var(--bg-blue) inset;
    
  }

}
.success-animation { margin:0 auto;}

.checkmark {
    width:91px;
    height:90px;
    border-radius: 50%;
    display: block;
    stroke-width: 2;
    stroke: #1ecd97;
    stroke-miterlimit: 10;
    box-shadow: inset 0px 0px 0px #1ecd97;
    animation: fill .5s ease-in-out .5s forwards, scale .4s ease-in-out .10s both;
    position:relative;
    top: 5px;
    right: 5px;
   margin: 0 auto;
}
.checkmark__circle {
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    stroke-width: 2;
    stroke-miterlimit: 10;
    stroke: #1ecd97;
    fill: #fff;
    animation: stroke 0.7s cubic-bezier(0.65, 0, 0.45, 1) forwards;
 
}
.checkmark__check {
    transform-origin: 50% 50%;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    animation: stroke 0.5s cubic-bezier(0.65, 0, 0.45, 1) 0.9s forwards;
}
@keyframes stroke {
  100% {
      stroke-dashoffset: 0;
  }
}
@keyframes scale {
  0%, 100% {
      transform: none;
  }
  50% {
      transform: scale3d(1.1, 1.1, 1);
  }
}
@keyframes fill {
  100% {
      box-shadow: inset 0px 0px 0px 30px #1ecd97;
  }
}
.green {
  color: #1ecd97;
}

.recruitment-sec h4{
  min-height:54px;
}
.campus .wow {
  margin-bottom: 15px;
}
.campus .thum-gallery p{
  text-align: center;
  line-height:1.3;
}
.ver-text p{
  color: #fff;
  margin-bottom: 0;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 6px;
  padding: 5px;
  margin:20px 0 25px 0;
}
.ver-text p a{
  color:#fff;
}
.dep-list .br-box-r p{
  margin-bottom:0;
  font-size:14px;
  color: #666;
}
.dep-list h4{
  margin-bottom:10px;
}
.dep-list .br-box-r{
 display: block;
 margin: 0;
 background-color: #fff;
}
.dep-list .br-box-r:hover{
 border-color: var(--red);
}
.dep-list .br-box-r:hover h4{
  color: var(--red);
}
.dep-list .grid-box{
  -webkit-column-count: 2;
  -moz-column-count: 2;
  column-count: 2;
}
.thum-gallery .wow{
  overflow: hidden;
  height:190px;
}
.thum-gallery .wow img{
  object-fit: cover;
  width: 100%;
  height: auto;
  object-position:top;
  aspect-ratio: 100 / 67;
}
.thum-gallery p{
  line-height: 1.5;
  margin-bottom:20px;
}
.slick-dotted.slick-slider {
  margin-bottom:0px;
}
.slick-dots li button:before{
  opacity: .8;
  font-size: 38px;
  color:var(--white);
}
.slick-dots {
  bottom:15px;
}
.slick-dots li.slick-active button:before{
  color:var(--white);
  opacity:1;
}
.life-sec .slick-dotted.slick-slider, .life-sec .slick-list, .life-sec .slick-track{
  height:100%;
}
.best-text + .best-text{
  margin-top:30px;
}
.bt-right{
  text-align: right;
}
.best-text p{
  line-height:1.7;
}
.events-box{
  display: block;
}
.events-box  + .events-box{
  margin-top:35px;
}
.events-box h3{
  font-weight: 500;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  overflow: hidden;
  word-break: break-word;
  -webkit-line-clamp:2;
}
.events-box img{
  width:100%;
  height: auto;
  object-fit: cover;
  aspect-ratio:100/60;
}
.eb-box .events-box img{
  aspect-ratio:100/70;
}
.eb-box{
  text-align: center;
}
.eb-box .btn{
  padding: 9px 90px;
}
.events-box:hover h3{
  color: var(--blue);
}
.faculties-gls{
  padding-top:60px;
}
.inner-banner::after {
  position: absolute;
  content: '';
  width: 100%;
  height:250px;
  top: 0;
  left: 0;
  background: rgba(0,0,0,0.7);
  background: -moz-linear-gradient(top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 100%);
  background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(0,0,0,0.7)), color-stop(100%, rgba(0,0,0,0)));
  background: -webkit-linear-gradient(top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 100%);
  background: -o-linear-gradient(top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 100%);
  background: -ms-linear-gradient(top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 100%);
  background: linear-gradient(to bottom, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#000000', endColorstr='#000000', GradientType=0);
  z-index:1;
}
.best-text h3{
  color: var(--blue);
}
.news-slide .slick-slide{
  padding:15px;
}
.list-heding{
  list-style-type: none;
  padding-left:0;
  display: flex;
  flex-wrap: wrap;
  gap:20px;
  justify-content: center;
  align-items: center;
  margin-bottom:0;
}
.list-heding li a{
  border: 1px solid #ddd;
  padding:6px 22px;
  border-radius: 10px;
  display: block;
  -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);
}
.list-heding li a:hover{
  background-color: #F4F5F7;
  color: var(--blue);
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}
.list-heding li a img{
  margin-right:8px;
}
.list-heding li a:hover img{
  animation: ld-jingle 1s linear infinite;
}
@keyframes ld-jingle {
  0% {
    animation-timing-function: cubic-bezier(0.146, 0.2111, 0.5902, 1.3204);
    transform: rotate(0)
  }

  11% {
    animation-timing-function: cubic-bezier(0.1079, 0.1992, -0.6462, 0.828);
    transform: rotate(7.61deg)
  }

  23% {
    animation-timing-function: cubic-bezier(0.0504, 0.0951, 0.0163, 0.9677);
    transform: rotate(-5.789999999999999deg)
  }

  36% {
    animation-timing-function: cubic-bezier(0.0475, 0.0921, 0.3134, 1.0455);
    transform: rotate(3.35deg)
  }

  49% {
    animation-timing-function: cubic-bezier(0.0789, 0.1565, 0.3413, 1.0972);
    transform: rotate(-1.9300000000000002deg)
  }

  62% {
    animation-timing-function: cubic-bezier(0.141, 0.2885, 0.406, 1.1519);
    transform: rotate(1.12deg)
  }

  75% {
    animation-timing-function: cubic-bezier(0.226, 0.4698, 0.5031, 1.1722);
    transform: rotate(-0.64deg)
  }

  88% {
    animation-timing-function: cubic-bezier(0.3121, 0.5521, 0.5655, 0.8997);
    transform: rotate(0.37deg)
  }

  100% {
    transform: rotate(-0.28deg)
  }
}
.program-sec{
  background-color: var(--blue);
  position: relative;
  background-image: url(../images/international-bg.png);
}
.program-sec h2, .program-sec p, .program-sec h3{
  color:var(--white);
}
.program-sec p{
  text-align: justify;
}
.program-sec .row{
  justify-content: end;
}
.program-about-img{
  width: 48%;
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  overflow: hidden;
}
.program-about-img img{
  width:100%;
  height: 100%;
  object-fit: cover;
}
.pro-about-text{
  padding:40px 20px;
}
.pro-about-text h2{
  font-size:31px;
}
.p-o-box{
  border:1px solid #C9C9C9;
  padding:20px;
  border-radius:20px;
  overflow: hidden;
}
.same-box .p-o-box{
  min-height:579px;
}
.p-o-box p{
  height:200px;
  overflow-x: auto;
}
.program-outcomes h3{
  margin-top:30px;
  color: var(--blue);
}
.program-outcomes .p-o-box p{
  margin-bottom:0;
  line-height:1.7;
}
.program-outcomes .slick-slide{
  padding:15px;
  height:100%;
}
.eli-box{
  display: flex;
  gap:10px;
  align-items: center;
}
.eli-box h3{
  margin-bottom:0;
  color: var(--blue);
}
.eli-box p{
  color:#444;
  font-size:15px;
  margin-bottom:0;
}
.eli-box + .eli-box{
  margin-top:30px;
  padding-top:30px;
  border-top:1px solid #D5D5D5;
}

.eli-box:hover img{
  animation: ld-jingle 1s linear infinite;
}
.eli2{
  flex-direction: column;
  text-align: center;
}
.eli2 h3{
  margin-bottom: 10px;
}
.eli2 .list-dot{
  text-align: start;
  margin-bottom:0;
}
.eli2 .list-dot li{
  font-size: 15px;
  padding-bottom: 8px;
  padding-left: 15px;
}
.eli2 .list-dot li::after{
  top: 11px;
}
.eli-br{
  border-left:1px solid #D5D5D5;;
}
.lab-list{
  list-style-type: none;
  padding-left:0;
  display: flex;
  flex-wrap: wrap;
  position: relative;
  margin-bottom:0;
}
.lab-list li{
  position: relative;
  padding-left:60px;
  padding-right: 8px;
  padding-bottom:25px;
  flex: 0 0 auto;
  width: 33.33333333%;
  display: flex;
  flex-direction: column;
    justify-content: center;
    margin:6px 0px;
}
.lab-list li::before{
  content:'';
  position: absolute;
  left:0;
  top:5px;
  width:45px;
  height:45px;
  border-radius:50%;
  background-color: rgba(255, 255, 255, 0.3);
  background-image: url(../images/check.svg);
  background-repeat: no-repeat;
  background-position: center;
}
.lab-list li::before{
  -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);
}
.lab-list li:hover::before{
  background-color: rgba(255, 255, 255, 0.6);
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}
.lab-list li p{
  margin-bottom:0;
}
.labs-sec{
  background-color: var(--blue);
  position: relative;
  z-index:1;
}
.labs-sec h2, .labs-sec h3, .labs-sec p{
  color:#fff;
}
.labs-bg{
  position: absolute;
  left: 0;
  top: 0;
  width:100%;
  height:100%;
  opacity:0.1;
  object-fit: cover;
  z-index: -1;
}

/* FOBA */

.banner{
  display: block;
  background-color: #000;
}
.banner img{
  opacity:0.5;
  width: 100%;
}
.banner-text{
  position: absolute;
  top:auto;
  z-index: 9;
  width:100%;
  color: #fff;
  bottom:80px;
  display: flex;
  align-items: end;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
}

.banner-text h1{
  color:#fff;
  font-size:36px;
  line-height:52px;
}
.banner-text p{
  font-size:21px;
  color:#fff;
  margin-bottom:20px;
  margin-top:15px;
  line-height:1.6;
}
.b-text-m{
  max-width:665px;
  margin: 0 auto;
  text-align: center;
}
.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;
}
.fob-imabox{
  overflow: hidden;
}
.col-box-img{
  width: 100%;
  display: block;
  overflow: hidden;
  margin-bottom:24px;
  height:197px;
}
.col-box-img img{
  width:100%;
  height:100%;
  object-fit: cover;
  object-position:center center;
}
.programs p{
  -webkit-box-orient: vertical;
  display: -webkit-box;
  overflow: hidden;
  word-break: break-word;
  -webkit-line-clamp:4;
}
.feature-sec{
  position: relative;
  background-color: #000;
  overflow: hidden;
}
.feature-sec img{
  width:100%;
}
.white-text h1, .white-text p{
  color:#fff;
}
.feature-sec::before {
  position: absolute;
  left: 0;
  top: 0;
  width:100%;
  height: 100%;
  content: '';
  z-index:1;
  background: rgba(0, 0, 0, 0.34);
}
.feature-sec .container{
  position: absolute;
  left: 0;
  right: 0;
  display: flex;
  flex-wrap: wrap;
  align-self: center;
  justify-content: center;
  top: auto;
  z-index: 1;
}
.fea-con{
  max-width: 100%;
  text-align: center;
}
.list-box{
  margin-top:40px;
  margin-bottom:0;
  list-style-type: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  max-width:1035px;
  justify-content: center;
}
.list-box li{
  width: 30%;
  font-size: 17px;
  color: #fff;
  padding: 21px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 12px;
  background-color: rgba(0, 0, 0, 0.23);
  font-weight: normal;
  line-height: 1.5;
}
.list-box li b{
  color:var(--white);
}
.feature-sec .btn{
  margin-top:18px;
}
.ach-event{
  background-image: url(../images/ach-event-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
}
.ach-event .slick-prev, .ach-event .slick-next{
  top: -51px;
  background-color:#fff;
  padding:6px;
  border-radius: 50%;
  width:35px;
  height:35px;
}
.ach-event .slick-prev:before, .ach-event .slick-next:before {
  font-size: 16px;
}
.ach-event .slick-prev {
  left: auto;
  right:45px;
}
.ach-event .slick-next {
  left: auto;
  right:0px;
}
.ach-event .slick-prev:hover, .ach-event .slick-prev:focus, .ach-event .slick-next:hover, .ach-event .slick-next:focus{
  background-color: #444444;
  color: #fff;
}
.ach-event .slick-prev:hover:before, .ach-event .slick-next:hover:before, .ach-event .slick-prev:focus:before, .ach-event .slick-next:focus:before{
  color: #fff;
}
/* .ach-event .slick-track{
  margin:0 -10px;
} */
.ach-event .slick-slide {
  padding:0 ;
}
.ach-event .w-box{
 margin:15px;
}
.ach-event h1{
  padding-left:15px;
}
.ach-event a {
  pointer-events:visible;
}
.pointer-none a {
  pointer-events: none;
}

.ach-event .btn{
  margin-left:15px;
  margin-top:20px;
}
.programs-sec{
  text-align: center;
}
.w-box {
  display: block;
  position: relative;
  overflow: hidden;
  background-color: #fff;
  -webkit-box-shadow: 0px 0px 9px 0px rgb(0, 0, 0, 0.06);
  box-shadow: 0px 0px 9px 0px rgba(0, 0, 0, 0.06);
}
.box-con{
  padding:21px;
}
.img-b{
  display: block;
  width:100%;
  overflow: hidden;
  position: relative;
  height:194px;
  background-color:#ddd;
}
.img-b img{
  height:100%;
  max-width:none;
  margin: 0 auto;
}
.ach-sec .slick-slide, .faculty .slick-slide{
  padding:10px 15px;
}
.box-con h3{
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size:18px;
}
.box-con p{
  margin-bottom:0;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  overflow: hidden;
  word-break: break-word;
  -webkit-line-clamp: 3;
}
.ach-box .date{
  font-size: 14px;
  color: #fff;
  position: absolute;
  top: 6px;
  background-color: rgba(0, 0, 0, 0.61);
  padding:6px 10px;
  left: 7px;
  border-radius: 5px;
  margin-top:0
}
.ach-box:hover h3{
  color: #1C4F8D;
}
.mes-box{
  background-color:#0E0E0E;
  padding:40px;
  text-align: center;
  height: 100%;
  display: grid;
  place-content: center;
  justify-items: center;
} 
.mes-box h2{
  font-size: 21px;
  line-height: 35px;
  color: #fff;
  font-family: 'GothicA1-Regular';
}
.mes-box h3{
  color:#fff;
}
.mes-box .coma{
 margin:15px 0;
}
.f-img{
  overflow: hidden;
  display: block;
  height:250px;
  background-color:#ddd;
}
.f-img img{
  height: 100%;
  max-width: 100%;
  margin: 0 auto;
  object-fit: cover;
  width: 100%;
}
.f-padd{
  padding:20px 25px;
}
.event-date{
  font-size: 14px;
  color: #fff;
  position: absolute;
  top: 6px;
  background-color: rgba(0, 0, 0, 0.61);
  padding:6px 10px;
  left: 7px;
  border-radius: 5px;
 }
 .faculty-bg{
  background-color:#F9F9F9;
}
.faculty .f-padd h3{
  -webkit-box-orient: vertical;
  display: -webkit-box;
  overflow: hidden;
  word-break: break-word;
  -webkit-line-clamp:1;
  font-size:18px;
}

.board p{
  text-align: justify;
}
.thum-gallery .wow a{
  overflow: hidden;
  display: block;
}
.p-box-a{
  display: flex;
  gap:20px;
  align-items: center;
}
.p-box-a img{
  width:100px;
  border-radius:50%;
  object-fit: cover;
  aspect-ratio:100/100;
}
.p-box-a p{
  margin-bottom:0;
}
.sm-dr{
  list-style-type: none;
  padding: 0;
  margin-top: -6px;
  margin-bottom: 10px;
}
.dropdown-menu .sm-dr a{
  padding: .2rem 1.5rem;
  font-size:14px;
}
.dropdown-menu .sm-dr a:hover {
  padding-left: 1.9rem;
}
.n-event{
  pointer-events: none;
}
.women-gallery .thum-gallery .wow{
  height: 420px;
}
.women-gallery .thum-gallery .wow img {
  object-fit: cover;
  width: 100%;
  height: auto;
  object-position: top;
  aspect-ratio: auto;
}
.coll-logos .br-box{
  background-color:var(--white);
}
.coll-logos .br-box p{
  line-height: 1.5;
  margin-top: 12px;
  min-height: 48px;
  margin-bottom:0;
}
.coll-logos .br-box:hover{
  border-color:var(--red);
}
.fod-f img{
  object-fit: cover;
  aspect-ratio:100/45;
}
.quality .pictureContainer {
  overflow: hidden;
  height:320px;
}

.quality .pictureContainer img {
  max-height: 200px;
  min-width: 100%;
  object-fit: contain;
  object-position: top center;
}

.quality .pictureContainer img {
  transform: translate3d(0px, 0px, 0px);
  transition: transform .5s ease-in-out;
}

.quality .pictureContainer:hover img {
  transform: translate3d(0px, -300px, 0px);
}

.quality .pictureContainer .pictureContainer_text {
  transform: translate3d(0px, 0px, 0px);
  transition: transform .5s ease-in-out;
}

.quality .pictureContainer:hover .pictureContainer_text {
  transform: translate3d(0px, -170px, 0px);
}
.quality .pictureContainer .pictureContainer_content p{
  font-size:15px;
  line-height: 1.7;
}
.quality .pictureContainer .pictureContainer_content {
  
  display: none;
  height: 0;
  visibility: hidden;
  transition: visibility .5s ease-in-out;
}

.quality .pictureContainer:hover .pictureContainer_content {
  display: block;
  height: auto;
  visibility: visible;
  transition: height .1s ease-in-out;
}

.pictureContainer {
  overflow: hidden;
  height: 370px;
}

.pictureContainer img {
  height: 300px;
  min-width: 100%;
  object-fit: cover;
  object-position: top center;
}

.pictureContainer img {
  transform: translate3d(0px, 0px, 0px);
  transition: transform .5s ease-in-out;
}

.pictureContainer:hover img {
  transform: translate3d(0px, -300px, 0px);
}

.pictureContainer .pictureContainer_text {
  transform: translate3d(0px, 0px, 0px);
  transition: transform .5s ease-in-out;
}

.pictureContainer:hover .pictureContainer_text {
  transform: translate3d(0px, -250px, 0px);
}

.pictureContainer .pictureContainer_content {
  display: none;
  height: 0;
  visibility: hidden;
  transition: visibility .5s ease-in-out;
}

.pictureContainer:hover .pictureContainer_content {
  display: block;
  height: auto;
  visibility: visible;
  transition: height .1s ease-in-out;
}

@media (max-width:991px) {
  .navbar-dark .navbar-brand img{
    width:115px;
  }
  .navbar-dark .navbar-toggler{
    margin-left: auto;
  }
  header .btn-blue {
    padding: 7px 15px;
  }
  .right-menu{
    position: absolute;
    right: 80px;
    top: 6px;
  }
  .navbar-dark {
    padding:5px 0;
  }
  .fix-nav .navbar-dark .navbar-brand img {
    width:85px;
  }
  .navbar-expand-lg .navbar-nav {
    align-items: start;
    margin-right:0;
  }
  .navbar-expand-lg .navbar-nav  .nav-item{
    width: 100%;
  }
  .navbar-dark .navbar-nav .nav-link,  .fix-nav .navbar-dark .navbar-nav .nav-link {
    padding:0.8rem 1rem;
    color: var(--black);
  }
  .navbar-dark .navbar-nav .active > .nav-link
  {
    color: var(--blue);
  }
  .navbar-dark .navbar-nav .nav-link:focus, .navbar-dark .navbar-nav .nav-link:hover
  {
    color: var(--blue);
  }
  .navbar-dark .navbar-collapse {
    padding-top: 27px;
    background-color:var(--white);
  }
  nav li.dropdown::after {
    position: absolute;
    content: "›";
    right: 17px;
    top: 5px;
    font-size: 25px;
    color: #666;
    border: 0;
    font-weight: 300;
  }
   .m-top {
    margin-top: 52px;
  }
  .navbar ul .list-menu{
    -webkit-column-count:1;
    -moz-column-count:1;
    column-count: 1;
  }
  .mega-drop {
    position: relative;
  }
  .admission-page .grid-box{
    -webkit-column-count:1;
      -moz-column-count:1;
      column-count:1;
  }
  .f-ex{
    padding-bottom:15px;
    border-bottom:1px solid #ddd;
  }
  .f-ex .form-control{
   margin-bottom:6px;
  }
  .inner-banner::after {
    height: 120px;
  }
  .lab-list li {
    width: 100%;
}
.program-about-img {
  width: 100%;
  height: auto;
  position: relative;
}


}
@media only screen and (min-width:991px) {
  .page-section{
    overflow:hidden;
  }
  .left-content{
      -webkit-transform: translateX(-30px);
      -ms-transform: translateX(-30px);
      transform: translateX(-30px);
      -webkit-transition: all 2s ease;
      transition: all 2s ease;
  }
  .right-content{
      -webkit-transform: translateX(30px);
      -ms-transform: translateX(30px);
      transform: translateX(30px);
      -webkit-transition: all 2s ease;
      transition: all 2s ease;
  }
  .bottom-content{
      opacity: 0;
      -webkit-transform: translateY(30px);
      -ms-transform: translateY(30px);
      transform: translateY(30px);
      -webkit-transition: all 2s ease;
      transition: all 2s ease;
  }
  .top-content{
      opacity: 0;
      -webkit-transform: translateY(-30px);
      -ms-transform: translateY(-30px);
      transform: translateY(-30px);
      -webkit-transition: all 2s ease;
      transition: all 2s ease;
  }
  .zoom-content{
    opacity: 0;
    -moz-transform: scale(0);
      -webkit-transform: scale(0);
      transform: scale(0);
    -webkit-transition: all 2s ease;
      transition: all 2s ease;
  }
  .animate .zoom-content{
    opacity: 1;
    -moz-transform: scale(1);
      -webkit-transform: scale(1);
      transform: scale(1)
  }
  .animate .left-content, .animate .right-content {
    opacity: 1;
      -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
      transform: translateX(0);
  }
  .animate .bottom-content, .animate .top-content{
      opacity: 1;
      -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
      transform: translateY(0);
  }
.container.max-600 {
  max-width:600px;
}
.recruitment-sec h2{
  font-size:28px;
}

  }
  .dley-1{
    transition: all 1s ease;
  }
  .dley-2{
    transition: all 2s ease;
  }
  .dley-3{
    transition: all 3s ease;
  }
  .dley-4{
    transition: all 4s ease;
  }
.f-contect-info{
  padding-bottom:30px;
  border-bottom:1px solid #5a5a5a;
  margin-bottom:30px;
}
.ach-event h2 {
  padding-left: 15px;
}  
.startups .br-box-r{
 display: block;
 width:100%;
 background-color:var(--white);
}


@media (min-width:320px) and (max-width:575px) {
  .banner-main .slick-next {
    right:5px;
  }
  .banner-main .slick-prev {
    left:5px;
  }
  .banner-main img {
    height:280px;
    width: 100%;
    object-fit: cover;
  }
  .banner-main-text p {
    font-size: 15px;
    line-height: 21px;
    margin-bottom: 9px;
  }
  .banner-main-text h1 {
    font-size: 18px;
    line-height:26px;
    margin-bottom: 2px;
  }
  .banner-main-text {
    width: 100%;
    padding: 12px;
  }
  .padding {
    padding: 35px 0;
  }
  .faculties-gls {
    padding-top: 30px;
 }
  h2 {
    line-height: 1.4;
    font-size: 24px;
    margin-bottom: 15px;
  }
  .slick-next {
    right: -10px;
  }
  .slick-prev {
    left: -10px;
  }
  .inst-content h3 {
    font-size:17px;
  }
  .inst-box:hover .inst-content .fo
  {
    margin-top: -46px;
  }
  .inst-content ul li
  {
    line-height: 22px;
  }
  .inst-box:hover .btn-br-w
  {
    bottom: 35px;
  }
  .life-sec .btn {
    margin-top: 10px;
  }
  .ord-1{
    order:1;
  }
  .news-box .news-box-img {
    width: 100%;
  }
  .news-box {
    flex-direction: column;
  }
  .f-icons{
    margin-bottom:15px;
  }
  .list2 li {
    width: 100%;
  }
  .follo-icon {
     margin-bottom: 15px;
  }
  .footer-bottom{
    flex-direction: column;
  }
  .ab-img {
    float: right;
    max-width: 100%;
    margin-left: 0;
  }
  .inner-banner h1{
    font-size:21px;
    padding: 10px 26px;
  }
  .inner-banner img{
    width: 100%;
    height: auto;
    object-fit: cover;
    aspect-ratio: 100/50;
  }
  .grid-box {
    -webkit-column-count:1;
    -moz-column-count:1;
    column-count:1;
  }
  .list-half li{
    width:100%;
  }
  .list-half3 li{
    width:100%;
  }
  .navbar-nav{
    overflow-x: scroll;
    height: 100%;
    height: 100vh;
    padding-bottom: 30px;
  }
  .fix-btn {
    top: auto;
    bottom: 0;
    left: 0;
    text-align: center;
    background-color: #fff;
    padding: 5px 0;
    -webkit-box-shadow:0px 0px 8px 0px rgba(54, 54, 54, 0.17);
-moz-box-shadow:0px 0px 8px 0px rgba(54, 54, 54, 0.17);
box-shadow:0px 0px 8px 0px rgba(54, 54, 54, 0.17);
  }
  .fix-btn .btn {
    display: inline-block;
    border-radius: 8px;
    margin: 2px 0;
    padding: 6px 14px;
    font-size: 14px;
  }
  .box-nn {
    flex-direction: column;
  }
  .box-nn {
    align-items: start;
  }
  .adm-title-box {
    justify-content: center;
    gap: 15px;
  }
  .video-text h1{
    font-size: 31px;
  }
  .video-text p{
    font-size: 21px;
  }
  .bt-right{
    text-align: left;
  }
  h3{
    font-size: 18px;
  }

  .inst-box-img img {
    aspect-ratio: 100/90;
    object-fit: cover;
    width: 100%;
    height: auto;
  }

  .banner .slick-next {
    right:5px;
  }
  .banner .slick-prev {
    left:5px;
  }
  .banner img {
    height:280px;
    width: 100%;
    object-fit: cover;
  }
  .banner-text p {
    font-size: 15px;
    line-height: 21px;
    margin-bottom: 9px;
  }
  .banner-text h1 {
    font-size:21px;
    line-height:28px;
    margin-bottom: 2px;
  }
  .b-text-m {
    max-width: 365px;
    margin: 0 auto;
    padding:0 21px;
  }
  .fob-imabox {
    margin-top: 20px;
  }
  .list-box {
    flex-direction: column;
}
.list-box li {
  width: 100%;
}
.feature-sec .container {
  position: relative;
}
.feature-sec img {
  display: none;
}
.feature-sec{
  padding:30px 0;
}
.ach-event h2 {
  padding-left: 15px;
}
.ach-event .slick-prev, .ach-event .slick-next {
  top: -31px;
}
.programs-sec h3{
  margin-bottom:30px;
}
.thum-gallery .wow img{
  aspect-ratio: 100 /70;
}
.thum-gallery .wow {
  height: 210px;
}
.list-heding li a img {
  width: 40px;
}
.list-heding li a{
  padding: 6px 18px;
  font-size: 15px;
}
.p-o-box p{
  height: auto;
}
.women-gallery .thum-gallery .wow{
  height: auto;
}
.women-gallery .thum-gallery .wow img {
  object-fit: cover;
  width: 100%;
  height: auto;
  object-position: top;
  aspect-ratio: auto;
}

}
@media (min-width:576px) and (max-width:767px) {
  .ab-img {
    float: right;
    max-width: 100%;
    margin-left: 0;
  } 
  .inner-banner h1{
    font-size:26px;
    padding: 10px 26px;
  }
  .inner-banner img{
    width: 100%;
    height: auto;
    object-fit: cover;
    aspect-ratio: 100/30;
  }
  .grid-box {
    -webkit-column-count:1;
    -moz-column-count:1;
    column-count:1;
  }
  .list-half li{
    width:100%;
  }
  .list-half3 li{
    width:50%;
  }
  .navbar-nav{
    overflow-x: scroll;
    height: 100%;
    height: 100vh;
    padding-bottom: 30px;
  }
  .adm-title-box {
    justify-content: center;
    gap: 15px;
  }
  .bt-right{
    text-align: left;
  }
  .f-icons{
    margin:10px 0;
  }
  .follo-icon{
    margin-bottom:15px;
  }
  .video-text h1
  {
    font-size: 36px;
  }
  .video-text p{
  font-size: 20px;
  }
  h2{
    font-size: 31px;
    margin-bottom: 16px;
  }
  .fob-imabox {
    margin-top: 20px;
}
.feature-sec .container {
  position: relative;
}
.feature-sec img {
  display: none;
}
.feature-sec{
  padding:30px 0;
}
.ach-event h2 {
  padding-left: 15px;
}
.ach-event .slick-prev, .ach-event .slick-next {
  top: -31px;
}
.programs-sec h3{
  margin-bottom:30px;
}
.banner-text h1 {
  font-size: 28px;
  line-height: 41px;
}

}
@media (min-width:768px) and (max-width:991px) {
  .banner-main-text h1 {
    font-size: 24px;
  }
  .banner-main-text{
    padding:35px;
  }
  .inst-content h3{
    font-size: 17px;
    line-height: 1.2;
  }
  .inst-content ul li{
    font-size: 14px;
    padding-bottom: 3px;
    line-height: 1.6;
  }
  .inst-box .btn-br-w{
    padding:6px 22px;
    font-size: 14px;
  }
  .inst-box:hover .btn-br-w{
    bottom: 3px;
  }
  .ab-img {
    float: right;
    max-width: 100%;
    margin-left: 0;
  }
  .inner-banner img{
    width: 100%;
    height: auto;
    object-fit: cover;
    aspect-ratio: 100/30;
  }
  .grid-box {
    -webkit-column-count:2;
    -moz-column-count:2;
    column-count:2;
  }
  .events-list .img-b {
    height: 230px;
  }
  .list-half3 li{
    width:100%;
  }
  .follo-icon a{
    padding: 8px;
    margin: 5px 2px;
  }
  .bt-right{
    text-align: left;
  }
  .best-img img{
    width: 100%;
    object-fit: cover;
    aspect-ratio: 100/70;
  }
  .video-text h1{
    font-size: 40px;
  }
  .video-text p{
    font-size: 21px;
  }
  h2{
    font-size: 31px;
    margin-bottom: 18px;
  }
  .inst-box-img img  {
    object-fit: cover;
    aspect-ratio: 100/100;
    width: 100%;
  }
  .fob-imabox {
    margin-top: 30px;
}
.list-box li {
  width: 40%;
  font-size: 16px;
  padding: 16px;
}
.feature-sec img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 100 / 60;
}
.thum-gallery .wow {
  height: 146px;
}

}
@media (min-width:992px) and (max-width:1199px) {
  .inst-content h3 {
    font-size:17px;
  }
  .navbar-dark .navbar-brand img {
    width: 110px;
  }
  .navbar-dark .navbar-nav .nav-link {
    font-size: 14px;
    padding: 1.4rem 0.6rem;
  }
  .fix-nav .navbar-dark .navbar-nav .nav-link{
    padding: 1.2rem 1rem;
  }
  .events-list .img-b {
    height: 200px;
  }

  .inst-content ul li
  {
    font-size: 14px;
    padding-bottom: 0px;
  }
  .inst-box-img img
  {
    opacity: 0.8;
    object-fit: cover;
    aspect-ratio: 100/80;
    width: 100%;
  }
  .best-img img{
    width: 100%;
    object-fit: cover;
    aspect-ratio: 100/180;
  }
  h2{
    font-size: 36px;
  }
  .list-box li {
    width: 40%;
    font-size: 16px;
    padding: 16px;
  }
  .feature-sec img {
    width: 100%;
    object-fit: cover;
    aspect-ratio: 100 / 48;
}
.thum-gallery .wow {
  height: 150px;
}

}
@media (min-width:1200px) and (max-width:1300px) {
  .navbar-dark .navbar-nav .nav-link {
    padding: 2.3rem 0.8rem;
  }
  .fix-nav .navbar-dark .navbar-nav .nav-link {
    padding: 1.2rem 1rem;
  }
  .inst-content h3 {
    font-size: 22px;
  }
  .events-list .img-b {
    height: 240px;
  }
  footer .icon-text p{
    font-size: 13px;
  }
  footer .icon-text h4{
    font-size: 15px;
  }
  .thum-gallery .wow img {
    aspect-ratio: 100 / 73;
  }

}
@media (min-width:1300px) and (max-width:1566px) {
  .container{
    max-width:1250px;
  }
  .max-900{
    max-width:900px;
  }
  .max-1000{
    max-width:1000px;
  }
}

@media (min-width:1600px) {
  .container{
    max-width:1400px;
  }
  .same-box .p-o-box {
    min-height: 610px;
  }
  .women-gallery .thum-gallery .wow {
    height: 460px;
  }

}


