@charset "utf-8";
  
@font-face {
    font-family: 'PPMoriRegular';
    src: url('../fonts/PPMoriRegular.eot');
    src: url('../fonts/PPMoriRegular.eot') format('embedded-opentype'),
         url('../fonts/PPMoriRegular.woff2') format('woff2'),
         url('../fonts/PPMoriRegular.woff') format('woff'),
         url('../fonts/PPMoriRegular.ttf') format('truetype'),
         url('../fonts/PPMoriRegular.svg#PPMoriRegular') format('svg');
}
 
/*************** DEFAULT CSS ***************/
:root {
	--body-font: "PPMoriRegular", sans-serif;
	--body-color: #000;
	--primary-color: #0066B2;
	--secondary-color: #32B34A;
	--tertiary-color: #DEF1FF;
	--quaternary-color:#DAFFE1;	
	--black: #000;
	--white: #fff;
	--grey: #DCDDDE;	
	--grey-light: #F8F8F8;
	--grey-dark: #6D6D6D;		 	 
	--font-light:300;
	--font-normal:400;
	--font-medium:500;	
	--font-bold:600;
	--font-heaavy:700;
	--heading-font:"PPMoriRegular", serif;
}

body {

	font-family: var(--body-font);
	font-size: 16px;
	font-style: normal;
	line-height: 24px;
	/*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;
}

html {
	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(--grey-dark);
}

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: 50px 0px;
	height: 1px;
	border: 0;
	border-top: 1px solid var(--black);
	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------------*/
 
.bg-gradient{
	background-image: linear-gradient(to right, var(--primary-color), var(--secondary-color));
	color:var(--white)!important;	 
}
.bg-primary {
	background: var(--primary-color);
	color:var(--white)!important;	 
	 
}
.bg-secondary {
	background: var(--secondary-color);
 
}

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

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

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

.loader {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background-color: var(--primary-color);
  z-index: 999999999;
  display: flex;
  justify-content: start;
  align-items: start;
  gap: 15px;
  transition: 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.startplay {
  cursor: pointer;
}


.loaded {
  transition-delay: 0.5s;
  left: 100%;
}
.loaded .loaderBar,
.loaded .loaderText {
  transition-delay: 0.5s;
  transition: 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  opacity: 0;
  left: 100px;
}
.loaderBar {
  width: 30px;
  height: 0;
  transition: 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: 0;
  border-right: solid 1px var(--secondary-color);
}
.loaderText {
  height: 0;
  font-size: 50px;
  font-weight: 300;
  color: #fff;
  display: flex;
  transition: 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  flex-direction: column;
  line-height: 1;
  justify-content: end;
}
 
/*********************************/

 
.fullheight {
	width: 100%;
	height:100vh;
} 
.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;

}
 

.container{
	width:100%;
	padding:0 35px;
	margin:0 auto;
} 

section {
	width: 100%; 
	display:block;
	position: relative;
	margin:0 auto;
}

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

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

 header{
	 width:100%; 
	 position:absolute;
	 left:0;
	 top:0;
	/* background-color:#FFFFFF;*/
	 padding:20px 0;
	 z-index:5;
	 /* background-image: linear-gradient(to top, rgba(255,255,255,0), rgba(255,255,255,1));*/
	 transition: all 0.4s ease;
}
  
.header{
    width:100%;
	display: flex;
    flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}
 
 
.logo { 
	width:120px;
	position:relative;
	transition: all 0.4s ease;
 
}
 
.logo img {
	width:100%;
	display:block;
}
 
  
 /************HERO SECTOIN********/ 
.hero-section{
	width:100%;
	height:100vh;
	display:flex;
	align-items: flex-end;
	 
}
.banner-section{
	width:100%;
	height:100vh;
	display:flex;
	align-items: center;
	background-color:var(--grey-light);
	/*color:var(--white);*/
 
 
	 
}
.hero-section h1, .banner-section h1{
	font-size:66px;
	line-height:normal; 
	
}
.white{
	filter: brightness(0) invert(1);
}
.hero-footer{
	display:flex;
	justify-content: space-between;
	padding-bottom:60px;
	margin-bottom:60px;
	border-bottom:1px solid var(--black);
}

.counting{	 
	margin:0;
}

.counting ul{
	display:flex;
	margin:0;
	padding:0;
	list-style:none;
}

.counting ul li{
	border-right:1px solid var(--black);
	font-size:16px;
	padding:0 50px;
}
.counting ul li:last-child{
	border-right:0;
}
.counting ul li h2{
	font-size:176px;
	line-height:176px;
	margin:0;
	 
}
.st{
	font-size:40px;
	color:var(--secondary-color);
	display:inline-block;
	margin-left:20px;
}
.keywords{
	font-size:16px;
	align-self: end;
}

 
/***********social ***********/
 
.link {}

.link a {
	
	min-width:230px;
	color:var(--primary-color);
	font-size: 16px;
	line-height:normal;
	padding: 15px 80px  15px 30px;
	font-style: normal;
	display: inline-block;
	position: relative;
	margin:0;
	border-radius: 50px;
     color:var(--white);
	border:1px solid var(--white);
}


.link a:before{
	width:30px;
	height:30px;
	position:absolute;	
	top:10px;
	right:15px;
	content:'';
	z-index:2;
	transform: rotate(0deg); 
	background-image: url(../images/icons/arrow-white.svg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size:18px;
	-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(--primary-color);
		color:var(--white);
} 


.caps{
	text-transform:uppercase;
}
 
.heading{
	font-size:66px;
	line-height:normal;
}
 
.subheading {
	font-size: 36px;
	line-height:normal; 
}
.subheading span{
	  color:var(--secondary-color);
	  }
.number	{
	display:inline-block;
	padding-right:30px;
	position:relative;
}
.number:before{
	width:20px;
	height:1px;
	position:absolute;
	right:0;
	top:50%;
	content:'';
	background-color:var(--black);
}
.subtitle{
	font-size: 24px;
 
}
.bold, strong{
	font-weight:bold;
}
.text-small{
	font-size:14px;
}
  
/****************************/
  
.pos-rel{
	position:relative;
}
 
/*******************HOME PAGE SETTINGS******/

.service-row{ 
    width: 100%;
    display: flex;
    flex-wrap: wrap; 
	justify-content: space-between;
	border-bottom:1px solid var(--black);
	padding-bottom:25px;
	margin-bottom:25px
}
 
.service-col{
	width:48%;	
	aspect-ratio: 1 / .5; 
	transition: all 0.4s ease;
	display:flex;
	flex-wrap: wrap; 
	padding:25px;
	position:relative;
 
}
.service-col:hover{
	background-color:var(--grey-light);
	}
.service-col h2{
	font-size:36px;
	line-height:normal;	
}
.service-col h2 span{
	 color:var(--secondary-color);
	
}
.service-col .head{}

 
.arrow-bt{
	width:40px;
	height:40px;
	display:block;
	background-image: url(../images/icons/arrow.svg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size:70%;
	position:absolute;
	bottom:25px;
	right:25px;
}

.estd-year{
	 width:100%;
	 border:1px solid var(--black);
	 border-radius: 50%;
	 aspect-ratio: 1 / 1;
	 position:relative;
	 transition: all 0.15s ease;
	 display:flex;
	 flex-wrap: wrap;
	 flex-direction:column;
	 padding:25px;
	 align-items: center;
	 text-align:center;
	 justify-content: center;
	 overflow:hidden;
}
.estd-year h2{
	font-size:86px;
	line-height:normal;
	margin:0;
	
}
.estd-year:before{
	width:100%;
	height:100%;
	border-radius: 50%;
	position:absolute;
	left:0;
	bottom:-100%;
	content:'';
	background-color:var(--secondary-color);
	transition: all 0.4s ease;
	z-index:-1;
}
.estd-year:hover:before{
	bottom:0;
}
.estd-year:hover {
	color:var(--white);
	 
}

/***********PORTFOLIO************/

 .folio-grid{   
    display: grid;
    grid-gap:20px;
    grid-template-columns: repeat(2, 1fr);
    }
 .folio-footer{
 	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 0 20px;
	padding:20px 0;
  }	
  
  
  .folio-footer h2{
  	font-size:24px;
	line-height:normal;
  }

 .folio-footer h3{
  	font-size:16px;
	line-height:normal;
  }
  
.folio-grid .item img{
  	width:100%;
	display:block;
  }
/****************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%);
  }
}

 
  
  /********************services scroller**********************/
  
.display-style{ 
     width: 100%;
	 aspect-ratio: 1 / 1;
     overflow: hidden;	 
	 position:relative;
	 z-index:2;
	 padding:40px;
 	 transition: all 0.4s ease;
}
  
.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-medium);
	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(--secondary-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;
}


 
  
  
/**********************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;
}
 
.googlemap{
	width:100%;
	height:50vh;
	border:0;
	outline:none;
	margin:0;
	padding:0;
	display:block;
} 


/*************** footer CSS ***************/
 
.footer {
	padding:100px 0 ;
	justify-content: space-between;
    display: flex;
    flex-wrap: wrap;
}

.text-underlined{
	display:inline-block;
	padding:0 0 10px 0;
	border-bottom:1px solid var(--white);
} 
.banner-section .text-underlined{
	border-bottom:1px solid var(--black);
}
.footer-col{} 

.fivepoint-logo{
	filter: brightness(0) invert(1);
	width:120px;
	display:inline-block;
}
.lower-footer{
	 border-top:1px solid rgba(255, 255, 255, 0.2);
	 display: flex;
	 justify-content: space-between;
	 align-items: center;
	 padding:30px 0;
	 margin-top:30px;
}

.copyright{}
.social {
	display:flex;
	gap: 0 10px;
	}
.social a  {
	width:50px;
	height:50px;
	display: flex;
	text-align:center;
	justify-content: center;
	align-items: center;
	border-radius: 50%;
	color:var(--white);
	font-size:20px;
	border:1px solid var(--white);
 
 
 

}
.social a:hover  {
	border:1px solid var(--secondary-color);
	background-color:var(--secondary-color);

}

 
  
 /**********************/
 .address-box{
	padding:30px;
	border-radius:20px;
	border-bottom:4px solid var(--secondary-color);
	/*background-image: linear-gradient(to top right, var(--primary-color), 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 h2{
 	font-size:20px;
	line-height:24px;
	font-weight:var(--font-bold);
	color:var(--primary-color);
	margin:0;
	line-height:normal;
 }
.add i{
	width:35px;
	height:35px;
	line-height:35px;
	background-color:var(--tertiary-color);
	border-radius: 5px;
	color:var(--primary-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(--white);
	}
.add a:hover{
	color:var(--tertiary-color);
	}
/******************************/

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

ul.list li {
	list-style: none;
	padding:0 0 0 25px;
	line-height: normal;
	margin:10px 0;
	position: relative;
}

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

/*****************************/
 
 
.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:50vh;
	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.jpg);
 
}
.banner:after{
	width: 100%;
	height:5%;
	position:absolute;
	left:0;
	top:0;
	content:'';
	z-index:1;
	background-image: linear-gradient(to top, rgba(255,255,255,0), rgba(255,255,255,1));
	opacity:0.5;
}
.banner h2 {
	color:var(--white);	
	font-weight:var(--font-bold);
	text-transform:uppercase;	
	font-size:40px;
	line-height:40px;
	margin:50px 0 0 0;
	padding:0;
	position:relative;
	z-index:2;
}
 
 
 /*****************************/

.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: 20px 0 0 0;
    padding: 5px 20px;
	background-color:var(--white);
}

