@charset "utf-8";
  

/* 
font-family: "Afacad", sans-serif;
*/

/*************** DEFAULT CSS ***************/
:root {
	--body-font: "Afacad", sans-serif;
	--body-color: #404040;
	--primary-color: #DF195F;
	--secondary-color: #304E9C;
	--tertiary-color: #C7FF00;
	--quaternary-color:#FCE8EF;	
	--black: #000;
	--white: #fff;
	--grey: #DCDDDE;	
	--grey-light: #F1F3F9;
	--grey-dark: #E2E2E2;		 	 
	--font-light:300;
	--font-normal:400;
	--font-medium:500;	
	--font-bold:600;
	--font-heavy:700;
	--heading-font:"Afacad", serif;
}

body {

	font-family: var(--body-font);
	font-size: 18px;
	font-style: normal;
	line-height: 26px;
	/*letter-spacing: -.1em;*/
	font-weight: var(--font-normal);
	color: var(--body-color);
	text-decoration: none;
	margin: 0px;
	-webkit-font-smoothing: antialiased;
	padding: 0;
	background: var(--white); 
	background-attachment:fixed;
	overflow-x: hidden;
}


/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 5px;
}
 
::-webkit-scrollbar-track {
    background-color: rgba(0, 0, 0, 0.5);
    -webkit-border-radius: 10px;
    border-radius: 10px;
 
}

::-webkit-scrollbar-thumb {
    -webkit-border-radius: 10px;
    border-radius: 10px;
    background:  var(--primary-color);
}

html {
	scroll-behavior: smooth;
	overflow-x:hidden;
}

* {
	-webkit-box-sizing: border-box;
	-mox-box-sizing: border-box;
	box-sizing: border-box;
}

::selection {
	background: var(--primary-color);
	/* Safari */
	color:var(--white);
}

::-moz-selection {
	background: var(--primary-color);
	/* Firefox */
	color:var(--white);
}

a {
	color: var(--body-color);
	text-decoration: none;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;
}

a:hover {
	color: var(--primary-color);
}

p {
	margin: 0px 0 30px 0;
	clear: left;
	padding: 0;
	font-weight: normal;
	font-size: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0 0 10px 0;
	padding: 0;
	font-weight: normal;
}

.hr {
	margin: 30px 0;
	height: 1px;
	border: 0;
	border-top: 1px solid rgba(0, 0, 0 ,0.2);
	display: block;
	width: 100%;
	height:1px;
	position: relative;
}
 
img {
	border: 0;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;

}

a img {
	border: 0;
}

/*-----------text styles------------*/


.text-white {
	color: var(--white);
}

.text-black {
	color: var(--black);
}

.text-primary {
	color: var(--primary-color);
}
  
.text-secondary {
	color: var(--primary-color);
}
 .text-tertiary {
	color: var(--tertiary-color);
}
  
.text-quaternary {
	color: var(--quaternary);
}
.text-center {
	text-align: center;
}
.text-right{
	text-align:right;
}

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

 

/*-----------background styles------------*/
 
.bg-gradient{
	background-image: linear-gradient(to top, var(--primary-color), var(--secondary-color));
	color:var(--white)!important;	 
}
.bg-primary {
	background: var(--primary-color);
	 
}
.bg-secondary {
	background: var(--secondary-color);
 
}

.bg-tertiary {
	background: var(--tertiary-color);	
	 
}
.bg-quaternary {
  background: var(--quaternary-color);
 
}
.bg-grey {
	background: var(--grey);
 
}
.bg-grey-light {
	background: var(--grey-light);
 
 }

/*************** PRELOADER ***************/

#preloader {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color:var(--white);
	z-index: 999999;
}

#status {
	width: 200px;
	height: 200px;
	position: absolute;
	/*background-color:var(--white);*/
	left: 50%;
	top: 50%;
	background-image: url(../images/logo.svg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size:80%;
	margin: -100px 0 0 -100px;
}

 
/*********************************/

.container {
	width: 1360px;
	margin: 0 auto;
}
.fullheight {
	width: 100%;
	height:100vh;
	overflow:auto;
 
} 
.fullwidth {
	width: 100%;
	display: block;
} 

