@import url('https://fonts.googleapis.com/css2?family=Mulish:ital,wght@0,200..1000;1,200..1000&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Protest+Strike&display=swap');
*{
	padding: 0;
	margin: 0;
	font-family: "Poppins", sans-serif;
	overflow-x: hidden;
}
html{
	scroll-behavior: smooth;
}
video{
	    z-index: -1;
    position: absolute;
    width: auto;
    height: auto;
    min-width: 100%;
    min-height: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

}
nav{
    position: fixed;
  top: 0;
  width: 100%;
	display: grid;
	/*	grid-template-areas:
		"menu-left logo menu-right";
	grid-template-columns: 3fr 0.3fr 3fr;*/
	grid-template-areas:
		"logo text menu-right";
	grid-template-columns: 85px 30% 65%;
	background: #44078d;
	color: white;
	padding: 5px;
	position: sticky;
	top: 0;
	z-index: 99999;
	box-shadow: 0px 0px 4px black;
	max-height: 85px;
	overflow: hidden;
	padding-left: 16px;
}
nav h3{
	grid-area: text;
	padding: 25px;
	padding-left: 0px;
	font-family: "Mulish", sans-serif;
	padding-right: 0;
	margin-right: 0;
}
ul{
	list-style: none;
}
ul li{
	display: inline-block;
	padding: 18px;
	margin-top: 10px;
	font-family: 'Lato', sans-serif;
	user-select: none;
	cursor: pointer;
}
.grid-left{
	grid-area: menu-right;
	text-align: right;
}
.grid-right{
	grid-area: menu-right;
	text-align: left;
}
.logo{
	border-radius: 50%;
	background-image: url('../img/logo.png');
	background-size: contain;
	background-repeat: no-repeat;
	width: 75px;
	height: 74px;
	margin-left: auto;
	margin-right: auto;
	position: relative;
	background-position: center;
}
.childnav{
	display: none;
}
.childnav ul{
    background: #ededed;
    color: #2d035e;
    text-align: center;
}
.childnav ul li{
    margin-top: 0;
    padding: 10px;
    width: 10%;
    text-align: center;
    display: inline-block;
    font-size: 13px;
}
.container{
	height: 100lvh;
}
.container.hauto{
	height: auto;
	padding-bottom: 85px;
	z-index: 0;
	border: 10px ridge #44078d;
	border-bottom-style: ridge;
	border-top: none;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	border-bottom: none;
	box-shadow: 0px 4px 8px #6a6a6a;
	z-index: 11111;
}
.image-slider{
	min-height: 52em;
	height: auto;
	position: relative;
	background-image: url('../img/banner.png');
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	transition: 0.3s;
	overflow: hidden;
}
.image-slider *{
	box-sizing: border-box;
}
.caption{
	/* background: linear-gradient(
  rgba(0,0,0,0),
  #000
 ); */
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	width: 100%;
	color: white;
	padding: 25px;
	background: #0000008c;
	text-align: center;
	backdrop-filter: blur(7px);
}
.caption h1{
	font-size: 30px;
	margin-bottom: 10px;
}
.caption p{
	color: #e5e5e5;
}
.image-fade{
	animation: imgFade 0.5s ease-in-out;
}
@keyframes imgFade{
	0% {opacity: 0;}
	100%{opacity: 1;}
}
.bdn{
	background: #111827 !important;
}
.c{
    text-align: center;
    padding-top: 85px;
    padding-left: 3;
}
.blank a{
    text-decoration: none;
    color: white;
    font-weight: bold;
}
.blank .row2{
    display: flex;
}
.blank{
    /* height: 50px; */
    background: #44078d;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    position: relative;
    padding: 1%;
    padding-left: 21%;
    color: white;
    font-size: 18px;
}
.c h1{
    font-size: 33px;
    margin-bottom: 21px;
}
.c p{
    margin-bottom: 16px;
}
.card{
    /* border: 1px solid; */
    width: 17%;
    display: inline-block;
    margin-top: 21px;
    padding: 16px;
    text-align: left;
    margin: 4px;
    border-radius: 8px;
    box-shadow: 0px 0px 2px #0c4367;
    user-select: none;
    cursor: pointer;
    transition: 0.1s;
    min-width: 271px;
}
.slider-container>* {
    scroll-snap-align: var(--swiffy-slider-snap-align);
    position: relative;
    width: 100%;
    height: 100%;
    padding: 0;
    margin-top: 0;
}
.blank{
    font-size: 13px;
}
.blank p{
    width: 100%;
}
.card i{
    font-size: 35px;
    margin-bottom: 19px;
}
.card h3{
    margin-bottom: 15px;
}
.card p{}
.cw{
    color: white;
}
.card:hover{
	box-shadow: 0px 0px 5px #0c4367;
	transition: 0.1s;
}
.blb{
	background: #1f2636;
}
.bw{
	background: white;
	color: black;
}
.about-section{
	display: flex;
	grid-template-areas:
		"logo content";
	/*	grid-template-columns: 40% 60%;*/
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	width: 71%;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
	flex-wrap: wrap;
	justify-content: center;
}
.about-section .image{
	grid-area: logo;
	background: url('../img/about.jpeg');
	background-size: contain;
	background-repeat: no-repeat;
	width: 100%;
	height: 372px;
	background-position: center;
	/* min-width: 568px; */
	width: 30%;
	display: none;
}
.about-section .content{
	grid-area: content;
	box-shadow: 0px 0px 1px black;
	padding: 27px;
	border-radius: 6px;
	margin-left: 30px;
	text-align: left;
	/* min-width: 250px; */
	width: 70%;
	text-wrap: unset;
	text-align: center;
	/* font-family: Consolas !important; */
}
.content h1{
    font-size: 25px;
    color: #3a3a3a;
}
.content p{
    /* min-width: 500px; */
    font-family: Calibari;
    font-size: 17px;
}
/* width */
::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1; 
}
 
