﻿
body{
	/* font-family: "Open Sans", sans-serif !important; */
	font-family: 'Inter', sans-serif;
}
body.pageActive{
	*overflow:hidden;
}
.main{
	overflow:hidden;
}
a:focus,a:hover,button:focus,button:hover{
	outline:none;
	text-decoration:none;
	box-shadow:none;
}
ul,ol{
	padding:0;
	margin:0;
	list-style-type:none;
}
.media img{
	width:100%;
}
/**************New Css*************/
@media screen and (min-width: 1320px){
	.container {
		max-width: 1230px;
	}
}
.fixed-sidebar{
	position: fixed;
	top: 0;
	width: 100%;
	/* height: 100%; */
	left: 0;
	/* background: #205246; */
	z-index: 12;
	text-align: center;
	padding: 0 50px 0 50px;
	/* border-right: 1px solid #fff; */
	transition:.3s ease-in-out;
	display: flex;
	/* justify-content: space-between; */
	/* align-items: anchor-center; */
}

.fixed-sidebar .nav-trigger a{
	text-align:center;
}
.fixed-sidebar .nav-trigger{
	position:relative;
	z-index:2;
}
.fixed-sidebar .nav-trigger span{
	display: block;
    height: 3px;
    background: #ffffff;
    width: 32px;
    border-radius: 6px;
	-webkit-border-radius: 6px;
	-moz-border-radius: 6px;
    box-shadow: 0 0 5px #444;
    transition: .3s ease-in-out;
    text-align: center;
    margin: 6px auto 6px;
	
}
.fixed-sidebar .nav-trigger a.triggerOpen  span:nth-child(1){
	transform:rotate(45deg) translate(7px, 8px);
}
.fixed-sidebar .nav-trigger a.triggerOpen  span:nth-child(3){
	transform:rotate(-45deg) translate(5px, -6px);
}
.sidebarLogo{
	position: relative;
	z-index: 2;
	/* left: -10px; */
	display:block;
	display: flex;
	align-items: center;
}
.sidebarLogo img{
	 width: 90px;
}
.sidebarNav{
	/* position: absolute; */
	bottom: 0;
	right: 0;
	left: 0;
	/* width: 100%; */
	text-align: center;
	height: 100%;
	display: -webkit-flex;     /* NEW - Chrome */
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	justify-content: flex-end;
}
.sidebarNav:before{
	content: "";
	height: 117px;
	width: 100%;
	left: 0;
	right: 0;
	background: linear-gradient(to bottom, #000000cc 10%, #04040473 70%, #00000000 100%);
	/*background: #205246;*/
	/* background: #10254c; */
	position: absolute;
	z-index: 1;
	transition: .3s ease-in;
	transform: translateX(0);
	top: 0;
}
.sidebarNav:after{
	content: "";
	height: 100%;
	width: 260px;
	left: 0;
	right: 0;
	/*background: #286959;*/
	/* background: #10254c; */
	position: absolute;
	z-index: 0;
	transition: .1s ease-in;
	transform: translateX(-260px);
	/* border-left:1px solid #fff; */
	*
	opacity:0;
}
.sidebarNavActive.sidebarNav:after{
	transform: translateX(100px);
	opacity:1;
}
.sidebarNav > ul{
	*
	padding-bottom: 70%;
	/* width: 100%; */
	text-align: center;
    *
	position: relative;
	z-index:1;
	display: flex;
}
.sidebarNav ul li{
	margin:0;
	position: unset;
}
.sidebarNav ul li a{
    font-size: 30px;
    color: #fff;
    line-height: normal;
    display: block;
    text-decoration: none !important;
    padding: 8px 9px;
    /* border-bottom: 1px solid #ddd; */
}
.sidebarNav ul li a img{
	color:#fff;
	font-size:20px;
	width:35px;
	margin:0 0 3px 0;
	font-size:14px;
}
.sidebarNav ul li a i,.sidebarNav ul li a img{
	opacity: .9;
}
.sidebarNav ul li a span{
	    /* font-size: 14px; */
	    font-size: clamp(14px, 0.99vw, 99vw);
	    display:block;
	    color:#fff;
	    /* text-transform: uppercase; */
}
.sidebarNav ul li .subNav{
	position: absolute;
	right: 0;
	/* height: 100%; */
	width: 100%;
	text-align: left;
	top: 100%;
	display: none;
	align-items: flex-start;
	padding: 25px 6% 20px;
	display:none;
	background: #ffffff;
	border-bottom-left-radius: 10px;
	border-bottom-right-radius: 10px;
	box-shadow: 0 4px 7px 0 rgb(0 0 0 / 24%);
}
.sidebarNav ul li .subNav ul{
	position:relative;
}
.sidebarNav ul li:hover .subNav ul{
	opacity:1;
	visibility:visible;
}
.sidebarNav ul li .subNav ul li a{
	font-size: 14px;
	border:0;
	color: #000000;
	font-weight: 400;
	padding: 10px 12px;
	height: 37px;
}
.sidebarNav ul li .subNav ul li a:hover{
	color: #cc1815;
	font-size: 15px;
}
/*****Hero Nav*********/
.sidebarNav ul > li > a {
    display: flex;
    align-items: center;
    gap: 3px;
}
.sidebarNav ul li:hover .chev {
    transform: rotate(180deg);
    opacity: 1;
}
.chev {
    width: 13px;
    height: 13px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
    flex-shrink: 0;
    opacity: .8;
    transition: transform .22s, opacity .2s;
}
header.header_tri.fixed-header .chev { stroke: #000;}
header.header_tri.fixed-header .sidebarNav:before {
    background: #fff;
    box-shadow: 0 10px 15px rgb(0 0 0 / 11%);
    height: 100%;
}

header.header_tri.fixed-header .sidebarNav > ul > li > a span {
    color: #000;
}
.heroheader{
	position:fixed;
	top:0;
	left:0;
	width:100%;
	z-index:4;
	background:#10254c;
	padding: 0 56px;
	transition:.3s ease-in-out;
	transform:translateY(-100%);
}
.heroheader ul{
	display: -webkit-flex;     /* NEW - Chrome */
	display: flex;
    justify-content: flex-end;
    align-items: center;
    float: right;
}
.heroheader li{
	margin: 0 15px;
    position: relative;
}
.heroheader li a{
	color: #fff;
    padding: 16px 0;
    display: inline-block;
    text-decoration: none !important;
    text-transform: uppercase;
    font-size: 15px;
}
.heroheader li ul{
	position: absolute;
    top: 100%;
    left: 0;
    width: 200px;
    background: #fff;
    box-shadow: 0 0 10px #999;
    display: none;
    text-align: left;
    padding: 10px;
    flex: none;
}
.heroheader li ul li{
	margin:0;
	
}
.heroheader li ul li:last-child{
	margin-left:0 !important;
}
.heroheader li ul li a{
	display:block;
	padding:10px 10px;
	color:#333;
	text-align:left;
}
.heroheader li:hover ul{
	display:block;
}
.heroheader li:last-child{
	margin-left:6px;
}
.heroheader li:last-child .nav-trigger{
	float:none;
}
.heroheader li:last-child .nav-trigger a {
    display: block;
    font-size: 22px;
    font-weight: 800;
    color: #fff;
    position: relative;
    padding-right: 68px;
    z-index: 1;
	margin:0;
	
}
.heroheader li:last-child .nav-trigger a span{
    display: block;
    height: 4px;
    background: #ffffff;
    width: 36px;
    margin: 7px 0;
    border-radius: 6px;
	-webkit-border-radius: 6px;
	-moz-border-radius: 6px;
    box-shadow: 0 0 5px #444;
    transition: .3s ease-in-out;
}
.heroheader li:last-child a b{
    position: absolute;
    font-size: 18px;
    right: 0;
    color: #fff;
    top: 22px;
    text-transform: uppercase;
}
.fixedheader-brand{
	display: -webkit-flex;     /* NEW - Chrome */
	display: flex;
	justify-content: center;
	color:#fff;
	float:left;
	margin:10px 0;
}
.fixedheader-brand img{
	*width: 52px;
    height: 52px;
}
.fixedheader-brand span{
	font-size: 23px;
    text-align: left;
    text-transform: uppercase;
    line-height: 22px;
    padding: 7px 0 0 10px;
	color:#fff;
}
.fixedheader-brand span small{
	font-size: 15px;
    display: block;
}

/********marquee**********/
.text-marquee{
	line-height: normal;
    display: block;
    padding: 10px 0;
    border-bottom: 1px solid #e6e6e6;
    position: absolute;
    bottom: 0;
    right: 0;
    background: rgba(0,0,0,.7);
}
.text-marquee a{
	display: inline-block;
    margin: 0 40px;
    color: #fff;
    font-size: 20px;
    letter-spacing: 1px;
    font-weight: 600;
	text-decoration:none !important;
}
.text-marquee a i{
	font-size: 25px;
    color: #f7d486;
	vertical-align:middle;
	margin-top:-2px;
}
.nav-trigger.NavTriggerBottom{
	float: none;
    text-align: center;
    margin: 0 auto;
}
.nav-trigger.NavTriggerBottom a{
	padding: 0;
	background: #b3150f;
	width: 110px;
	cursor: pointer;
	text-decoration: none !important;
	height: 144px;
	display: -webkit-flex;     /* NEW - Chrome */
	display: flex;
	justify-content: center;
	align-items: center;
	clip-path: ellipse(50% 38% at 50% 50%);
	-webkit-clip-path: ellipse(50% 38% at 50% 50%);
	margin: 0 auto -84px;
	position: relative;
	z-index: 0;
}
.nav-trigger.NavTriggerBottom a span{
	display:none;
}
.nav-trigger.NavTriggerBottom a  b i{
	line-height:normal;
	display: block;
	font-size:80%;
	margin-bottom: 1px;
}
.nav-trigger.NavTriggerBottom a  b{
    position: static;
    margin-top: -68px;
    display: block;
    line-height: 15px;
    font-weight: 600;
}






/*********Header******/
.brand-header{
	position:fixed;
	top:0;
	left:0;
	width:100%;
	z-index:5;
}

.brand-header:after{
	position: absolute;
	left:0;
	top:0;
    z-index: 0;
	transition:.3s ease-in-out;
	height:100%;
	width:100%;
	content:"";
	background:rgba(86, 68, 68, 0.9);
	transform:translate(0,-100%)
}
.brand-header.headerStick:after{
	transform:translate(0,0)
}
.brand-header .container{
	max-width:100%;
	margin: auto;
	position:relative;
	z-index:1;
	padding:0;
}
.navigation{
	position: relative;
    z-index: 2;
	transition:.3s ease-in-out;
}
.navigation-media{
	position: absolute;
	left:0;
	top:0;
    z-index: 1;
	width:30%;
	height:100%;
	background:url(../images/navigation-media.jpg)no-repeat center top/cover;
	transition:.8s ease-in-out;
	opacity:0;
	margin-left:-40px;
	transition-delay:.8s;
}
.navWrapper.navWrapperOpen .navigation-media{
	opacity:.7;
	margin-left:0px;
}
.header-brand-logo{
	display: inline-block;
    padding: 8px 0;
    transition: .3s ease-in-out;
    margin-left: 145px;
    position: absolute;
    top: 45px;
}
.brand-header.headerStick .header-brand-logo{
	opacity:0;
	visibility:hidden;
}
.header-brand-logo img{
	width:100px;
}
.top-level{
	float:right;
	margin:70px 145px 0 0;
	transition:.3s ease-in-out;
}
.brand-header.headerStick .top-level{
	margin-top:8px;
}
.nav-trigger-close{
	
}
.nav-trigger a{
	display: block;
    font-size: 22px;
    font-weight: 800;
    color: #fff;
    position: relative;
    padding-right: 68px;
    margin-top: 24px;
    z-index: 1
}
.nav-trigger a b,.nav-trigger-close a b{
	position: absolute;
    font-size: 18px;
    right: 0;
    color: #fff;
    top: -1px;
    text-transform: uppercase;
}
.nav-trigger a span,.nav-trigger-close a span{
	display: block;
    height: 4px;
    background: #ffffff;
    width: 36px;
    margin: 7px 0;
	border-radius: 6px;
	-webkit-border-radius: 6px;
	-moz-border-radius: 6px;
	-webkit-border-radius: 6px;
	-moz-border-radius: 6px;
	box-shadow:0 0 5px #444;
	transition:.3s ease-in-out;
}


.nav-trigger{
	float:left;
}



.top-level > li{
	display:inline-block;
	
}
.top-level li a{
	display:block;
	font-size:22px;
	font-weight:800;
	color:#fff;
}
.brand-logo{
	text-align: left;
    padding: 0;
    margin: 0 auto;
    /*display: block;*/
}
.brand-logo img{
	width:auto;
}
.navWrapper{
	position: fixed;
    width: calc(100% + 18px);
    height: 100%;
    background: #10254c;
    z-index: 1;
    transition: .4s ease-in-out;
    transform: translateX(100%);
	top:0;
	overflow:hidden;
	overflow-y:scroll;
	padding:0 0 30px 0;
	
}
.navWrapper:before{
    position: absolute;
    width: 240px;
    height: 310px;
    z-index: 0;
    background: url(../images/logo/logo.png)no-repeat center center/cover;
    content: "";
    *opacity: .05;
    opacity: 0;
    bottom: 0;
    transform: translate(8px, 24px);
	transition: .8s ease-in-out;
	transition-delay:.7s;
}
.navWrapperOpen.navWrapper:before{
    transform: translate(8px, -20px);
	opacity: .05;
}
.navWrapper.navWrapperOpen{
    transform: translateX(0%);
}
.navWrapper .secondary-level{
	position: absolute;
    top: 0;
    right: 0;
    transform: translate(-144px, 140px);
	text-align:right;
	transition: .4s ease-in-out;
}
.brand-header.headerStick .navWrapper .secondary-level{
	transform:translate(-144px, 100px)
}
.navWrapper .secondary-level > ul{
	position: relative;
    width: 300px;
    float: right;
}
.navWrapper .secondary-level > ul:after{
	position: absolute;
    content: "";
    height: 100%;
    width: 1px;
    background: #ddd;
    left: 0;
    margin: 0 auto;
    top: 0;
}
.navWrapper .secondary-level >ul >li{
	margin:0 0 15px 0;
	transition: .4s ease-in-out;
	opacity:0;
	transform:translate(0px, 10px);
}
.navWrapper .secondary-level >ul>li:nth-child(1){
	transition-delay:.3s;
}
.navWrapper .secondary-level >ul>li:nth-child(2){
	transition-delay:.4s;
}
.navWrapper .secondary-level >ul>li:nth-child(3){
	transition-delay:.5s;
}
.navWrapper .secondary-level >ul>li:nth-child(4){
	transition-delay:.6s;
}
.navWrapper .secondary-level >ul>li:nth-child(5){
	transition-delay:.7s;
}
.navWrapper .secondary-level >ul>li:nth-child(6){
	transition-delay:.8s;
}
.navWrapper .secondary-level >ul>li:nth-child(7){
	transition-delay:.9s;
}
.navWrapper .secondary-level >ul>li:nth-child(8){
	transition-delay:1s;
}
.navWrapper .secondary-level >ul>li:nth-child(9){
	transition-delay:1.1s;
}
.navWrapper .secondary-level >ul>li:nth-child(10){
	transition-delay:1.2s;
}
.navWrapper .secondary-level >ul>li:nth-child(11){
	transition-delay:1.3s;
}
.navWrapper .secondary-level >ul>li:nth-child(12){
	transition-delay:1.4s;
}

.navWrapper.navWrapperOpen .secondary-level >ul > li{
    opacity:1;
	transform:translate(0px, 0);
}

.navWrapper .secondary-level >ul>li >a{
	font-size:17px;
	color:#fff;
	text-decoration:none;
	text-transform:uppercase;
	transition: .2s ease-in-out;
}
.navWrapper .secondary-level >ul>li >a:hover{
	color:#aaa;
}
.navWrapper ul li ul{
	position: absolute;
    top: 0;
    right: 300px;
    width: 260px;
    text-align: left;
    opacity: 0;
    visibility: hidden;
}
.navWrapper ul li ul.secodaryNav{
	opacity:1;
	visibility:visible;
}
.navWrapper ul li ul li{
	margin:0 0 10px 0;
	transition: .1s ease-in-out;
	opacity:0;
	transform:translate(0px, 10px);
}
.navWrapper ul li ul li:nth-child(1){
	transition-delay:.3s;
}
.navWrapper ul li ul li:nth-child(2){
	transition-delay:.4s;
}
.navWrapper ul li ul li:nth-child(3){
	transition-delay:.5s;
}
.navWrapper ul li ul li:nth-child(4){
	transition-delay:.6s;
}
.navWrapper ul li ul li:nth-child(5){
	transition-delay:.7s;
}
.navWrapper ul li ul li:nth-child(6){
	transition-delay:.8s;
}
.navWrapper ul li ul li:nth-child(7){
	transition-delay:.9s;
}
.navWrapper ul li ul li:nth-child(8){
	transition-delay:1s;
}
.navWrapper ul li ul li:nth-child(9){
	transition-delay:1.1s;
}
.navWrapper ul li ul.secodaryNav li{
    opacity:1;
	transform:translate(0px, 0);
}
.navWrapper ul li ul li a{
	font-size:22px;
	color:#eabd57;
	text-decoration:none;
}
.navWrapper ul li ul li a:hover{
	color:#aaa;
}
.headerQuikLinks {
	margin:60px 0 0;
}
.navWrapperOpen .headerQuikLinks {
	*transform:translate(0,0);
	*opacity:1;
}
.headerQuikLinks .hql-top{
	padding-bottom:8px;
}

.headerQuikLinks a{
	font-size: 20px;
    display: inline-block;
    color: #ddd;
    position: relative;
	text-decoration:none !important
}
.headerQuikLinks a svg{
	vertical-align: top;
    display: inline-block;
    margin: 3px 5px 0 0px;
    color: #fff;
}
.headerQuikLinks .hql-top a{
	padding: 10px 20px;
    font-size: 18px;
    text-align: center;
    background: #966e6e;
    color: #fff;
    min-width: 120px;
    line-height: normal;
    transition: .3s ease-in-out;
    letter-spacing: 1.5px;
}
.headerQuikLinks .hql-top a:hover{
	opacity:.7;
}
.headerQuikLinks .hql-top a:not(:last-child){
	margin-right:10px;
}
.headerQuikLinks .hql-bottom a:not(:last-child){
	margin-right:10px;
}
.headerQuikLinks .hql-bottom a{
	font-size:15px;
	margin: 0 10px;
}





.brand-hero{
	height: 100vh;
    position: relative;
    z-index: 2;
}
.hero-bg{
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
	background:#000;
	opacity:.125;
	z-index:0;
	
}
.animate-banner{
	position:absolute;
	top:0;
	bottom:0;
	right:0;
	left:0;
	width:100%;
	height:100%;
	z-index:1;
	overflow:hidden;
}
.homeSlider,.slick-list,.slick-track {
	height:100%;
}
.animate-banner picture{
	display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
	margin: auto;
	transform: scale(1.2);
	
}
.zoom {
	-webkit-animation: scale 40s linear infinite;
	animation: scale 40s linear infinite;
}
@-webkit-keyframes scale {
  50% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes scale {
  50% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.animate-banner picture img{
	height:100%;
	width:100%;
	-o-object-fit:cover;
	object-fit:cover;
}
.contact-page .animate-banner picture img{
	object-position:bottom;
}
/**************Video***********/
.brand-hero video{
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
	object-fit:cover
}

/****Google map**********/
.brand-hero .google-map{
	position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    filter: invert(.9);
}
/**********hero-content*************/
.hero-content{
	padding: 20px;
    position: absolute;
    z-index: 3;
    top: 0;
    width: 400px;
    right: 0;
	height:100%;
}
.hero-content h1{
	font-size: 40px;
    color: #fff;
    text-align: center;
    position: relative;
    text-shadow: 0 0 20px #333;
    margin: 4px 0 0;
}
.hero-content h1 small{
	font-size:18px;
	display:block;
	letter-spacing:3px;
}
/*********sticky-buttons*********/
.sticky-buttons{
	text-align:center;
	margin-top:40px;
}
.sticky-buttons a{
	display: -webkit-flex;     /* NEW - Chrome */
	display: flex;
    font-size: 26px;
    text-decoration:none !important;
    justify-content: center;
    align-items: center;
    margin: 18px auto;
	position: relative;
	width: 48px;
    height: 48px;
}
.sticky-buttons a i{
	background: #dadada;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    text-decoration: none !important;
    position: relative;
    z-index: 1;
    padding: 10px 0;
    text-align: center;
    color: #333;
}
.sticky-buttons a span{
	position: absolute;
    top: 0px;
    right: 22px;
    padding: 11px 40px 10px 18px;
    min-width: 200px;
    font-size: 18px;
    text-align: right;
    transition: .3s;
    opacity: 0;
    visibility: hidden;
    color: #3e2213;
    background: #fff;
    border-radius: 10px 0 0 10px;
}
.sticky-buttons a:hover span{
	opacity:1;
	visibility:visible;
}
.sticky-buttons a:nth-child(1){
	
}




.heroBtns{
	margin: 12% 0 0;
	display: -webkit-flex;     /* NEW - Chrome */
	display: flex;
    align-items: center;
    justify-content: center;
}
.heroBtns a{
	padding: 12px 30px 6px 30px;
    background: none;
    color: #fff;
    font-size: 20px;
    text-decoration: none;
    border: 1px solid #fff;
    text-align: center;
    text-transform: uppercase;
    border-radius: 8px;
    line-height: 26px;
    letter-spacing: .5px;
    font-weight: 600;
    background: rgba(86, 68, 68, 0.74);
	font-family: sans-serif;
}
.heroBtns a small{
	display:block;
	font-size:14px;
	letter-spacing:1px;
}
.heroBtns a + a{
	background:#fff;
	color: #564444;
	margin-left:20px;
}
/***********school-manage-area***********/
.home-gallery-items{
	padding: 50px 0;
	/* background:aliceblue; */
	position: relative;
	overflow: hidden;
}

.item-part{
	padding: 0 0 24px 0;
	color:#fff;
	position:relative;
	/* background: #fff; */
	/* box-shadow: 0 4px 16px 0 rgb(0 0 0 / 28%); */
	/* border-radius: 6px; */
	/* overflow: hidden; */
	/* padding: 4px; */
	z-index: 1;
}
.item-part:after{
	height: 100%;
	position:absolute;
	content:"";
	width:100%;
	background: #fff;
	bottom:0;
	box-shadow:0 4px 16px 0 rgb(0 0 0 / 28%);
	left:0;
	z-index:0;
	/* border-top-left-radius: 10px; */
	/* border-top-right-radius: 10px; */
	border-radius: 6px;
}
.item-part:after,.item-part figure,.item-part .item-part-detail h3,.item-part .item-part-detail hr,.item-part .item-part-detail hr:after,.item-part .item-part-detail .readMore a{
	transition:.5s ease-in-out;
	-moz-transition:.5s ease-in-out;
	-webkit-transition:.5s ease-in-out;
}

.item-part:hover:after{
	background: #950702;
	/* border-radius:10px 10px 0 0; */
}

.item-part .item-part-inner {
    color: inherit;
    height:100%;
    position:relative;
    display:block;
    z-index:1;
    padding: 4px;
}
.rgrfh_tri {
    display: flex;
    gap: 25px;
    margin-top: 32px;
}
.uyuyj_tri {
    width: 18.5%;
}
.item-part figure{
	    position: relative;
	    border-bottom: 5px solid #950702;
	    width: 100%;
	    height: 150px;
	    /* border-radius: 50%; */
	    overflow: hidden;
	    margin: 0 auto;
	    /* border-radius: 50%; */
	    border-bottom-right-radius: 50%;
	    border-bottom-left-radius: 50%;
}
.item-part:hover figure{
	*
	border-radius:0%;
	border-color: #ffffff;
	/* border-top-left-radius: 10px; */
	/* border-top-right-radius: 10px; */
}

.item-part figure img{
	width:100%;
	transition:3s ease-in-out;
	-moz-transition:3s ease-in-out;
	-webkit-transition:3s ease-in-out;
	transform:scale(1);
	height:100%;
	width:100%;
	object-fit:cover;
	object-position: top;
}
.item-part:hover figure img{
	transform:scale(1.5);
}
.item-part .item-part-detail{
	text-align:center;
	padding: 10px 0 0;
}
.item-part .item-part-detail h3{
	color: #000000;
	margin:0;
	line-height: 28px;
	font-size: 18px;
}
.item-part:hover .item-part-detail h3{
	color:#fff;
}
.item-part .item-part-detail hr{
	display: block;
	margin: 15px auto 15px;
	height: 1px;
	background: #ffffff00;
	width:60%;
	position:relative;
	border: 0;
}
.item-part .item-part-detail hr:after{
	content: "";
	position: absolute;
	height: 2px;
	width: 38px;
	background: #950702 no-repeat center center / 29px;
	left: 0;
	right: 0;
	margin: 0 auto;
	top: -5px;
}
.item-part:hover .item-part-detail hr:after{
    background: #fff url(../images/logo/welham-boys-elephent-logo.png)no-repeat center center /29px;
}
.item-part .item-part-detail .readMore{
	padding-top:10px;
}
.item-part .item-part-detail .readMore a::before,.item-part .item-part-detail .readMore a::after{
	width:100%;
	background: #10254c00;
}
.item-part .item-part-detail .readMore span::before,.item-part .item-part-detail .readMore span::after{
	/* background:#fff; */
	height:100%;
}
.item-part:hover .item-part-detail .readMore a::before,.item-part:hover .item-part-detail .readMore a::after,.item-part:hover .item-part-detail .readMore span::before,.item-part:hover .item-part-detail .readMore span::after{
	background: #ffffff00;
}
.item-part:hover .item-part-detail .readMore a{
	color:#fff;
}
.item-part:hover .item-part-detail .readMore a span {
       border: 1px solid #fff;
       color: #fff;
}
.home-gallery-items:before {content:"";height: 200px;width: 200px;border: 40px solid #b3150f12;position: absolute;bottom: -60px;left: -60px;border-radius: 100px;}

.home-gallery-items:after {
    content: "";
    height: 200px;
    width: 200px;
    border: 40px solid #b3150f12;
    position: absolute;
    top: -60px;
    right: -60px;
    border-radius: 100px;
}
.sitem:nth-child(3) .item-part .item-part-detail .readMore a span {border: 1px solid #fff;color: #fff;}
.sitem:nth-child(3) .item-part .item-part-detail h3 {
	color:#fff;
}
.sitem:nth-child(3) .item-part:hover .item-part-detail h3{
	color:#ffffff;
}
.sitem:nth-child(3) .item-part:after{
	background: #950702;
}
.sitem:nth-child(3) .item-part:hover:after{
	background: #b3150f;
}

.sitem:nth-child(3) .item-part figure{
	border-color: #ffffff;
	/* border-top-left-radius: 10px; */
	/* border-top-right-radius: 10px; */
}
.sitem:nth-child(3) .item-part:hover figure{
	border-color: #b3150f;
	/* border-top-left-radius: 10px; */
	/* border-top-right-radius: 10px; */
}
.sitem:nth-child(3) .item-part .item-part-detail hr:after{
	background:#fff no-repeat center center /29px
}
.sitem:nth-child(3) .item-part:hover .item-part-detail hr:after{
	background:#fff no-repeat center center /29px
}
.sitem:nth-child(3) .item-part .item-part-detail .readMore a::before,.sitem:nth-child(3) .item-part .item-part-detail .readMore a::after,.sitem:nth-child(3) .item-part .item-part-detail .readMore span::before,.sitem:nth-child(3) .item-part .item-part-detail .readMore span::after{
	/* background:#fff; */
}
.sitem:nth-child(3) .item-part .item-part-detail .readMore a{
	color:#fff;
}
.sitem:nth-child(3) .item-part:hover .item-part-detail .readMore a::before,.sitem:nth-child(3) .item-part:hover .item-part-detail .readMore a::after,.sitem:nth-child(3) .item-part:hover .item-part-detail .readMore span::before,.sitem:nth-child(3) .item-part:hover .item-part-detail .readMore span::after{
	/* background:#fff; */
}
.sitem:nth-child(3) .item-part:hover .item-part-detail .readMore a{
	color:#fff;
}

/***********Title********/
.section-title {
    text-align: center;
}
.section-title h2,
.section-title h5 {
    text-transform: uppercase;
	color:#654f4f;
}
.news-wrapper .section-title h2 small{
	display:block;
	font-size:16px;
}
.section-title h5 {
    margin: 10px 0 28px 0;
}

.section-title p {
    width: 70%;
    margin: 0 auto;
}
.section-title{
	position: relative;
    margin: 0 0 30px 0;
}
.title-branding{
	width: 64px !important;
    position: relative;
    padding: 0 10px;
	margin:10px auto 0 
}
.title-branding:before,.title-branding:after{
	content:"";
	top:50%;
	width:60px;
	height:1px;
	background:#bba7a7;
	position:absolute
}
.title-branding:before{
	right:100%;
}
.title-branding:after{
	left:100%;
}
.title-branding img{
	width:100%;
}

/***********school-history********/
.school-history{
	padding:0;
	background:#fff;
}

.school-history .historyCol:last-child{
	background: #e5d39e;
	margin:-00 0;
	position:relative;
}
.school-history .historyCol:last-child:after{
	background: #e5d39e;
	position:absolute;
	left:100%;
	top:0;
	height:100%;
	width:50%;
	content:"";
}
.bg-section{
	*background: #ddd;
    padding: 40px;
}
.historyItems{
	display: -webkit-flex;     /* NEW - Chrome */
	display: flex;
    justify-content: space-between;
    align-items: center;
    ms-flex-wrap: wrap;
    flex-wrap: wrap;
    position: relative;
    margin-top: 30px;
}
.historyItems li{
	width:100%;
	position:relative;
	height:100%;
}

.historyItems li .singleHistory{
	position: relative;
    text-align: center;
    height: 100%;
    background: #f1f1f1;
    padding: 40px 30px;
    border-radius: 10px;
}
.singleHistory .history-content{
	width:100%;
	left:0;
	margin:0 auto;
}
.historyItems li:nth-child(2n + 1) .singleHistory .history-content p{
	margin-bottom:0;
}
.singleHistory .yearCircle{
	display: block;
    border-radius: 100%;
    background-color: #963743;
    color: #fff;
    width: 123px;
    height: 123px;
    margin: 0 auto 20px;
    text-align: center;
    font-size: 40px;
    font-weight: 700;
    line-height: 123px;
    position: relative;
}
.singleHistory .yearCircle:after{
	position:absolute;
	height:94%;
	width:94%;
	top:3%;
	left:3%;
	border:4px solid #fff;
	content:"";
	border-radius:50%;
}
.historyItems .owl-dots{
	text-align: center;
    margin: 20px 0 0;
}
.historyItems .owl-dots .owl-dot{
	text-align: center;
    display: inline-block;
    margin: 5px 6px;
    transition: .2s ease-in-out;
}

.historyDot{
	display: block;
    background-color: #ddd;
    color: #fff;
    margin: 0 auto;
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    position: relative;
    outline: none !important;
    border: 0 !important;
    transition: .2s ease-in-out;
    padding: 2px 8px;
	
}
.historyItems .owl-dots .owl-dot.active .historyDot{
	opacity:1;
	background-color: #3c2e2e;
	background-color: #c5b073;
}


/*************Ten Reasons***********/
.ten-reasons{
	position: relative;
    text-align: center;
    margin: 40px 0 0;
}

.ten-reasons h2{
	font-size:40px;
	color:#333;
	line-height:32px;
	margin:0 0 20px 0;
	padding:0 0 6px 0;
	position:relative;
}
.ten-reasons h2 small{
	font-size: 20px;
	display: block;
}
.ten-reasons ul li{
	padding: 25px 10px;
	background#ddd;
}
.ten-reasons ul li h4{
	margin-bottom: 15px;
    color: #eab0b0;
    color: #b22336;
    font-size: 33px;
    line-height: 44px;
    text-transform: uppercase;
    font-weight: 300;
}
.ten-reasons ul li p{
	color: #333;
    font-size: 22px;
    font-style: italic;
}

.reason-count{
	height:72px;
}
.reason-count .Dots{
	margin:20px 0 0;
}
.reason-count .Dots .owl-dot{
   display: inline-block;
    margin: 2px 3%;
    position: absolute;
    left: 0;
    right: 0;
}
.reason-count .Dots .my-dot{
	box-shadow: none;
    outline: none;
    display: inline-block;
    font-weight: 500;
    background: no-repeat;
    padding: 0;
    opacity: 0;
    height: 80px;
    width: 80px;
    border-radius: 50%;
    margin: 0 auto;
    border: 3px solid;
    font-size: 44px;
	transition:.3s ease-in-out;
    line-height: normal;
	transform:scale(0);
}
.reason-count .Dots .owl-dot.active .my-dot{
	color:#b22336;
	opacity:1;
	transform:scale(1);
	
}

/****owl-nav*********/
.reason-count .Nav {
	margin: 0px auto 0;
    width: 140px;
    position: absolute;
    left: 0;
    right: 0;
    z-index: 2;
	display: -webkit-flex;     /* NEW - Chrome */
	display: flex;
	
	justify-content:space-between;
}
.reason-count .Nav button{
	font-size: 50px;
    color: #b22336;
    margin-top: 0;
    outline: 0 !important;
    line-height: normal;
    padding: 0;
    border: 0;
    background: no-repeat;
}

/**************news-and-calendar***********/
.news-and-calendar{
	padding:0;
	background:#fff;
	position:relative;
}
.news-and-calendar:before{
	background:#f7f7f7;
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 45%;
    content: "";
}
.news-and-calendar:after{
	background: #f7f7f7;
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 55%;
    content: "";
}
.news-and-calendar .container-fluid{
	position:relative;
	z-index:1;
}
.news-and-calendar .news-wrapper .readMore a span{
	background:#b5d4cb;
	color:#fff;
	transition:.3s ease-in-out;
}
.news-and-calendar .news-wrapper .readMore a:hover span{
	background:#91aaa3;
}
.news-and-calendar .news-wrapper .readMore a:before,.news-and-calendar .news-wrapper .readMore a span:before,.news-and-calendar .news-wrapper .readMore a span:after,.news-and-calendar .news-wrapper .readMore a:after{
	display:none
}
#calendar_pop{
	position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    margin: 0 auto;
    bottom: 0;
    font-size: 20px;
    z-index: 99999;
    background: rgba(0,0,0,.9);
    height: 100%;
	display:none;
	
}
#calendar_pop .calendar_inner{
	width: 320px;
    margin: 20% auto 0;
    position: relative;
}
#closeCal{
	position: absolute;
    top: -27px;
    right: 0;
    font-size: 18px;
    color: #fff;
    background: #827272;
    width: 30px;
    border-radius: 5px 5px 0 0;
    font-weight: 400;
    cursor: pointer;
}
#calendar_pop .calendar_inner .calendarSingle{
	padding:30px 15px;
}

#calendar_pop .calendar_inner .calendarSingle .dateContent h3{
	font-size: 18px;
    margin-left: 10px;
    padding: 10px;
    min-height: none;
    height: auto;
    line-height: normal;
	border-width:4px;
}
/***********News**********/
.news-wrapper{
	height: 100%;
    padding:60px 0px 0  80px;
}
.singleNews{
	position: relative;
    margin: 0 0 30px 0;
    padding: 25px;
    background: #ddd;
}
.singleNews img{
	width:100%;height:auto
}
.singleNews .box-content{
	width:100%;
	height:100%;
	position:absolute;
	top:0;
	left:0;
	transition:all .5s ease 0s
}
.singleNews:hover .box-content{
	background-color:rgba(255,242,242,.8)
}
.singleNews .box-content:after,.singleNews .box-content:before{
	content:"";
	width:50px;
	height:50px;
	position:absolute;
	opacity:0;
	transform:scale(1.5);
	transition:all .6s ease .3s
}
.singleNews .box-content:before{
	border-left:1px solid #040404;
	border-top:1px solid #040404;
	top:19px;
	left:19px
}
.singleNews .box-content:after{
	border-bottom:1px solid #040404;
	border-right:1px solid #040404;
	bottom:19px;
	right:19px
}
.singleNews:hover .box-content:after,.singleNews:hover .box-content:before{
	opacity:1;transform:scale(1)
}
.singleNews .title{
	font-size:22px;
	color:#000;
	margin:0;
	position:relative;
	top:0;
	opacity:0;
	transition:all 1s ease 10ms
}
.singleNews:hover .title{
	top:39%;
	opacity:1;
	transition:all .5s cubic-bezier(1,-.53,.405,1.425) 10ms
}
.singleNews .title:after{
	content:"";
	width:0;
	height:1px;
	background:#040404;
	position:absolute;
	bottom:-8px;
	left:0;
	right:0;
	margin:0 auto;
	transition:all 1s ease 0s
}
.singleNews:hover .title:after{
	width:80%;
	transition:all 1s ease .8s
}
.singleNews .icon{
	width:100%;
	margin:0 auto;
	position:absolute;
	bottom:0;
	opacity:0;
	transition-duration:.6s;
	transition-timing-function:cubic-bezier(1,-.53,.405,1.425);
	transition-delay:.1s
}
.singleNews:hover .icon{
	bottom:39%;
	opacity:1
}
.singleNews .icon li{
	display:inline-block
}
.singleNews .icon li a{
	display: block;
    line-height: 40px;
    font-size: 18px;
    color: #000;
    transition: all .3s ease-in-out 0s;
	text-decoration:none !important;
}
.singleNews .icon li a:hover{
	opacity:.7;
}
@media only screen and (max-width:990px){
	.singleNews{margin-bottom:30px}
}
.newsTitle{
	position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    color: #fff;
    text-align: center;
    margin: 0 0 40px 0;
    padding: 10px 10px;
    text-transform: uppercase;
    font-weight: 300;
	transition:.3s ease-in-out;
}
.singleNews:hover .newsTitle{
	bottom: -100%;
	opacity:0;
}

/**************calendar**********/
.calendar-wrapper{
	height: 100%;
    padding: 60px 0px 60px 30px;
}
.calendarSingle{
	padding: 30px 30px;
    background: rgb(60, 46, 46);
    margin: 0 0 30px 0;
    text-align: center;
}
.circleDate{
	background-color: #948484;
    color: #fff;
    margin: 0 auto 20px;
    text-align: center;
    font-weight: 700;
    position: relative;
	display: -webkit-flex;     /* NEW - Chrome */
	display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
    opacity: .8;
}

.circleDate .date span{
	    display: inline-block;
    color: #fff;
    font-size: 14px;
    line-height: normal;
    vertical-align: middle;
    /* text-transform: uppercase; */
    font-weight: 300;
    letter-spacing: 0;
}
.circleDate .date span:nth-child(2){
	    font-size: 22px;
    line-height: 24px;
    padding: 10px;
    background: #10254c;
    margin: -10px 7px;
    border-radius: 50px;
    border: 3px solid #fff;
}
.calendarSingle .dateContent h3{
	font-size: 20px;
    color: #fff;
    margin: 0;
    text-align: left;
    margin-left: 20px;
    border-left: 5px solid #c3c3c3;
    padding: 20px 10px 0 10px;
    height: 70px;
    overflow: hidden;
}








.single-calendar{
	position: relative;
    padding: 10px 10px;
    display: block;
    width: 100%;
    border: 1px solid #523c3c;
    margin: 0 0 30px;
}
.single-calendar time{
	display: inline-block;
    vertical-align: middle;
}
.single-calendar time{
	width: 80px;
    text-align: center;
	position:relative;
}
.single-calendar time:before{
	width: 4px;
    height: 100%;
    position: absolute;
    content: "";
    left: -10px;
    top: 0;
    background: #654f4f;
}
.single-calendar span{
	display: block;
    line-height: 13px;
    margin:  0;
	text-transform:uppercase;
	font-weight:600;
}
.single-calendar span:nth-child(1){
	font-size:12px;
}
.single-calendar span:nth-child(3){
	font-size:14px;
	margin:2px 0 0;
}
.single-calendar span.day{
	display:block;
	font-size:54px;
	line-height:50px;
	margin:0;
}
.cal-detail{
	padding:10px ;
	background:#564444;
	margin:15px 0;
}
.cal-detail h3{
	margin:0;
	font-size:18px;
	color:#fff;
	font-weight:400;
}
/*********icon*******/
.calIcon{
	position:absolute;
	right:20px;
	top:0;
	font-size:3em;
	color:#654f4f;
}
.calendarFooter .readMore{
	padding:10px 0;
	background:#eabd57;
	text-align:center;
	margin:0;
}
.calendarFooter .readMore a{
	color:#000;
}
.calendarFooter .link-red span::before, .calendarFooter .readMore span::after, .calendarFooter .link-red a::before, .calendarFooter .link-red a::after {
    background: #000;
}






/**********Home Welcome**********/
.home-welcome {
    position: relative;
    width: 100%;
    padding: 3rem 6rem;
    background: #d8d8d8;
    font-weight: 400;
    text-align: center;
    color: #826d6b;
    margin: 0;
    position: relative;
}
.home-welcome:after {
    content: "";
    border-top: 25px solid #d8d8d8;
    border-right: 25px solid transparent;
    border-left: 25px solid transparent;
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    width: 0;
    margin: 0 auto;
    z-index: 1;
}
.home-welcome img {
	display: block;
    margin: 0 auto 20px;
    width: 104px;
    padding: 12px;
    background: #fff;
    border-radius: 50%;
    opacity: .5;
    border: 2px solid #c3c1c1;
}
.home-welcome p {
	font-size:24px;
	line-height:36px;
}

/************Home Entry********/
.home-entry{
    background: aliceblue;
	padding:50px 0 40px 0;
	text-align:center;
	position:relative;
}
.home-entry:before {
	position: absolute;
	top: 0;
	content: "";
	background: url(../images/logo.png);
	background-repeat: no-repeat;
	background-size: cover;
	height: 300px;
	width: 300px;
	opacity: .1;
	background-blend-mode: overlay;
	background-color: #ffffff75;
	left: 38.3%;
}

.home-entry:after{
	right: 50px;
	top: 20px;
}
.home-entry .container{
	position:relative;
	z-index:1;
}
.main-title{
	margin:0 0 30px 0;
	position:relative;
	/*padding-top:80px;*/
}
.grgf_tri {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #9d9d9d;
    display: inline-block;
    padding: 0 10px;
    border-radius: 30px;
}
/*.main-title:before{
	position: absolute;
    right: 0;
    left: 0;
    width: 1px;
    height: 60px;
    z-index: 1;
    transform: rotate(0deg);
    content: "";
    background: #aaa;
    margin: 0 auto;1792
    content: "";
	top:0;
}*/

.main-title h2{
	font-size:32px;
	color:#424242;
	text-transform:uppercase;
	margin:0;
}
@media (min-width:1440px){
	.main-title h2{
		font-size:38px;
	}
}
.main-title h2 small{
	display: block;
    font-size: 16px;
    margin: 0 0 10px 0;
    opacity: .6;
    color: #333;
}
.home-entry .main-title{
	margin: 0 0 20px 0;
}
p.text,.home-entry p.text{
	font-size: 14px;
	line-height: 30px;
	text-transform: none;
	/* font-weight: 400; */
	color:#421b1d;
}
.home-entry p.text{
	/* font-weight: 300; */
	/* color: #421b1d; */
	width: 75%;
	margin: auto;
}
.section{
	padding:40px 0;
}
.bg{
	background:#fff
}
.bg1{
	background:#f1f1f1
}
.bg2{
	background:#5c311a
}
.bg3{
	background:#421e0b
}
@media (min-width:767px){
	.home-entry{
		    padding: 47px 0 46px 0;
	}
	.section{
		padding:90px 0 60px 0;
	}
	.home-entry .container{
		*padding-right: 10%;
		padding-left: 0%;
	}
	
	p.text{
		/* font-size:22px; */
		/* line-height:34px; */
	}
	.home-entry p.text{
		    /* font-size: 18px; */
		    /* line-height: 38px; */
		    /* color: #363434; */
	}
}

.readMore{
	padding:30px 0 0;
}
.readMore a{
	font-size: 14px;
	color: #ffffff;
	/* letter-spacing: 1.5px; */
	display: inline-block;
	font-weight: 500;
	/* overflow: hidden; */
}

/***********life-skills-section**********/
.life-skills-section{
	position: relative;
    background: #fff;
    padding:70px 0 100px 0;
	
}
.life-skills-section:after{
	content: "";
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0) url(../images/map-background.svg) no-repeat scroll center center/cover;
    z-index: 0;
    opacity: .5;
}
.life-skills-section .container,.life-skills-section .row{
	position: relative;
   z-index:1;
}

