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

/*************** DEFAULT CSS ***************/

/*************** DEFAULT CSS ***************/
:root {
	--body-font:'SWZ721L_0';
	--body-font-Size: 18px;
	--body-color: #000;
	--primary-color: #D1BC6D;
	--secondary-color: #000;
	--black: #000;
	--white: #fff;
	--grey: #e6e6e4;
	--grey-light: #5B5B5B;
	--grey-dark: #3D3D3D;
	--heading-font: 'SWZ721M_0';

}

body {

	font-family: var(--body-font);
	font-size: var(--body-font-Size);
	font-style: normal;
	line-height: 30px;
	font-weight: normal;
	color: var(--body-color);
	text-decoration: none;
	margin: 0px;
	-webkit-font-smoothing: antialiased;
	padding: 0;
	overflow-x:hidden;
	background-color:#fff;
}


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


* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
/*****************************/

#preloader{
    position:fixed;
    top:0;
    left:0;
    right:0;
    bottom:0;
    background-color:#FFF;
    z-index:999999;
}
 #status{
    width:80px;
    height:80px;
    position:absolute;
    left:50%;
    top:50%;
    /*background-image:url(../images/Nirman-Designs-Logo.svg);
    background-repeat:no-repeat;
    background-position:center;
	background-size:80px;*/
    margin:-40px 0 0 -40px;
}

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


::selection {
        background: var(--primary-color);
		color:var(--white);
        }
::-moz-selection {
        background: var(--primary-color);
		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(--black);

	}
p {
	margin:0 0 30px 0;
	clear:left;
	padding:0;
	}
	
	
h1, h2, h3, h4 {
	margin:0 0 15px 0;
	padding:0;
	font-weight:normal;	
}
	

hr {
	margin:80px  0;
	height:0;
	border:0;
	border-top:1px solid rgba(0,0 ,0 ,0.11);
	float:left;
	width:100%;
	position:relative;
}



.heading-big {
	font-size:68px;
	line-height:70px;
	font-family:var(--heading-font);
}
.heading {
	font-size:30px;
	line-height:40px;
	font-family:var(--heading-font);
}


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

.subtitle{
	font-size:18px;
	line-height:32px;
	font-family:var(--body-font);
}
 
.caps{
	text-transform:uppercase;
}

.bold, strong{
	
	font-weight:600;
}
.dec-title{
	width:100%;
	display:flex;
}
.dec-title span{
	color:var(--secondary-color);
	font-family:var(--heading-font);
	width:auto;
	padding:0 0 15px 0;
	font-size:12px;
	text-transform:uppercase;
	line-height:normal;
	position:relative;
	margin-bottom:20px;
	letter-spacing:2px;
}
.dec-title span:before{
	position:absolute;
	left:0;
	bottom:0;
	content:'';
	background: var(--secondary-color);
	width:100%;
	height:1px;
} 

   
img{
	border:0;
}	
.fullwidth{
	width:100%;
	display:block;
}
a img {
	border: 0;
}
/*************link button*****/	
.link{}

.link a{
	font-weight: 500;
    background: transparent;
    color: var(--black);
    padding: 10px 30px;
    margin: 0;
    position: relative;
    font-size: 14px;
    display: inline-block;
    margin:5px;
    border: 1px solid #000;
}
 
.link a span {
    position: relative;
    z-index: 2;
}
.link a:hover span {
    color: var(--white);
}
.link a:after{
    content: '';
    width: 0;
    height: 100%;
    position: absolute;
    bottom: 0;
    left: 100%;
    z-index: 1;
    background: var(--black);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}  

.link a:hover:before{
     filter:none;
}
 
.link a:hover:after {
    width: 100%;
    left: 0;
    -webkit-transition: width 0.3s ease;
    transition: width 0.3s ease;
}

.fill-white{
	background-color:#fff;
}

/****************************/
.list{
	margin:0;
	padding:0;
	list-style:none;
	width:100%;
 
}
.list li{
	margin:0;
	padding:5px 0 5px 30px;
	background-image: url(../images/bullet.png);
	background-repeat: no-repeat;
	background-position: left 5px;
	background-size:15px;
	list-style-position:inherit;
	line-height:18px;
}