.img-rounded{
	border-radius: 50%;
	overflow:hidden;
	}
.corner-radius{
	border-radius: 50%;
	}	
 
/*************HOVER EFFECT*******/

.hover-effect{
	width:100%;
	position:relative;
	overflow:hidden;
	/*border-radius: 16px; */
}

 .hover-effect i{
    width:50px;
    height:50px;
    background-color:var(--primary-color);
	border-radius: 50%;
    color:#fff;
    position:absolute;
    left:50%;
    top:-100px;
    z-index:1;
    line-height:50px;
    text-align:center;
    margin:0 0 0 -25px;
    -webkit-transition:all 300ms ease-in-out;
    -moz-transition:all 300ms ease-in-out;
    transition:all 300ms ease-in-out;
}
 .hover-effect:hover i{
    top:50%;
    margin:-25px 0 0 -25px;
}

 .hover-effect i:hover{
	background-color:var(--secondary-color);
	}

.hover-effect img {
 	display:block;
  	width:100%;
	-webkit-filter: none;
    filter: none;
 	-webkit-transition: all .5s;
    transition: all .5s;
}
.hover-effect:hover img {
     -webkit-transform: scale(1.09, 1.09);
    transform: scale(1.09, 1.09);
    -webkit-filter: brightness(70%);
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -o-transition: all 1s ease;
    -ms-transition: all 1s ease;
    transition: all 1s ease;
	/*-webkit-filter: brightness(70%);*/
	filter: grayscale(60%);
	-webkit-filter: grayscale(60%);
}


 .hover-effect:after {
  background:#FFF;
  width:0;
  height: 0;
  position: absolute;
  left: 50%;
  bottom: 50%;
  content: '';
  opacity: 0.7;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.hover-effect:hover:after {
	opacity: 0.1;
	width: 100%;
  	height: 100%;
	left: 0;
    bottom: 0;
}
 
section {
	width: 100%;
	display:block;
	position: relative;
}

.section-spacing{
   padding:100px 0;
 }
.sticky{
 	position: -webkit-sticky !important;
	position: sticky !important;
	top: 100px;
	width:100%; 
}

/*********************************************/ 

 .top-container{ 	 
	transition: all 0.4s ease;
	background-color:var(--primary-color);	
 }
 header.smaller   .top-container{
 	display:none;
 }
 .top-info{
 	display: flex;
    flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
 }
 
 .top-left, .top-right{
 	display: flex;
    flex-wrap: wrap;
	align-items: center;
	gap:0 20px;
	color:var(--white);
	font-size:18px;
 }

.top-container  a{
	color:var(--white);
}
.top-container a:hover{
	color:var(--tertiary-color);
}

.top-container i{
  	margin-right:10px;
	color:var(--tertiary-color);
}

/*******GOVERNING BODY STYLE**********/
 .governing-body{   
    width: 100%;
    display: flex;
    flex-wrap: wrap; 
	gap:30px 3.5%;
	justify-content: center;
    }
 .body-inner{
	flex: 0 0 22.11%;
	padding:15px;
	box-shadow: 0px 4px 10px 4px rgba(123, 123, 123, 0.1);
	transition: all 0.4s ease;
}
 .body-inner:hover{ 
     transform: scale(1.03);
	 background-color:var(--secondary-color);
	 color:var(--white);
}
 /***********social ***********/
 
.social, .footer-social {
	display:flex;
	vertical-align:middle; 
}
.footer-social {
	justify-content: flex-end;
}
.social a  {
	width:30px;
	height:30px;
	line-height:30px;
	border-radius: 50%;
	text-align:center;	 
	font-size:16px;
	margin:5px; 
	display: flex;
	justify-content: center;
    align-items: center;
	text-align:center;
	background-color:var(--primary-color);

}
.social a i{
	margin:0;
}
.social a:hover  {
 
	background-color:var(--tertiary-color);
}
.social a:hover i  {
	color:var(--primary-color) !important;
	 
}


/***********social ***********/


/**************** header**********************/
 header{
	 width:100%; 
	 position:relative;
	 left:0;
	 top:0;	
	 padding:0;
	 z-index:10;
	 transition: all 0.4s ease;
}
 
 header.smaller {
	padding:0;
	position: fixed;
	background-color:var(--white);
	box-shadow: 0px 10px 20px 0px rgba(123, 123, 123, 0.1);  
}

.header{
    width:100%;
	display: flex;
    flex-wrap: wrap;
	position:relative;
	justify-content: space-between;
	align-items: center;
	padding:14px 0;
	transition: all 0.4s ease;
}
 header.smaller .header{
 	padding:10px 0;
 }
 
.logo { 
	width:290px;	 
	position:relative;
	transition: all 0.4s ease;
 
}
 
.logo img {
	width:100%;
	display:block;
}
header.smaller .logo {
	width:150px;	 
}
 
.nav-group{
	display: flex;
	justify-content: space-between;
	align-items: center;
}
 /***********hero-right*******************/
 .header-right{
	/*background-color:var(--grey-light);*/
	position:relative;
	padding-left:20px;
	display: flex;
	align-items: center;
}

 .header-right:before{
	background-color:var(--grey-light);
	width:2500%;
	height:116px;
	position:absolute;
	left:0;
	top:-30px;
	z-index:-5;
	content:'';
	transition: all 0.4s ease;
}
  header.smaller  .header-right:before{
   display:none;
 
 }

  

 
.whatsapp-number{
	position:relative;
	padding:0 0 0 45px;	
} 
.whatsapp-number p{
	font-size:16px;
	line-height:16px;
	margin:0;
	padding:0;
	
}
.whatsapp-number h2{
	font-size:22px;
	line-height:normal;
	color:var(--black);
	font-weight:var(--font-bold);
}
.whatsapp-number i{
	 position:absolute;
	 left:0;
	 top:0;
	 font-size:34px;
	 color:#00CC00;
	 /*background-color:#00CC00;
	 width:35px;
	 height:35px;
	 /*border-radius: 50%;*/
	 text-align:center;
	 line-height:35px;
}
.whatsapp-number a{
	color:var(--black);
	 
}
.whatsapp-number a:hover{
	color:var(--primary-color);
}

 /***********hero-left*******************/
 .hero-mobile{}
 .hero-left{
 	width:38%;
	position:relative;
	padding:50px 35px;
	color:var(--white);
	display: flex;
    flex-wrap: wrap; 
	justify-content: center;
	align-items: center;
 }
.hero-left h2{
	font-size:60px;
	line-height:60px;
	font-weight:var(--font-bold);
	margin:0 0 20px 0;
}
  
  
  .hero-left:after{
 	width:60px;
	height:60px;
	position:absolute;
	left:0;
	bottom:0;
	content:'';
	background-color:var(--white);
	z-index:2;
 }
   /***********hero-right*******************/
   .hero-right{
 	width:62%;
	position:relative;
 
}

 /***********home page settings *****************/
 
 .services-grid,  .services-grid ul{   
    width: 100%;
    display: flex;
    flex-wrap: wrap;
	margin:0;
	padding:0;
	list-style:none; 
}
.services-grid ul{ 
	
}
.services-grid ul li{ 
	flex: 0 0 25%;
	border:1px solid var(--grey-dark);
	padding:30px;
	aspect-ratio: 1 / 1;
	transition: all 0.4s ease;
	margin:-1px 0 0 -1px;
}
.services-grid ul li:hover{
	background-color:var(--primary-color);
	color:var(--white);
}
 
.services-grid ul li h2{
	font-size:30px;
	line-height:normal;
	font-weight:var(--font-bold);
}
.services-grid ul li p:last-child{
	margin:0;
}
.theme-icon{
	width:85px;
	height:85px;
	text-align:center;
	display:flex;
	justify-content: center;
	align-items: center;
	font-size:26px;
	color:var(--primary-color);
	border-radius: 50%;
	background-color:var(--quaternary-color);
	padding:15px;
	transition: all 0.4s ease;
}
.theme-icon img{
	width:100%;
	display:block;
	transition: all 0.4s ease;
}
.services-grid ul li:hover .theme-icon{
	transform: rotate(360deg);
}
/***********home page settings end*****************/
  
.link {}

.link a {
	height:70px;
	min-width:250px;
	display: inline-block;
	vertical-align:center;	 
	text-align:center;
	color:var(--black);
	font-size:18px;
	text-transform:uppercase;
	line-height:70px;
	padding:0 40px;
	position: relative;
	overflow:hidden;
	margin:0;
	background-color:var(--tertiary-color);
	font-weight:var(--font-bold);
	transition: all 0.4s ease;
}
.link a:hover{
	color:var(--white);
	background-color:var(--primary-color);
}

.link a:before{
	width:10px;
	height:10px;
	/*border-radius: 50px;*/
	position:absolute;	
	background-color:var(--black);
	top:0;
	right:0;
	content:'';
	z-index:1;
	transition: all 0.4s ease;
}  
.link a:hover:before{
	top:-15px;
	right:-15px;
}
 .link a span{
 	position:relative;
	z-index:2;
	display:inline-block;
 }

.caps{
	text-transform:uppercase;
}
 
.heading-font{
 	font-family:var(--heading-font);
 }
 
.heading{
	font-size:60px;
	line-height:70px;
 
}
.heading span{ 
	color:var(--secondary-color);
	
}
.subheading {
	font-size: 34px;
	line-height:normal; 
}
 
.subtitle{
	font-size: 24px;
 
}
.bold, strong{
	font-weight:var(--font-bold);
}

.section-title{
	  
}
 .section-title span{
  position:relative;
  font-size:18px;
  line-height:normal;
  padding:0 0 0 25px;
  text-transform:uppercase;
	  
}
 .section-title span:before{
  width:10px;
  height:10px;
  position:absolute;
  left:0;
  top:50%;
  margin-top:-5px;
  content:'';
  background-color:var(--tertiary-color);
  
	  
}
/****************************/
  
.pos-rel{
	position:relative;
}
 
/****************SCROLLING TEXT***************/
 
.scrolling-text-wrap {
  width:100%;
  overflow-x:hidden !important;
  overflow-Y:hidden !important;
  overflow:hidden !important;
}
.scroll {
  white-space: nowrap;
  margin: 0;
}
.scroll div {
  display: flex;
}
.scroll h2 {
   font-size: 134px;
   line-height:134px;
   color: var(--quaternary-color);
   font-weight:var(--font-bold);
   margin:0;
}
.scroll h2 span{
   width:6px;
   height:6px;
   background-color:var(--primary-color);
   outline-offset: 4px;
   outline:1px solid var(--primary-color);
   border-radius: 50%;
   display:inline-block;
   position:relative;
   margin:0 25px;
   vertical-align:middle
}

.RightToLeft {
  animation: RightToLeft 20s infinite linear;
} 
 
/************************/
@keyframes  RightToLeft {
  from {
    transform: translateX(0%);
  }
  to {
    transform: translateX(-50%);
  }
}

.LeftToRight {
  animation: LeftToRight 20s infinite linear;
}

@keyframes  LeftToRight {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0%);
  }
}

 
 /**********************news**********************/

