@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Instrument+Serif:ital@0;1&family=Sacramento&family=Unbounded:wght@200..900&display=swap');
 
 
 /****
 font-family: "Unbounded", sans-serif;
 font-family: "Instrument Serif", serif;
 font-family: "Sacramento", cursive;
 **/

:root {
	--body-font: "Unbounded", sans-serif;
	--body-color: #000;
	--primary-color: #997F17;
	--secondary-color: #C3A632;
	--tertiary-color: #DABF51;
	--quaternary-color:#F8E184;	
	--black: #000;
	--white: #fff;
	--grey: #DCDDDE;	
	--grey-light: #F8F8F8;
	--grey-dark: #6D6D6D;
	--font-thin:100;		 	 
	--font-light:300;
	--font-medium:400;
	--font-bold:600;
}

body {
	font-family: var(--body-font);
	font-size: 14px;
	font-style: normal;
	line-height:24px; 
	font-weight: var(--font-light);
	color: var(--body-color);
	text-decoration: none;
	margin: 0px;
	-webkit-font-smoothing: antialiased;
	padding: 0;
	background: var(--white); 
	background-attachment:fixed;
	 
}


/* *********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;
	transition: all 0.4s ease;
}

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

p {
	margin: 0px 0 20px 0;
	clear: left;
	padding: 0;
 
}

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

.hr {
	margin: 20px 0 50px;
	height: 1px;
	width: 100%;
	height:1px;
	background-color:var(--grey);
}
 
img {
	max-width:100%;
	border: 0;
	transition: all 0.4s ease;
}

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 top right, 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;
            width: 100%;
            height: 100%;
            background-color: #ffffff;
            z-index: 9999; /* Ensure it sits on top of everything */
            display: flex;
            justify-content: center;
            align-items: center;
            transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
        }
 
.spinner {
            width: 30px;
            height: 30px;
            border: 3px solid #f3f3f3; 
            border-top: 3px solid var(--primary-color); 
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }

        /* Keyframes for rotation */
@keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        /* Hide class to be added via JS */
 #preloader.hidden {
            opacity: 0;
            visibility: hidden;
        }


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

.container {
	width: 1600px;
	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;
    transition: all 0.4s ease;
}
 .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%);
    transition: all 0.4s 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;
  transition: all 0.4s ease;
}

.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:50px 0;
 }
.sticky{
 	position: -webkit-sticky !important;
	position: sticky !important;
	top: 100px;
	width:100%; 
}

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

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

.header{
    width:100%;
	display: flex;
    flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	position:relative;
	padding-right:80px;
}
 .logo { 
	width:110px;
	position:relative;
	transition: all 0.4s ease; 
}
 
.logo img {
	width:100%;
	display:block;
}
header.smaller .logo {
	width:80px;
}
.nav-group, .header-right{
	display: flex;
    flex-wrap: wrap;
	align-items: center;
	gap:0 20px;
	} 
 .header-right{
 	gap:0 40px;
 }

.header-right a{
	display: flex;
    flex-wrap: wrap;
	align-items: center;
	gap:0 10px;
	font-size:12px;
	font-weight:var(--font-bold);
	text-transform:uppercase;
}  
 .header-right a i{
	 width:38px;
	 height:38px;
	 display: flex;
	 justify-content: center;
	 align-items: center;
	 font-size:14px;
	 border-radius:50%;
	 border:1px solid var(--primary-color);
}    
 
/***********social ***********/
 
.link {}

.link a {
	
	height:45px;
	border:1px solid var(--black);
	color:var(--grey-dark);
	font-size: 12px; 
	padding: 0  70px 0 30px;
	font-style: normal;
	display: inline-flex;
	align-items: center;
	position: relative;
	overflow:hidden;
	margin:0;
	border-radius: 50px;	
	font-weight:var(--font-medium);
	transition: all 0.4s ease;

}
.link a:hover {
	border:1px solid var(--primary-color);
	background-color:var(--primary-color);
	color:var(--white);
}
.link a:before{
	width:44px;
	height:100%; 
	border-radius: 50px;
	position:absolute;	
	top:0;
	right:0;
	content:'';
	z-index:1;
	transition: all 0.4s ease; 
	background-size:40%;
	background-image: url(../images/icons/arrow.svg);
	background-repeat: no-repeat;
	background-position: center center;	 	
} 
 