.listing li{
	margin:0;
	padding:5px 0 5px 40px;
	background-image: url(../images/arrow-white.png);
	background-repeat: no-repeat;
	background-position: left 15px;
	list-style-position:inherit;
	line-height:40px;
	font-size:40px;
	font-weight:normal;
}

/****************TEXT ALINGS*********/
.justify{
	text-align:justify;
}

.text-center{
	text-align:center;
}
.text-right{
	text-align:right;
}

.text-white{
	color:var(--white) !important;
}
.text-black{
	color:var(--black);
	}
/*--------------------------BIG SCREEN DEFAULT-----------------------------------*/

 

.frame-right{
	left:auto;
	right:0;
}
header{
    width:100%;
	position:absolute;
	left:0;
	top:0;
	padding:0;
	display:flex;
 	align-items:center;
	justify-content: space-between;
	z-index:5;
}
 
.logo{
	position:absolute;
	left:0;
	top:0;
	/*background-color:var(--white);*/
	width:150px;
	padding:10px;
	z-index:9;
}
 .logo img{
 	width:100%;
	display:block;
 }
	
.body-line-l, .body-line-r{
	width:20px;
	height:100%;
	position:fixed;
	left:0;
	top:0;
	content:'';
	background-color:var(--black);
	z-index:4;
}
.body-line-r{
	left:auto;
	right:0;
} 
.container{
	width:100%;
	margin:0 auto;
	position:relative;
	z-index:2;
	padding:0 100px;
}
.menu-wrap{
	width: 100%;
	z-index:50;
	position:fixed;
	left:0;
	top:0;
	}
.outer-wrap{
	width: 100%;
	display:block;
	background-color:#fff;
	z-index:1;
	position:relative;
	}
section{
	width: 100%;
	display:flex;
	 
} 	

.jarallax, .cover{
    position: relative;
	background-repeat: no-repeat;
	background-position: center  center;
	 
}


.bg1{
	 background-image: url(../images/parallax/bg1.jpg);
 } 
 
  
 
 .intro{
 	padding:0 160px;
	width:100%;
	display:block;
 }
  
  /********************/
  
   
 
 .nav{}
  .nav ul,    .nav ul li{
  margin:0;
  padding:0;
  list-style:none;
  width:100%;
  display:block;
  position:relative;
  }
 .nav ul li a{
  width:100%;
  display:block;
  padding: 10px 0; 
  color: var(--socondary-color);
  position: relative;
  vertical-align: middle;
  font-weight: normal;
  font-size:18px;
  transition: 1s all cubic-bezier(0.075, 0.82, 0.165, 1);
}
 .nav ul li a:hover{
 	color:#616161;
 }


 .nav ul li:after{
	position:absolute;
	width:0;
	height:1px;
	background-color:var(--secondary-color);
	left:0;
	bottom:0;
	content:''; 
		-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;
 
 }
 .nav ul li:hover:after{
 	width:100%;
 }
 /*********BG COLORS*************/
.grey-bg{
	background-color:#EEE;
}
 .black-bg{
	background-color:#000;
	color:#fff;
}


.sticky {
  position: sticky !important;
  top:50px !important;
}

.hr-line{
	position:relative;	 
}
.hr-line:after{
	width:100%;
	height:1px;
	position:absolute;
	left:0;
	top:50%;
	content:'';
	z-index:-1;
	background-color:var(--black);
}

.video-bg{
	 background-image: url(../images/parallax/video-bg.jpg);
 } 
 
.video-section{ 
    width: 100%;
	height:100vh;
	display: flex;
	justify-content: center;
	align-items: center;
    display: -ms-flexbox;    
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
 
}



a  .watch-our-video{
	width:150px;
	height:150px;
	position:relative;
	z-index:2;
	border-radius:50%;
	cursor:pointer;
}