.news-style{
  	display: flex;	 
  	color:var(--body-color);
	justify-content: space-between;
  }
.news-widget{
	width:75%;
	border-left:1px solid var(--grey);
	padding:40px 40px 0 40px;
	margin-bottom:25px;
}
.news-widget h2{
  font-size:24px;
  line-height:26px;
 
  } 

.date{
 	padding:40px 0;
 }
.date span{
	font-size:14px;
	line-height:14px;
	text-transform:uppercase;
	margin:0;	
	vertical-align:middle;
	background-color:var(--primary-color);
	color:var(--white);
	padding:10px;
}
.date span i{
	font-size:14px;
	color:var(--white);
	vertical-align:middle;
	margin:0 10px 0 0;
	 
}

.news-style-more-bt{
  	margin:25px 0 0 0;
  }
.news-style-more-bt a{
	text-decoration:underline;
}

 /******************governing body style*********************/
 
 .foto-stlyle{
 	padding:0 0 15px 15px;
	position:relative;
 }

.foto-stlyle:before{
 	width:100px;
	height:100px;
	position:absolute;
	left:0;
	bottom:0;
	content:'';
	background-color:var(--primary-color);
 }

.foto-stlyle img{
 	width:100%;
	display:block;
	position:relative;
	 
 }
 .member-info{
 	width:100%;
	padding:20px 0 0 0;
	text-align:center;
	
 }
  .member-info h2{ 	 
	font-size:20px;
	line-height:normal;
	margin:0;
	font-weight:var(--font-bold);
 }
 .member-info p:last-child{
   margin:0;
   /* font-size:14px; */
}
 .member-info p {
	margin-bottom: 8px;
 }