.breadcrumb li {
    margin: 0;
	font-size:12px;
	text-transform:uppercase;
	color:var(--grey-dark);
	font-weight:var(--font-bold);
 } 
    
.breadcrumb li:not(:last-child)::after {
    display: inline-block;
    margin: 0 15px;
    /*content: " → "; */
	 content: " / "; 
	 
}
 .breadcrumb a{
   color:var(--grey-dark);	
}
 .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;
}
.fixb-bg{
	background-attachment:fixed !important;
}  

/*********************/
 
 .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 0;
	border:0;
	border-bottom:1px solid var(--black);
	background-color:var(--white);
	color:var(--black);
	display: block; 
	margin: 0;
	font-size: 16px;
 
}

.sendbutton {
	border-radius: 50px;
	color: var(--black);
	font-size: 30px;
	border:0;
	padding: 20px 30px;
	font-style: normal;
	display: inline-block;
	position: relative;
	border:1px solid var(--black);
	background-color:var(--white);
	margin:0;
	 
}

.sendbutton:hover {	
	background-color:var(--secondary-color);
	border:1px solid var(--secondary-color);
	color:var(--white);
 
}
 
::-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);
}
 


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

@media only screen and (max-width: 1480px) {
 
 .container{
	width:100%;
	padding:0 25px;
	margin:0 auto;
}
 
}
@media only screen and (max-width: 1280px) {
.estd-year h2{
	font-size:50px;
}
  .folio-footer h2{
  	font-size:20px;
	 
  }

 .folio-footer h3{
  	font-size:14px;
 
  }
}
/************************************* 1024px *************************************/
@media only screen and (max-width: 1024px) {

.hero-section h1, .banner-section h1{
	font-size:40px;
	line-height:40px;
}

 .section-spacing{
	 padding:50px 0;
 }
 
 
.counting ul li:last-child{
	border-right:0;
}
.counting ul li h2{
	font-size:60px;
	line-height:60px;
	margin:0;
}

}

