/*=================================== FONTS ===================================*/
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.13.1/font/bootstrap-icons.css");
@import url("https://fonts.googleapis.com/css?family=Material+Icons|Material+Icons+Outlined|Material+Icons+Two+Tone|Material+Icons+Round|Material+Icons+Sharp");
 
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;300;400;500;600;700;900&display=swap');
/*================================== FONTS ==================================*/

/*================================ VARIABLES ================================*/
:root{
	--ezr-primaryfont : 'Poppins', sans-serif;

	--ezrprimary : #CCB447; 
	--ezrprimary-rgb : 204,180,71; 

	--ezrsecondary : #ae2012;
	--ezrsecondary-rgb : 174,32,18;

	--ezrtertiary : #9d0909;
	--ezrtertiary-rgb : 157,9,9;

	--ezr-bglight-color : #f7f7f7;
	--ezr-bgbody-color : #FFFFFF;	

	--ezr-text-color : #312D32;
	--ezr-text-color-rgb : 49,45,50;

	--ezr-letterspacing-small :  0.00938em;;
	--ezr-letterspacing-medium : 0.10rem;
	--ezr-letterspacing-large : 0.15rem;

	--ezr-border-color : #d2d2d2;
	--ezr-border-color-rgb : 210,210, 210;
	--ezr-boxshadow: 0 .1rem 0.85rem rgba(0,0,0,.1);

	--navbar-height: 135px;
	--banner-height-desktop : 100vh;
	--banner-height-mobile : 70vh;
}
/*================================ VARIABLES ================================*/

body{
  font-family: var(--ezr-primaryfont);
  background-color: var(--ezr-bgbody-color);
/*  padding: 0px !important;*/
  color: var(--ezr-text-color);
  letter-spacing: var(--ezr-letterspacing-small);
  padding-top: var(--navbar-height);
}
a{
	color: var(--ezrprimary);
	text-decoration:  none;
}
a:hover, a:focus, .btn:hover, .btn:focus{
	text-decoration: none;
	box-shadow: none;
}
.text-primary{color: var(--ezrprimary) !important;}
.text-tertiary{color: var(--ezrtertiary) !important;}
.bg-primary{background-color: var(--ezrprimary) !important;}
.bg-tertiary{background-color: var(--ezrtertiary) !important;}

