@charset "utf-8";
  
@font-face {
    font-family: 'Halyard_Micro';
    src: url('../fonts/Halyard_Micro.eot');
    src: url('../fonts/Halyard_Micro.eot') format('embedded-opentype'),
         url('../fonts/Halyard_Micro.woff2') format('woff2'),
         url('../fonts/Halyard_Micro.woff') format('woff'),
         url('../fonts/Halyard_Micro.ttf') format('truetype'),
         url('../fonts/Halyard_Micro.svg#Halyard_Micro') format('svg');
}
@font-face {
    font-family: 'Halyard_Micro_Medium';
    src: url('../fonts/Halyard_Micro_Medium.eot');
    src: url('../fonts/Halyard_Micro_Medium.eot') format('embedded-opentype'),
         url('../fonts/Halyard_Micro_Medium.woff2') format('woff2'),
         url('../fonts/Halyard_Micro_Medium.woff') format('woff'),
         url('../fonts/Halyard_Micro_Medium.ttf') format('truetype'),
         url('../fonts/Halyard_Micro_Medium.svg#Halyard_Micro_Medium') format('svg');
}

@font-face {
    font-family: 'Halyard_Micro_Bold';
    src: url('../fonts/Halyard_Micro_Bold.eot');
    src: url('../fonts/Halyard_Micro_Bold.eot') format('embedded-opentype'),
         url('../fonts/Halyard_Micro_Bold.woff2') format('woff2'),
         url('../fonts/Halyard_Micro_Bold.woff') format('woff'),
         url('../fonts/Halyard_Micro_Bold.ttf') format('truetype'),
         url('../fonts/Halyard_Micro_Bold.svg#Halyard_Micro_Bold') format('svg');
}

/* font-family: "Libre Baskerville", serif;
 font-family: "Plus Jakarta Sans", sans-serif;*/

/*************** DEFAULT CSS ***************/
:root {
	--body-font: "Halyard_Micro", sans-serif;
	--body-color: #000;
	--primary-color: #364939;
	--secondary-color: #F0EFD0;
	--tertiary-color: #B7E4BE;
	--quaternary-color:#FFFEE6;	
	--black: #000;
	--white: #fff;
	--grey: #DCDDDE;	
	--grey-light: #F8F8F8;
	--grey-dark: #6D6D6D;		 	  
	--font-medium:"Halyard_Micro_Medium", serif;
	--heading-font:"Halyard_Micro_Bold", serif;
}

body {

	font-family: var(--body-font);
	font-size: 16px;
	font-style: normal;
	line-height: 24px;
	letter-spacing: -.05em;
	font-weight: var(--font-weight-normal);
	color: var(--body-color);
	text-decoration: none;
	margin: 0px;
	-webkit-font-smoothing: antialiased;
	padding: 0;
	background: var(--white);
	overflow-x: hidden;
	background-image: url(../images/texture.png);
	background-attachment:fixed;
}

  [data-scroll-container] {
      overflow: 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) !important;
}

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

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

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

 

/*-----------background styles------------*/
.corner-round{
	overflow:hidden;
	border-radius:12px;
}
.bg-gradient{
	background-image: linear-gradient(to top, var(--primary-color), var(--secondary-color));
	color:var(--white)!important;	 
}
.bg-primary {
	background: var(--primary-color);
	color:#fff;
}
.bg-secondary {
	background: var(--secondary-color);
 
}

.bg-tertiary {
	background: var(--tertiary-color) !important;	
	 
}
.bg-quaternary {
  background: var(--quaternary-color);
  color:#fff;
}
.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: 300px;
	height: 300px;
	position: absolute;
	/*background-color:var(--white);*/
	left: 50%;
	top: 50%;
	background-image: url(../images/sirajudheen-logo.svg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size:50%;
	margin: -150px 0 0 -150px;
}
 