.life-skills-section p{
	    font-size: 36px;
    text-align: center;
    font-style: italic;
    font-family: times;
    line-height: 42px;
	color:#fff;
}
@media (max-width:1440px){
	.life-skills-title .lst-wrapper div{
		padding:24% 10%;
	}
	.life-skills-section p {
		font-size: 28px;
		line-height: 36px;
	}
}
.life-skills-title{
	
}
.life-skills-title .lst-wrapper{
	padding: 0;
    text-align: center;
	display: -webkit-flex;     /* NEW - Chrome */
	display: flex;
    height: 100%;
    justify-content: center;
    align-items: center;
}
.life-skills-title .lst-wrapper div{
    background: #1d396b;
    padding: 25% 10% 10% 10%;
    margin-right: -143px;
    position: relative;
    z-index: 1;
    border-radius: 0 100px 0 0;
    border: 5px solid #fff;
}

.life-skills-section ul li{
	outline:0 !important;
}
.life-skills-section ul li img{
	width:100%;
}
.life-skills-section .slick-prev.slick-arrow{
	display:none !important;
}
.life-skills-section .slick-next.slick-arrow{
	position: absolute;
    right: -43px;
    z-index: 1;
    bottom: 45%;
    border: 0;
    font-size: 50px;
    padding: 0 16px;
    line-height: 72px;
    font-weight: 200;
    height: auto;
    background: #e2b73f;
    outline: 0 !important;
	border:3px solid #fff;
}
.life-skills-section .slick-next.slick-arrow svg{
	margin:-7px 0 0;
	
}