/************************************* 980px *************************************/
@media only screen and (max-width: 980px) {
.estd-year h2{
	font-size:30px;
}
}

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

 
}

/************************************* 767px *************************************/
@media only screen and (max-width: 768px) {
 
.logo { 
	width:100px;
	 
}
.estd-year{
	 width:300px;
	 height:300px;
	 margin:0 auto;
	 aspect-ratio:inherit;
	 
}
.estd-year h2{
	font-size:50px;
	line-height:normal;
	margin:0;
}
.fullheight {
	height:auto;
}
.heading {
	font-size: 28px;
}
.subheading {
	font-size: 22px;
 
}
.subtitle {
	font-size:18px;
} 
}

/************************************* 640px *************************************/
@media only screen and (max-width: 640px) {
.hero-section h1, .banner-section h1{
	font-size:30px;
	line-height:30px;
}
.hero-footer{
	flex-direction:column;
	padding-bottom:50px;
	margin-bottom:50px;
	gap:20px 0;
	 
}

.counting, .keywords{
	width:100%;
}
.counting ul li h2{
	font-size:40px;
	line-height:40px;

}
.counting ul li{
	padding:0 20px;
	width:50%
}
.service-col{
	width:100%;	
	aspect-ratio:inherit;	
	padding:25px 0 50px 0;
}
.service-col h2{
	font-size:30px;

}
 .folio-grid{   
    grid-gap:10px 0;
    grid-template-columns: repeat(1, 1fr);
    }
}

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

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

/************************************* 320px *************************************/
@media only screen and (max-width: 320px) {
.estd-year{
	 width:280px;
	 height:280px;
 
	 
}
}