span.more-link a {
    text-decoration: underline;
    text-transform: uppercase;
    font-size: 15px;
}
   
  /*******marquee*******/
  
  
  
  
 /*******************display-style**********************/
 
 .boxy{
  	box-shadow: 0px 4px 10px 4px rgba(123, 123, 123, 0.1);
	padding:100px;
  }
  
.display-style{ 
     width: 100%;
	 aspect-ratio: 1 / 1;
     overflow: hidden;	 
	 position:relative;
	 z-index:2;
	 padding:40px;
	 -webkit-transition: all 300ms ease-in-out;
     -moz-transition: all 300ms ease-in-out;
     transition: all 300ms ease-in-out;
}
  
.shadow{	   
	  box-shadow: 0px 4px 10px 4px rgba(123, 123, 123, 0.1);  
 }
 
 
.iconic{
	width:100%;
	display:block;
	position:relative;
	padding:0 20px 0 120px;
	min-height:100px;
}
.iconic:last-child{
	border-bottom:0;
}
.iconic h2{
	font-size: 30px;
	line-height:30px;
	font-weight:var(--font-bold);
	margin:0 0 15px 0;
	
}
.webicon{	
	display: flex;
	justify-content: center;
	align-items: center;
	position:absolute;
	left:0;
	top:0;	
	width:80px;
	height:80px;
	text-align:center;
	color:var(--primary-color);
	font-size:30px;
	vertical-align:middle;
	margin:0;
	padding:15px;
	border-radius:50%;
	/*background-image: linear-gradient(to top, var(--primary-color), var(--secondary-color));*/
	background-color:var(--quaternary-color);	 
 	transition: all 0.4s ease;
}
.webicon img{
	display:block;
	width:100%;
}
.webicon:hover{
	background-color:var(--primary-color);
	color:var(--white);
}
.iconic p:last-child{
	margin:0;
}


 
  
  
/**********************Reviews**********************/
 
 
.m0-p0{
	margin:0 !important;
	padding:0 !important;
}
/*********whatsa app*/ 
.float{
	position:fixed;
	width:50px;
	height:50px;
	bottom:80px;
	line-height:50px;
	right:20px;
	background-color:#25d366;
	color:#FFF;
	border-radius:50%;
	text-align:center;
    font-size:30px;
	/*box-shadow: 2px 2px 3px #999;*/
    z-index:4;
}
.float i{
	 -webkit-transition: .3s ease-in-out;
    -moz-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
 
}
.float:hover i{
	 -webkit-transition: .3s ease-in-out;
    -moz-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
	transform: rotate(0.12turn);
}
.float:hover{
	color:#FFF;
	 
} 
.float h5 {
    width: 100px;
    top: 8px;
	right:50px;
    background-color:var(--white);
	color:var(--grey-dark);
	 box-shadow: 0px 0px 5px gray;
	line-height:12px;
    border-radius: 5px;
	font-size:12px;
	padding:10px;
	position:absolute;
	z-index:-1;
	margin:0;
	-webkit-transition: .3s ease-in-out;
    -moz-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
	opacity:0;
}
.float:hover h5{
	 opacity:9;
	 right:60px;
}
 
  