.vertical-text-scroll{
	width:100%;
	height:50px;
	position:fixed;
	background-color:var(--white);
	left:-50%;
	margin-left:25px;
	top:0;
	z-index:1;
	box-shadow: 0px 10px 20px 0px rgba(123, 123, 123, 0.2);
	-webkit-transform: rotate(-90deg);
}
.vtext{
   }
  .vtext h2{
   color:var(--black) !important;
   font-size:16px !important;
   line-height:26px !important;
   }
   
    .vtext h2 span{
	display:inline-block !important;
	margin:0 15px !important;
	width:20px !important;
	height:20px !important;
	border:0 !important;
	text-align:center;
	position:relative;
	top:-4px;
 
	}
/*********************************/

.container {
	width: 1280px;
	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*******/
.img-style{
	position:relative;
	 
}
.img-style:before{
	width:100px;
	height:100px;
	position:absolute;
	left:-15px;
	top:-15px;
	content:'';
 	border-top:1px solid var(--black);
	border-left:1px solid var(--black);
 
}

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

 .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;
 }


/*********/

.hero-section {
	width: 100%;
	display:block;
	position: relative;
}

.hero-section-row {
	width: 100%;
    display: flex;
    flex-wrap: wrap;
	align-items: center;
}

.hero-split {
	flex: 0 0 50%;
}
.hero-content {
    width: 100%;
    display: flex;
	padding:100px;
	flex-direction:column;
	 
}
.hero-content h2{
	font-size:60px;
	line-height:64px;
	font-family:var(--heading-font);
	color:var(--primary-color);
	margin:0;
}
.hero-content h2 span{
	font-size:34px;
	color:var(--black);
	font-family:var(--font-medium);
	}

.associate{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
	align-items: center;
	gap:0 15px;
	font-size:12px;
	margin-top:50px;
	text-transform:uppercase;
	font-family:var(--font-medium); 
	}
	
.aster-logo{
	padding:0 15px 0 0;
	border-right:1px solid var(--black);
}
.aster-logo img{
	width:70px;
	display:block;
}
/*********************************************/ 
 

 header{
	 width:100%; 
	 position:absolute;
	 left:0;
	 top:0;
	 padding:25px 70px;
	 z-index:5;
	 transition: all 0.4s ease;
	 
}
 header:before{
 	width:50%;
 	height:1px;
	content:'';
	position:absolute;
	left:0;
	bottom:0;
 	background-color:rgba(255, 255, 255, 0.2);
	
 }
 
 header.smaller {
	padding:15px 70px;
	position: fixed;
	background-image:none;
	background-color:rgba(255, 255, 255 ,0.4);
    backdrop-filter: blur(10px);
}

.header{
    width:100%;
	display: flex;
    flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}
 
 
.logo { 
	width:240px;
	position:relative;
	transition: all 0.4s ease;
 
}
 
.logo img {
	width:100%;
	display:block;
}
header.smaller .logo {
	width:150px;
	 
}
  
  
 
 
/***********link ***********/
 
.link, .link-white {}

.link a,  .link-white a {
	
	color:var(--black);
	font-size: 14px; 
	padding: 10px 65px  10px 30px;
	font-style: normal;
	display: inline-block;
	position: relative;
	margin:0;
	border-radius: 50px;
	border:1px solid var(--black); 
}