/*************custom button*********/
.readMore a{
  position: relative;
  text-decoration:none !important
}
.readMore a span{
    display: block;
    padding: 6px 17px;
    border: 1px solid #b3150f;
    font-weight: 500;
    border-radius: 30px;
    /* overflow: hidden; */
    font-size: 13px;
    color: #b3150f;
}
.readMore a::before, .readMore a::after{
  content:"";
  width: 0;
  height: 1px;
  position: absolute;
  transition: all 0.2s linear;
  background: #fff;
}

.readMore span::before, .readMore span::after{
  content:"";
  width:1px;
  height:0;
  position: absolute;
  transition: all 0.2s linear;
  /* background: #fff; */
}
.readMore a:hover::before, .readMore a:hover::after{
  width: 100%;
}
.readMore a:hover span::before, .readMore a:hover span::after{
  height: 100%;
}
/*----- button 4 -----*/
.readMore a::after{
  right:0;
  bottom: 0;
  transition-duration: 0.2s;
}
.readMore a span::after{
  right:0;
  bottom: 0;
  transition-duration: 0.2s;
}
.readMore a::before{
  left: 0;
  top: 0;
  transition-duration: 0.4s;
}
.readMore a span::before{
  left: 0;
  top: 0;
  transition-duration: 0.4s;
  border-radius: 30px;
}
.service-single span::before, .service-single span::after,.service-single .readMore a::before, .service-single .readMore a::after,.home-entry span::before, .home-entry span::after,.home-entry .readMore a::before, .home-entry .readMore a::after{
	background: #98060600;
}
.link-red span::before,.readMore span::after,.link-red a::before,.link-red a::after{
	background: #98060600;
}
@media (min-width:767px){
	.news-and-events .container-fluid{
		padding-right: 10%;
		padding-left: 10%;
	}

}