/*************** footer CSS ***************/
 
.footer {
	padding:80px 0;
	margin:0;
	background-color:var(--secondary-color);
	color:var(--white);
}

.footer a {
	color:var(--white);
}
 .footer a:hover  {
	color:rgba(255, 255, 255, 0.5);
}  


.footer-left{
	 width:50%;
	 display: flex;
	 justify-content: space-between;
	 
	 
}
.footer-right{
	 width:40%;
	 text-align:right; 
	 flex-direction:column;
}
.footer-right p{
	margin:0;
}
.footer-logo, .footer-info{
	width:33%;
}
 .footer-logo img{
 	width:80%;
	display:block;
 }
 
 
 
 /**********************/
 .address-box{
	padding:30px;
	border-bottom:4px solid var(--secondary-color);
	box-shadow: 0px 4px 10px 4px rgba(123, 123, 123, 0.1);  
	} 
.add{
	width:100%;
	position:relative;
	padding:0 0 0 60px;
	min-height:30px;
	margin-bottom:20px;
	font-size:20px; 
	vertical-align:top;
	line-height:24px;
	 
}
 .add h3{
 	font-size:20px;
	line-height:24px;
	font-weight:var(--font-bold);
	margin:0;
	line-height:normal;
 }
 .add h2{
 	font-size:18px;
	line-height:24px;
	font-weight:var(--font-bold);
	margin:0;
	line-height:normal;
 }