a .watch-our-video:after {
	width:100%;
	height:100%;
	position:absolute;
	left:0;
	top:0;
	content:'';
	background-image:url(../images/icons/play-video.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;

}
a .watch-our-video:before{
	width:80px;
	height:80px;
	position:absolute;
	left:50%;
	top:50%;
	margin:-40px 0 0 -40px;
	content:'';
	background-image:url(../images/icons/video-icon.svg);
	background-repeat: no-repeat;
	background-position: center  center;
	-moz-background-size: cover;
	-webkit-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	border-radius:50%;
 
}
/*********INNER PAGE STYLES*************/
main {
  height: 100%;
  width:100%;
}

.canvas-wrap {
  height: 100%;
  width: 100%;
  z-index: 3;
  position:relative;
} 
 
.canvas-wrap img.loaded {
  opacity: 1;
}
canvas{
  opacity: 0.1;
}


 .rotating-circle{
	width:200px;
	height:200px;
	position:absolute;
	bottom:50px;
	right:25px;
	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.png);
	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:100px;
	height:100px;
	position:absolute;
	left:50%;
	top:50%;
	margin:-50px 0 0 -50px;
	content:'';
	background-image:url(../images/althamin-rotation.jpg);
	background-repeat: no-repeat;
	background-position: center  center;
	-moz-background-size: cover;
	-webkit-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	border-radius:50%;
	/*-webkit-animation: rotation2 20s infinite linear;*/
}
@-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);
		}
}

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


.inner-banner{
	width:100%;
	height:70vh;
	position:relative;
	display:flex;
	overflow:hidden;
	align-items: end;
 	background-repeat: no-repeat;
	background-position: center  center;
	-moz-background-size: cover;
	-webkit-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
}
 .inner-banner:before{
	width:100%;
	height:100%;
	position:absolute;
	left:0;
	top:0;
	content:'';
	z-index:2;
	background-color:rgba(0 ,0, 0, 0.4);
}


.breadcrumb{
	 width:100%;
	 color:#fff;
	 padding:100px;
	 flex-direction:column;
	 display:flex;
	 position:relative;
	 z-index:3;
}
 

.breadcrumb h2{
	font-size:30px;
	font-weight:normal;
	/*font-family:var(--heading-font);*/
	line-height:normal;
	color:var(--white);
	position:relative;
	z-index:2;
	display:flex;
	width:100%;
	
	 
}


.breadcrumb ul{
	margin:0;
	list-style:none;
	width:100%;
	 
	 
}
.breadcrumb ul li{
	display:inline-block;
	padding:0 20px;
	border-right:1px solid rgba(255, 255,255, 0.4);
}
.breadcrumb ul li:last-child{
	border-right:0 !important;
}
.breadcrumb ul li:first-child{
 
	padding:0 20px 0 0 !important;
	}
.breadcrumb ul li a{
 	color:var(--white);
	 
	}
.breadcrumb ul li a:hover{
	color:var(--primary-color);
	}
	
/*********BANNER**************/

.banner1{
	background-image: url(../images/parallax/banner1.jpg);
}

.banner2{
	background-image: url(../images/parallax/banner2.jpg);
}

.banner3{
	background-image: url(../images/parallax/banner3.jpg);
}

.banner4{
	background-image: url(../images/parallax/banner4.jpg);
}

.banner5{
	background-image: url(../images/parallax/banner5.jpg);
}
.banner6{
	background-image: url(../images/parallax/banner6.jpg);
}
.banner7{
	background-image: url(../images/parallax/banner7.jpg);
}
.banner8{
	background-image: url(../images/parallax/banner8.jpg);
}
.banner9{
	background-image: url(../images/parallax/banner9.jpg);
}
.banner10{
	background-image: url(../images/parallax/banner10.jpg);
}

/*************project*******/

.project-style-row{ 
    width: 100%;
	display: flex;
    display: -ms-flexbox;    
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
	margin-bottom:150px;
	align-items: self-end;
 
 
}
.project-img{ 
    width: 80%;
	padding-right:20px;
 
}
.project-img img{ 
    width: 100%;
	display:block;
 
}
.border-left{
	border-left:1px solid var(--black);
	}
.border-right{
	border-left:1px solid var(--black);
	}
.project-des{ 
    width: 20%;
	padding:20px;	 
	/*border-left:1px solid var(--black);*/
	font-size:16px;
	align-items: self-end;
}

.project-des h2 {
	font-size:24px;
	line-height:40px;
	/*font-family:var(--heading-font);*/
}


/********************SERVICE LISTING********************/


.service-listing{
	width:100%;
	display:flex;
}