.link a:before{
	width:40px;
	height:40px;
	position:absolute; 
	top:2px;
	right:10px;
	content:'';
	z-index:2;
	transform: rotate(0deg); 
	background-image: url(../images/icons/arrow.svg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size:55%;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;	
} 
 
.link a:hover:before{
	transform: rotate(-45deg);
 
}
 
.link a:hover { 		 
		background-color:var(--secondary-color);
		color:var(--primary-color);
} 

/******link white*******/

.link-white a:before{
	background-image: url(../images/icons/arrow-white.svg);
}
.link-white a {
	color:var(--white);
	border:1px solid var(--white); 
}
 
.link-white a:hover { 		 
		border:1px solid var(--black); 
		background-color:var(--black);
		color:var(--white);
} 

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

.caps{
	text-transform:uppercase;
} 
.heading-font{
 	font-family:var(--heading-font);
 }
 
.heading{
	font-size:56px;
	line-height:70px;
	font-family:var(--heading-font);
	color:var(--primary-color);
}
.heading span{ 
	color:var(--black);
	
}
.subheading {
	font-size: 44px;
	line-height:54px;
}
 
.subtitle{
	font-size: 20px;
	font-weight:var(--font-medium);
	color:var(--tertiary-color);
}
.bold, strong{
	font-family:var(--font-medium);
}
.font-medium{
	font-family:var(--font-medium);
}
 
 
/****************************/
  
.pos-rel{
	position:relative;
}
   
 
  

/****************SCROLLING TEXT***************/
 
 .scrolling-text-wrap {
  width:100%;
  overflow-x:hidden !important;
  overflow-Y:hidden !important;
  overflow:hidden !important;
  padding:80px 0;
  background-color:var(--primary-color);
 }
 
.scroll {
  white-space: nowrap;
  margin: 0;
}

.scroll div {
  display: flex;
    
}

.scroll h2 {
  font-size: 46px;
  line-height:50px;
  color: var(--secondary-color);
  margin:10px 0;
}
.scroll h2 span{
	width:70px;
	height:70px;	 
	margin:0 25px;
	vertical-align:middle;
	overflow:hidden;
	border-radius: 50%;
	transition: all 0.3s ease;
	display:inline-block;
	border:1px solid var(--secondary-color);
}
.scroll h2 span img{
	width:100%;
	display:block;
	filter: grayscale(100%);
	transition: all 0.3s ease;
}
.scroll h2 span img:hover{
	filter: grayscale(0%); 
}

.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%);
  }
}


/*******intro***********/

.intro{
	background: var(--primary-color);
	color:#fff;
	position:relative;
	padding:150px 0 100px 0;
	}
 	
 .vertical-line{
	 width:1px;
	 height:100%;
	 position:absolute;
 	 left:50%;
 	 top:0;
	 background-color:rgba(255, 255, 255, 0.1);
}

.intro-img{
	width:480px;
	position:absolute;
	left:320px;
	top:250px;
	z-index:2;
}
.intro-img img{
	width:100%;
	display:block;
	 
}
.intro-img:before{
	width:100px;
	height:100px;
	position:absolute;
	left:-15px;
	top:-15px;
	content:'';
 	border-top:1px solid var(--tertiary-color);
	border-left:1px solid var(--tertiary-color);
 
}


/************sticky cards****/

.sticky-bar{
 	position: -webkit-sticky !important;
	position: sticky !important;
	top: 200px;
	width:100%;
	min-height:350px;
} 
 .section-to-stick {
  padding: 0;
  transition: all 0.3s ease;
  position: -webkit-sticky !important;
  position: sticky !important;
  position: fixed;
}

.sticky {
  top: 0;
  left: 0;
  right: 0;
  z-index: 2;
  position: -webkit-sticky !important;
  position: sticky !important;
  position: fixed;
 
}
/*.sticky{
 	position: -webkit-sticky !important;
	position: sticky !important;
	top: 100px;
	width:100%; 
}*/


.journey-section{
	min-height:100vh;
	padding:300px 0;
}
 
.notification:before{
	position:absolute;
	width:120px;
	height:1px;
	background-color:rgba(0, 0, 0, 0.2);
	top:50%;
	left:-200px;
	content:'';
 
}
.notification{
	width: 100%;
	height:28vh;
	display: flex;
    flex-wrap: wrap;
	align-items: center;
	/*height: max-content;*/
	scroll-behavior: smooth;     
	background-color:var(--primary-color);
	padding:80px 50px;
	position:relative;	 
	position: -webkit-sticky !important;
	position: sticky !important;
	top:200px;
	transition: all 0.4s ease;
	color:var(--white);
	}
.notification h2{
	font-size:22px;
	line-height:22px;
	margin:0 0 20px 0;
	position:relative;
	z-index:2;
}
.notification p:last-child{
	margin:0;
}
 