.add i{
	width:35px;
	height:35px;
	line-height:35px;
	background-color:var(--tertiary-color);
	border-radius: 50%;
	color:var(--secondary-color);
	font-size:14px;
	margin:0;
	position:absolute;
	left:0;
	top:0;
	text-align:center;
 
	
}
 .google-map{
     overflow: hidden;
     width: 100%;
	 height:450px;
	 margin:0;
	 padding:0;
	 outline:none;
	 border:0;
	 display:block;
}

.ext{
	display:inline-block;
	padding-top:10px;
}
.add a{
	color:var(--body-color);
	}
.add a:hover{
	color:var(--tertiary-color);
	}

.footer .add a{
	color:var(--white);
	}
 
/******************************/

ul.list {
	margin: 0;
	padding: 0;
	margin-bottom: 30px;
}

ul.list li {
	list-style: none;
	padding: 2px 7px 10px 30px;
	line-height: normal;
	position: relative;
}

ul.list li:before {
	/*content: "\f111";*/
	content: "\f138";
	position: absolute;
	top: 4px;
	left: 0;
	font-family: "FontAwesome";
	color: var(--primary-color);
	font-size: 16px;
}

/*****************************/
 
 
.table-wrap{
	width:100%;
	position:relative;
	display:flex;
	overflow-x:scroll;
} 
table { 
	min-width:100%;
	width:900px;
	border-collapse: collapse; 
	
	}

/* Zebra striping */
tr:nth-of-type(odd) { 
	background: #eee; 
	}

th { 
	background:var(--secondary-color);
	color: var(--white);
	
	}

td, th { 
	padding: 8px 15px !important; 
	border: 1px solid #ccc; 
	text-align: left; 
	font-size: 14px;
	} 

/******************************team-style*****************/

 
 

/*************** INNER BANNER ***************/
.banner { 
	width: 100%;
	height:200px;
	overflow:hidden;	 
	display: flex;
	flex-direction:column;
	position: relative;
	align-items: center; 
	justify-content: center;
 
	 
 
}
/*.banner:after{
	width: 100%;
	height:50%;
	position:absolute;
	left:0;
	top:0;
	content:'';
	z-index:1;
	background-image: linear-gradient(to top, rgba(9,54,121,0), rgba(9,54,121,1));
	opacity:0.5;
}*/
.banner h2 {
	color:var(--white);
	font-family:var(--heading-font);
	font-size:40px;
	line-height:normal;
	margin:0 0 10px 0;
	padding:0;
	position:relative;
	z-index:2;
}


/*************************banners ***************/
 
 

.breadcrumb {   
    display: flex;
	color:var(--white);
	margin:0;
	position:relative;
	z-index:2;
	 

}
 