.service-listing ul, .service-listing ul li{
	width:100%;
	display:flex;
	-ms-flex-wrap: wrap;
    flex-wrap: wrap;
	margin:0;
	padding:0;
	list-style:none;
	position:relative;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;
}
.service-listing ul li{
	border-bottom:1px solid var(--grey-light);
}
.service-listing ul li:last-child{
	border-bottom:0;
}
.service-listing ul li a{
	padding:40px 50px;
	width:100%;
	height:100px !important;
	color:var(--white);
	font-size:24px;	
	display:flex;
	justify-content: space-between;
	align-items: center;
	background-image: url(../images/icons/arrow-big.png);
	background-repeat: no-repeat;
	background-position: 96% center;		
}
 
.service-listing ul li a:hover{
	background-position: 90% center;
	padding:40px 50px 40px 60px;
 
}
.service-listing ul li:before, .service-listing ul li:after{
	width:100%;
	height:0;
	position:absolute;
	left:0;
	top:50%;
	content:'';
	z-index:-1;
	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;
}
.service-listing ul li:hover:before{
	height:100%;
	top:0;
 
}
.service-listing ul li:after{
	background-color:var(--grey-dark);
	z-index:-2;
	height:100%;
	top:0;
	
}

.service-listing ul li img{	 
	border-radius:50%;
	width:20px;
	height:20px;
	opacity:0;
	position:relative;
	z-index:2;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;
}
.service-listing ul li:hover img{
	display:block;
	width:70px;
	height:70px;
	opacity:0.9;
}


/*********************Project-nav**********************/

.project-nav{
    width: 100%;
	display: flex;
	margin-bottom:50px;
}

.project-nav ul{
    width: 100%;
	display: flex;
	margin:0;
	padding:0;
	list-style:none;
    justify-content: center;
	text-align:center;
	border-bottom:1px solid var(--black);
	border-top:1px solid var(--black);
	}
.project-nav ul li{
   	display: flex;
	margin:0;
	padding:0;
	/*border-left:1px solid var(--grey);*/
}

.project-nav ul li:first-child{
	border-left:0;
	}
.project-nav ul li a{
  padding: 10px 25px;
  position:relative;
  color:#BCBCBC;
  position: relative;
  vertical-align: middle;
  font-weight: normal;
  font-size:18px;
  transition: 1s all cubic-bezier(0.075, 0.82, 0.165, 1);
}
.project-nav ul li a:hover{
 	color:#616161;
 }


.project-nav ul li a:after{
	position:absolute;
	width:0;
	height:1px;
	background-color:var(--primary-color);
	left:50%;
	bottom:-1px;
	content:''; 
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;
 
 }
.project-nav ul li a:hover:after{
 	left:0;
	width:100%;
 }
 
.project-nav ul li  .active{
 color:var(--black) !important;
 
 }

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



.showcase-grid{
    width: 100%;
	display: flex;
    display: -ms-flexbox;    
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
	gap:30px 4%;
 
}
.showcase-grid .item{
    flex: 0 0 22%;
}
 
.showcase-grid .des{
	padding:20px 0;
	border-bottom:1px  solid  var(--black);
	font-size:14px;
	line-height:18px;
}
.showcase-grid .des h2{
	font-size:18px;
	/*font-family:var(--heading-font);*/
	margin:0 0 10px 0;
	line-height:normal;
}
.des{
	padding:20px 0;
	border-bottom:1px  solid  var(--black);
	font-size:14px;
	line-height:18px;
	display: flex;
	width:100%;
    justify-content: space-between;
	align-items: center;
	gap:0 15px;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;
}

.des h2{
	font-size: 20px;
 	line-height: 40px;
    /*font-family:var(--heading-font);*/
	margin:0;
	line-height:normal;
	 
}
.des:hover{
	background-color:var(--black);
	padding:20px;
	color:var(--white);
	 
}
.des p:last-child{
	margin:15px 0 0 0;
}
/*************HOVER EFFECT*******/

 
.hover-effect{	
	display:flex;
	position:relative;
	overflow:hidden;
	/*border:1px solid rgba(0, 0, 0, 0.2);*/
	
}
.hover-effect i{
	width:70px;
	height:70px;
	background-color:var(--white);
	color:var(--black);
	position:absolute;
	right:-70px;
	bottom:-70px;
	z-index:1;
	line-height:70px;
	text-align:center;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;
	
}
.hover-effect:hover i{	
	right:0;
	bottom:0;
 
}
	