/***************facts-and-figure***********/
section.facts-and-figure:before {
    content: "";
    background-image: url(https://bloomingdaleschool.co.in/wp-content/uploads/2025/01/Research-1.png);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-blend-mode: overlay;
    background-color: #000000b0;
    background-attachment: fixed;
}

.facts-and-figure{
    position: relative;
    background:aliceblue;
    z-index: 1;
    padding: 60px 0;
}
.facts-and-figure .container{
	/* background: aliceblue; */
	/* padding-top: 0; */
	/* padding-bottom: 42px; */
	/* border-radius: 20px; */
	padding-right: 40px;
	padding-left: 40px;
}
.facts-and-figure ul li{
	display:inline-block;
	vertical-align:top;
	width:19.5%;
	position: relative;
}
.sub-title{
	font-family: Lebeaune, serif;
}
.single_counter div{
	color: #fff;
	text-align: center;
	border-radius: 50%;
	/* height: 150px; */
	/* width: 150px; */
	/* background: #b3150f; */
	margin: 0 auto;
	display: -webkit-flex;     /* NEW - Chrome */
	display: flex;
	justify-content:center;
	align-items:center;
}
.single_counter h2,.single_counter h3,.single_counter h4,.single_counter h5,.single_counter h6{
	margin:0;
}
.single_counter h5{
	position: relative;
	padding: 0;
	margin: 7px 0 0 0;
	font-size: 14px;
	text-align: center;
	color: #ffffff;
}

.single_counter h2{
	font-size: 36px;
}
.single_counter h2 small{
	    display: block;
    font-size: 12px;
    text-transform: uppercase;
    margin: -2px 0 0;
}
.single_counter h2 i{
	display:block;
	font-size: 39px;
	/* margin:0 0 5px 0; */
	position:relative;
	padding-bottom: 2px;
	/* position: absolute; */
	opacity: .8;
	/* left: 14%; */
	/* top: -11px; */
}
.single_counter h2 span{
	vertical-align: middle;
	display: inline-block;
	line-height: normal;
	color: #ffa8a5;
	position: relative;
}

.single_counter h2 i:after{
	position: absolute;
	content: "";
	width: 20px;
	height: 2px;
	/* background: #e0e0df; */
	left: 0;
	right: 0;
	margin: 0 auto;
	top: 100%;
	margin:0 auto;
}
.single_counter h2 span + span{
	margin: 0 0 0 2px;
	/* font-size: 22px; */
}
.sidebarNav ul li a.uyfgty_tri {
    display: flex;    align-items: center;
}
.sidebarNav ul li a.uyfgty_tri i {
    opacity: .8;
    font-size: 14px;
    margin-right: 5px;
}
.sidebarNav ul li a.uyfgty_tri i.fa.fa-phone {
    font-size: 15px;
}
.sidebarNav ul li a.uyfgty_tri span.uyfty_tri{/* font-size: 13px; */font-size: .95vw;}
/********Footer**********/
.brand-footer{
    padding: 48px 0 0 0;
    background: #000000f2;
    z-index: 0;
    position: relative;
}
.brand-footer .container{
	z-index: 1;
    position: relative;
}
.brand-footer:after{
	position: absolute;
    width: 100%;
    height: 100%;
    z-index: 0;
    background: url(../images/footer-image.jpg)no-repeat fixed center center/cover;
    content: "";
    opacity: .1;
    top: 0;
    bottom: 0;
    transition: .8s ease-in-out;
}
.footer-widget h3{
	font-size: 18px;
	margin: 0 0 15px 0;
	color: #f8b627;
}
.footer-widget h3 span{
	display:inline-block;
	border-bottom: 1px solid #ffffff;
	padding: 0px 0 12px 0;
	border-image: linear-gradient(91deg, #ffffff, #ffffffb3, #ffffff00) 1;
	/* width: 62%; */
}
span.rgjigbh_tri {
    min-width: 20px;
    width: 20px;
    display: block;
    margin-right: 8px;
}

img.fgtegu_tri {
    width: 100%;
    filter: grayscale(1);
}

p.efyguy_tri, p.efyguy_tri a {
    display: flex;
}

img.fegu_tri {
    width: 78%;
    padding-top: 6px;
}
.footer-widget p,.footer-widget p a,.footer-widget ul li a{
	color: #fff;
    font-weight: 400;
}
.footer-widget ul li a{
	position:relative;
}
.footer-widget ul li a:before{
	height: 1px;
    width: 8px;
    background: #a2a1a1;
    content: "";
    display: inline-block;
    vertical-align: middle;
    margin: 0 12px 0 0;
	display: none;
}
.footer-widget p,.footer-widget p a{
	font-size: 13px;
	line-height: 22px;
}

.footer-widget ul li{
	margin: 0 0 10px;
}
.footer-widget ul li a{
	font-size: 13px;
	text-decoration:none;
}
.footer-widget ul li a:hover{
	opacity:.7;
}
/*************accreditations************/
.accreditations {
	margin:14px 0 0 0;
	padding:0 0  20px 0;
	border-bottom:1px solid #fff;
}
.accreditations h3{
	font-size:24px;
	color:#ececec;
	text-align:center;
}
.accreditations div{
	display: -webkit-flex;     /* NEW - Chrome */
	display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    ms-flex-wrap: wrap;
}

.accreditations div a:not(:last-child){
	
}
.accreditations div {
	margin:30px 0 0;
}
.accreditations div a img{
	width:100px;
}

/**********footer-bottom*********/
.footer-bottom{
	padding: 12px 0 12px;
	background: #0c0c0c;
	position: relative;
	z-index: 1;
	margin-top: 30px;
}
.footer-bottom p,.footer-bottom a{
	color: #fff0f0;
	font-size: 12px;
	/* text-transform: uppercase; */
	text-decoration:none !important;
	margin: 0;
}
.footer-bottom a:hover{
	color:#fff;
}

.socials{
	display: -webkit-flex;     /* NEW - Chrome */
	display: flex;
    justify-content:center;
    align-items: center;
}
.socials a{
	font-size:20px;
	margin:0 4px;
}

.copyright-links{
	display: -webkit-flex;     /* NEW - Chrome */
	display: flex;
    justify-content:flex-end;
    align-items: center;
}
.copyright-links a:not(:last-child){
	margin-right:0;
}
span.thth_tri {
    color: #fff;
    font-size: 12px;
}
/*********Nav Close btn*********/
.nav-trigger-close {
   position: absolute;
    top: -95px;
    right: 0;
    font-size: 20px;
    width: 100px;
    color: #fff;
}
/************News Style 2******/

.activities {
    padding: 40px 0 50px 0;
    /* background: #ffffff; */
    position: relative;
    background: aliceblue;
}
.activities .container,.activities .container-fluid{
	position:relative;
	z-index:1;
}
.box20 {
    position: relative;
    overflow: hidden;
}
.activities:after{
	content:"";
	background:#f1f1f1;
	height:100%;
	width:68%;
	top:0;
	position:absolute;
	right:0;
	display:none;
}

.box20:after,
.box20:before {
    position: absolute;
    content: ""
}

.box20:before {
    width: 100%;
    height: 220%;
    background: #b3150fc7;
    top: -50%;
    left: -100%;
    z-index: 1;
    transform: rotate(25deg);
    transform-origin: center top 0;
    transition: all .5s ease 0s;
}

.box20:hover:before {
    left: 0%
}

.box20:after {
    width: 55%;
    height: 175%;
    background-color: rgb(16 37 76 / 39%);
    bottom: -1000%;
    left: 53%;
    transform: rotate(-33deg);
    transform-origin: center bottom 0;
    transition: all .8s ease 0s
}
.activity-media{
	padding-bottom:75%;
}
.box20 .box-content,
.box20 .icon {
    width: 70%;
    padding: 0 20px;
    position: absolute;
    left: 0;
    z-index: 2;
    transition: all 1.1s ease 0s
}

.box20:hover:after {
    bottom: -54%
}

.box20 img {
    width: 100%;
    height: auto
}

.box20 .box-content {
    top: -100%;
    color: #fff
}

.box20:hover .box-content {
    top: 30px
}

.box20 .title {
        font-size: 17px;
    margin: 0;
    text-transform: capitalize;
    color: #fff;
}
.box20 .title:hover {
    opacity:.6;
}
.box20 .title a{
    color: #fff;
        font-size: 16px;
}
.box20 .icon li a,
.box20 .post {
    display: inline-block;
    font-size: 14px
}

.box20 .post {
    margin-top: 5px
}

.box20 .icon {
    list-style: none;
    margin: 0;
    bottom: -100%
}

.box20:hover .icon {
    bottom: 25px
}

.box20 .icon li {
    display: inline-block
}

.box20 .icon li a {
    width: 35px;
    height: 35px;
    line-height: 32px;
    background: #444;
    border-radius: 50%;
    margin: 0 3px;
    color: #fff;
    text-align: center;
    transition: all .5s ease 0s;
    font-size: 24px;
    padding: 2px 0 0;
	background: #fff;
    color: #ff402a
}

.box20 .icon li a:hover {
    opacity:.6;
}
.content_visible{
	position: absolute;
	bottom: 0;
	padding: 12px 11px 10px 14px;
	transition: .3s ease-in-out;
	-moz-transition: .3s ease-in-out;
	-webkit-transition: .3s ease-in-out;
	min-width: 100%;
}
.box20:hover .content_visible{
	transform:translate(0,100%);
}
.content_visible div{
	position: relative;
    z-index: 1;
    line-height: normal;
}
.content_visible div h3{
    line-height: normal;
}
.content_visible div .post{
    color:#ddd;
	font-size:18px;
}
.content_visible:after{
	position: absolute;
	content:"";
	top:0;
	left:0;
	width:100%;
	height:100%;
	background-image: linear-gradient(to bottom, #00000091 10%, #000000a3 70%, #000000 100%);
	z-index:0;
	-webkit-clip-path: polygon(0 0, 100% 18%, 100% 100%, 0% 100%);
	clip-path: polygon(0 0, 100% 18%, 100% 100%, 0% 100%);
}

@media only screen and (max-width:990px) {
    .box20 {
        margin-bottom: 30px
    }
}

@media only screen and (max-width:479px) {
    .box20 .title {
        font-size: 20px
    }
}
/*********action_buttons**********/
.action_buttons{
	display: -webkit-flex; 
	display: flex;
	justify-content:center;
	padding-top:10px;
}
.action_buttons a{
	display: inline-block;
    padding: 10px 20px;
    background: #fff;
    color: #333;
    font-size: 20px;
    min-width: 180px;
    text-align: center;
}
.action_buttons a:not(:last-child){
	margin-right:30px;
	background:#cd2122;
	color:#fff;
}
.action_buttons a:hover{
	opacity:.7;
}

/**********Principal Msg********/
.single-publication{
	display: -webkit-flex;     /* NEW - Chrome */
	display: flex;
    height: 100%;
    width: 100%;
}
.single-publication figure{
	margin: 0 0 20px 0;
    position: relative;
    border: 4px solid #fff;
    width: 100%;
  
    overflow: hidden;
}
@media (min-width:575px){
	.single-publication figure{
		height: 200px;
	}
}
.single-publication figure > img{
	width:100%;
	height:100%;
	object-fit:cover
}
.service-single{
	text-align: center;
	padding: 0;
	background: #fff;
	height: 100%;
}
.service-single figure{
	position: relative;
	margin: 0 10%;
}
.service-single figure:after{
	content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .4);
    z-index: 0;
    transition: all .3s ease-in-out;
	opacity:0;
}
.service-single:hover figure:after{
	opacity:1;
}
.service-single figcaption{
	padding:40px 20px 0;
}
.service-single figcaption h3{
	color:#421b1d;
	text-transform:uppercase;
}
.service-single .readMore{
	padding:30px 0 0;
}
.service-single .readMore a{
	font-size: 13px;
    color: #980606;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: inline-block;
    font-weight: 800;
}
.service-single p.text{
	font-size: 20px;
	line-height: 24px;
	margin: 20px 0 0;
}

.logomps figure img{
	display:block;
	width:150px;
	margin:0 auto 20px;
}
.logomps.service-single figure:after{
	display:none;
}
/*.news-and-event-list{
	padding:0px 10% 30px 10%;
}*/

.publication-wrapper{
	padding:10px 0  0;
	position: relative;
}

.publications-and-calendar h2.title_large {
	z-index: 0;
    position: absolute;
    font-size: 8em;
    transform: rotate(-90deg);
    top: 280px;
    left: -64%;
    font-family: time;
    font-style: italic;
    text-transform: lowercase;
    letter-spacing: 0;
    opacity: .05;
}
.publications-and-calendar .calendar-wrapper h2.title_large {
	right: 0%;
    left: auto;
    transform: rotate(0);
    top: 0;
    position: static;
	
}
.single-publication figure figcaption{
	position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,.9);
    text-align: center;
	display: -webkit-flex;     /* NEW - Chrome */
	display: flex;
    z-index: 1;
    align-items: center;
    justify-content: center;
	transition:.3s ease-in-out;
	opacity:0;
}
.single-publication figure:hover figcaption{
	opacity:1;
}
.last-publication .single-publication figure figcaption{
	opacity: 1;
    background: #eabd57;
}
.last-publication .single-publication figure figcaption:hover{
	opacity: .7;
}
.last-publication .single-publication figure figcaption span{
	display: inline-block;
    font-size: 20px;
    color: #000;
    line-height: normal;
    background: #cea038;
    padding: 18px;
    opacity: .7;
}
.single-publication figure figcaption img{
	width: 50px;
    height: auto;
    display: block;
    margin: 0 auto;
    min-height: auto;
}
/*************Gallery************/
 .efiuguy_tri {
                background: #950702;
                border-radius: 6px;
                color: #fff;
                font-size: 23px;
                padding: 25px 20px;
                font-weight: 600;
                height: 100%;
                margin: auto;
                }
.photo-gallery{
	padding:30px 0 54px 0;
	/*background:#ddd;*/
}

.gallery-single div span figure{
	margin: 0;
	height: 145px;
	overflow: hidden;
	border-radius: 5px;
}
.gallery-single div span figure img{
	width:100%;
	height:100%;
	object-fit:cover;
	object-position:center;
	transition:.3s ease-in-out;
}
.gallery-single:hover div span figure img{
	transform:scale(1.1);
}
.rgiugyu_tri {
    position: relative;
    margin-top: 25px;
}
span.efuyguy_tri {
    display: block;
    width: 50px;
    background: #950702;
    border-radius: 4px;
    padding: 2px 8px 5px;
    color: #fff;
    font-size: 12px;
    border: 2px solid #fff;
    position: absolute;
    top: -22px;
    left: 8px;
    text-align: center;
}

.gallery-single {
    display: block;
    padding: 10px;
}

h3.iugyu_tri {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 5px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

p.text-link {
    display: inline-flex;
    margin-bottom: 0;
}

p.text-link a {
    font-weight: 600;
    border-radius: 30px;
    padding: 6px 11px;
    font-size: 12px;
    color: #950702;
    border: 1px solid #950702;
}

span.efugiuy_tri {
    position: relative;
    padding-left: 56px;
    display: block;
    padding-top: 10px;
    padding: 10px 8px 12px 68px;
}

.rhtrht_tri {
    background: #fff;
    display: block;
    border-radius: 5px;
    padding: 2px;
    box-shadow: 0 4px 7px 0 rgb(0 0 0 / 24%);
}

span.fiuguy_tri {
    display: block;
}

.col-lg-3.fgrgfr_tri {
    max-width: 22%;
    padding-top: 10px;
    padding-bottom: 10px;
}

.col-lg-9.fefgf_tri {
    max-width: 78%;
}
.fbjhi_tri {
    font-size: 50px;
    opacity: .7;
    margin-bottom: 25px;
}

p.iurgfgyu_tri {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 12px;
    color: #696969;
    margin-bottom: 14px;
    min-height: 37px;
}

ul.rgrht_tri.owl-carousel .owl-nav button.owl-prev {background: #000000a6;position: absolute;top: 42%;left: -22px;width: 40px;height: 40px;display: flex;align-items: center;justify-content: center;font-size: 30px;border-radius: 50px;color: #fff;}
ul.rgrht_tri.owl-carousel .owl-nav button.owl-next {
    background: #000000a6;
    position: absolute;
    top: 42%;
    right: -22px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    border-radius: 50px;
    color: #fff;
}
span.yigyu_tri {
    display: block;
    font-weight: 600;
    font-size: 18px;
    line-height: 26px;
}

ul.rgrht_tri .owl-nav {
    margin: 0;
}
.photo-gallery .owl-dots {
	/* display:block !important; */
	/* text-align:center; */
	/* margin:30px 0 0; */
}
.photo-gallery .owl-dots .owl-dot{
	display:inline-block;
	margin:0 5px;
	text-align:center;
}
.photo-gallery .owl-dots .owl-dot span{
	display:inline-block;
	height:10px;
	width:10px;
	background:#aaa;
}
.photo-gallery .owl-dots .owl-dot.active span{
	background:#3c2e2e;
}
.photo-gallery .readMore{
	padding:15px 0 0;
}
.news-page .photoGallery{
	margin:0 -15px;
}
.news-page .photoGallery  li{
	width:33.333%;
	padding:0 15px;
}
.news-page .gallery-single div span:nth-child(2){
	background:#f1f1f1;
}
.news-page .gallery-single{
	margin:0 0 30px 0;
}

/*************news-details**********/
.news-details .inner-entry:after{
	display:none;
}
.newsDetails{
	padding:0 0 110px 0;
}
.newsDetails .story-media{
	overflow:hidden;
	border-radius:10px ;
	margin-top:-40px;
}
.newsDetails .story-media img{
	width:100%;
	border-radius:10px ;
}
.newsDetails .title-medium{
	text-transform:capitalize;
}
.newsDetails .title-medium small{
	display: block;
    line-height: normal;
    padding: 2px 6px;
    background: #654e42;
    color: #fff;
    width: 70px;
    text-align: center;
    font-size: 14px;
    border-radius: 3px;
    margin: 0 0 6px;
}

.newsDetails.style-section-3 .content-text{
	margin-top:-40px;
	/* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#f4f4f4+0,f1f1f1+0&1+17,1+17,0+100 */
	background: -moz-linear-gradient(top,  rgba(241,241,241,1) 0%, rgba(241,241,241,1) 17%, rgba(241,241,241,0) 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(top,  rgba(241,241,241,1) 0%,rgba(241,241,241,1) 17%,rgba(241,241,241,0) 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to bottom,  rgba(241,241,241,1) 0%,rgba(241,241,241,1) 17%,rgba(241,241,241,0) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f1f1f1', endColorstr='#00f1f1f1',GradientType=0 ); /* IE6-9 */

}
.newsDetails.style-section-3 .content-text.ImgNotFound{
	margin-top:-150px;
	
}
.newsDetails .date{
	color:#999;
	font-size:15px;
	display:block;
	margin:6px 0 0;
}
.related-event-list ul li{
	width:33.333%;
	padding:15px;
	display:inline-block;
	margin:0 -2px;
}
.related-event-list ul li a{
	display:table;
	width:100%;
	background:#fff;
	padding:10px;
	color:#333;
	border-radius:5px;
}
.related-event-list h4,.related-event-list h3{
	display:table-cell;
	vertical-align:middle;
}
.related-event-list h4{
	padding: 10px 10px;
    background: #ffebbf;
    border-radius: 5px;
}
.related-event-list h4 span{
	line-height:normal;
	display:block;
	font-size:42px;
}
.related-event-list h4 span:first-child{
	line-height:30px;
}
.related-event-list h4 span + span{
	font-size:16px;
	margin:5px 0 0;
}
.related-event-list h3{
	text-align:left;
	padding:10px;
	font-size:18px;
	text-transform:capitalize;
}
.relatedNews .arrow{
	font-size: 22px;
    color: #fff;
    position: absolute;
    top: 37%;
	cursor:pointer;
}
.relatedNews .arrow.next {
	right:-20px;
}
.relatedNews .arrow.prew {
	left:-20px;
}
.slick-initialized .slick-slide:focus {
   outline:none !important;
}




/**===========Inner Page==========*/

.bog .subjects  ul li{
	display:inline-block;
	margin:10px 10px;
	font-size:18px;
	line-height:normal;
	background:#fff;
	padding:8px 14px;
	border-radius:5px;
	box-shadow:0 0 2px #999;
	width:16.666%;
}
.bog ul li a{
	display:block;
	text-decoration:none;
}
.bog ul li a:hover,.bog ul li a:focus{
	opacity:.7;
}
.bog ul li a img{
	width:60px;
	margin: 0 auto 15px ;
	display:block;
}
.inner-entry form select{
	border:1px solid #fff;
	padding:6px 10px;
	width:200px;
	font-size:18px;
	outline:none;
}
.inner-entry{
	background: #4e3c36;
	padding:40px 0 30px 0;
	text-align:center;
	position:relative;
}
.inner-entry:after{
	content:"";
	border-bottom:20px solid #fff;
	border-right:20px solid transparent;
	border-left:20px solid transparent;
	position:absolute;
	top:calc(100% - 20px);
	width:0;
	left:0;
	right:0;
	margin:0 auto;
	z-index:1;
}
.inner-entry p.text {
    font-weight: 300;
    color: #fff;
}
.inner-entry .main-title{
	padding:0;
}
.inner-entry .main-title:before{
	display:none;
}
.inner-entry .main-title h2{
    color: #fff;
}
.inner-page .brand-footer{
	/* margin:0; */
	/* padding:70px 0 10px 0; */
}
.inner-page .heroheader{
	transform:none !important;
}
.inner-page .brand-hero{
	height:350px;
}
@media (min-width:768px){
	.inner-page .brand-hero{
		height:80vh;
	}
}
.page-title {
	position:absolute;
	z-index:2;
	margin: 0;
	left:0;
	bottom:0;
	width:100%;
}
.banner-content-inner{
	position: relative;
    padding: 0 0 40px 0;
}
.banner-content-inner:after{
	height:4px;
	background:#eabd57;
	position:absolute;
	bottom:0;
	content:"";
	width:130px;
	left:0;
}
.banner-content-inner h1{
	font-size: 4em;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 0 30px #000;
    text-transform: uppercase;
	margin:0;
}
.banner-content-inner h1  a{
	font-size:18px;
	color:#fff;
	display:block;
	opacity:.8;
	font-weight:400;
}
.inner-page .page-content{
	min-height:500px;
}
.inner-section-title{
	margin:0 0 40px 0;
}
.inner-section-title h2{
	font-size: 28px;
	color:#333;
	font-weight: 600;
	margin:0;
}
.inner-section-title p{
	/* font-size:22px; */
	/* color:#666; */
	/* font-weight:600; */
}
.profile-section{
	padding:60px 0;
}
.profile-picture{
	border-radius:20px 20px 0 0 ;
	overflow:hidden;
	margin:-120px 0 0;
	position:relative;
	z-index:2;
	border:10px solid #fff;
	margin-left:80px;
}
.profile-picture img{
	width:100%;
}
.profile-picture h3{
	font-size: 24px;
    color: #fff;
    font-weight: 400;
    text-align: center;
    padding: 30px 10px;
    background: #3c2e2e;
}
.profile-picture h3 small{
	font-size:16px;
	color:#fff;
	display:block;
	padding:10px 0 0;
	opacity:.7;
}
.profile-content{
	margin-top:0;
}
.profile-content .inner-section-title{
	margin-bottom:10px;
}
.profile-content p{
	font-size:18px;
	line-height:30px;
	text-align:justify;
}
.style-section,.style-section-2{
	padding: 50px 0 70px 0;
	position:relative;
}
.style-section .container{
	position:relative;
	z-index:1;
}
.imgBg{
	position:relative;
}
.imgBg:after{
	position:absolute;
	height:100%;
	width:100%;
	top:0;
	left:0;
	content:"";
	background:url(../images/bg02.jpg)repeat center center;
}
.imgBg .container{
	position:relative;
	z-index:1;
}
.style-section .media{
	height:470px;
	width:100%;
	position:relative;
}
.style-section .media::before {
    content: "";
    position: absolute;
    left: -20px;
    top: 20px;
    width: 100%;
    height: 100%;
    background: #eabd57;
	z-index:0;
}
.style-section .media img{
	height:100%;
	width:100%;
	display:block;
	object-fit:cover;
	position:relative;
}
.style-section .media-content {
	position:relative;
	border-radius: 6px 0 0 6px;
	margin: 20px 0 0 -75px;
	padding: 35px 50px 30px 5%;
	background: #ffffff;
	position: relative;
	z-index: 1;
	box-shadow: 0 4px 16px 0 rgb(0 0 0 / 28%);
}

h3.title-medium{
	font-size: 30px;
    color: #42271a;
    margin: 0 0 15px 0;
	position:relative;
	padding:0 0 15px 0;
	text-transform: uppercase;
}
h3.title-medium:before{
	content: "";
    bottom: 0;
    width: 60px;
    height: 4px;
    background: #eabd57;
    position: absolute;
    left: 0;
}
.style-section .media-content .text,.style-section .media-content .text p,.style-section-2 .media-content .text p,.style-section-3  .text p{
	font-size: 14px;
	color:#454545;
	line-height: 26px;
}

/*********style-section-2*********/
.style-section-2,.style-section-3{
	padding:80px 0;
}
.style-section-2 .style-section-text{
	padding: 30px;
    background: #fff;
    border: 1px solid #ddd;
    min-height: 405px;
}
.style-section-2 .style-section-text h3{
	font-size: 28px;
    margin: 0 0 30px -90px;
    padding: 20px 20px;
    background: #eabd57;
    max-width: 280px;
    font-weight: 600;
    color: #4e3c36;
    min-height: 105px;
	display: -webkit-flex;     /* NEW - Chrome */
	display: flex;
    align-items: center;
    text-transform: uppercase;
	position:relative;
}
.style-section-2 .style-section-text h3:after{
	position: absolute;
    bottom: 0;
    width: 60px;
    content: "";
    left: 0;
    height: 100%;
	border:3px solid #4e3c36;
	border-right:0;
    *background: #4e3c36;
}
.style-section-2 .style-section-text p,.content-text p{
	font-size: 18px;
    color: #454545;
    line-height: 32px;
}
.expend-el {
    max-height: 260px;
    overflow: hidden;
    position: relative;
    transition: max-height 0.4s ease-in-out;
    text-align: justify;
}
.expend-el .list{
	margin:20px 0 0;
}
.expend-el .list.custom-col{
	column-count:2;
	-webkit-column-count:2;
}
.expend-el.expend_el {
    max-height: 1500px;
}
.expended-overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 24%;
	transition: .3s ease-in-out;
	-moz-transition: .3s ease-in-out;
	-webkit-transition: .3s ease-in-out;
	background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgb(241, 241, 241) 87%, rgb(241, 241, 241) 100%);
	background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgb(241, 241, 241) 87%, rgb(241, 241, 241) 100%);
	background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgb(241, 241, 241) 87%, rgb(241, 241, 241) 100%);
	background: linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgb(241, 241, 241) 87%, rgb(241, 241, 241) 100%);
    /* filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fff', endColorstr='#fff',GradientType=0 ); */
}
.expend-el.expend_el .expended-overlay{
    opacity:0;
	visibility:hidden;
}
.expender {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    border-bottom: 2px solid #eabd57 !important;
    line-height: 24px;
    display: inline-block;
    position: relative;
    color: #eabd57;
    border-color: #eabd57;
    margin: 10px 0 0;
    transition: .3s ease-in-out;
    -moz-transition: .3s ease-in-out;
    -webkit-transition: .3s ease-in-out;
    float: right;
	text-decoration:none !important;
}
.expender:focus{
	text-decoration:none !important;
	outline:none;
}
.expender:after {
    position: absolute;
    bottom: -7px;
    left: 0;
    right: 0;
    width: 0;
    border-top: 5px solid #ffbd39;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    content: "";
    margin: 0 auto;
	transition: .3s ease-in-out;
    -moz-transition: .3s ease-in-out;
    -webkit-transition: .3s ease-in-out;
}
.expender:hover{
	color:#4e3c36;
	border-color:#4e3c36 !important
}
.expender:hover:after{
	border-top-color:#4e3c36;
}
/************Opposite cols*************/
.style-section .order-lg-1 .media-content{
    border-radius:0 160px 160px 0;
    margin: 20px -150px 0 0 ;
    padding: 60px  88px 50px 40px;
}
.bg1.style-section .media-content{
    background:#fff;
}
.style-section .order-lg-2 .media:before {
    right: -20px;
    left:auto;
}
.style-section .order-lg-1 .expender{
    float:none;
}
.houses-border{
	display: -webkit-flex;     /* NEW - Chrome */
	display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    mx-flex-wrap: wrap;
    position: relative;
    margin: 0 0 0 0;
}
.houses-border .tile{
	width:25%;
}
.houses-border .tile:nth-child(1) {
	border-top:5px solid #ffc43f;
}
.houses-border .tile:nth-child(2) {
	border-top:5px solid #079f1e;
}
.houses-border .tile:nth-child(3) {
	border-top:5px solid #0c5def;
}
.houses-border .tile:nth-child(4) {
	border-top:5px solid #d41414;
}
.tile-single .media{
	overflow:hidden;
	height:260px;
	position:relative;
	margin:0;
}
.tile-single img{
	width:100%;
	height:100%;
	object-fit:cover;
	object-position:center;
	display:block;
}
.tile-single .media figcaption{
	position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
	right:0;
	bottom:0;
	display: -webkit-flex;     /* NEW - Chrome */
	display: flex;
    justify-content: center;
    align-items: center;
	background: rgba(0, 0, 0, 0);
}