.breadcrumb ul {   
	display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 5px 20px;
	background-color:var(--tertiary-color);
}
.breadcrumb li {
    margin: 0;
	font-size:12px;
	line-height:normal;
	text-transform:uppercase;
	color:var(--black);
	font-family:var(--font-medium);	 
}    
.breadcrumb li:not(:last-child)::after {
    display: inline-block;
    margin: 0 15px;
    /*content: " → "; */
	 content: " / "; 
}
 .breadcrumb a{
   color:var(--black);
}
 .breadcrumb a:hover{
   color:var(--primary-color);	
 
}
 
 
/*************** JARALLAX ***************/
.cover {
	position: relative;
	background-repeat: no-repeat;
	background-position: center center;
	-moz-background-size: cover;
	-webkit-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
}

/*.bg1 {
	background-image: url(../images/backgrounds/bg1.jpg);
	background-attachment:fixed;
}*/
 

/**********forms**************/
 

.formstyle{}
 
form {
	margin: 0;
	padding: 0;
}

*:focus {
	outline: none;
}

.fieldset {
	width: 100%;
	padding:18px 20px;
	border:1px solid var(--grey);
	background-color:var(--white);
	color:var(--black);
	display: block;
	margin: 0;
	font-size: 16px;
 
}

.sendbutton {
	color: var(--white);
	font-size: 30px;
	font-weight:var(--font-bold);
	background-color:var(--secondary-color);
	border:0;
	padding: 15px 30px;
	font-style: normal;
	display: inline-block;
	position: relative;
	margin:0;
	 
}

.sendbutton:hover {	
	background-color:var(--primary-color);
 
}
 
::-webkit-input-placeholder {
	color:var(--body-color);
}

:-moz-placeholder {
	/* Firefox 18- */
	color: var(--body-color);
}

::-moz-placeholder {
	/* Firefox 19+ */
	color: var(--body-color);
}

:-ms-input-placeholder {
	color: var(--body-color);
}
 
/*************** backToTop *************/
 .progress-wrap {
     position: fixed;
     right: 10px;
     bottom: 10px;
     height: 45px;
     width: 45px;
     cursor: pointer;
     display: block;
     border-radius: 50px;
    /* box-shadow: inset 0 0 0 2px rgb(0 0 0 / 100%);
    */
     z-index: 99;
     opacity: 0;
     visibility: hidden;
     transform: translateY(15px);
     -webkit-transition: all 200ms linear;
     transition: all 200ms linear;
}
 .progress-wrap.active-progress {
     opacity: 1;
     visibility: visible;
     transform: translateY(0);
}
 .progress-wrap::after {
     position: absolute;
     content: "\f062";
     font-family: 'Font Awesome 5 Free';
     font-weight: 900;
     text-align: center;
     line-height: 45px;
     font-size: 20px;
     color:var(--primary-color);
     left: 0;
     top: 0;
     height: 45px;
     width: 45px;
     cursor: pointer;
     display: block;
     z-index: 1;
     -webkit-transition: all 200ms linear;
     transition: all 200ms linear;
}
 .progress-wrap svg path {
     fill: none;
}
 .progress-wrap svg.progress-circle path {
     stroke: var(--black);
     stroke-width: 4;
     box-sizing:border-box;
     -webkit-transition: all 200ms linear;
     transition: all 200ms linear;
}
fieldset.hidden-fields-container {
    display: none;
}


/************************************* 1360px *************************************/
@media only screen and (max-width: 1400px) {
 .header-right:before {
	display: none;
 }
}

/************************************* 1360px *************************************/
@media only screen and (max-width: 1360px) {
.container {
	width: 100%;
	padding:0 25px;
	}
.logo, header.smaller .logo { 
	width:120px;	 
}
 .header-right{
 	 gap:0 10px;
}


 /***********whatsapp-number*******************/
 .whatsapp-number{
	position:relative;
	padding:0;
	margin-right:15px;	
} 
 
 
.whatsapp-number i{
	 position:relative;
	 left:0;
	 top:0;
	 font-size:28px;
	 line-height:28px;
 
}
.whatsapp-number p,  .whatsapp-number h2{
	display:none;
	}
 /***********hero-right*******************/	
.hero-mobile{
 	flex-direction: column-reverse;
}
 .hero-left, .hero-right{
 	width:100%;
	position:relative;
 }
 
.hero-left:after{
 	display:none;
 }
 
.hero-left{
	padding:25px;
	 
 }
.hero-left h2{
	font-size:30px;
	line-height:30px;
	margin:0 0 20px 0;
}
  
.link a {
	min-width:auto;
	height:35px; 
	font-size:16px;
	line-height:35px; 
	padding:0 20px;
} 
 
}