.res-free-gap{
	width:100%;
	height:100vh;
}
.year{
	position:absolute;
	width:50px;
	height:200px;	 
	padding:20px;
	font-size:28px;
	text-align:center;
	left:-70px;
	top:27%;
	background-image: url(../images/texture.png);
	z-index:2;
} 
.year span{
 	writing-mode: vertical-rl;
	-webkit-transform: rotate(180deg);
   font-family:var(--font-medium);
   color:var(--black);
  }
/**************************************/

 .four-block{   
    display: grid;
    grid-gap:40px;
    grid-template-columns: repeat(4, 1fr);
    }
 .four-block div:nth-child(even){
   justify-items: start; 
   margin-top:100px;
}	

.up-arrow, .down-arrow{
      width: 0;
      height: 0;
      border-left: 30px solid transparent;
      border-right: 30px solid transparent;
      border-bottom: 30px solid var(--secondary-color);
	  position:absolute;
	  bottom:0;
	  left:25px;
	  z-index:4;
}
 .down-arrow{
 	  bottom:auto;
	  top:0;
	  border-left: 30px solid transparent;
      border-right: 30px solid transparent;
      border-bottom: 30px solid var(--secondary-color);
 }
 
/*******video section**********/

 
/*************** JARALLAX ***************/
.video-section {
	position: relative;
	background-image: url(../images/backgrounds/video-bg.jpg);
	background-repeat: no-repeat;
	background-position: center top;
	-moz-background-size: cover;
	-webkit-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	width:100%;
	/*height:750px;*/
}
 .video-des{
 	padding:40px;
	font-size:16px;
	border:1px solid var(--white);
	border-radius: 12px;
	color:var(--white);
	line-height:normal;
	 
 
 }
 
 .video-bt{
	width:142px;
	height:142px;
	background-image: url(../images/icons/1.png);
	background-repeat: no-repeat;
	background-position: center center;
	display:inline-flex;
	background-size: 98%;
 }
 .name{
 	border-top:1px solid rgba(255, 255 ,255, 0.2);
	padding-top:20px;
	
 }  
  .name img{
 	width:200px;
	display:block;
	
 } 
 /**********************/

 	
 

/*******funfacts***********/


.funfacts {
	width:100%;
	position:relative;
	z-index:2;
	border-radius: 20px;
	background-image: linear-gradient(to right, var(--primary-color), var(--secondary-color));
}
 
 .funfacts ul{
	width:100%;
	display: flex;
	flex-wrap: wrap;
	list-style:none;
	margin:0;
	padding:0;
} 

.funfacts ul li{
	width:25%;
	display: flex;
	flex-wrap: wrap;
	list-style:none;
	color:var(--white);
	padding:40px 25px;
	flex-direction:column;
	text-transform:uppercase;
	margin:0;
	position:relative;
	border-right:2px solid rgba(255, 255, 255, 0.2);
	text-align:center;
	justify-content: center;
} 
 
.funfacts ul li:last-child{
	border-right:0;
}

.funfacts ul li h2{
	margin:0;
	padding:0;
	line-height:68px;
	font-size:68px;
}
 .funfacts p{
	margin:0;
	font-size:16px;
	 
}
 
   
 .rotating-circle{
	width:145px;
	height:145px;
	display:inline-block;
	position:relative;
	z-index:2;
	border-radius:50%;
 
}
.rotating-circle:after {
	width:100%;
	height:100%;
	position:absolute;
	left:0;
	top:0;
	content:'';
	background-image:url(../images/rotation-text.svg);
	background-repeat: no-repeat;
	background-position: center  center;
	-moz-background-size: cover;
	-webkit-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	-webkit-animation: rotation 20s infinite linear;

}
.rotating-circle:before{
	width:100%;
	height:100%;
	position:absolute;
	left:0;
	top:0;
	content:'';
	z-index:6;
	background-image:url(../images/1958.svg);
	background-repeat: no-repeat;
	background-position: center  center;
	border-radius:50%;
	/*-webkit-animation: rotation2 20s infinite linear;*/
	background-size:90%;
}
@-webkit-keyframes rotation {
		from {
				-webkit-transform: rotate(0deg);
		}
		to {
				-webkit-transform: rotate(359deg);
		}
}