/* Handle */
::-webkit-scrollbar-thumb {
  background: #44078d; 
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #555; 
}
.card.gallery{
padding: 0;
    min-height: 490px;
    min-width: 320px;
    max-height: 490px;
}
.card.gallery img{
    width: 100%;
    max-height: 230px;
}
li a{
	text-decoration: none;
	color: black;
}
.card.gallery h3{
	padding-left: 16px;
	padding-top: 16px;
	padding-right: 16px;
}
.sticky {
  position: fixed;
  top: 0;
  width: 100%;
}
.card.gallery p{
	padding-left: 16px;
	padding-right: 2px;
	text-wrap:unset;
	font-size: 16px;
}
.footer iframe{
    width: 30%;
    min-width: 251px;
}
.footer ul{padding-left: 35px;}
.footer ul li{display: block !important;padding: 3px;text-align: left;color: #1c1c1c;}
.footer ul li span i{}
.footer ul li span{
    user-select: text;
}
.footer .contact-us{
    color: black;
    margin-left: 22px;
    width: 30%;
    min-width: 365px;
}
.footer{display: flex;padding: 41px;border-bottom: none !important;}

@media only screen and (max-width: 1204px) {
	.about-section .image{width: 63%;}
}
@media only screen and (max-width: 1020px) {
	nav{
		display: grid;
		/*	grid-template-areas:
			"menu-left logo menu-right";
		grid-template-columns: 3fr 0.3fr 3fr;*/
		grid-template-areas:
			"logo text";
		grid-template-columns: 85px 80%;
		background: #44078d;
		color: white;
		padding: 5px;
		position: sticky;
		top: 0;
		z-index: 99999;
		box-shadow: 0px 0px 4px black;
	}
	nav ul{
		display: none;
	}
	nav h3{
		font-size: 14px;
	}
	.c{
		padding-top: 40px;
	}
	.about-section .content{
		width: 80%;
		margin-left: auto;
		margin-right: auto;
		display: block;
	}
	.about-section{
		width: 100%;
	}
	.about-section .image{
		height: 195px;
		width: 100%;
	}
	.card{
		margin-bottom: 20px;
	}
	.image-slider{
		min-height: 41em;
	}
	.blank{
    font-size: 11px;
    padding-left: 30px;
    padding-right: 16px;
    padding-bottom: 30px;
    padding-top: 30px;
}
.blank .row2 a{
    display: block;
}
.blank .row2{
    margin-top: 9px;
}
}

.loaderX{
    display: block;
    position: fixed;
    z-index: 111111;
    background: white;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* height: 100lvh; */
    /* width: 100%; */
    text-align: center;
    padding-top: 10%;
}
.loaderX h2{}
.loaderX p{}