.hover-effect img {
 display:inline-block;
  -moz-transition: all 0.9s ease;
  -o-transition: all 0.9s ease;
  -webkit-transition: all 0.9s ease;
  transition: all 0.9s ease;
 width:100%;
}
.hover-effect:hover img {
  -moz-transform: scale(1.1, 1.1);
  -ms-transform: scale(1.1, 1.1);
  -webkit-transform: scale(1.1, 1.1);
  transform: scale(1.1, 1.1);
}

.hover-effect:after {
  background:var(--white);
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  content: '';
  opacity:0;
  -webkit-transform: skew(45deg) scaleX(1);
  -ms-transform: skew(45deg) scaleX(1);
  transform: skew(45deg) scaleX(1);
  
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.hover-effect:hover:after {
  
    -webkit-transform: skew(45deg) scaleX(0);
  -ms-transform: skew(45deg) scaleX(0);
  transform: skew(45deg) scaleX(0);
  

  -moz-transition: all 600ms cubic-bezier(0.175, 0.885, 0.32, 1.275);
  -o-transition: all 600ms cubic-bezier(0.175, 0.885, 0.32, 1.275);
  -webkit-transition: all 600ms cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition: all 600ms cubic-bezier(0.175, 0.885, 0.32, 1.275);
   opacity:0.2;

}

 .text-style{
 	width:100%;
	position:relative;
	display:block;
	padding-left:50px;
 }
 
 .text-style:before{
 	width:4px;
	height:400px;
	position:absolute;
	left:0;
	top:0;
	content:'';
	z-index:2;
	background-color:var(--primary-color);
 } 
 
 /****************SCROLLING TEXT***************/

 .scrolling-text-wrap {
  width:100%;
  padding:20px 0;
  overflow-x:hidden;
  background-color:#000;
 
 
 }

.scroll {
  white-space: nowrap;
  margin: 0;
}

.scroll div {
  display: flex;
  gap: 2em;
  
  
}

.scroll h2 {
  font-size: 40px;
  color: var(--white);
  font-weight: normal;
  margin:0;
  line-height: 40px;
  letter-spacing:2px;
  
}

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



/*****footer****************/
.footer{
	width:100%;
	display:flex;
	padding:100px 0;
	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/parallax/footer-bg.jpg);
	border-top:1px solid var(--grey);
 }
.footer-col{
	 width:33.333333333%;
	 justify-content: center;
	 display:flex;
 
	 
}

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

 

.footer-logo{
	 
}
.footer-logo img{
	width:100px;
	margin-right:15px;
	display:inline-block;

}
 
.copyright{ 
	 justify-content: flex-end;
	 text-align:right;
}
.social{
	margin-top:25px;
 
}
.social a{
	display:inline-block;
	font-size:18px;
	margin:5px;
	background-color:var(--black);
	color:var(--white);
	width:50px;
	height:50px;
	line-height:50px;
	text-align:center;
	border-radius:50%;
	
	
}
 
 .social a:hover{
 	background-color:var(--primary-color);
	color:var(--white);
 }
.add{
	width:100%;
	padding:40px;
	background-color:var(--grey);
}
 .add p{
 	margin:0 0 10px 0;
	line-height:24px;
 }	
 .add h5{
 	font-size:18px;
	line-height:normal;
	font-weight:normal;
	margin:0 0 25px 0;
	font-family:var(--heading-font);
	 
}
 	
 .c_icon{
 	width:30px;
 	height:30px;
	text-align:center;
	line-height:30px;
	display:flex;
	justify-content: center;
	align-items: center;
	font-size:18px;
	border-radius:50%;
	background-color:var(--black);
	color:var(--white);
	margin:0 15px 0 0;
	vertical-align:middle;
	display:inline-block;	 
 }



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

form{
	margin:0;
	padding:0;
}

*:focus {  
	outline: none;
}
	