@-webkit-keyframes rotation2 {
		from {
				-webkit-transform: rotate(0deg);
		}
		to {
				-webkit-transform: rotate(-359deg);
		}
}

 
  
 /**********************news**********************/
 
 
  .news-style{ 
     width: 100%;	  
     overflow: hidden;	 
	 position:relative;
	 padding:0 40px;
  	 color:var(--body-color);
	 transition: all 0.4s ease;

}
 
  .news-style .row{
	  min-height:100px;
  
  }
  
  .news-style h2, .blog-section h2{
  	font-size:18px;
  	line-height:28px;
 
  } 
.date{
	font-size:12px;
	line-height:12px;
	text-transform:uppercase;
	vertical-align:middle;
	display:inline-block;
	padding:10px 15px;
	border-radius: 50px;
	border:1px solid var(--black);
	margin-bottom:20px;
	 
}
.date i{
	font-size:16px;
	color:var(--secondary-color);
	vertical-align:middle;
	margin:-5px 10px 0 0;
	 
}
  .news-style p:last-child{
  	margin:25px 0 0 0;
  }
  
 /*************/
 
 .boxy{
 
	 padding:100px;
	 -webkit-transition: all 300ms ease-in-out;
     -moz-transition: all 300ms ease-in-out;
     transition: all 300ms ease-in-out;
}
  /********************services scroller**********************/
  
.display-style{ 
     width: 100%;
	 aspect-ratio: 1.3 / 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: 24px;
	font-family:var(--heading-font);
	margin:0 0 15px 0;
	line-height:30px;
}
.webicon{	
	display: flex;
	justify-content: center;
	align-items: center;
	position:absolute;
	left:0;
	top:0;	
	width:80px;
	height:80px;
	text-align:center;
	color:var(--white);
	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(--primary-color);	 
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;
}
.webicon img{
	display:block;
	width:100%;
}
.webicon:hover{
	background-color:var(--primary-color);
}
.iconic p:last-child{
	margin:0;
}


 
  
 
/*********fix buttons**************/ 
.fixbutton{
	width:50px;
	position:fixed;
	top:50%;
	right:0;
	z-index:2;
	margin-top:-95px;
 
}
.fixbutton a{
	width:50px;
	height:50px;
	line-height:50px;	
	/*border-radius:50%;*/
	position:relative;
	color:#fff;
	text-align:center;
	display:block;
	margin:0;
	 -webkit-transition: all 300ms -in-out;
     -moz-transition: all 300ms -in-out;
     transition: all 300ms -in-out;
}
.fixbutton a:hover{
	background-color:var(--black);
}
.fixbutton h5 {
    width: 100px;
    top: 7px;
	right:50px;
    background-color:var(--secondary-color);
	line-height:12px;
    border-radius: 5px;
	font-size:12px;
	padding:10px;
	position:absolute;
	z-index:-1;
	margin:0;
	-webkit-transition: .3s -in-out;
    -moz-transition: .3s -in-out;
    transition: .3s -in-out;
	opacity:0;
}
.fixbutton a:hover h5{
	 right:60px;
	 opacity:9;
}

.fixbutton h5:before{
	  width: 0;
      height: 0;
      border-top: 10px solid transparent;
      border-left: 10px solid  var(--secondary-color);
      border-bottom: 10px solid transparent;
	  position:absolute;
	  top:5px;
	  right:-5px;
	  content:''
	  }
 
.cal{
	 background-color:var(--secondary-color);
 }
.fixbutton .write{
	background-color:var(--primary-color) !important;
}
a:hover.write {
	background-color:var(--secondary-color);
}
/**********************Reviews**********************/
 
 
.m0-p0{
	margin:0 !important;
	padding:0 !important;
	color:#fff;
	}