.link a:hover:before{
	right:5px;
	filter: brightness(0) invert(1);
	
}
 .link a span{
 	position:relative;
	z-index:2;
	display:inline-block;
 }
 
.caps{
	text-transform:uppercase;
}
 
.heading-font{
 	font-family:var(--font-bold);
 }
 
.heading{
	font-size:70px;
	line-height:90px;
	 
	 
}
.heading span{ 
	font-family:var(--medium);
	
}
.subheading {
	font-size: 26px;
	line-height:normal; 
	font-family:var(--medium);
	color:var(--primary-color);
}
 
.subtitle{
	font-size: 18px;
	line-height:24px;
}
.bold, strong{
	font-family:var(--font-bold);
}

.section-title{
	display: flex;
    flex-wrap: wrap;
	justify-content: center;	 
}
 .section-title span{
	display:flex;
	justify-content: center;
	text-align:center;
	font-weight:var(--font-bold);
	font-size:40px;
	line-height:normal;
	position:relative;
	margin-bottom:20px;
	padding-bottom:40px;
}
 .section-title span:after{
	width:70px;
	height:20px;
	position:absolute;
	left:50%;
	bottom:0;
	margin-left:-35px;
	content:'';
	background-image: url(../images/icons/arc.svg);
	background-repeat: no-repeat;
	background-position: center center;
 }
 
  .title-big{
  	font-size:70px !important;
  }
  


/************project grid**************/

 .project-grid-gallery{   
    display: grid;
    grid-gap:0;
    grid-template-columns: repeat(4, 1fr);
	margin-left:2px;
	overflow:hidden;
	padding-top:2px;
    }
 
.project-grid-gallery .item{   
   	border:1px solid var(--grey);
	padding:28px;
	position:relative;
	margin:-1px 0 0 -1px;
    } 
.project-info{
	width:100%;
	position:absolute;
	left:0;
	bottom:0;
	z-index:2;
	background-image: linear-gradient(to bottom, rgba(0,0,0,0), rgba(0,0,0,1));
	font-size:14px;
	line-height:14px;
	padding:15px 20px;
	text-align:center;
	color:var(--white);
} 
.details-style{
	font-size:16px;
	margin:0 0 20px 0;
	padding:0 0 20px 0;
	border-bottom:1px solid var(--grey);
} 
.details-style span{
	font-size:12px;
}
/***********setps**************/

.process{
    width:100%;
	display: flex;
 	flex-wrap: wrap; 
	gap:0 20px;
	justify-content: space-between;
	padding:50px 50px 50px 0;
	border-bottom:1px solid var(--grey);
	}

.process:last-child{
	padding:50px 50px 0 0;
	border-bottom:0;
	}
.process-head{
	flex:0 0 30%;
	font-size:24px;
	line-height:normal;
	font-weight:var(--font-medium);
	 
}
.process-content{
	flex:0 0 40%;
}
.process-number{
	width:100px;
	height:100px;
	border-radius: 50%;
	background-color:var(--primary-color);
	color:var(--white);
	font-size:40px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: "Instrument Serif", serif;
	font-style:italic;
	font-weight:var(--font-thin);
}
/*******************************/

.client-speak{
	border-left:1px solid var(--grey);
	padding:20px  0 20px 20px;
	
}
.client-speak-inner{
	display: flex;
    flex-wrap: wrap; 
	background-color:#E8E8E8;
	padding:100px;
	text-align:center;
	justify-content: center;
	align-items: center;
	flex-direction:column;
}
.client-speak-inner .quote{
	font-family: "Instrument Serif", serif;
	padding:130px 0 40px 0;
	margin:0 0 35px 0;
	border-bottom:1px solid var(--black);
	font-size:28px;
	line-height:normal;
	background-size:88px;
	background-image: url(../images/icons/quote.svg);
	background-repeat: no-repeat;
	background-position: center top;
	}
.client-info{}
.client-info h2{
	font-family: "Sacramento", cursive;
	font-size:30px;
 
}
.client-info h3{
	font-family:var(--body-font);
	font-size:12px;
	font-weight:var(--font-medium);
}

/***************service blocks********/


.service-section{
	border-top:1px solid var(--grey);
	border-block:1px solid var(--grey);
	padding:20px 0;
}
.service-block{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
	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/bg1.jpg);
	}