.tile-single .media figcaption:after{
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	right:0;
	bottom:0;
	margin:auto;
	border: 0px solid #eabd57;
	transition:.3s ease-in-out;
	content:"";
	transform:scale(.8);
	opacity:1;
	background: rgba(0, 0, 0, 0.5);
}
.tile-single .media:hover figcaption:after{
	background: rgba(0, 0, 0, 0.5);
}
.tile-single .media figcaption a{
	font-size:30px;
	color:#fff;
	padding:20px 20px;
	text-align:center;
	display:block;
	text-decoration:none;
	text-transform:uppercase;
	font-weight:400;
	position:relative;
	z-index:1;
	transition:.3s ease-in-out;
	text-shadow:0 0 10px #000;
}
.tile-single .media:hover figcaption a{
	color:#fff;
}
/*****List********/
.list{
	padding:0;
	margin:0;
	list-style-type:none;
}
.list li{
	padding-left: 30px;
	font-size: 14px;
	color: #333;
	position: relative;
	line-height: 27px;
	margin: 16px 0 0;
}
.list li:before{
	content: "\f35a";
    position: absolute;
    top: 0px;
    left: 0;
    font-size: 20px;
    font-family: 'Line Awesome Free';
    font-weight: 900;
	color:#b57c69;
}
.list li ul {
	padding:15px 0 10px 0;
}
.list li.subjects ul{
	justify-content: flex-start;
	margin: 0 -15px;
}
.list li.subjects ul li{
	width:25%;
}

.list li ul li:before{
	display:none;
}
.style-section-3 .media img{
	width:100%;
}
.style-section-3 .content-text{
	margin: -150px 0 0;
    background: #fff;
    padding: 40px;
    border-radius: 5px;
}
.section{
	padding:40px 0;
}
@media screen and (min-width:767px){
	.section{
		padding:80px 0;
	}
}
.note{
	background:#f1f1f1;
	padding:20px 0;
	margin:20px 0 0
}
.note p{
	font-size: 16px;
    color: #454545;
    line-height: normal;
	margin:0 0 5px 0;
}
.note p b{
	color:#f00;
}
.subjects ul{
	display: -webkit-flex;     /* NEW - Chrome */
	display: flex;
	ms-flex-wrap:wrap;
	flex-wrap:wrap;
	justify-content:center;
}
.subjects ul li{
	width:20%;
	text-align:center;
	padding:15px;
}
.subjects ul li div{
	background:#f1f1f1;
	padding:20px;
	border-radius:10px;
	height:100%;
}
.subjects ul li svg{
	fill:#ce0000;
	width:70px;
	margin:0 0 16px 0;
}
.subjects ul li div h4{
	font-size: 18px;
	margin: 0;
	font-weight: 600;
	color: #444;
}
.sos{
	background: #f1f1f1;
    padding: 20px;
    height: calc(100% - 30px);
    margin: 15px 0;
}
.sos h5{
	margin-bottom:20px;
	font-weight:600;
	font-size:20px;
}
.sos p:not(:first-child) {
	font-weight:400;
	margin:0 0 5px 0;
}

.table tr th,.table tr td{
	font-size:18px;
	line-height:28px;
	font-size: 13px;
	padding: 2px 16px;
}
.table-custom {
	padding:30px;
	background:#fff;
}
.table-custom .table tr th,.table-custom .table tr td{
	font-size:18px;
	line-height:28px;
}
.table-custom .table tr th a,.table-custom .table tr td a{
	color:#333;
}

.imgSlider .slick-arrow {
    position: absolute;
    z-index: 1;
    bottom: 45%;
    border: 0;
    font-size: 50px;
    padding: 6px 10px;
    line-height: 72px;
    font-weight: 200;
    height: auto;
    background: #ef751a;
    outline: 0 !important;
    border: 3px solid #fff;
	display: -webkit-flex;     /* NEW - Chrome */
	display: flex;
	
}
.imgSlider .slick-arrow svg{
	
}
.imgSlider .slick-arrow.slick-next {
    right: -43px;
}

.imgSlider .slick-arrow.slick-prev {
    left: -43px;
}
.GalleryImgs{
	margin:40px 0 0;
}
.GalleryImgs img{
	border:5px solid #ddd;
	padding:5px;
	border-radius:0;
}
.awards-table table tr th,.awards-table table tr td{
	text-align:center;
}
.awards-table table tr td:nth-child(2){
	background:#ddd;
}
.academics-table table tr td p{
	display: -webkit-flex;     /* NEW - Chrome */
	display: flex;
	flex-wrap:wrap;
	-ms-flex-wrap:wrap;
	padding:0 20px;
}
.academics-table table tr td p:first-child{
	padding-top:10px;
}
.academics-table table tr td p b{
	width:200px;
}
.academics-table table tr td p span{
	width:calc(100% - 200px);
}
.academics-table .table-custom{
	padding-top:0;
}
.academics-table table thead tr th{
	background:#f1f1f1;
	color:#333
}
.admission-overview .style-section-2 .style-section-text {
	background:#f2f2f2;
}
.admission-overview .style-section-2 .style-section-text h3{
	max-width:470px;
}

/*************Faculties*********/
.faculty-single{
    text-align: center;
    color: #fff;
    position: relative;
    margin: 15px 0;
}
.faculty-single .box-content,.faculty-single:after{
    width:100%;
    position:absolute;
    left:0
}
.faculty-single:after{
    content:"";
    height:100%;
    background:linear-gradient(to bottom,rgba(0,0,0,0) 0,rgba(0,0,0,.08) 69%,rgba(0,0,0,.76) 100%);
    top:0;
    transition:all .5s ease 0s
}
.faculty-single .post,.faculty-single .title{
    transform:translateY(0px);
    transition:all .4s cubic-bezier(.13,.62,.81,.91) 0s
}
.faculty-single:hover:after{
    background:linear-gradient(to bottom,rgba(0,0,0,.01) 0,rgba(0,0,0,.09) 11%,rgba(0,0,0,.12) 13%,rgba(0,0,0,.19) 20%,rgba(0,0,0,.29) 28%,rgba(0,0,0,.29) 29%,rgba(0,0,0,.42) 38%,rgba(0,0,0,.46) 43%,rgba(0,0,0,.53) 47%,rgba(0,0,0,.75) 69%,rgba(0,0,0,.87) 84%,rgba(0,0,0,.98) 99%,rgba(0,0,0,.94) 100%)
}
.faculty-single img{
    width:100%;
    height: 350px;
    object-fit: cover;
}
.faculty-single .box-content{
    padding:10px;
    bottom:0;
    z-index:1;
	transform:translateY(0px);
    transition:all .4s cubic-bezier(.13,.62,.81,.91) 0s
}
.faculty-single .title{
    font-size: 18px;
    font-weight: 500;
    text-transform: uppercase;
    margin: 0;
}
.faculty-single .post{
    display: block;
    padding: 8px 0;
    font-size: 15px;
    line-height: normal;
}
.faculty-single .social li a{
    border-radius:50%;
    font-size:20px;
    color:#fff
}

.faculty-single:hover .box-content{
    transform:translateY(-20%)
}

 @media only screen and (max-width:990px){
    .faculty-single{
        margin-bottom:30px
    }
}

.address-wrap{
	/* height:100%; */
	padding: 22px 30px 35px;
	background: #ffffff;
	box-shadow: 0 4px 16px 0 rgb(0 0 0 / 28%);
	border-radius: 10px;
	margin-bottom: 0;
}
.address-wrap .form-group {
	position:relative;
	padding-left: 0;
	margin: 0 0;
	display: flex;
	/* flex-wrap: wrap; */
	/* text-align: center; */
	/* padding: 20px; */
	/* box-shadow: 0 9px 11px 0 rgb(0 0 0 / 15%); */
	/* background: #fff; */
	/* width: 32%; */
	/* border-radius: 5px; */
	/* border: 1px solid #b3150f1c; */
	/* background: #fff7f7; */
	margin-bottom: 25px;
}
.address-wrap .form-group i{
	position: relative;
	left: 0;
	top: 3px;
	font-size: 26px;
	color: #b3150f;
	height: 48px;
	width: 48px;
	min-width: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	/* border: 2px solid #b3150f; */
	margin-right: 8px;
	background: #b3150f14;
	box-shadow: 0 0 0px 0px #00000075;
}
.address-wrap p b{
	display: block;
	margin: 0;
	color: #000000;
	font-size: 17px;
	font-weight: 700;
}
.address-wrap p a{
	color:#333;
	text-decoration:none;
	/* display: block; */
	/* margin-bottom: 4px; */
}
.address-wrap p a:hover{
	color:#eabd57;
}
.address-wrap p{
	font-size: 14px;
	line-height: 25px;
	width: 100%;
	display: block;
	/* min-height: 79px; */
	margin-bottom: 0;
	padding: 0 5px;
}

/**********Contact Form*******/
.contact-form{
	padding:0;
}
@media (min-width:992px){
	.contact-form{
		padding: 0 0 0 0;
	}
}
.contact-form label {
	display: block;
	position: relative;
	margin: 40px 0px;
}
.contact-form .label-txt {
	position: absolute;
	top: 0em;
	padding: 10px 0;
	/* font-family: sans-serif; */
	font-size: .8em;
	/* letter-spacing: 1px; */
	color: rgb(120,120,120);
	transition: ease .3s;
	margin: 0;
}
.contact-form .input {
	width: 100%;
	padding: 10px 0;
	background: transparent;
	border: none;
	outline: none;
	border-bottom: 1px solid #BCBCBC;
}
.contact-form textarea.input {
	resize:none;
	height:100px;
}
.contact-form .line-box {
	position: relative;
	width: 100%;
	height: 1px;
	/* background: #BCBCBC; */
}

.contact-form .line {
	position: absolute;
	width: 0%;
	height: 1px;
	top: 0px;
	left: 50%;
	transform: translateX(-50%);
	/* background: #e08a5f; */
	transition: ease .6s;
}
.contact-form .input:focus + .line-box .line {
	width:100%;
}

.contact-form .label-active {
	top: -2em;
}
.contact-form button {
	display: inline-block;
	padding: 9px 28px;
	background: rgb(179 21 15);
	font-weight: 500;
	color: #fff;
	border: none;
	outline: none;
	border-radius: 30px;
	cursor: pointer;
	/* text-transform: uppercase; */
	transition: ease .3s;
}
.contact-form button:hover {
	background: rgba(101, 78, 66, .8);
}
/**************form-section**********/
.form-section {
    border: 1px solid #ddd;
    background: #f1f1f1;
    padding: 50px 30px 40px 30px;
}
.form-section .form-control {
	border: 1px solid #ccc !important;
    border-radius: 0;
    height: 48px;
    color: #000;
    font-size: 18px;
    height: 50px !important;
	box-shadow:none !important;
}
.form-section .button_tc{
	box-shadow:none !important;
	border: 1px solid #4e3c36 !important;
	outline:none !important;
	background: transparent;
	border-radius: 0;
	display: inline-block;
	padding: 8px 20px;
	margin: 20px 0 0;
	color: #4e3c36;
	font-weight: 600;
}
.form-section .button_tc:hover{
	background:#4e3c36;
	color:#fff;
}

.tc-data{
	border: 1px solid #ddd;
    background: #f1f1f1;
    padding: 20px 30px 40px 30px;
}
.tc-data h3{
	background: #eabd57 none repeat scroll 0 0;
    color: #000;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    margin: 0;
    padding: 12px;
	text-align:center;
}

/*********Thank you*******/
.thankYou .page-content{
	display: flex;
    height: 100%;
    justify-content: center;
	min-height:auto;
}
.thankYou .page-content .section {
	width:100%;
	padding:10% 0;
}
.success-text {
    text-align: center;
    padding: 20px 15px;
	margin-top:40px;
}
.success-text h1 {
    font-size: 3rem;
    color: green;
	
}
.success-text h1 i {
    display: block;
}
.success-text h1 small {
    font-weight: 400;
    display: block;
    font-size: 18px;
    margin: 10px 0 0;
    color: #333;
}
.innerPgeOffset{
	padding:110px 0 40px 0;
}

/***********Photo Gallery************//***********************
    Gallery
****************************/
.box1 .icon,
.box2,
.box3,
.box4,
.box5 .icon li a {
    text-align: center
}
.box10:after,
.box10:before,
.box1:after,
.box1:before,
.box2 .inner-content:after,
.box3:after,
.box3:before,
.box4:before,
.box5:after,
.box5:before,
.box6:after,
.box7:after,
.box7:before {
    content: ""
}
.box1 .title,
.box10 .title,
.box4 .title,
.box7 .title {
    letter-spacing: 1px
}
.box2 {
    position: relative;
	overflow:hidden;
	margin:0 0 40px 0;
}
.box2 figure{
    position: relative;
	overflow:hidden;
	padding:0 0 100% 0;
	margin:0;
	
}
.box2 figure img {
    width: 100%;
    height: auto
}
.box2 .box-content {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 2;
    transform: translate(-50%, -50%)
}
.box2 .box-content:after,
.box2 .box-content:before,
.box2 figure:after,
.box2 figure:before {
    content: "";
    width: 80%;
    height: 80%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    transition: all .5s ease 0s
}
.box2 figure:before {
    background: linear-gradient(0deg, rgb(117, 100, 91) 49%, transparent 50%);
    left: -100%
}

.box2 figure:after {
    background: linear-gradient(0deg, transparent 49%, rgba(150, 120, 104, 0.4) 50%);
    left: 160%
}
.box2 .box-content:after,
.box2 .box-content:before {
    width: 65%;
    height: 65%;
    background: linear-gradient(0deg, rgb(101, 78, 66) 49%, transparent 50%);
    left: -100%;
    transition-delay: .1s
}
.box1 .box-content:after {
    background: linear-gradient(45deg, transparent 49%, rgba(0, 0, 0, .3) 50%);
    left: 160%
}
.box2:hover .box-content:after,
.box2:hover .box-content:before,
.box2:hover figure:after,
.box2:hover figure:before {
    left: 50%
}
.box2 .inner-content {
    width: 50%;
    height: 50%;
    color: #fff;
    padding: 65px 0;
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 2;
    transform: translate(-50%, -50%) scale(1);
	opacity:0;
    transition: all .3s ease .2s
}
.box2 .inner-content:after {
    width: 100%;
    height: 100%;
    background: rgba(230, 169, 10, 0.9);
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: -1;
    transform: translate(-50%, -50%) rotate(45deg)
}
.box2:hover .inner-content {
    transform: translate(-50%, -50%) scale(1);
    transition: all .3s ease 0s;
	opacity:1;
}
.box2 .title {
    font-size: 20px;
    font-weight: 400;
    text-transform: uppercase;
    margin-bottom: 5px;
}
.box2 .post {
    display: block;
    font-size: 14px;
    text-transform: capitalize;
    margin-bottom: 7px
}
.box10 .title,
.box11 .title,
.box4 .title,
.box5 .title,
.box6 .box-content,
.box7 .title {
    text-transform: uppercase
}
.box2 .icon {
    padding: 0;
    margin: 0;
    list-style: none;
    transform: rotateY(360deg) scale(0);
    transition: all .3s ease 0s
}

.box2:hover .icon {
    transform: rotateY(0) scale(1)
}

.box2 .icon li {
    display: inline-block;
    margin: 0 3px
}

.box2 .icon li a {
    display: block;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: #fff;
    font-size: 16px;
    color: #505050;
    transition: all .3s ease 0s
}

.box2 .icon li a:hover {
    box-shadow: 0 0 0 5px rgba(0, 0, 0, .5);
    background: #fff;
    color: #ff4f4f
}

@media only screen and (max-width:990px) {
    .box2 {
        margin-bottom: 30px
    }
}

@media only screen and (max-width:320px) {
    .box2 .inner-content {
        padding: 25px 0
    }
    .box2 .title {
        font-size: 16px
    }
}
.box-static-content{
	text-align:left;
	background:rgba(101, 78, 66, 0.74);
	padding:16px 20px;
	position:absolute;
	bottom:0;
	left:0;
	transition:.3s ease-in-out;
	-moz-transition:.3s ease-in-out;
	-webkit-transition:.3s ease-in-out;
	width:100%;
}
.box2:hover .box-static-content{
	transform:translateY(100%) scale(0);
}
.box-static-content h3{
	color:#fff;
	margin:0 0 10px 0;
}
.box-static-content h5{
	color:#fff;
	font-size:14px;
	margin:0;
}
.GalleryDemo {
    width:100%;
	*height:100vh;
	overflow:hidden;
	position:relative;
	
}
.GalleryDemo ul {
    list-style: none outside none;
    padding-left: 0;
    margin-bottom:0;
}
.GalleryDemo ul li {
    display: block;
    float: left;
    margin-right: 6px;
    cursor:pointer;
}
.GalleryDemo ul li img {
    display: block;
    height: auto;
    max-width: 100%;
}
.GalleryDemo .lSPager.lSGallery{
	position:absolute;
	bottom:0;
	left:0;
	width:100%;
	
}
.galleryList {
    position: relative;
    right: 0;
    width: 350px;
    margin: 0 auto;
}
.galleryList>a {
    display: block;
    padding: 10px 20px;
    text-align: left;
    background: #333;
    color: #fff;
    font-size: 16px;
    position: relative;
    transition: .3s ease-in-out;
    -moz-transition: .3s ease-in-out;
    -webkit-transition: .3s ease-in-out;
	text-decoration:none !important
}

.galleryList>a:after {
    position: absolute;
    right: 10px;
    top: 13px;
    content: "\f107";
    font-family: 'Line Awesome Free';
    font-size: 15px;
    transition: .3s ease-in-out;
    -moz-transition: .3s ease-in-out;
    -webkit-transition: .3s ease-in-out;
	font-weight:900;
}
.galleryList>a.el_opener_active:after {
    content: "\f106";
}
.galleryList ul {
    list-style-type: none;
    display: none;
    position: absolute;
    top: 100%;
    width: 100%;
    left: 0;
    background: #fff;
    padding: 20px;
    z-index: 3;
    clear: left;
    box-shadow: 0 0 20px #888;
    max-height: 400px;
    overflow-y: scroll;
}
.galleryList ul li {
    display: block;
    padding: 10px 5px;
    width: 100%;
}

.galleryList ul li a {
    display: table;
    width: 100%;
    color: #3e3635;
    border: 1px solid #ddd;
    padding: 10px;
    text-align: left;
}
.galleryList ul li a figure, .galleryList ul li a h5 {
    display: table-cell;
    vertical-align: top;
}
.galleryList ul li a figure {
    width: 64px;
    height: 64px;
    overflow: hidden;
}
.galleryList ul li a h5 {
	padding: 0 12px;
    margin: 0;
    font-size: 16px;
    width: calc(100% - 64px);
}
.galleryList ul li a h5 small {
    display: block;
    font-size: 12px;
    margin: 2px;
    opacity: .7;
}
/***********loader***********/
.loader{
	position: fixed;
    top: 0;
    left: 0;
    z-index: 999999;
    background: #3c2e2e;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
	transition:.3s ease-in-out;
	opacity:1;
	visibility:visible;
	
}
.loader.loader-active{
	opacity:0;
	visibility:hidden;
}
/********News and Events******/

.single-blog-post .img-box,
.single-blog-post .content-box {
	display: table-cell;
	vertical-align: top;
}
.single-blog-post .img-box {
	width: 270px;
    height: 276px;
}
.single-blog-post .img-box img{
	height:100%;
	width:100%;
	object-fit:cover;
	object-position:center;
}
.single-blog-post .content-box {
	padding-left: 30px;
}
.single-blog-post .content-box .date {
	font-size: 18px;
    color: #444444;
    margin-bottom: 25px;
    display: flex;
    line-height: normal;
}
.single-blog-post .content-box .date span {
	font-size: 45px;
    color: #242424;
    border-right: 2px solid #ddd;
    line-height: 36px;
	padding-right:8px;
	margin-right:8px;
}
.single-blog-post .content-box .date small {
	line-height:normal;
}
.single-blog-post .content-box .date small b{
	display:block;
	border-bottom:1px solid #ddd;
	font-weight:500;
}
.single-blog-post .content-box h3 {
	color: #000000;
	font-size: 16px;
	font-weight: bold;
	text-transform: uppercase;
	margin-bottom: 14px;
	margin-top: 0;
}
.single-blog-post .content-box p {
	color: #8E8D8D;
}
.single-blog-post .content-box a.thm-btn {
	background: #F7BE3D;
    color: #202020;
    text-transform: uppercase;
    font-weight: 500;
    display: inline-block;
    border-radius: 3px;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    font-size: 15px;
    padding: 10px 20px;
    line-height: normal;
	margin:12px 0 0;
}
.single-blog-post .content-box a.thm-btn i {
	border: none;
	font-size: 12px;
}