/************************************* 1280px *************************************/
@media only screen and (max-width: 1280px) {
.top-container,  .header-right:before, .slider-outer:before{ 	 
	display:none !important;	
}
 .nav-group{
	 flex-direction: row-reverse;
}
}

/************************************* 1024px *************************************/
@media only screen and (max-width: 1024px) {

 .section-spacing{
	 padding:50px 0;
 }
 
}

/************************************* 980px *************************************/
@media only screen and (max-width: 980px) {
 
 
}

/************************************* 900px *************************************/
@media only screen and (max-width: 900px) {

 
}

/************************************* 767px *************************************/
@media only screen and (max-width: 768px) {
 .services-grid,  .services-grid ul{   
    width: 100%;
    display: flex;
    flex-wrap: wrap;
	margin:0;
	padding:0;
	list-style:none; 
}
.services-grid ul{ 
	border:0;
}
.services-grid ul li{ 
	flex: 0 0 50%;
	padding:20px;
	 
}
 
.services-grid ul li h2{
	font-size:24px;
	line-height:24px;
 
}
 
.theme-icon{
	width:50px;
	height:50px;
	border-radius: 50%;
	padding:10px;
}
.heading{
	font-size:34px;
	line-height:38px;
}
  .boxy{
	padding:40px;
  }

 .governing-body{   
	gap:10px 3.5%;
    }
.body-inner{
	flex: 0 0 48%;
	padding:8px;
	 
}
}

/************************************* 640px *************************************/
@media only screen and (max-width: 640px) {
 
body {
	font-size: 16px;
	line-height:24px;
	}
 
.banner { 
	height:150px;	 
}
.banner h2 {
	font-size:20px;
}
.breadcrumb ul {   
    padding: 5px 15px;
 
}
  

.scroll h2 {
  font-size:50px;
  line-height: 50px;
   
}
 
.RightToLeft {
  animation: RightToLeft 5s infinite linear;  
}
 
.iconic{
	padding:0 0 0 70px;	 
}
.iconic:last-child{
	border-bottom:0;
}
.iconic h2{
	font-size: 20px;
	line-height:28px;
}
.webicon{		 
	width:50px;
	height:50px;
	padding:10px;
	 
} 
 
 /**********************news**********************/

.news-style{
  flex-direction:column;
  }
.news-widget{
	width:100%;
	border-left:0;
	border-top:1px solid var(--grey);
	padding:20px 0;
}
.news-widget h2{
  font-size:20px;
  line-height:24px;
 }
.date{
 	padding:15px 0;
 }
.date span{
	font-size:12px;
	line-height:12px;
	padding:5px 10px;
} 
.date span i{
	font-size:12px;
	 
}


/*************** footer CSS ***************/
 
.footer {
	padding:50px 0;
}

 
.footer-left, .footer-right, .footer-logo, .footer-info{
	 width:100%;
	 flex-direction:column;
}
.footer-left{
	margin-bottom:20px;
	border-bottom:1px solid rgba(255, 255, 255, 0.4);
	}
.footer-logo{
	margin-bottom:20px;
}
 .footer-logo img{
 	width:150px;
}
.footer-right{
 	text-align:left;
 }
 .footer-social {
	justify-content: flex-start;
	margin-top:20px;
	padding-top:20px;
	border-top:1px solid rgba(255, 255, 255, 0.4);
} 
  .boxy{
	padding:20px;
  }
}

/************************************* 480px *************************************/
@media only screen and (max-width: 480px) {
	 
 
}

/************************************* 360px *************************************/
@media only screen and (max-width: 360px) {

}

/************************************* 320px *************************************/
@media only screen and (max-width: 320px) {
header .container {
	width: 100%;
	padding:0 15px;
	}
.logo, header.smaller .logo { 
	width:100px;	 
}
}