.service-block .item{
	display:flex;
	flex-direction:column;
	justify-content: center;
	text-align:center;
	padding:80px 50px;
	transition: all 0.4s ease;
	
}
.service-block .item:hover{
	background-color:rgba(0, 0, 0, 0.5);
}
.service-block .item h2{
	margin:0;
	padding:0;
	font-size:40px;
	color:var(--white);
	line-height:normal;
	font-weight:var(--font-medium);
}
.service-block .item:hover h2{
	color:var(--primary-color);
}
.icon-row{
	 
}
.icon-row img{
	width:70px;
	transition: all 0.9s ease; 
}
.service-block .item:hover .icon-row img{
	transform: rotate(360deg);
}

/******CLIENT LOGOS*****/

 
.client-logos{
    display: grid;
    grid-template-columns: repeat(7, 1fr);
	grid-gap:15px;
}

.client-logos .item{
	display:inline-flex;
	padding:10px;
	transition: all 0.9s ease;
	border:1px solid  var(--grey);
}
.client-logos .item:hover{
	border:1px solid  var(--grey-light);
	background-color:var(--grey-light);
	transform: scale(1.08);
}

.client-logos .item img{
	width:100%;
	transition: all 0.4s ease; 
 
}
.client-logos .item img:hover{
	 
	filter: grayscale(100%);  
    -webkit-filter: grayscale(100%);
}
/****************************/
  
.pos-rel{
	position:relative;
}
 
 /****************.dec-para**************/
 
 .dec-sentence{
 	padding:0 0 0 50px;
	position:relative;
	border-left:1px solid var(--grey);
 }
 .dec-sentence:before{
 	width:3px;
	height:50px;
	position:absolute;
	left:-1px;
	top:0;
	content:'';
	background-color:var(--primary-color);
 } 
 
 .dec-sentence .hr {
	margin: 10px 0;
	height: 1px;
	width: 100%;
	height:1px;
	background-color:var(--grey);
 
}


.team-style{
	text-align:center;
}
.team-style h2{
	font-weight:var(--font-bold);
	font-size:18px;
	line-height:normal;
	margin:0 0 10px 0;
	 
}
.team-style p{	 
	font-size:12px;
	line-height:normal;
	font-size:12px;
}
.team-style p:last-child{
	margin:0;
	
}

.leaders-info{
	padding:0;
 
}	 
 .leaders-info h2{
	 color:var(--primary-color);
	 font-size:20px;
	 font-family:var(--font-bold);
}
.leaders-info p{
	margin:0;
	font-size:12px;
	 
}

/*********PROJECT STYLE SETTINGS ****************/
 .projects-grid{
    display: grid;
    grid-gap:30px;
    grid-template-columns: repeat(3, 1fr);
	
	}
	
 .projects-grid .item{
	 background-color:var(--grey-light);
	 padding:20px;
	 transition: all 0.4s ease;
}
 .projects-grid .item:hover{
 	background-color:var(--primary-color);
	color:var(--white);
 }

 .projects-grid .item a{
 	color:var(--black);
 }
 .projects-grid .item a:hover{
 	color:var(--white);
 }
 .pro-info{
	padding:30px 50px 15px 0;
	font-size:14px;
	position:relative;
	 
}
.pro-info h2{
	font-size:14px;
	line-height:normal;
	margin:0 0 10px 0;
	 
}
.pro-info h2 span{
	font-size:12px;
}
.down-arrow{
	width:30px;
	height:30px;
	position:absolute;
	bottom:0;
	right:0;
	z-index:2;
	background-image: url(../images/icons/arrow.svg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size:25px;
	transform: rotate(45deg);
	transition: all 0.4s ease;
}
 .projects-grid .item a:hover .down-arrow{
 	transform: rotate(-45deg);
	filter: brightness(0) invert(1);
 }
/****************SCROLLING TEXT***************/
 
 .scrolling-text-wrap {
  width:100%;
  border-top:1px solid var(--grey);
  border-bottom:1px solid var(--grey);
  padding:60px 0;
  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: 22px;
  line-height:22px;
  font-weight:var(--font-bold);
  margin:0;
}
.scroll h2 span{
	width:6px;
	height:6px;
	background-color: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-widget{
  	padding:20px 0;
  	color:var(--body-color);
  }
 .news-widget h2{
  	font-size:18px;
  	line-height:normal;
	margin:0 0 25px 0;
 
  } 
.date{
	font-size:10px;
	line-height:10px;
	text-transform:uppercase;
	margin:0 0 15px 0;	
	vertical-align:middle;
}
.date i{
	font-size:16px;
	color:var(--secondary-color);
	vertical-align:middle;
	margin:-5px 10px 0 0; 
}
.news-widget p:last-child{
  	margin:25px 0 0 0;
  }
  /********************services scroller**********************/
  
 .boxy{
 	padding:40px;
	background-color: #ececec;
 }
.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);	 
	transition: all 0.4s ease;
}
.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;
}

	  
/*********fix buttons**************/ 
.fixbutton{
	width:40px;
	position:fixed;
	border-radius:10px 0 0 10px;
	overflow:hidden;
	top:45%;
	right:0;
	background-color:var(--secondary-color);
	z-index:9;
	 
 
}
.fixbutton a{
	width:40px;
	height:40px;
	line-height:40px;
	background-color:var(--secondary-color);	
	position:relative;
	color:#fff;
	text-align:center;
	border-bottom:1px solid rgba(255, 255,255 ,0.5);
	display:block;
	transition: all 0.4s ease;
	
}
.fixbutton a:hover{
	color:rgba(255, 255,255 ,0.5);
}
.fixbutton h5 {
    width: 100px;
    top: 7px;
	right:50px;
    background-color:var(--black);
	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(--black);
      border-bottom: 10px solid transparent;
	  position:absolute;
	  top:5px;
	  right:-5px;
	  content:''
}
 .fixbutton .fa-whatsapp{
 	font-size:22px;
 }
	  