/**********Publication*************/
.publications .hvr-float-shadow {
	margin-bottom: 30px;
}
.publications .single-publication {
	border:1px solid transparent;
	position: relative;
	padding: 10px;
	z-index: 9;
	text-align:center;
	display:block;
	flex:none;
}

.publications .single-publication h6 {
	font-size: 16px;
	font-weight: 600;
	text-transform: uppercase;
	margin-bottom: 10px;
	color:#333;
}

.publications .single-publication:before,
.publications .single-publication:after {
	content: '';
	position: absolute;
	width:100%;
	height:100%;
	z-index: -1;
	top:0;
	left:0;
	-webkit-transition: all .4s ease-in-out;
	-moz-transition: all .4s ease-in-out;
	-ms-transition: all .4s ease-in-out;
	-o-transition: all .4s ease-in-out;
	transition: all .4s ease-in-out;
}
.publications .single-publication:before {
	border-left:1px solid #eabd57;
	border-right: 1px solid #eabd57;
	transform: scale(1,0);
	-webkit-transform:scale(1,0);
	-moz-transform:scale(1,0);
	-ms-transform:scale(1,0);
	-o-transform:scale(1,0);
}
.publications .single-publication:after {
	border-top:1px solid #eabd57;
	border-bottom: 1px solid #eabd57;
	transform: scale(0,1);
	-webkit-transform:scale(0,1);
	-moz-transform:scale(0,1);
	-ms-transform:scale(0,1);
	-o-transform:scale(0,1);
}
.publications .single-publication:hover:before,
.publications .single-publication:hover:after {
	transform: scale(1);
	-webkit-transform:scale(1);
	-moz-transform:scale(1);
	-ms-transform:scale(1);
	-o-transform:scale(1);
}
/* Float Shadow */
.hvr-float-shadow {
	vertical-align: middle;
	-webkit-transform: translateZ(0);
	transform: translateZ(0);
	box-shadow: 0 0 1px rgba(0, 0, 0, 0);
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-moz-osx-font-smoothing: grayscale;
	position: relative;
	-webkit-transition: all .3s ease-in-out;
	-moz-transition: all .3s ease-in-out;
	-ms-transition: all .3s ease-in-out;
	-o-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
}
.hvr-float-shadow:before {
	pointer-events: none;
	position: absolute;
	z-index: -1;
	content: '';
	top: 100%;
	left: 5%;
	height: 10px;
	width: 90%;
	opacity: 0;
	background: -webkit-radial-gradient(center, ellipse, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0) 80%);
	background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0) 80%);
	/* W3C */
	-webkit-transition: all .3s ease-in-out;
	-moz-transition: all .3s ease-in-out;
	-ms-transition: all .3s ease-in-out;
	-o-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
}
.hvr-float-shadow:hover, .hvr-float-shadow:focus, .hvr-float-shadow:active {
	-webkit-transform: translateY(-5px);
	transform: translateY(-5px);
}
.hvr-float-shadow:hover:before, .hvr-float-shadow:focus:before, .hvr-float-shadow:active:before {
	opacity: 1;
	-webkit-transform: translateY(5px);
	transform: translateY(5px);
}

/*********sitemap************/
.tree > ul{
	padding:0;
	display: -webkit-flex;     /* NEW - Chrome */
	display: flex;
	-ms-flex-wrap:wrap;
	flex-wrap:wrap;
	margin:0 -20px;
}
.tree > ul > li {
    list-style-type:none;
    margin:10px  10px;
    padding:10px 5px 0 5px;
    position:relative;
	padding:20px;
	width:calc(20% - 20px);
	background:#f1f1f1;
	box-shadow:0 0 2px #999;
}
.tree > ul > li:before {
	height:30px;
	content:"";
	top:0;
	left:0;
	position:absolute;
	width:30px;
	border-top:2px solid #333;
	border-left:2px solid  #333;
	opacity:.2;
	
}
.tree > ul  > li > a{
    font-size: 18px;
    color: #4e3c36;
    font-weight: 600;
	line-height:30px;
	display:block;
}
.tree ul > li > ul{
   margin:10px 0;
}
.tree ul > li > ul  > li{
	margin:14px 0;
}
.tree ul > li > ul  > li > a{
    font-size:16px;
	color:#4e3c36;
	display:block;
	position:relative;
	padding-left:20px;
	line-height:normal;
}
.tree ul > li > ul  > li > a:hover{
    color:#693c26;
}
.tree ul > li > ul  > li > a:before{
    content: "";
    position: absolute;
    top: 9px;
    left: 0;
    height: 2px;
    width: 7px;
    background: #845646;
    opacity: .7;
}



/*************Board Of Governors**********/

.Board-of-Governors{
	position:relative;
}
.Board-of-Governors:after{
	background: url(../images/logo/logo.png) no-repeat 75% 0%/400px;
	position:absolute;
	z-index:0;
	width:100%;
	right:0;
	content:"";
	height:100%;
	top:0;
	opacity:.05;
}
.Board-of-Governors .container{
	position:relative;
	z-index:1;
}
.Board-of-Governors .container .content-text{
	background:transparent;
}
.Board-of-Governors ul li{
	margin:10px 0;
	font-size:18px;
	line-height:28px;
}
.navWrapper .secondary-level >ul>li >a.active{
	color:#eabd57;
}
.navWrapper .secondary-level >ul>li >a.active.deactive{
	color:#fff;
}	 

/*************fundraising**********/
.fundraising-header{
	padding: 10px 0;
    background: #e6e8bf;
    text-align: center;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
	z-index:2;
}
.fundraising-header .navTrigger{
	display:none;
}
.fundraising-header .navTrigger span{
	display: block;
    height: 4px;
    background: #3c2e2e;
    width: 32px;
    margin: 5px 0;
    border-radius: 6px;
	-webkit-border-radius: 6px;
	-moz-border-radius: 6px;
    transition: .3s ease-in-out;
}
.fundraising-header a{
	display:inline-block;
	text-align:center;
	background:#e6e8bf;
	padding:12px 30px;
	margin-bottom:-40px;
	margin-top:-10px;
	border-radius:10px;
}
.fundraising-header a img{
	width:400px;
}
#main-content{
	position:relative;
}
.fundraising-content{
	background: #fff;
    padding: 72px 0 0 0;
}

@media (min-width:1200px){
	.fundraising-content .container{
		background: #f1f1f1;
		padding: 0 0 40px 0;
		min-height: 600px;
	}
}
@media (min-width:1440px){
	.fundraising-content .container{
		min-height: 800px ;
	}
}
.fundraising-content .sidebar{
	float: right;
    width: 280px;
}
.fundraising-content .sidebar .sidebar__inner{
	background: #3c2e2e;
    padding: 40px 0;
}
.sidebar-widget{
	padding:20px;
}
.sidebar-widget h3{
	font-size:22px;
	color:#fff;
	margin:0 0 20px 0;
	border-bottom:1px solid #ddd;
	padding:0 0 8px 0;
}
.sidebar-widget ul{
	padding:0;
	margin:0;
}
.sidebar-widget ul li{
	display:block;
	padding:0;
	line-height:normal;
}
.sidebar-widget ul li a{
	display:block;
	font-size:16px;
	padding:15px 0;
	color:#fdd375;
	text-decoration:none !important;
	line-height:normal;
	border-bottom:1px solid #565247;
	transition:.3s ease-in-out;
}
.sidebar-widget ul li a:hover{
	color:#9c8989;
}
.sidebar-widget ul li:last-child a{
	border-bottom:0;
}
.sidebar-content{
	margin-right:280px;
}
.content-widget{
	padding:60px 70px 20px 30px;
}
.content-widget .sc-data p{
	font-size:18px;
	line-height:32px;
	text-align:justify;
}
.Gallery{
	margin:40px 0 0;
}
.Gallery a,.Gallery span{
	display:block;
}
.Gallery a img,.Gallery span img{
	display:block;
	width:100%;
}
.Gallery .slick_arrow{
	position:absolute;
	top:40%;
}
.Gallery .slick_arrow{
	position: absolute;
    top: 40%;
    z-index: 1;
    font-size: 20px;
    background: #3c2e2e;
    padding: 8px 10px;
    color: #fff;
    line-height: normal;
    border: 2px solid #5a5a5a;
	cursor:pointer;
}
.Gallery .slick_prev{
	left:10px;
}
.Gallery .slick_next{
	right:10px;
}
.sc-data .accordion{
	padding:20px 0 0;
}
.sc-data .accordion .single-dot:not(:last-child){
	margin-bottom:20px;
}
.single-dot h2{
	font-size:20px;
}
.single-dot h2 a{
	background: #565656;
    padding: 6px 40px 8px 20px;
    display: block;
    line-height: normal;
    color: #fff;
    position: relative;
    border-radius: 6px;
	-webkit-border-radius: 6px;
	-moz-border-radius: 6px;
}
.single-dot h2 a:hover{
	color:#fff;
}
.single-dot h2 a .acco-action{
	position: absolute;
    right: 10px;
    top: 7px;
    font-size: 28px;
    transition: .3s ease-in-out;
	transform:rotate(45deg)
}
.single-dot h2 a.collapsed .acco-action{
	transform:rotate(0deg)
}
.single-dot .accordion-body{
	padding: 20px;
    background: #fff;
}
.content-widget .list li ul{
	counter-reset: listStyle;
}
.content-widget .list li ul li{
    counter-increment: listStyle;
	font-size:95%;
	line-height:normal;
}
.content-widget .list li ul li:before{
	display: block;
	top: 0;
	content: counter(listStyle, lower-alpha)'.';
}
.doc-formate{
	padding: 20px;
    display: block;
    text-align: center;
    color: #333;
    background: #fff;
    border-radius: 6px;
	-webkit-border-radius: 6px;
	-moz-border-radius: 6px;
    position:relative;
    margin: 20px 0;
	box-shadow: 0 0px 2px #bdbdbd;
	transition:.1s ease-in-out;
	height:calc(100% - 40px);
	overflow:hidden;
}
.doc-formate:hover{
    box-shadow: 0 6px 10px #bdbdbd;
}
.doc-formate span{
	position: absolute;
    bottom: -100%;
    width: 100%;
    display: block;
    padding: 4px 10px;
    text-align: center;
    left: 0;
    background: #e5be6b;
    color: #fff;
    font-weight: 600;
	transition:.2s ease-in-out;
}
.doc-formate:hover span{
	bottom:0;
}
.doc-formate img{
	width:64px;
}
.doc-formate h4{
	font-size: 16px;
	line-height:24px;
    margin: 20px 0 0;
    letter-spacing: 0px;
}
.fundraising-footer{
	background:#ddd;
	padding:30px 0;
	text-align:center;
	font-size:14px;
	margin:20px 0 0;
}
/*************Disclaimer Modal*************/
.disclaimer_modal{
	position:fixed;
	width:100%;
	height:100%;
	background:rgba(0,0,0,.9);
	top:0;
	left:0;
	z-index:99999;
	transition:.3s ease-in-out;
	display: -webkit-flex;     /* NEW - Chrome */
	display: flex;
	align-items:center;
	opacity:0;
	visibility:hidden; 
}
.disclaimer_modal.disclaimer_modal_open{
	opacity:1;
	visibility:visible;
}
.disclaimer_modal .card{
	width:90%;
	transition:.3s ease-in-out;
	margin:0 auto;
	background:#fff;
	padding:0;
	border-radius:0;
	border:5px solid #a28a82;
	overflow:hidden;
	transition:.3s ease-in-out;
	transform:scale(1.1);
	opacity:0;
	visibility:hidden;
}
.disclaimer_modal.disclaimer_modal_open .card{
	transform:scale(1);
	opacity:1;
	visibility:visible;
}
.disclaimer_modal .card div{
	overflow: auto;
    overflow-x: hidden;
    max-height: 400px;
    width: 102%;
    padding: 30px;
}
@media (min-width:575px){
	.disclaimer_modal .card{
		width:500px;
	}
}
.disclaimer_modal .card p{
	font-size: 16px;
    line-height: 26px;
    font-weight: 500;
    color: #555;
	text-align:justify;
}
.close-dm{
	position: absolute;
    top: 0;
    right: 0;
    margin: 0px 4px 0 0;
    font-size: 32px;
    line-height: normal;
    color: #5a4d49;
	cursor:pointer;
}
.g-map .container-fluid {
    padding-left: 0px;
    padding-right: 0px;
}
@media screen and (max-width: 575px){
	.g-map iframe{
		height: 250px;
	}
}
@media screen and (min-width: 576) and (max-width: 767px){
	.g-map iframe{
		height: 300px;
	}
}

.iaypTable .table tr td:nth-child(3),.iaypTable .table tr td:nth-child(6){
	display:none;
}
.logomps{
	padding: 10px 0;
    background: #f1f1f1;
}
.logoWrapper{
	display: flex;
    text-align: center;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}
.logoTitle{
	position: relative;
    padding-left: 0;
    display: flex;
    align-items: center;
}
.logoTitle img{
	width:100px;
}
.logoTitle div{
	padding-left:20px;
}
.logoTitle div h3,.logoTitle div p{
	margin:0;
}
.logomps .logoWrapper .logoTitle h3 {
    color: #262626;
}
.logoTitle div p{
	font-size:16px;
}
.logomps .readMore{
	text-align: center;
    padding: 0;
    margin: 20px 0 0;
}
.logomps .readMore a{
	background: #634c40;
	color: #fff;
}
.logomps .readMore a:hover{
	opacity:.6;
}
.logomps .readMore a:after,.logomps .readMore a:before,.logomps .readMore a span:after,.logomps .readMore a span:before{
	display:none;
}
.letter-scroll-div{
	position:relative;
}
.letter-scroll-div .content-text{
	
}
.letter-scroll-div > img{
	opacity:.4;
}
.letter-scroll-div .content-text p{
	text-align:justify;
	color:#352222;
	font-size:20px;
	text-transform:uppercase;
	line-height:36px;
}
.letter-scroll-div .content-text p img{
	width:120px;
}
.missionBrand{
	display: -webkit-flex;     /* NEW - Chrome */
	display: flex;
	align-items:center;
	margin:30px 0 0;
}
.missionBrand span{
	font-size:26px;
	padding:0 0 0 20px;
	text-transform:none;
}


/************pop-inner*********/
.main-pop{
	position:fixed;
	display: -webkit-flex;     /* NEW - Chrome */
	display: flex;
	justify-content:center;
	align-items:center;
	top:0;
	width:100%;
	height:100%;
	left:0;
	background:rgba(0,0,0,.8);
	z-index:99999;
	opacity:0;
	visibility:hidden;
	transition:.3s ease-in-out;
}
.closePop{
	position: absolute;
    top: -11%;
    right: -10%;
    font-size: 3em;
    color: #fff;
    z-index: 1;
	cursor:pointer;
}
.pop-inner{ 
	width:600px;
	margin:0 auto;
	padding:10px;
	position:relative;
	background:#825946;
	border-radius:6px;
}
.pop-inner img{
	width:100%;
}
/************Youtube Video************/
.fixedSocial{
	position: fixed;
    right: 0;
    z-index: 5;
    top: 40%;
    font-size: 32px;
    height: 50px;
    width: 50px;
    background: #ff2121;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff !important;
    border-radius: 50%;
    border: 2px solid #fda2a2;
    margin: 0 10px 0 0;
    box-shadow: 0 5px 5px rgb(45 45 45 / 40%);
}
.fixedSocial.fixedSocial-instagram{
    top: 50%;
    background: linear-gradient(30deg, #de1130, #8e4bc3);
}
.fixedSocial.fixedSocial-linkedin{
    top: 60%;
    background: #0077b5;
}
.welhamReels{
	padding:60px 0;
}
.videoBox h3{
	background: #fff;
    color: #333;
    padding: 10px 20px;
	font-size:20px;
	font-weight:600;
}
.videoSingle{
	position:relative;
}
.youtube {
    background-color: #000;
    position: relative;
    padding-top: 56.25%;
    overflow: hidden;
    cursor: pointer;
}
.youtube img {
    width: 100%;
    top: -16.82%;
    left: 0;
    opacity: 0.7;
}
.youtube .play-button {
    width: 90px;
    height: 60px;
    background-color: #333;
    box-shadow: 0 0 30px rgba( 0,0,0,0.6 );
    z-index: 1;
    opacity: 0.8;
    border-radius: 6px;
}
.youtube .play-button:before {
    content: "";
    border-style: solid;
    border-width: 15px 0 15px 26.0px;
    border-color: transparent transparent transparent #fff;
}
.youtube img,
.youtube .play-button {
    cursor: pointer;
}
.youtube img,
.youtube iframe,
.youtube .play-button,
.youtube .play-button:before {
    position: absolute;
}
.youtube .play-button,
.youtube .play-button:before {
    top: 50%;
    left: 50%;
    transform: translate3d( -50%, -50%, 0 );
}
.youtube iframe {
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
}
.videoWrapper{
	width:100%;
}

.videoWrapper .main-title{
	text-align:center;
	padding:0;
}
.videoWrapper .main-title:before{
	display:none;
}
.videoWrapper .videoBox {
	width:100%;
}


img.boarding-img-care-team {
    width: 100%;
    height: 500px;
    object-fit: cover;
}





.header {
	font-weight:  600;
	letter-spacing: 0px;
	text-align: center;
	color: #f35626;
	background-image: -webkit-linear-gradient(92deg, #f35626, #feab3a);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	-webkit-animation: hue 10s infinite linear;
}

@-webkit-keyframes hue {
  from {
    -webkit-filter: hue-rotate(0deg);
  }
  to {
    -webkit-filter: hue-rotate(-360deg);
  }
}
 h4.top-herd1 {
    font-size: 30px;
}
.top-herd h4 {
    text-align: center;
    color: #2a2a2a;
    padding: 0;
    font-size: 28px;
}
ul.why-shalom {
    padding: 0px;
    margin: 61px 0 44px 0;
}
ul.why-shalom li {
    height: 346px;
    width: 45%;
    display: inline-block;
    margin: 0 11px 16px 11px;
    background: #fff;
    font-size: 16px;
    padding: 10px 10px 10px 10px;
    vertical-align: top;
    font-weight: 500;
    position: relative;
    border-radius: 3px;
    text-align: center;
    line-height: 24px;
}
ul.why-shalom li h4 {
    background: linear-gradient(to right, #9d1319 , #063183);
    font-size: 18px;
    line-height: 36px;
    color: #fff;
    position: relative;
    height: 36px;
    padding: 8px 0 0 0;
    line-height: 17px;
    border-radius: 0 25px 25px 0;
    box-shadow: 5px 5px 7px 0px #cecece;
  margin: 20px 0 19px -15px;
    text-align: center;
    position: relative;
}
ul.why-shalom li h4::after {
    content: '';
    position: absolute;
    left: -31px;
    background: url(../images/bg-hd.png);
    height: 76px;
    width: 56px;
    top: 0;
    z-index: -1;
}

 .disp-fls {
     display:flex;
 }

.img-src {
    width: 140px;
    border-radius: 14px;
    height: 124px;
    margin-top: -65px;
    box-shadow: 4px 6px 10px -5px rgba(53, 2, 2, 1);
}

 .content-img{
         font-size: 14px;
    padding: 0px 7px 6px 18px;
        margin-bottom: 7px;
 }

 .photo-gallery {
     background-image:url(../images/bg-imgs.jpg);
     background-size: 24%;
     background-blend-mode: overlay;
     background-color: #ffffff7d;
 }
 .top-herds h4 {
    text-align: center;
    color: #10254c;
    padding:0;
    font-size: 30px;
    font-weight: 600;
}
 .card {
         box-shadow: 0 .5rem 1rem rgba(0,0,0,.15)!important;
     margin-top: 18px;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-clip: border-box;
    border-radius: 0.25rem;
    /* background: white; */
}.card-header:first-child {
    border-radius: calc(0.25rem - 1px) calc(0.25rem - 1px) 0 0;
}
.text-center {
    text-align: center;
}
.bg-secondary {
    background: #10254c!important;
}.text-white {
    color: #ffffff !important;
}.bg-primary {
    color: #fff;
}.news-body-text {
    max-height: 240px;
}


 .schoolServices {
    padding: 60px 0;
    background: #fff;
}

.schoolServices .item1:not(:last-child) {
    border-right: 1px solid #a9a9a9;
}
.schoolServices .item1:nth-child(1) {
    border-radius: 10px 0 0 0;
}
.schoolServices .item-parts {
    text-align: center;
}
.schoolServices .item1 {
    padding: 0px 32px 0px;
    width: 25%;
    transition: .3s;
}.schoolServices .item-parts figure {
    height: 160px;
    overflow: hidden;
}.schoolServices .item-parts figure img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}.schoolServices .item-parts h3 {
    text-transform: uppercase;
    margin-bottom: 10px;
    position: relative;
        font-size: 18px;
        font-weight: 600;
}.schoolServices .item-parts p {
    font-weight: 400;
}

.schoolServices .item-parts h3, .schoolServices .item-parts p, .schoolServices .item-parts a {
    color: #424242;
}.schoolServices .item-parts a {
    text-align: center;
    border: 1px solid #fff;
    text-transform: uppercase;
    font-weight: 400;
    margin-top: 30px;
    background: #11306b;
    color: #ffffff;
    line-height: normal;
    padding: 6px 8px;
    letter-spacing: 0;
    font-size: 13px;
}


 #services {
    background: url(../images/enquiry-bg.jpg) no-repeat 0 0;
    background-attachment: fixed;
    background-size: cover;
    overflow: hidden;
    position: relative;
}
.counter-section {
    background: #00743d;
    overflow: hidden;
    position: relative;
}
.section-padding {
    padding: 50px 0;
}
#services .overley {
    background: url(../images/overlay.png);
    background-attachment: fixed;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}.services-wrapper .padding-none {
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
}.padding-none {
    padding: 0;
    border-left: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
}
 .services-item {
    padding: 40px 20px;
    text-align: center;
    transition: all .3s ease-in-out 0s;
    -moz-transition: all .3s ease-in-out 0s;
    -webkit-transition: all .3s ease-in-out 0s;
    -o-transition: all .3s ease-in-out 0s;
    height: 200px;
}
 .services-item .icon i {
    width: 50px;
    height: 50px;
    display: inline-block;
    line-height: 50px;
    font-size: 48px;
    text-align: center;
    margin-bottom: 15px;
    color: #fff;
    border-radius: 0;
    transition: all .3s ease-in-out 0s;
    -moz-transition: all .3s ease-in-out 0s;
    -webkit-transition: all .3s ease-in-out 0s;
    -o-transition: all .3s ease-in-out 0s;
}
 .services-item .services-content p {
    color: #fff;
        font-size: 15px;
}

 #services h2{
     color:#fff;text-align:center;
     font-weight:600;
 }
 .b-n{
     border-bottom:0!important;
 }

 .services-item:hover{
     background:#810000;
 }

 .bg-image-1 {
    background-image: url(../images/bg-ins.jpg);
    background-repeat: repeat;
        background-size: 19%;
            padding-bottom: 81px;
}.primary-section {
    /* background: #A92233; */
    padding: 60px 0px;
}.atf-section-title h2 {
    color: #333;
    font-weight: 600;
}.atf-single-feature {
    position: relative;
}.atf-single-feature {
    border: none;
    border-radius: 0px;
}.atf-feature-text h3 {
   padding: 0px 0px;
    margin-top: 19px;
    color: #4e4d4d;
    font-size: 16px;
    line-height: 0px;
}