/*********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;
}
 
  

 .insta-grid{   
    display: grid;
    grid-gap:1px;
    grid-template-columns: repeat(8, 1fr);
	margin-top:1px;
    }
 .insta-grid div img{   
    width:100%;
	display:block;
    }
	
/*********YOUTUBE *************/


.embed-responsive {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
}

.embed-responsive::before {
  display: block;
  content: "";
}

.embed-responsive .embed-responsive-item,
.embed-responsive iframe,
.embed-responsive embed,
.embed-responsive object,
.embed-responsive video {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.embed-responsive-21by9::before {
  padding-top: 42.857143%;
}

.embed-responsive-16by9::before {
  padding-top: 56.25%;
}

.embed-responsive-4by3::before {
  padding-top: 75%;
}

.embed-responsive-1by1::before {
  padding-top: 100%;
}	
/*************** footer CSS ***************/
 
.footer {
	padding:80px 0;
	font-size:14px;
	
}


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


.footer-left{
	width:30%;
}
.footer-right{
	width:60%;
	display: flex;
	flex-wrap: wrap;
	gap:0 25px;
	justify-content: space-between;
}
.footer-col{
	width:28%;
}
.footer-col ul{
	margin:0;
	padding:0;
	list-style:none;
	text-transform:uppercase;
}
 .footer-col ul li{
 	margin:5px 0;
 } 
 .footer-logo{
 	width:240px;
 }
  
.lower-footer{
	width: 100%;
    display: flex;
    flex-wrap: wrap; 
	justify-content: center;
	justify-content: space-between;
	align-items: center;
	padding:20px 0;
	border-top:1px solid var(--black);
	margin-top:50px;
	
 
	}
	
.copy, .powered, .lower-footer .social{
	text-transform:uppercase;
	font-size:14px;
	letter-spacing:1px;
}
.lower-footer .social a{
	border:1px solid var(--primary-color) !important;
	}
 .powered{
 	text-align:right;
 }

/***********social ***********/
.social {
	display:flex;
	vertical-align:middle;
	gap:0 10px;
 
}
.social a  {
	width:56px;
	height:56px;
	line-height:56px;
	border-radius: 50%;
	text-align:center;
	color:var(--primary-color);
	font-size:18px;
	display:inline-block;
	text-align:center;
	background-color:var(--secondary-color);

}
.social a:hover  {
	color:var(--white);
	background-color:var(--primary-color);
	

}
   

 /**********************/
 .address-box{
	padding:30px;
	background-color:var(--primary-color);
	color:var(--white);
	} 
 
.add{
	width:100%;
	position:relative;
	padding:0 0 0 60px;
	min-height:30px;
	margin-bottom:20px;
	vertical-align:top;
	line-height:24px;
	font-size:14px;
 }
 
 .add h2{
 	font-size:16px;
	line-height:24px;
	font-weight:normal;
	font-family:var(--demi-font);
	margin:0 0 10px 0;
 
 }
.add i{
	width:35px;
	height:35px;
	line-height:35px;
	background-color:var(--white);
	color:var(--primary-color);
	font-size:14px;
	margin:0;
	position:absolute;
	left:0;
	top:0;
	text-align:center;
	border-radius: 50px;
 
	
}
 .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(--white);
	}
.add a:hover{
	color:var(--secondary-color);
	}

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

.head-no{
	display:inline-block;
	margin-right:20px;
	font-family:var(--body-font);
 
	}
.listing{
	margin:0;
	padding:0;
	list-style:none;
	
}	
.listing li{
	margin:0;
	list-style:none;
	line-height:normal;
	padding:50px;
	font-size:24px;
	margin-bottom:20px;
	background-color:rgba(0, 0, 0, 0.1);
	
}	
.listing li h2{
	font-size:30px;
	font-family:var(--heading-font);
}
.listing li ul{
	margin:0;
	padding:0;
}
.listing li ul li{
	margin:0;
	padding:15px 0 15px 35px;
	background-color:transparent;
	border:0;
	border-bottom:1px solid var(--black);
	font-size:18px;
	line-height:normal;
	background-image: url(../images/icons/arrow.svg);
	background-repeat: no-repeat;
	background-position: left 25px;
	background-size:20px;
	
}
 .listing li ul li:last-child{
 	border-bottom:0;
 }