/*********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{
	transition: all 0.4s ease;
 
}
.float:hover i{
	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;
	transition: all 0.4s ease;
	opacity:0;
}
.float:hover h5{
	 opacity:9;
	 right:60px;
}
 
/*************** footer CSS ***************/
 
.footer {
	margin:0;
	border-top:1px solid var(--grey);
	border-bottom:1px solid var(--grey); 
}

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

.footer-logo{
	width:25%;
	padding:50px 0;
	display: flex;
	justify-content: center;
	border-right:1px solid var(--grey);
}
.footer-logo img{
	width:125px; 
 
 
}
.footer-right{
	width:65%;
 	display: flex;
	padding:50px 0;
	gap:0 20px;
	justify-content: space-between;
}
.footer-right .column{
	 
}
.footer-right .column ul{
	margin:0;
	padding:0;
	list-style:none;	 
}
.footer-right .column ul li{
	margin:0 0 10px 0;
	padding:0;
	 
  
}
.social {
	display:flex;
	gap:0 10px;
}
.social a  {
	width:40px;
	height:40px;
	display:inline-flex;
	justify-content: center;
	align-items: center;
	text-align:center;
	border-radius:50%;
	text-align:center;
	color:var(--black);
	font-size:18px;
}
.social a:hover  {
	color:var(--white) !important;
	background-color:var(--secondary-color);
}
.lower-footer{
	 display: flex;
	 justify-content: space-between;
	 padding:30px 0;
	 font-size:12px;
}
.copy, .powered{}

 /**********************/
 .address-box{
	padding:50px 30px;
	background-color:var(--grey-light);
	border-left:4px solid var(--secondary-color);
}
.add{
	width:100%;
	position:relative;
	padding:0 0 0 60px;
	min-height:30px;
	margin-bottom:20px;
	vertical-align:top;
}
.add:last-child{
	margin-bottom:0;
	}
 .add h2{
 	font-size:16px;
	line-height:20px;
	font-weight:var(--font-bold);	 
	margin:0 0 10px 0;
	line-height:normal;
 }
.add i{
	width:35px;
	height:35px;
	line-height:35px;
	background-color:var(--primary-color);
	border-radius: 50%;
	color:var(--white);
	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;
	 filter: grayscale(100%); /* Make map grayscale */
      -webkit-filter: grayscale(100%);
}

.ext{
	display:inline-block;
	padding-top:10px;
}
.add a{
	color:var(--black);
	}
.add a:hover{
	color:var(--primary-color);
	}