.atf-feature-text i {
         color: #980606;
    font-size: 19px;
    padding-right: 7px;
 }

.footer-widget   ul li i{
        font-size: 16px;
        color: #ffffff;
        padding-right: 0;
}
.socil {
    list-style: none;
    margin: 0px;
    padding: 0px;
    float: left;
    width: 100%;
    height: auto;
}
.socil li {
    width: auto !important;
    display: inline-block;
    margin-right: 2px!important;
    margin-top: 0px !important;
}.socil li a {
   /* background-color: #ffffff; */
   /* color: #fff !important; */
   /* padding: 11px; */
   /* border-radius: 45px; */
   /* width: 45px; */
   /* height: 45px; */
   /* display: block; */
   /* text-align: center; */
}

 .socil li a i{
     /* font-size:24px; */
     /* color:#10254c; */
 }

 .fotbot01 {
    float: left;
    width: 100%;
    height: auto;
    border-bottom: 1px solid rgb(255 255 255 / 25%);
    padding-bottom: 25px;
    margin-bottom: 35px;
}.fotcll01 {
    float: left;
    width: 100%;
}.fotcll01 p {
    float: left;
    text-align: right;
    font-size: 16px;
    color: #fff;
    margin-bottom: 0px;
}.fotcll01 p span {
    display: block;
    color: #ffe371;
    font-weight: 600;
    font-size: 20px;
}
 .fotcll01 img {
    float: left;
    border-left: 1px solid rgb(255 255 255 / 25%);
    padding-left: 20px;
    padding-top: 10px;
    padding-bottom: 10px;
    height: 55px;
    margin-left: 23px;
}
 .fotmidle {
    float: left;
    width: 100%;
    text-align: center;
    padding-top: 3px;
}.fotmidle a {
  background-color: #7a0505;
    color: #fff;
    padding: 12px 25px;
    border-radius: 34px;
    font-weight: 500;
    letter-spacing: 0.5px;
    display: inline-block;
}

 .why-shalom h3{
         font-size: 20px;
    font-weight: 600;
        margin-top: 12px;
    color: #10254c;
 }

 .btn-sec-n{
         border: 2px solid #8b1625;
    border-radius: 24px;
    padding: 2px 10px;
    font-size: 15px;
 }
  .btn-sec-n a{
    color: #901521;
 }

  .schoolServices p{
      font-size:15px;
  }

  @media(max-width:991px){
      .heroheader{
          padding:0 10px;
      }
  }
  @media (min-width:576px) and (max-width:767px){
	img.boarding-img-care-team {
		height: 300px;
		margin-bottom: 20px;
	}
    .services-item {
        padding:12px 6px 6px 0;
    border-left: 1px solid #fff;
    border-bottom: 1px solid #fff;
}
    .services-wrapper .padding-none {
    flex: 0 0 50%;
    max-width: 50%;
}
}

  .btn-alls{
          color: #980606;
          text-align: center;
          margin: 18px 0 0;
          display: flex;
          /* justify-content: center; */
          /* width: 100px; */
          padding: 5px 16px;
          background: #fff;
          border-radius: 30px;
          font-size: 14px;
          font-weight: 500;
          display: inline-block;
  }
    .btn-alls a{
        color: #980606;
    }
    
    .btn-gallery a:hover, .btn-gallery a:focus {color:#fff}
    .btn-gallery a{
        float: left;
        background: #97141d;
        width: 100px;
        margin: 14px 0 0;
        /* animation: recent-events-animate-up-down 20s ease-in-out infinite; */
    }
.btn-gallery {
    animation: recent-events-animate-up-down 50s ease-in-out infinite;
    width: 78%;
    display: inline-flex;
}
    @keyframes recent-events-animate-up-down {
  0%,100% {transform: translate(0px, 0);}
  50% {transform: translate(100%, 0px);}
}
      .btn-gallery a{
     color:#fff;
    }


.rgiugyu_tri .absolute.border-event {
    /* border-style: solid; */
    top: 8%;
    min-height: 86%;
    /* border-top-width: 3px; */
    /* border-right-width: 3px; */
    /* border-bottom-width: 3px; */
    border-radius: 0.375rem;
    width: 79%;
    left: -5px;
    position: absolute;
    border: 3px solid #7d1118;
    /* background: #fff; */
}
      
/*----------------footer-----------------*/
footer {
    float: left;
    width: 100%;
    height: auto;
}

.fotsocil001 h3 {
    margin-top: 0px;
    font-size: 30px;
    font-weight: 600;
    color: #000;
    margin-bottom: 20px;
}
.fotsocil001 a {
    display: block;
}
.fotsocil001 h3 img {
    vertical-align: middle;
    max-width: 110px;
}

.fotsocil001 img {
    width: 100%;
}
.fotbotom {
    float: left;
    width: 100%;
    height: auto;
    background-color: #293c61;
    padding-top: 30px;
    padding-bottom: 40px;
}
.fotbot01 {
    float: left;
    width: 100%;
    height: auto;
    border-bottom: 1px solid rgb(255 255 255 / 25%);
    padding-bottom: 25px;
    margin-bottom: 35px;
}
.fotcll01 {
    float: left;
    width: 100%;
}
.fotcll01 p {
    float: left;
    text-align: right;
    font-size: 16px;
    color: #fff;
    margin-bottom: 0px;
}
.fotcll01 p span {
    display: block;
    color: #c5c3c3;
    /*font-weight: 600;*/
    font-size: 20px;
}
.fotmidle {
    float: left;
    width: 100%;
    text-align: center;
    padding-top: 3px;
}
.fotmidle a {
    background-color: #b50203;
    color: #fff;
    padding: 12px 25px;
    border-radius: 34px;
    font-weight: 600;
    letter-spacing: 0.5px;
    display: inline-block;
}
.fotcll02 {
    float: right;
    width: auto;
}
.fotcll01 p {
    float: left;
    text-align: right;
    font-size: 16px;
    color: #fff;
    margin-bottom: 0px;
}
.fotbott0 {
    float: left;
    width: 100%;
}
.fotlinks h2, .fotlinks h4 {
    font-size: 16px !important;
    font-weight: 600 !important;
}
.fotlinks h4 {
    margin-top: 0px;
    text-transform: uppercase;
    color: #fff;
    font-size: 25px;
    margin-bottom: 18px;
    font-weight: 400;
}
.fotlinks ul {
    list-style: none;
    margin: 0px;
    padding: 0px;
    float: left;
    width: 100%;
    height: auto;
}
.fotlinks ul li {
    float: left;
    width: 50%;
    margin-top: 10px;
    font-size: 15px;
}
.fotlinks ul li a {
    color: #cacaca;
}
.fotcll01 img {
    float: left;
    border-left: 1px solid rgb(255 255 255 / 25%);
    padding-left: 20px;
    padding-top: 10px;
    padding-bottom: 10px;
    height: 55px;
    margin-left: 23px;
}
.fotlinks h2:after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background-color: #ff9934;
    margin-top: 10px;
}
.fotlinks2 p {
    color: #fff;
    position: relative;
    padding-left: 27px;
    line-height: 23px;
}
.fotlinks2 p img {
    position: absolute;
    top: 0;
    left: 0;
}
.socil li {
    width: auto !important;
    margin-right: 10px;
    margin-top: 0px !important;
}
.socil li a {
    background-color: #ffffff00;
    color: #0f244e !important;
    padding: 6px;
    border-radius: 45px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ffffff6e;
}
.fotcopy {
    width: 100%;
    text-align: center;
    float: left;
    background-color: #0f244e;
    padding: 14px 10px;
    color:#c5c3c3
}
.widget_text{margin-bottom:40px}

/* ============ banner ============== */
p.eyebrow {
    color: #faaf11;
    display: inline-flex;
    border-radius: 30px;
    align-items: center;
    margin-bottom: 15px;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 500;
}
.hero-slider {
  position: relative;
  max-width: 100%;
  height: min(640px, calc(100vh - 126px));
  min-height: 592px;
  margin: 0 auto;
  overflow: hidden;
  background: #14213d;
}
p.eyebrow:after {
    content: "";
    border-bottom: 2px solid #faaf11;
    width: 60px;
    margin-left: 8px;
    position: relative;
    top: 0px;
}

.school-vedio {
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    top: 0;
}

.school-vedio:before {
    content: '';
    position: absolute;
    height: 100%;
    bottom: 0;
    z-index: 1;
    left: 0;
    right: 0;
    background: linear-gradient(to top, #000000d4 10%, #04040400 70%, #00000000 100%);
}
.slide {
  /* position: absolute; */
  /* inset: 0; */
  /* display: grid; */
  /* align-items: end; */
  /* padding: 0 109px; */
  /* color: #fff; */
  /* background-position: center; */
  /* background-size: cover; */
  /* opacity: 0; */
  /* transform: scale(1.03); */
  /* transition: opacity 600ms ease, transform 900ms ease; */
}

.slide::before {
  /*content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(10, 24, 44, 0.86), rgba(15, 111, 117, 0.58), rgba(10, 24, 44, 0.12));*/
}

.slide.active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}

.slide-content {
  position: relative;
  z-index: 2;
  /* max-width: 50%; */
  /* width: 57%; */
  margin-bottom: 4vw;
  left: 7vw;
  text-shadow: 0 1px 1px #000000;
}

.slide-content h1 {
  margin: 0;
  font-size: clamp(0.6rem, 2.8vw, 5.7rem);
  line-height: 0.95;
  color: #fff;
}

.slide-content p:not(.eyebrow) {
  /* max-width: 590px; */
  margin: 15px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(0.81rem, .9vw, 1.22rem);
  line-height: 1.6;
  width: 55%;
}

.primary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  /* min-height: 48px; */
  margin-top: 42px;
  padding: 8px 28px;
  color: #faaf11;
  background: #faaf1100;
  border-radius: 4px;
  font-weight: 600;
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  border: 2px solid #faaf11;
  backdrop-filter: blur(3px);
}

.slider-btn {
  position: absolute;
  bottom: 1%;
  z-index: 3;
  width: 30px;
  height: 30px;
  border: 0px solid rgba(255, 255, 255, 0.42);
  /* border-radius: 50px; */
  color: #fff;
  background: rgb(10 24 44 / 38%);
  backdrop-filter: blur(10px);
  cursor: pointer;
  transform: translateY(-50%);
}

.slider-btn:hover {
  /* background: rgba(10, 24, 44, 0.62); */
}

.slider-btn.prev {
  left: 9%;
}

.slider-btn.next {
  left: 16%;
}

.slider-dots {
  position: absolute;
  left: 13.8%;
  bottom: 5.6%;
  z-index: 3;
  display: flex;
  gap: 3px;
  transform: translateX(-50%);
}

.dot {
  width: 6px;
  height: 6px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.48);
  cursor: pointer;
}

.dot.active {
  width: 21px;
  border-radius: 999px;
  background: #fff;
}

@media (max-width: 620px) {
  .hero-slider {
    min-height: 520px;
  }

  .slider-btn {
    display: none;
  }
}

/*======================*/

.footer-fixed-bar {
    /* display: none;*/
    background: #faaf11;
    /* position: fixed; */
    bottom: 0.52vw; /* 10px ≈ 0.52vw */
    left: 16.81vw; /* 15% of 1920px ≈ 149px ≈ 7.81vw */
    /* border-radius: 3.04vw; */
    width: 100%;
    height: 3vw;
    padding: 0;
    overflow: hidden;
    text-align: center;
    z-index: 999;
    box-shadow: 0 0 0.47vw #00000026; /* 9px ≈ 0.47vw */
    display: flex;
}

    .footer-fixed-bar p {
        color: #000000;
        font-size: 0.83vw; /* 16px ≈ 0.83vw */
        display: inline-block;
        vertical-align: middle;
        margin-right: 0.52vw; /* 10px ≈ 0.52vw */
        margin-bottom: 0;
    }

    .footer-fixed-bar .rgrhjbnj_ami {
        font-size: 1vw; /* 14px ≈ 0.73vw */
        text-decoration: none;
        font-weight: 600;
        width:100%;
        white-space:nowrap;
        line-height: 1.04vw; /* 20px ≈ 1.04vw */
        color: #000000;
        display: inline-block;
        vertical-align: top;
        margin: auto;
    }
    .efughui_tri {
    background: #b3150f;
    position: relative;
    z-index: 1;
    color: #fff;
    white-space: nowrap;
    display: flex;
    align-items: center;
    padding: 0 15px 0 25px;
    font-size: 15px;
}
    .footer-fixed-bar .morqueeee {
        display: flex;
        width: 100%;
        height: 100%;
        align-items: center;
        overflow: hidden;
    }

    .footer-fixed-bar .marquee--inner:hover {
        animation-play-state: paused;
    }

    .footer-fixed-bar .marquee {
        width: 100%;
    }

        .footer-fixed-bar .marquee span {
            width: 100%;
        }

    .footer-fixed-bar .marquee--inner {
        width: 100%;
        display:flex;
        /* overflow: hidden; */
    }


.marquee {
    width: 100%;
    overflow: hidden;
    /*background-color: #f2f2f2;*/
    display: flex;
    align-items: center;
    /* position: relative;*/
}

.marquee-content {
    display: flex;
    animation: marquee 15s linear infinite; /* Infinite animation */
    animation-play-state: running; /* Default running state */
}

.marquee:hover .marquee-content {
    animation-play-state: paused; /* Pause the animation on hover */
}

.utfty_ami {
    padding: 0vw;
}

.marquee-item-tri {
    width: 16%;
    padding: 0 7px 10px;
}

    .marquee-item-tri img {
        width: 100%;
        height: 86px;
        object-fit: contain;
        box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    }

.marquee-item {
    flex-shrink: 0;
    /*width: 144px;*/

    background-color: #ccc;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 0.78vw;
    font-size: 20px;
    transition: transform 0.4s ease, filter 0.4s ease;
}

    .marquee-item img {
        width: 100px;
    }

.marquee:hover .marquee-item {
    filter: blur(4px);
    transform: scale(0.9);
}

.marquee .marquee-item:hover {
    filter: none;
    transform: scale(1.2);
}