.btn-outline-light{--bs-btn-font-weight: 600; --bs-border-width : 2px; }
.btn-tertiary{
	--bs-btn-color: #fff;
    --bs-btn-bg: var(--ezrtertiary);
    --bs-btn-border-color:  var(--ezrtertiary);
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: var(--ezrtertiary);
    --bs-btn-hover-border-color:  var(--ezrtertiary);
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg:  var(--ezrtertiary);
    --bs-btn-active-border-color:  var(--ezrtertiary);
}
.footer{padding: 2rem 0 0 0; text-align: center;margin: 1rem 0 0 0;border-top: 5px solid #F0F0F0;}
.footer-address, .footer-email, .footer-contact{font-size: 0.85rem; font-weight: 400; margin-bottom: 3px;}
.footer-email a, .footer-contact a{font-weight: 500; text-decoration: underline;}
.footer-bottom{background-color: #F0F0F0; padding: 0.75rem 1rem;}
.footer-bottom .copyright{position: relative; font-weight: 500; font-size: 0.85rem; text-transform: uppercase;}
/*------------------------------- NAVBAR START--------------------------------*/
.navbar-header{
	height: var(--navbar-height);
    padding: 0px;
    /*border-bottom: 1px solid var(--ezr-border-color);*/
    background: #ffffff;

    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
}
.navbar-header .container-fluid{
	--bs-gutter-x: 3.5rem;	
}
.navbar-header.navbar-stick{
	box-shadow: var(--ezr-boxshadow);
	background-color: #ffffff !important;
	z-index: 999;
    opacity: 1;
    visibility: visible;
    -ms-animation-name: fadeInDown;
    -moz-animation-name: fadeInDown;
    -op-animation-name: fadeInDown;
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown;
    -ms-animation-duration: 300ms;
    -moz-animation-duration: 300ms;
    -op-animation-duration: 300ms;
    -webkit-animation-duration: 300ms;
    animation-duration: 300ms;
    -ms-animation-timing-function: linear;
    -moz-animation-timing-function: linear;
    -op-animation-timing-function: linear;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    -ms-animation-iteration-count: 1;
    -moz-animation-iteration-count: 1;
    -op-animation-iteration-count: 1;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
}
.navbar-toggler{
	border: 0;
	width: 54px;
    height: 54px;
    background-color: transparent;
    outline: 0;
    border-radius: 0.5rem;
    
}
.navbar-toggler:focus,
.navbar-toggler:hover{
	outline:  0;
	box-shadow:  none;
}
.navbar-header.navbar-stick .navbar-toggler:hover{
	background-color:  rgba(var(--ezrprimary-rgb), 0.1);
	border: 2px solid rgba(var(--ezrprimary-rgb), 0.3);
}
.navbar-toggler .navbar-toggler-icon{
	width: 1.5rem;
    height: 1.5rem;
}

.navbar-header .navbar-brand{
    height: 74px;
}
.navbar-header .navbar-brand img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.navbar-header .toggler{
	width: 74px;
	height: 74px;
	background-color:  transparent;
	outline: 0;
}
.navbar-header .toggler .navbar-toggler-icon{
	width : 1.5rem;
	height : 1.5rem;
}
.navbar-header .navbar-nav{
	--bs-nav-link-font-size: 0.825rem;
	--bs-nav-link-font-weight : 400;
	--bs-nav-link-color : #343434;
}
.navbar-header .navbar-nav .nav-item{}
.navbar-header .navbar-nav .nav-item .nav-link{
	display:  flex;
	align-items:  center;
	height:  100%;
    transition: all 0.25s ease-in-out;
	position: relative;
}
.navbar-header .navbar-nav:not(.social-links) .nav-item .nav-link{
	margin: 0 12px; 	
}
.navbar-header .navbar-nav .nav-item .nav-link:hover{
	color: var(--ezrprimary);
}
.navbar-header .navbar-nav .nav-item .nav-link.active{
	color: var(--ezrprimary);
	font-weight: 600;
}
.navbar-header .offcanvas{}
.navbar-header .offcanvas .offcanvas-header{
	height: var(--navbar-height);
	padding: 0.65rem 1rem;
}
.navbar-header .offcanvas .offcanvas-header .offcanvas-logo{
	width: 140px;
}
.btn-close, .btn-close:hover, .btn-close:focus{
	box-shadow: none;
	border: 0;
}
.social-links .nav-item .nav-link{
	width: 48px; min-width: 48px; height: 48px !important;
    border-radius: 50px;
    justify-content: center; margin: 0 0.5rem !important;
}
.social-links .nav-item .nav-link:hover{
	    background: rgba(0, 0, 0, 0.04);
}
.social-links .nav-item .nav-link i{
	font-size: 20px;
}
@media screen and (min-width: 768px){
	.navbar-header .navbar-nav .nav-item .nav-link{
		
	}
	.innerpage.navbar-header .navbar-nav .nav-item .nav-link:not(.active){
		color:  #ffffff;
	}
	.innerpage.navbar-header.navbar-stick .navbar-nav .nav-item .nav-link:not(.active){
		color: var(--bs-nav-link-color);
	}
	.navbar-header.navbar-stick .navbar-nav .nav-item .nav-link.active:after{
		content: '';
		height: 2px;
		width: 100%;
		position:  absolute;
		bottom: 0;
		left: 0;
		background-color: var(--ezrprimary);
	}

}
@media screen and (max-width:  767.98px){
	body{
		padding-top: calc(var(--navbar-height) - 25px);
	}
	.navbar-header{
		height: calc(var(--navbar-height) - 25px);
	}
	.navbar-header.navbar-stick{
		margin: .75rem .75rem;
		border-radius: 0.5rem;
	}
	.navbar-header .offcanvas-body{
		padding: .5rem;
	}
	.navbar-header .navbar-nav .nav-item .nav-link{
		padding: 1rem 0.5rem;
		margin: 0px;
		border-radius:  0.5rem;
	}
	.navbar-header .navbar-nav:not(.social-links) .nav-item .nav-link:hover{
		padding-left: 1.5rem;
		background-color:  rgba(var(--ezrprimary-rgb), 0.1);
	}
	.navbar-header .navbar-nav:not(.social-links) .nav-item .nav-link:after{
    	content: '\e409';
    	font-family: 'Material Icons Outlined';
    	position: absolute;
    	right: 10px;
    	font-size: 1.2rem;
    	color: var(--ezr-text-color);
	}
	.social-links {
		display: flex;
    	flex-direction: row;
    	justify-content: center !important;
    	padding: 2rem
	}
}
@media screen and (max-width:  575.98px){

}
/*-------------------------------- NAVBAR END---------------------------------*/


/*----------------------------- HOMEPAGE START ------------------------------*/
/*.banner-section{margin-top: var(--navbar-height);}*/
.hero-banner{}
.hero-banner .carousel-inner{
/*	height: calc(80vh - var(--navbar-height));*/
}
.hero-banner .carousel-inner .carousel-item{
	height: calc(var(--banner-height-desktop) - var(--navbar-height));
}
.hero-banner .carousel-inner .carousel-item .carousel-caption{
	bottom: 0;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-banner .carousel-inner .carousel-item img{
	width: 100%; height: 100%; object-fit: cover;

}
.banner-title{
	font-size: clamp(2rem, -1.421rem + 7.1364vw, 2.9991rem);
	font-weight: bold;
}
.carousel-control-next, .carousel-control-prev{
	width: 48px;
    height: 48px;
	background: #494949;
	margin: auto;
	opacity: 1;
	border-radius: 50px;
}
.carousel-control-next:focus, .carousel-control-next:hover, 
.carousel-control-prev:focus, .carousel-control-prev:hover{
	opacity: 0.8;
}
.carousel-control-next-icon, .carousel-control-prev-icon{height: 1.2rem; width: 1.2rem}
.carousel-control-next{right: 1rem}
.carousel-control-prev{left: 1rem}
.carousel-indicators [data-bs-target]{height: 10px; width: 10px; border: 0; border-radius: 50px;}

.about-row{align-items: stretch; min-height: 450px}
.video-wrap{width: 100%; height: 100%;}
.about-content{
	height: 100%; padding: 2rem; color: #ffffff;
    display: flex; flex-direction: column; justify-content: center; align-items: center;
}
.section-title{font-size: clamp(2rem, -1.421rem + 7.1364vw, 2.9991rem); font-weight: bold;  margin-bottom: 1rem;}
.section-subtitle{font-weight: 600; font-size: clamp(1.25rem, 0.3964rem + 1.7807vw, 1.7993rem);  margin-bottom: 1rem;}
.section-desc{font-weight: 300; text-align: center; font-size: 0.95rem; margin-bottom: 1.5rem;}

.count-section{padding: 8rem 3rem;}
.count-value{font-weight: 600; font-size: clamp(1.25rem, 0.3964rem + 1.7807vw, 1.4993rem);}
.count-label{font-size: 1rem; font-weight: 300; }
.programs-section{
	padding: 3rem 1rem;
}
.program-card{ --bs-card-spacer-y: 2rem; --bs-card-spacer-x: 2rem; --bs-card-border-width : 0px;}
.program-card .program-title{font-weight: 600; text-align: center; font-size: clamp(1.25rem, 0.3964rem + 1.7807vw, 1.4993rem);}

.info-section{padding: 2rem; color: #ffffff;}
.bg-image1{background: url(../img/bgimage1.png) no-repeat left center / cover;}

.join-section{padding: 5rem 0;}
.join-section .section-title{
	font-size: clamp(2rem, -3.9922rem + 12.5vw, 3.75rem);
}

@media screen and (max-width: 767.98px){
	.hero-banner .carousel-inner .carousel-item{height: calc(var(--banner-height-mobile) - var(--navbar-height));}
	.join-content{text-align: center; display: flex; flex-direction: column; align-items: center; gap: 1rem;}
	.carousel-control-prev{left: 0.25rem}
	.carousel-control-next{right: 0.25rem}
	.count-section{padding: 3rem 0rem;}
	.programs-section{padding: 3rem 0rem;}
}
/*------------------------------ HOMEPAGE END -------------------------------*/

/*----------------------------- PROGRAMS START ------------------------------*/

.programdetail-card{ --bs-card-spacer-y: 3.5rem; --bs-card-spacer-x: 3.5rem; --bs-card-border-width : 0px; overflow: hidden;}
.programdetail-card .card-body{min-height: 450px}
.programdetail-card .program-title{
	color: var(--ezrtertiary);
	font-weight: 600;  font-size: clamp(1.5625rem, -0.0188rem + 3.2986vw, 2.0243rem);
}
.programdetail-card .program-desc{
	  font-weight: 300; font-size: 0.95rem; margin-bottom: 1.5rem;
}
/*------------------------------ PROGRAMS END -------------------------------*/