/******************************/

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-outer{
	padding:0 60px;
}
.banner { 
	width: 100%;
	height:60vh;
	padding:0 20px;
	overflow:hidden;	 
	display: flex;
	flex-direction:column;
	position: relative;
	align-items: center;
	justify-content: center;
	margin-bottom:25px;
	 
	/*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 {
  content: "";
  position: absolute;
  bottom:0;  
  left:0;
  width: 100%;  
  height: 160px;  
  z-index:3;
  background-repeat: no-repeat;
  background-position: center bottom;
  -moz-background-size: cover;
  -webkit-background-size: cover;
   -o-background-size: cover;
   background-size: cover;
   background-image: url(../images/backgrounds/shape.svg);
}
.banner:before{
	width:100%;
	height:100%;
	position:absolute;
	left:0;
	top:0;
	content:'';
	background-color:rgba(0, 0, 0, 0.2);
}
 
.banner h2 {
	color:var(--white);	
	font-weight:var(--font-bold);	
	font-size:40px;
	line-height:40px;
	margin:0;
	padding:0;
	position:relative;
	z-index:2;
}
 
 
 /*****************************/

.breadcrumb {   
    display: flex;
	color:var(--white);
	width:100%;
	justify-content: center;
	flex-direction:column;
	margin:0;
	position:relative;
	z-index:2;
}
 
.breadcrumb ul {
	display: flex;
    flex-wrap: wrap;
	justify-content: center;
    list-style: none;
    margin:20px 0 0 0;
	padding:0;
}

.breadcrumb li {
    margin: 0;
	padding:0;
	font-size:14px;
	color:var(--white);
	 
 } 
    
.breadcrumb li:not(:last-child)::after {
    display: inline-block;
    margin: 0 15px;
    /*content: " → "; */
	 content: " / "; 
	 color:var(--white);
	 
}
 .breadcrumb a{
   color:var(--white);
}
 .breadcrumb a:hover{
   color:var(--white);
 
}
 
 
 
 
 
/*************** 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;
}
 
/**************************/
 
.fix-bg{
	background-attachment:fixed;
	background-repeat: no-repeat;
	background-position: center center;
	}
 .bg1 {
	background-image: url(../images/backgrounds/vector-bg-1.png);

	}
 
/**********forms**************/
 
 input.file{
    display: none;
}

.fa-upload{
	margin:0 15px 0 0;
}
.custom-file-upload {
    width:220px;
	border: 0;
    display: block;
    padding: 16px 20px;
    color: #fff;
    cursor: pointer;
    background-color: var(--primary-color);
    /*border-radius: 6px;*/
    border: 1px solid var(--primary-color);
}

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

*:focus {
	outline: none;
}

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

.sendbutton {
	color: var(--white);
	font-size: 20px;
	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;
	text-transform:uppercase;
	font-weight:var(--font-bold);
	 
}

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



.brh-modal {
    width: 50% !important;
}
.brh-container .modal-dialog{
    margin-left: auto !important;
    margin-right: auto !important;
}
.brh-form form{
    margin-left: auto;
    margin-right: auto;
    max-width: 70%;
}
.brh-form form .form-group:first-child {
    margin-top: 0;
}
.brh-form form .form-group {
    margin-top: 20px;
}
.brh-form .sendbutton{
    padding: 17px 30px;
	font-size: 14px;
}
 
/*************** 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;
}


 
/************************************* 1600px *************************************/

@media only screen and (max-width: 1600px) {

 header,  header.smaller{
	 padding:10px 20px;
}
 
.container {
	width: 100%;
	padding:0 20px;
	}
 
 .header-right a .call{
 	display:none;
 }
 .nav-group{
	gap:0;
	} 
 .header-right{
	gap:0 10px;
	margin-right:20px;
	font-size:12px;
}
 .header-right a i{
	 width:30px;
	 height:30px;
	 font-size:10px;
 
} 


}
/************************************* 1400px *************************************/
@media only screen and (max-width: 1400px) {
.nav-group{
	flex-direction: row-reverse;
}

 .heading{
	font-size:30px;
	line-height:34px;
}

.subheading {
	font-size: 24px;
}
.subtitle{
	font-size: 20px;
	line-height:22px;
}
 .section-title span{
	font-size:30px;
}
 .title-big{
  	font-size:30px !important;
  }

.scrolling-text-wrap {
  padding:20px 0;
 
 }
 
  .project-grid-gallery{   
    grid-template-columns: repeat(4, 1fr);
    }
 
.project-grid-gallery .item{    
	padding:15px;
 }
}

/************************************* 1180px *************************************/
@media only screen and (max-width: 1280px) {
.footer-logo{
	width:20%;
	 
}
.footer-right{
	width:75%;
	gap:0 10px;
 
}

}
/************************************* 1180px *************************************/
@media only screen and (max-width: 1180px) {
.process{
	gap:0;
	justify-content: space-between;
	padding:20px 0;
	border-bottom:1px solid var(--grey);
	flex-direction:column;
	}
.process:last-child{
	padding:20px 0;
	}
.process-head, .process-content{
	flex:0 0 100%;
}
.process-head{
	margin:25px 0;
}
.process-number{
	width:70px;
	height:70px;
	font-size:30px;
	order:-1;
}
.client-speak-inner{
	padding:50px;
}
.client-speak-inner .quote{
	padding:100px 0 40px 0;
	margin:0 0 25px 0;
	font-size:24px;
	background-size:80px;
}

.service-section{
	padding:50px 0;
}
.service-block .item{
	padding:40px;
}
.service-block .item h2{
	font-size:30px;
}
.banner-outer{
	padding:0 20px;
}
}


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

 .section-spacing{
	 padding:40px 0;
 }
 
 
.project-grid-gallery .item{    
	padding:10px;
}
.client-logos{
    grid-template-columns: repeat(4, 1fr);
 
}
}