/******************************/

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

ul.list li {
	list-style: none;
	padding:0 0 0 50px;
	line-height: normal;
	margin:0 0 20px 0;
	position: relative;
	color:var(--white);
	vertical-align:middle;
}

ul.list li:before {
	/*content: "\f111";*/
	/*content: "\f138";*/
	width:40px;
	height:40px;
	background-image: url(../images/icons/arrow-white.svg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size:40%;
	position: absolute;
	content:'';
	top:-5px;
	left: -5px;
	font-family: "FontAwesome";
	color: var(--white);
	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:450px;
	 padding-bottom:25px;
	overflow:hidden;	 
	display: flex;
	flex-direction:column;
	position: relative;
	align-items: center; 
	 justify-content: flex-end;
	background-repeat: no-repeat;
	background-position: center center;
	-moz-background-size: cover;
	-webkit-background-size: cover;
	-o-background-size: cover;
	background-size: cover; 
	background-image: url(../images/backgrounds/banner.png);
	border-bottom:1px solid var(--primary-color);
	 
 
}
/*.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(--primary-color);
	font-family:var(--heading-font);
	text-transform:uppercase;
	font-size:40px;
	line-height:normal;
	margin:0 0 10px 0;
	padding:0;
	position:relative;
	z-index:2;
}


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

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

}
 
.breadcrumb ul {
    border-radius: 50px;
	display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 5px 20px;
	background-color:var(--primary-color);
 

}
.breadcrumb li {
    margin: 0;
	font-size:12px;
	text-transform:uppercase;
	color:var(--white);
	font-family:var(--font-medium);
 
	 
}    
.breadcrumb li:not(:last-child)::after {
    display: inline-block;
    margin: 0 15px;
    /*content: " → "; */
	 content: " / "; 
	 
}
 .breadcrumb a{
   color:var(--white);
}
 .breadcrumb a:hover{
   color:var(--secondary-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:20px 20px;
	border:1px solid var(--primary-color);
	background-color:transparent;
	color:var(--black);
	display: block;
	margin: 0;
	font-size: 16px;
 
}

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

.sendbutton:hover {	
	background-color:var(--black);
 
}

 
 

::-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: 9999999999999;
     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;
}


 
/************************************* 1400px *************************************/

@media only screen and (max-width: 1280px) {
.container {
	width: 100%;
	padding:0 25px;
}
  
.intro-img{
	width:300px;
 
 
}
}
/************************************* 1024px *************************************/
@media only screen and (max-width: 1024px) {

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


   

}

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

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

 
}