.marquee--inner {
    display: block;
    width: 100%;
    /* position: absolute; */
    animation: marquee 20s linear infinite;
    color: #fff;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

.apply_bottom {
    background: #ffffff;
    font-size: 0.8vw;
    padding: 0.5vw 1.52vw 0.5vw;
    border-radius: 1.57vw;
    color: #000000;
    margin-left: 0.26vw;
    font-weight: 600;
    line-height: 29px;
}
/*======== Message ========*/
.efuighui_tri {
    display: flex;
}

ul.gdg_tri {
    display: flex;
    margin-left: 7px;
}

ul.gdg_tri li a {
    font-size: 15px;
    padding: 10px 9px 0;
}

a.euitghyu_tri {
    /* background: #f9a938; */
}
ul.rgiu_tri {
    display: flex;
    align-items: center;
    position: relative;
}

ul.rgiu_tri li a {
    /* font-size: 13px; */
    font-size: .95vw;
    border-right: 1px solid #d7d7d700;
    border-image: linear-gradient(181deg, #00000000, #ffffff4f, #ffffff00) 1;
    padding: 5px 10px;
    margin: 0;
}
.changecolor {
  -webkit-animation: NAME-YOUR-ANIMATION 1s infinite;  /* Safari 4+ */
  -moz-animation: NAME-YOUR-ANIMATION 1s infinite;  /* Fx 5+ */
  -o-animation: NAME-YOUR-ANIMATION 1s infinite;  /* Opera 12+ */
  animation: NAME-YOUR-ANIMATION 1s infinite;  /* IE 10+, Fx 29+ */
}

@-webkit-keyframes NAME-YOUR-ANIMATION {
  0%, 49% {
     color: #ffffff;
  }
  50%, 100% {
    color: #ffe200;
  }
}


 .changecolor2 {
  -webkit-animation: NAME-YOUR-ANIMATION2 1s infinite;  /* Safari 4+ */
  -moz-animation: NAME-YOUR-ANIMATION2 1s infinite;  /* Fx 5+ */
  -o-animation: NAME-YOUR-ANIMATION2 1s infinite;  /* Opera 12+ */
  animation: NAME-YOUR-ANIMATION2 1s infinite;  /* IE 10+, Fx 29+ */
}

@-webkit-keyframes NAME-YOUR-ANIMATION2 {
  0%, 49% {
     background-color: #e48e24;
  }
  50%, 100% {
   
background-color: #e50000;
  }
}
.iutgyu_tri {
    /* position: relative; */
    z-index: 1;
    /* background: #b3150f; */
    margin-bottom: 12px;
    width: 100%;
    display: flex;
    justify-content: end;
}
.iutgyu_tri:before {
    content: "";
    background: #b3150f;
    position: absolute;
    right: 0;
    height: 39%;
    /* width: 59%; */
    top: 0;
    border-bottom-left-radius: 50px;
    width: 65.1vw;
}
span.guhiu_tri {
    display: block;
    color: #fff;
    font-size: 23px;
    font-weight: 600;
    text-align: left;
    line-height: 26px;
    white-space: nowrap;
    margin-left: 0px;
    margin-top: 10px;
}
span.gudfhiu_tri {
    display: flex;
    font-size: 13px;
    align-items: center;
    margin-top: 6px;
}
span.gudfhiu_tri:before {content:"";border-bottom: 1px solid;border-image: linear-gradient(266deg, #ffffff75, #ffffff52, #ffffff00) 1;width: 90%;margin-right: 10px;}
span.gudfhiu_tri:after {content:"";border-bottom: 1px solid;border-image: linear-gradient(91deg, #ffffff75, #ffffff52, #ffffff00) 1;width: 90%;margin-left: 10px;}
header.header_tri.fixed-header span.guhiu_tri {color: #262626;}
header.header_tri.fixed-header span.gudfhiu_tri:before {border-image: linear-gradient(266deg, #00000047, #00000024, #ffffff00) 1;}
header.header_tri.fixed-header span.gudfhiu_tri:after {border-image: linear-gradient(91deg, #00000047, #00000024, #ffffff00) 1;}
.poiopk_tri {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 4px;
    color: #b3150f;
}

.poiopfdfk_tri {
    font-size: 12px;
    font-style: italic;
    color: #7e7e7e;
}

.rgr_tri {
    border-bottom: 1px solid;
    border-image: linear-gradient(91deg, #00000047, #00000024, #ffffff00) 1;
    width: 90%;
    margin-left: 10px;
    padding-bottom: 13px;
    margin-bottom: 10px;
}
.efiuyhui_tri {
    display: flex;
}

.jhbi_tri {
    width: 50%;
}

.efhui_tri {
    width: 50%;
    display: flex;
    gap: 20px;
}

img.efiughy_tri {
    width: 100%;
    border-radius: 12px;
    height: 190px;
    object-fit: cover;
    object-position: top;
    box-shadow: 7px 7px 0px 0px #b30f0f1c;
}
ul.rgiu_tri li {
    padding: 3px 0;
}
.sidebarNav > ul > li:last-child a {
    padding-right: 0;
}

ul.rgiu_tri li:last-child a {
    border: 0;
    padding-right: 0;
}

.subNav .efiuyhui_tri ul {
    /* column-count: 2; */
    /* flex: 0 0 auto; */
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}
.subNav .efiuyhui_tri ul li {width:50%;}
.full {
    position: absolute !important;
    width: 100% !important;
    height: 100%;
    top: 0 !important;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    display: block;
    object-fit: cover;
}

.zoom {
  animation: scale 40s linear infinite;
}
  
@keyframes scale {
  50% {
    -webkit-transform:scale(1.2);
    -moz-transform:scale(1.2);
    -ms-transform:scale(1.2);
    -o-transform:scale(1.2);
    transform:scale(1.2);
  }
}
ul.photoGallery.owl-carousel.owl-loaded.owl-drag {
    /* margin-top: 55px; */
}

/*==== whatsapp =====*/
.page_stickyForm__cYz1E {
    box-sizing: border-box;
    width: fit-content;
    display: flex;
    justify-content: end;
    align-items: start;
    position: fixed;
    z-index: 51;
    right: 1.5rem;
    bottom: 2.4rem;
}

.page_BuyNowBtn___ZBIG {
    cursor: pointer;
    width: 3rem;
    height: 3rem;
    position: relative;
    text-align: center;
    border-radius: 50%;
    display: inline-block;
    background-color: #1ab744;
    box-shadow: 0 5px 15px rgba(0, 0, 0, .35);
    animation: tada 1s infinite;
}

.page_BuyNowBtn___ZBIG .iutguy_tri {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 26px;
}

/* Ripple Effect */
.page_BuyNowBtn___ZBIG::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #1ab7445c;
    z-index: -1;
    animation: ripple 1.5s infinite;
}

/* Tada Animation */
@keyframes tada {
    0% {
        transform: scale(1);
    }

    10%, 20% {
        transform: scale(.95) rotate(-10deg);
    }

    30%, 50%, 70%, 90% {
        transform: scale(1) rotate(10deg);
    }

    40%, 60%, 80% {
        transform: rotate(-10deg);
    }

    100% {
        transform: scale(1);
    }
}

/* Ripple Animation */
@keyframes ripple {
    0% {
        opacity: 1;
        transform: scale(0);
    }

    100% {
        opacity: 0;
        transform: scale(2);
    }
}

/*==== whatsapp =====*/

.icon-bar-social {
    position: fixed;
    top: 48%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 999;
}

    .icon-bar-social a {
        display: block;
        padding: 9px 14px 9px 10px;
        transition: .3s;
        color: #fff;
        position: relative;
        border-bottom-right-radius: 20px;
        border-top-right-radius: 20px;
        font-size: 15px;
    }

.facebook-side {
    background: #3b5998;
    color: #fff;
}

.icon-bar-social .link-label {
    font-family: 'Open Sans', sans-serif;
    font-size: 13px;
    position: absolute;
    z-index: -1;
    white-space: nowrap;
    opacity: 0;
    left: -600%;
    transition: opacity .3s, left .4s, right .4s, top .4s, bottom .4s;
    bottom: 0;
    top: 0;
    padding: 11px 20px 11px 20px;
    display: flex;
    border-bottom-right-radius: 20px;
    border-top-right-radius: 20px;
}

.twitter-side {
    background: #55acee;
    color: #fff;
}

.youtube-side {
    background: #b00;
    color: #fff;
}

.instagram-side {
    background: #ae1ba0;
    color: #fff;
}

.icon-bar-social a:hover .link-label {
    left: 50%;
    opacity: 1;
    width: auto;
}

/*================*/
.presidency-box {
    position: relative;
}
.presidency-box:before {
    content:"";
    background: url(../images/bg-star.png);
    /* background-repeat: no-repeat; */
    background-position: right top;
    filter: contrast(0.5);
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    height: 1348px;
    transform: rotate(
270deg);
    opacity: .8;
}
.presidency-box{
    background: aliceblue;
    position:relative;
    overflow:hidden;
    padding: 50px 0;
}
.iugfiy_tri {
    position: relative;
}
.top-herd1{
    text-align:center;
    font-size:42px;
    font-weight:700;
    color:#0f172a;
    margin-bottom:15px;
}

.heading-line{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:15px;
    margin-bottom:60px;
}

.heading-line span{
    width:80px;
    height:2px;
    background:#cbd5e1;
}

.heading-line img{
    width:40px;
}

.leadership-card{
    background:#fff;
    border-radius: 15px;
    padding: 30px 25px;
    position:relative;
    overflow:hidden;
    height:100%;
    box-shadow: 0 4px 16px 0 rgb(0 0 0 / 28%);
    transition:0.4s ease;
    margin-top: 20px;
}

.leadership-card:hover{
    transform:translateY(-10px);
}

.shape-circle{
    position:absolute;
    width: 65px;
    height: 65px;
    border-radius:50%;
    top: 0%;
    right: 4%;
     opacity:0; 
}
span.giutyu_tri {
    color: #b3150f;
}
.director-card .shape-circle{
    /* background:#123b8f; */
}

.principal-card .shape-circle{
    background:#9b1028;
}

.leadership-top{
    display:flex;
    /* align-items:center; */
    gap:25px;
    margin-bottom: 20px;
    position:relative;
    z-index:2;
}

.leader-image{
    width: 160px;
    min-width: 160px;
    height: 192px;
    /* border-radius: 15px; */
    /* overflow:hidden; */
    /* box-shadow:0 10px 25px rgba(0,0,0,0.15); */
    position: relative;
}

.leader-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    box-shadow: 0 0 4px 0 #0000008a;
    position: relative;
    margin-left: 9px;
    object-fit: cover;
    object-position: top;
    border-radius: 15px;
}
.leader-image:before {content:"";background: #b3150f;position: absolute;top: -15px;left: -5px;width: 88%;height: 88%;border-radius: 15px;}
.leader-content{
    flex:1;
    margin-top: 16px;
}

.small-title{
    font-size: 13px;
    font-weight: 500;
    color:#64748b;
}

.leader-content h3{
    font-size: 30px;
    line-height:1;
    font-weight: 600;
    margin: 6px 0 15px;
}

.director-card h3{
    color: #f5a600;
}

.principal-card h3{
    color:#9b1028;
}

.mini-line{
    width: 200px;
    /* height: 14px; */
    /* background:#d1d5db; */
    margin-bottom:18px;
}

.leader-content h4{
    font-size: 20px;
    margin-bottom: 8px;
}

.director-card h4{
    /* color: #f5a600; */
}

.principal-card h4{
    /* color:#9b1028; */
}

.designation{
    font-size: 12px;
    color: #a1a1a1;
    font-weight: 500;
    margin-bottom: 0;
}

.message-content{
    position:relative;
    z-index:2;
}

.message-content p{
    font-size: 14px;
    line-height: 24px;
    color: #383838;
    margin-bottom: 25px;
    padding-right: 36px;
}

.read-btn{
    display:inline-flex;
    align-items:center;
    gap: 9px;
    padding: 10px 25px;
    border-radius: 30px;
    color:#fff;
    font-size: 14px;
    font-weight: 500;
    text-decoration:none;
    transition:0.4s ease;
}

.director-card .read-btn{
    background: #f5a600;
}

.principal-card .read-btn{
    background:#9b1028;
}

.read-btn:hover{
    color:#fff;
    transform:translateX(5px);
}

@media(max-width:991px){

    .leadership-top{
        flex-direction:column;
        align-items:flex-start;
    }

    .leader-image{
        width:100%;
        height:320px;
    }

    .leader-content h3{
        font-size:38px;
    }

    .leader-content h4{
        font-size:28px;
    }
}

@media(max-width:576px){

    .presidency-box{
        padding:60px 0;
    }

    .top-herd1{
        font-size:30px;
    }

    .leadership-card{
        padding:25px;
    }

    .leader-content h3{
        font-size:32px;
    }

    .message-content p{
        font-size:15px;
        line-height:1.8;
    }

    .leader-image{
        height:260px;
    }
}
img.efutyythiu_tri {
    position: absolute;
    right: 10px;
    bottom: 10px;
}

img.efuhiu_tri {
    width: 100%;
    opacity: .2;
}

.leader-image.htrh_tri:before {
    background: #f8b627;
}
img.efuhigrfu_tri {
    width: 100%;
}
/*======== Message ========*/
/*======== TOPPER ========*/
section.rgghuy_tri {padding: 40px 0;}
.rgghuy_tri .card {background: #fff7f7;border-radius: 6px;padding: 6px;width: 100%;text-align: center;position: relative;margin-top: 0;box-shadow: 0 4px 5px 0 #c1c1c1 !important;border: 1px solid #b3150f12;} 
.rgghuy_tri .card img {width: 100%;/* height: 150px; */border-radius: 5px;object-fit: contain;margin: 0 auto 10px;background: #fff;} 
.rgghuy_tri ul li {padding:10px}
.rgghuy_tri .card h3 {margin: 0 0 5px;color: #b71c1c;font-size: 16px;} 
.rgghuy_tri .card .sub-title {font-size: 13px;font-weight: bold;color: #777;margin-bottom: 5px;} 
.rgghuy_tri .card .score { font-weight: bold; color: #444; margin-bottom: 10px; } 
.rgghuy_tri .card p {font-size: 14px;color: #555;line-height: 1.5;margin-bottom: 20px;display: none;} 
.rgghuy_tri .card::after {content: '🏆';font-size: 50px;color: #f0c419;position: absolute;bottom: -10px;right: -10px;opacity;opacity: 0.1;}
/*======== TOPPER ========*/

/*=========== =============*/
.yhjhj_tri {
    background-image: url(../images/event_bg.png);
    background-blend-mode: overlay;
    background-color: #000000c4;
    background-attachment: fixed;
    width: 100%;
    padding: 40px 0px;
    background-size: cover;
    background-position: center;
}

section.yfytdt_tri {
    display: block;
    padding: 50px 0 70px;
    background: #f1f1f1;
}
h2.heading-blue.guyuyfu_tri {
    text-align: left;
    margin-bottom: 25px;
    position: relative;
}

.life01 h3 {
    color: #fff;
    font-size: 25px;
    margin-top: 0px;
    margin-bottom: 25px;
}

.life01 h4 {
    color: #fff;
    font-size: 20px;
    font-style: italic;
    font-weight: 400;
    line-height: 33px;
    position: relative;
    margin-bottom: 10px;
}

.life01 h4 span {
    color: #ffb3b0;
    margin: 0px 10px;
    font-size: 25px;
    /* opacity: .6; */
}

.life01 p {
    font-size: 15px;
    color: #fff;
    font-weight: 400;
    line-height: 30px;
    max-width: 700px;
    margin-bottom: 0px;
    margin: auto;
}
.life01 h4 span.qtleft {
    margin-left: 0px;
}
.life01 {
    text-align: center;
}
/*=========== =============*/
/*======= inner banner ========*/
.brand-hero {
    position: relative;
    overflow: hidden;
}

.page-title {
    z-index: 9;
    bottom: 7px;
}
.brand-hero:before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    z-index: 9;
    right: 0;
    background: linear-gradient(to top, rgba(10, 24, 44, 0.86), rgb(15 111 117 / 17%), rgba(10, 24, 44, 0.12));
}
.banner-content-inner:after {
    bottom: 18px;
    background: #e18f28;
    height: 2px;
}
.banner-content-inner h1 {
    font-size: 39px;
    font-weight: 600;
    text-transform: none;
}
.dhvhaha-ami-new-j {
    font-size: 13px;
    margin-bottom: 9px;
    margin-top: 8px;
}
/*======= inner banner ========*/
.efiugi_tri {
    display: none;
    position: fixed;
    width: 100%;
    /* height: 100vh; */
    background: #00000091;
    z-index: 4;
    top: 0;
    bottom: 0;
}
ul.yguyh_tri {
    display: none;
}
@media (max-width: 767px) {
    .sidebarLogo img {
    width: 70px;
}
    aside.fixed-sidebar {
    padding: 0;
}
aside.fixed-sidebar span.guhiu_tri {
        /* display: none; */
        font-size: 15px;
    }
span.gudfhiu_tri {
    font-size: 12px;
    margin-top: 0px;
}
.iutgyu_tri {
    display: none;
}
.efiugi_tri.active {
    display: block;
}
.sidebarNav > ul {
    /* position: absolute; */
    /* top: 0; */
    right: 0;
    /* display: none; */
    background: #fff;
    width: 75%;
    /* transition: .4s ease-in-out; */
    transform: translateX(100%);
    position: fixed;
    /* width: calc(100% + 18px); */
    height: 100%;
    z-index: 4;
    transition: .4s ease-in-out;
    transform: translateX(100%);
    top: 0;
    overflow: hidden;
    overflow-y: scroll;
    padding: 0 0 30px 0;   display: block;
}
body.pageActive .sidebarNav > ul.navWrapperOpen {
 
    /* transform: translateY(0); */
    transform: translateY(0);
}
ul.yguyh_tri {
        position: absolute;
        right: 0;
        display: block!important;
    }
.nav-trigger a {
    padding-right: 20px;
}
.sidebarNav ul > li > a, .sidebarNav ul li a span {
    color: #000;
}
.sidebarNav ul li a {
    padding: 12px;
}
.sidebarNav ul li a span {
    flex-grow: 1;
    text-align: left;
}
.sidebarNav ul li {
    border-bottom: 1px solid #0000000f;
}
header.header_tri.fixed-header .fixed-sidebar .nav-trigger span {
        background: #000000;
        box-shadow: 0 0 5px #ffffff;
    }
.subNav .efiuyhui_tri ul li {
    width: 100%;
}
.jhbi_tri {
    width: 100%;
}
.efhui_tri.thth_tri {
    width: 100%;
    overflow: auto;
}
.sidebarNav ul li .subNav .efiuyhui_tri {
    display: block;
}
.efhui_tri {
    width: 100%;
    display: flex;
    gap: 20px;
}



.hero-slider {
        min-height: 450px;
        height: 450px;
    }
section.hero-slider video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
p.eyebrow {
    font-size: 14px;
}
p.eyebrow:after {
    width: 20px;
}
.slide-content p:not(.eyebrow) {
    font-size: 13px;
    width: 100%;
}
.slide-content {
    margin-bottom: 32px;
    left: 0;
    padding: 0 0px 0 45px;
}
.slide-content h1 {
    font-size: 18px;
}
    .primary-btn {
        margin-top: 18px;
    }
    .footer-fixed-bar {
    height: 35px;
}
.morqueeee .rgrhjbnj_ami {
    font-size: 13px;
}
.efughui_tri {
    padding: 0 10px;
    font-size: 13px;
}
.home-entry p.text {
    width: 100%;
}
.facts-and-figure ul li {
    width: 49%;        margin-bottom: 20px;
}
.facts-and-figure ul li:last-child {
        margin-bottom: 0;
    }
.uyuyj_tri {
    width: 18.5%;
    min-width: 210px;
}
.rgrfh_tri {
    overflow: auto;
}
.row.gg_tri {
    display: block;
}

.col-lg-9.fefgf_tri {
    max-width: 100%;
}

.col-lg-3.fgrgfr_tri {
    max-width: 100%;
}
.btn-gallery {
    width: 70%;
}
    .sidebarNav ul li .subNav {
        position: relative;
    }

    /*======== inner banner =======*/
    .inner-page .brand-hero {
    height: 300px;
} 
    .banner-content-inner:after {
    bottom: 10px;
}
    /*======== inner banner =======*/
    span.feuyg_tri {
    display: block;
}
    li.uiyfghu_tri {
    display: block!important;
}
    ul.rgrht_tri.owl-carousel .owl-nav button.owl-next {
    right: 0px;
}
    ul.rgrht_tri.owl-carousel .owl-nav button.owl-prev {
    left: 0px;
}
}
li.uiyfghu_tri {
    display: none;
}