/************************************* 980px *************************************/
@media only screen and (max-width: 980px) {
	.brh-form form {
	    max-width: 70%;
	}
 
 
 
 
}

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

 .service-block .item{
	padding:20px;
}
.service-block .item h2{
	font-size:24px;
}
}

/************************************* 767px *************************************/
@media only screen and (max-width: 768px) {
 
.project-grid-gallery{   
    grid-template-columns: repeat(3, 1fr);
    }
 
.client-speak{
	border-left:0;
	padding:30px  0;
}
 .projects-grid{
    grid-gap:20px;	 
}
	
 .projects-grid .item{ 
	 padding:10px;
}
.pro-info h2{
	font-size:12px;
}
.pro-info h2 span{
	font-size:11px;
}
.footer-logo{
	width:100%;
	padding:20px 0;
	margin-top:15px;
	border-right:0;
	border-top:1px solid var(--grey);
	order:1;

	 
}
.footer-right{
	width:100%;
	flex-wrap: wrap; 
	gap:0;
	padding:50px 0 0 0;
 
}
 .footer-right .column:first-child{
	order:1;
	border-top:1px solid var(--grey);
	padding:20px 0 0 0;
	 
}
.footer-right .column{
	width:100%;
	 
}
.footer-right .column ul li{
	margin:0 0 5px 0;
}
.lower-footer{
	 flex-direction:column;
	 text-align:center;
	 line-height:26px;
}
.copy, .powered{
	width:100%;
	}



	
.brh-modal {
    width: 90% !important;
}
	
}

/************************************* 640px *************************************/
@media only screen and (max-width: 640px) {
 
body {
 
	}
	
.header{
   
	padding-right:70px;
}
 
 .logo, header.smaller .logo { 
	width:80px;
	position:relative;
	transition: all 0.4s ease; 
}
.header-right a{ 
	font-size:10px;
}
 
 
.banner h2 {
	font-size:18px;
	line-height:20px;
	margin:0;
}
.breadcrumb ul {
    margin:10px 0 0 0;
 
}

.breadcrumb li {
 
	font-size:12px;
	 
	 
 } 
 
.scroll h2 {
  font-size:20px;
  line-height: 20px;
   
}
 
.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;
	 
} 
 .project-grid-gallery{      
    grid-template-columns: repeat(2, 1fr);
	margin-left:0;
    }
 .projects-grid{
	grid-template-columns: repeat(2, 1fr);
}	 
 .section-title span{
	font-size:20px;
	line-height:normal;
	position:relative;
	margin-bottom:20px;
	padding-bottom:30px;
}
 .service-block{
    grid-template-columns: repeat(1, 1fr);
	}
.service-block .item{
	border-bottom:1px solid rgba(255, 255, 255, 0.2);
}
.service-block .item h2{
	font-size:20px;
}
.icon-row img{
	width:40px;
 
}	

.client-logos{
    grid-template-columns: repeat(2, 1fr);
 
}

/************************************* 480px *************************************/
@media only screen and (max-width: 480px) {
	.brh-form form {
	    max-width: 90%;
	}
 	 
 
}

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

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