.fieldset{
	width:100%;
	height:auto;
	padding:15px 0;
	background-color:#FFF;
	display:block;
	border:0;
	border-bottom:1px solid rgba(0,0 ,0 ,0.11);
	font-weight:normal;
	margin:0;
	color:#947C56;
	font-size:16px;	
 
}




.sendbutton{
	width:auto;
	height:auto;
	border:0;
	outline:0;
	margin:0;
	display:inline-block;
	color:#fff;
	font-size:28px;
	font-weight:normal;
	cursor:pointer;
	vertical-align:top;
	padding:25px 45px;
	text-align:center;
	background-color:var(--black);
 
}

.sendbutton:hover{
	background-color:var(--grey-dark);
}
	
::-webkit-input-placeholder {
   color: #7D7D7D !important;
}

:-moz-placeholder { /* Firefox 18- */
   color: #7D7D7D !important;
}

::-moz-placeholder {  /* Firefox 19+ */
   color: #7D7D7D !important;
}

:-ms-input-placeholder {  
   color: #7D7D7Df !important;
}

.googlemap{
	width:100%;
	height:500px;
	border:0;
	outline:none;
}

/*********medea query 1212**************************************/



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



  
 
 
}
/***********************980px *************************************/

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

header{
	position:relative;
	left:auto;
	top:auto;
}

.logo{
	position:relative;
	width:80px;
	padding:10px ;
	z-index:999;
	left:auto;
	top:auto;
	margin:0 15px 0 0;
}
 
 
.container{
	padding:0 20px;
}

 .breadcrumb{ 
	 padding:20px;
 
}
 
.project-nav{
	margin-bottom:40px;
}

.project-nav ul{
	border:0;
	padding:0;
	display:inline-block;
}
 .project-nav ul li {
 	 font-size:14px;
	 display:inline-block;
}
 
.project-nav ul li a{
  padding:10px 10px;
  font-size:14px;
  display:inline-block;
 
 
}

}


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


}






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

 
 .intro{
 	padding:0;
 
 }
  
.project-style-row{ 
	margin-bottom:50px; 
 
}
.project-img{ 
    width: 100%;
	padding:0;
 
}

 .nav{
   margin-bottom:20px;
   }
.project-des{ 
    width: 100%;
	padding:20px;	 
	border-left:0;
	border-bottom:1px solid var(--black);
	text-align:left;
}

.project-des h2 {
	font-size:18px;
	line-height:24px;
 
}
 .service-listing ul li a{
	padding:10px 30px;
	min-height:80px;
	font-size:16px;	
	background-size: 18px;
		
}
 
.service-listing ul li a:hover{
	background-position: 70% center;	
	padding:10px 30px !important;
}

 
.service-listing ul li:hover img{
 
	width:50px;
	height:50px;
 
}

.showcase-grid .item{
    flex: 0 0 48%;
}
 
}

/***********************640 px *************************************/

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


body{
    line-height:18px;
	font-size:16px;
}

 

.heading,  .heading-light {
	font-size:20px;
	line-height:24px;
 
}

.footer{
	padding:50px 0;
}

.footer-col{
	width:100%;
	align-items: center;
 	justify-content: left;
 
}
.footer-logo img{
	width:50px;
	 
}
 
 
.copyright{ 
	 text-align:left;
	 padding:25px 0 0 0;
 
}
 
.heading-big{
	font-size:30px;
}
 .footer h1, .footer h2{
 	margin:0;
 }
 
 .inner-banner{
 
	height:50vh;
 
}
.inner-banner:before{
   
 	 width: 100%;
  
}
.inner-banner h2{
	font-size:20px;
}
main {
	display:none;
}
 .rotating-circle{
	width:150px;
	height:150px;
	right:auto;
	bottom:auto;
	top:50%;
	left:50%;
	margin:-75px 0 0 -75px;
}


.scroll h2 {
  font-size: 30px;
  line-height: 30px;
  
}

.RightToLeft {
  animation: RightToLeft 10s infinite linear;
} 
.LeftToRight {
  animation: LeftToRight 10s infinite linear;
}
 .text-style{
	padding-left:20px;
 }
 
 

}




/***********************480 px *************************************/

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

  
 
	
 
  
}
 



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


}


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


}