/************************************* 640px *************************************/
@media only screen and (max-width: 768px) {
 
 
.vertical-text-scroll{
	display:none;
}
 
 header{	 
	 padding:15px 25px;
	 background-color:var(--white);
	 position:relative;
	 left:auto;
	 top:auto;
}
 header.smaller {
	position: fixed;
	padding:10px 25px;
	left:0;
	top:0;
}
 header:before{
	 display:none;
 }
 
.logo, header.smaller .logo { 
	width:130px;
	position:relative;
	transition: all 0.4s ease;
 
}
 .hero-split {
	flex: 0 0 100%;

	
}
.hero-section-row {
	align-items:inherit!important;
	flex-direction: column-reverse;
}


.hero-content {
	padding:25px;
	text-align:center;
	justify-content: center;
	flex-direction:column;
	 
}
.hero-content h2{
	font-size:26px;
	line-height:26px;
 
}
.hero-content h2 span{
	font-size:20px;
	}
.associate{
    justify-content: center;
	margin-top:20px;
	text-align:left;
}
.aster-logo img{
	width:50px;
}	
.heading{
	font-size:26px;
	line-height:28px;
}

.subheading {
	font-size: 20px;
	line-height:30px;
}
.subtitle{
	font-size: 18px;
	line-height:22px;
}
 .social {
	gap:0 5px;

}
.social a  {
	width:30px;
	height:30px;
	line-height:30px; 
	font-size:14px;
}
.intro{
	padding:50px 0;
	}
 	
 .vertical-line{
	display:none;
}

.intro-img{
	width:100%;
	position:relative;
	left:auto;
	top:auto;
	padding:25px 0;
 
}
 .intro-img img{
	width:300px;
 
}


.journey-section{
	padding:50px 0;
	height:auto;
}
 
.notification:before{
	display:none;
 
}
.notification{ 
	height:auto;	 
	padding:25px;
	align-items: center;
	height: max-content;
	top:auto;
	position:relative;
	margin-bottom:10px;
}

 
 
 
.res-free-gap{
	height:auto;
}
.year{
	position:relative;
	height:auto;
	width:100%;
	text-align:left;	
	left:auto;
	top:auto;
	background-image: none;
	padding:0;
	margin:0 0 15px 0;
 
} 
.year span{
 	writing-mode:inherit;
	-webkit-transform: rotate(0deg);
   color:var(--tertiary-color);
  }
  
 .four-block{     
    grid-gap:40px;
    grid-template-columns: repeat(2, 1fr);
    }
 .four-block div:nth-child(even){
   margin-top:50px;
}  

.video-section {
	 
	padding:50px 0;
}
 .video-bt{
	width:100px;
	height:100px;
}
.video-des{
	font-size:16px;
	padding:20px;
	background-color:rgba(0, 0, 0, 0.5);
}
  .news-style{
  	padding:0 20px;
	 
}
 
 
.footer {
	padding:50px 0;
}
 
.footer-left, .footer-right{
	width:100%;
}
 
.footer-col{
	width:100%;
}
  
 .footer-logo{
 	margin-bottom:25px;
	width:150px;
 }
  
.lower-footer{
	padding:15px 0;
	margin-top:0;
}
	
.copy, .powered, .lower-footer .social{
	text-align:left;
	width:100%;
	padding:10px 0;
}
 .insta-grid{        
    grid-template-columns: repeat(4, 1fr);
	 grid-gap:2px; 
    }
	
/****************SCROLLING TEXT***************/
 
 .scrolling-text-wrap {
   padding:40px 0;
 
 }
 
 
.scroll h2 {
  font-size: 24px;
  line-height:26px;
 
}
 

.RightToLeft {
  animation: RightToLeft 10s infinite linear;
}

 

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

 
.banner {  
	height:150px;
	padding-bottom:25px;
	 
	justify-content: flex-end;
}
 .banner h2 {
	font-size:20px;
	line-height:24px;
	margin:25px 0 10px 0;
	width:50%;
}
 
.breadcrumb ul {
    margin: 0;
	padding: 5px 10px;
}
.breadcrumb li {
	font-size:10px;
	line-height:10px;
} 
.breadcrumb li:not(:last-child)::after {
    margin: 0  5px;
 
	 
} 
.listing li{
	padding:20px;
	font-size:20px;
 
	
}	
.listing li h2{
	font-size:24px;
	 
}
 
.listing li ul li{
	font-size:16px;
 
	
}
 .listing li ul li:last-child{
 	border-bottom:0;
 }
 
.link a,  .link-white a {
	font-size: 10px; 
	padding: 5px 40px  5px 10px;
	 
}

.link a:before{
	width:30px;
	height:30px;
	position:absolute; 
	top:2px;
	right:10px;
	content:'';
	z-index:2;
 	background-size:45%;
 
}	
 .boxy{
	 padding:25px;
 
} 
}

/************************************* 640px *************************************/
@media only screen and (max-width: 640px) {
  .intro-img img{
	width:100%;
 
}
 .four-block{     
    grid-gap:20px 0px;
    grid-template-columns: repeat(1, 1fr);
    }
 .four-block div:nth-child(even){
   margin-top:0;
} 
}

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

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

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