
body{
	line-height: 1.5;
	overflow-x: hidden;
	background-color: #180b20 !important;
}

@font-face {
	font-family: Stara Bold;
	src: url(../fonts/Stara-Bold.otf);
}
@font-face {
	font-family: Stara Medium;
	src: url(../fonts/Stara-Medium.otf);
}

.mt-100{
	margin-top: 100px;
}
h2{
	font-family: Stara Bold;
}
*{
	margin:0;
	box-sizing: border-box;
}
:before,:after{
	box-sizing: border-box;
}
/* .container{
	max-width: 1200px;
	margin:auto;
} */
.row{
	display: flex;
	flex-wrap: wrap;
}
.v-center{
	align-items: center;
}
ul{
	list-style: none;
	margin:0;
	padding:0;
}
a{
	text-decoration: none;
}
/* header */

.header .item-left {
    flex: 0 0 auto; /* Adjust width automatically */
    display: flex;
    align-items: center;
}

.header .item-center {
    flex: 1; /* Allow menu to take remaining space */
    display: flex;
    justify-content: flex-end; /* Move menu to the right */
}

.header{
	display: block;
	width: 100%;
	position: relative;
	z-index: 99;
	padding:15px;
	background-color: #170a1f;
}
.menu-sub ul li a {
	color: #e8e1d8 !important;
}
.menu-sub ul li a:hover {
	color: #c9171a !important;
}
.header .logo a{
	text-decoration: none;
}
/* .header .item-center{
	flex:0 0 66%;
} */
.header .item-right{
	/* flex:0 0 17%; */
	display: flex;
	justify-content: flex-end;
}
.header .item-right a{ 
     text-decoration: none;
     font-size: 25px;
     color:#000000;
     display: inline-block;
     margin-left: 10px;
     transition: color 0.3s ease;
}
.header .menu > ul > li{
	display: inline-block;
	line-height: 50px;
	margin-left: 25px;
}
.header .menu > ul > li > a{
	font-size: 15px;
	font-weight: 500;
	color:#ded6ce;
	position: relative;
	text-transform: uppercase;
	transition: color 0.3s ease;
	text-align: center;
	font-family: stara Medium;
}
.header .menu > ul > li .sub-menu{
	position: absolute;
	z-index: 500;
	background-color:#ffffff;
	box-shadow: -2px 2px 70px -25px rgba(0,0,0,0.3); 
	padding: 20px 30px;
	transition: all 0.5s ease;
	margin-top:25px;
	opacity:0;
	visibility: hidden;
}
@media(min-width: 992px){
.header .menu > ul > li.menu-item-has-children:hover .sub-menu{
	margin-top: 0;
	visibility: visible;
	opacity: 1;
}
}
.header .menu > ul > li .sub-menu > ul > li{
	line-height: 1;
}
.header .menu > ul > li .sub-menu > ul > li > a{
	display: inline-block;
	padding: 10px 0;
	font-size: 15px;
	color: #555555;
	transition: color 0.3s ease;
	text-decoration: none;
	text-transform: capitalize;
}
.header .menu > ul > li .single-column-menu{
	min-width: 280px;
	max-width: 350px;
}
.header .menu > ul > li .sub-menu.mega-menu > .list-item > ul > li{
   line-height: 1;
   display: block; 
}
.header .menu > ul > li .sub-menu.mega-menu > .list-item > ul > li > a {
	padding:10px 0;
	display: inline-block;
	font-size: 15px;
	color:#555555;
	transition: color 0.3s ease;
}
.header .menu > ul > li .sub-menu.mega-menu{ 
    left: 50%;
    transform: translateX(-50%);	
}

.header .menu > ul > li .sub-menu.mega-menu-column-4{
  max-width: 1100px;
  width: 100%; 	
  display: flex;
  flex-wrap: wrap;
  padding:20px 15px;
}
.header .menu > ul > li .sub-menu.mega-menu-column-4 > .list-item{
  flex:0 0 25%;
  padding:0 15px;
}
.header .menu > ul > li .sub-menu.mega-menu-column-4 > .list-item .title{
	font-size: 16px;
	color:#000;
	font-weight: 500;
	line-height: 1;
	padding:10px 0;
}
.header .menu > ul > li .sub-menu.mega-menu-column-4 > .list-item.text-center .title{
	text-align: center;
}
.header .menu > ul > li .sub-menu.mega-menu-column-4 > .list-item img{
	max-width: 100%;
	width: 100%;
	vertical-align: middle;
	margin-top: 10px;
	height: 300px;
	object-fit: cover;
}
.header .menu > ul > li .sub-menu.mega-menu > .list-item > ul > li > a:hover,
.header .menu > ul > li .sub-menu > ul > li > a:hover,
.header .item-right a:hover,
.header .menu > ul > li:hover > a{
	color:#c9171a;
}
/* banner section */
.banner-section{
  background-image: url('../img/banner.jpg');
  background-size: cover;
  background-position: center;
  height: 700px;
  width: 100%;
  display: block;
}
.mobile-menu-head,
.mobile-menu-trigger{
	display: none;
}

/*responsive*/
@media(max-width: 991px){
	.d-none-tab{
		display: none !important;
	}
	.header {
		padding: 0px;
		background-color: #fff;
		padding-top: 5px;
        padding-bottom: 10px;
	}

	.header .item-center{
		order:3;
		flex:0 0 100%;
	}
	.header .item-left,
	.header .item-right{
		flex: 1 0 auto;
        justify-content: space-around;
	}
	.v-center{
		justify-content: space-between;
	}
	.header .mobile-menu-trigger{
		display: flex;
		height: 30px;
		width: 30px;
		margin-left: 15px;
		cursor: pointer;
		align-items: center;
		justify-content: center;
	}
	.header .mobile-menu-trigger span{
		display: block;
		height: 2px;
		background-color: #333333;
		width: 24px;
		position: relative;
	}
	.header .mobile-menu-trigger span:before,
	.header .mobile-menu-trigger span:after{
		content: '';
		position: absolute;
		left:0;
		width: 100%;
		height: 100%;
		background-color: #333333;
	}
	.header .mobile-menu-trigger span:before{
		top:-6px;
	}
	.header .mobile-menu-trigger span:after{
		top:6px;
	}
	.header .item-right{
		align-items: center;
	}

	.header .menu{
		position: fixed;
		width: 320px;
		background-color:#ffffff;
		left:0;
		top:0;
		height: 100%;
		overflow: hidden;
		transform: translate(-100%);
		transition: all 0.5s ease;
		z-index: 1099;
	}
	.header .menu.active{
	   transform: translate(0%);	
	}
	.header .menu > ul > li{
		line-height: 1;
		margin:0;
		display: block;
	}
	.header .menu > ul > li > a{
		line-height: 50px;
		height: 50px;
		padding:0 50px 0 15px;
		display: block;
		border-bottom: 1px solid rgba(0,0,0,0.1);
		        color: #777777 !important;
				text-align: left !important;
	}
	.header .menu > ul > li > a i{
		position: absolute;
		height: 50px;
		width: 50px;
		top:0;
		right: 0;
		text-align: center;
		line-height: 50px;
		transform: rotate(-90deg);
	}
	.header .menu .mobile-menu-head{
		display: flex;
		height: 50px;
		border-bottom: 1px solid rgba(0,0,0,0.1);
		justify-content: space-between;
		align-items: center;
		position: relative;
		z-index: 501;
		position: sticky;
		background-color: #ffffff;
		top:0;
	}
	.header .menu .mobile-menu-head .go-back{
		height: 50px;
		width: 50px;
		border-right: 1px solid rgba(0,0,0,0.1);
		cursor: pointer;
		line-height: 50px;
		text-align: center;
		color:#000000;
		font-size: 16px;
		display: none;
	}
	.header .menu .mobile-menu-head.active .go-back{
		display: block;
	}
	.header .menu .mobile-menu-head .current-menu-title{
		font-size: 15px;
		font-weight: 500;
		color:#000000;
	}
	.header .menu .mobile-menu-head .mobile-menu-close{
	    height: 50px;
		width: 50px;
		border-left: 1px solid rgba(0,0,0,0.1);
		cursor: pointer;
		line-height: 50px;
		text-align: center;
		color:#000000;	
		font-size: 25px;
	}
	.header .menu .menu-main{
		height: 100%;
		overflow-x: hidden;
		overflow-y: auto;
	}
	.header .menu > ul > li .sub-menu.mega-menu,
	.header .menu > ul > li .sub-menu{
		visibility: visible;
		opacity: 1;
		position: absolute;
		box-shadow: none;
		margin:0;
		padding:15px;
		top:0;
		left:0;
		width: 100%;
		height: 100%;
		padding-top: 65px;
		max-width: none;
		min-width: auto;
		display: none;
		transform: translateX(0%);
		overflow-y: auto;
	}
.header .menu > ul > li .sub-menu.active{
	display: block;
}
@keyframes slideLeft{
	0%{
		opacity:0;
		transform: translateX(100%);
	}
	100%{
	    opacity:1;
		transform: translateX(0%);	
	}
}
@keyframes slideRight{
	0%{
		opacity:1;
		transform: translateX(0%);
	}
	100%{
	    opacity:0;
		transform: translateX(100%);	
	}
}
	.header .menu > ul > li .sub-menu.mega-menu-column-4 > .list-item img{
		margin-top:0;
	}
	.header .menu > ul > li .sub-menu.mega-menu-column-4 > .list-item.text-center .title{
		margin-bottom: 20px;
	}
	.header .menu > ul > li .sub-menu.mega-menu-column-4 > .list-item.text-center:last-child .title{
		margin-bottom:0px;
	}
	.header .menu > ul > li .sub-menu.mega-menu-column-4 > .list-item{
		flex: 0 0 100%;
        padding: 0px;
	}
	.header .menu > ul > li .sub-menu > ul > li > a,
	.header .menu > ul > li .sub-menu.mega-menu > .list-item > ul > li > a{
		display: block;
	}
	.header .menu > ul > li .sub-menu.mega-menu > .list-item > ul {
		margin-bottom: 15px;
	}
	.menu-overlay{
		position: fixed;
		background-color: rgba(0,0,0,0.5);
		left:0;
		top:0;
		width: 100%;
		height: 100%;
		z-index: 1098;
		visibility: hidden;
		opacity:0;
		transition: all 0.5s ease;
	}
	.menu-overlay.active{
	  visibility: visible;
	  opacity:1;	
	}
}

.menu-items-left{
	flex: 0 0 75%;
	display: flex;
	justify-content: end;
}

@media(max-width: 576px){

}

/************************** Hero Section Start ********************/


.hero-banner .slider {
    --slider-padding: 1rem;
    --slider-column-gap: 1rem;
    --slide-width: 100%;
    --slide-min-width: 15rem;
    position: relative;
    overflow: hidden;
}


/* .slideshow {
	width: 100%;
	height: auto;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
  z-index: 0;
}

.slideshow img {
  float: left;
} */
/* 
#prev,
#next {
  position: absolute;
  z-index: 9999;
  display: block;
  top: 100px;
  width: 100px;
  height: 100px;
  text-indent: -9999px;
}

#prev {
  left: 0;
  background: url(https://image.ibb.co/jevVLk/prev.png);
  background-size: 100px 100px;
  background-repeat: no-repeat;
}

#next {
  right: 0;
  background: url(https://image.ibb.co/eGoT6Q/next.png);
  background-size: 100px 100px;
  background-repeat: no-repeat;
} */



/* .hero-area{
	background-image: url(../img/home-banner0.jpg);
	height: 800px;
	background-size: cover;
	background-position: center;
	width: 100%;
} */

/* #myVideo {
	right: 0;
	position: absolute;
	bottom: 0;
	min-width: 100%;
	min-height: 100%;
  } */
.hero-function{
	display: flex;
	flex-direction: column;
	justify-content: center;
	height: 100%;
	padding-top: 20px;
}

.anim-text {
	font-size: 70px;
	letter-spacing: -9px;
	font-family: Stara Bold !important; 
	color: #e8e1d8;
	line-height: 64px;
}

.anim-text span {
	display: inline-block;
	animation: pop 0.4s ease-in-out;
}

.anim-text span:nth-child(1) {
	animation-delay: 0.4s;
}

.anim-text span:nth-child(2) {
	animation-delay: 0.5s;
}

.anim-text span:nth-child(3) {
	animation-delay: 0.6s;
}

.anim-text span:nth-child(4) {
	animation-delay: 0.7s;
}

.anim-text span:nth-child(5) {
	animation-delay: 0.8s;
}

.anim-text span:nth-child(6) {
	animation-delay: 0.9s;
}

.anim-text span:nth-child(7) {
	animation-delay: 1s;
}

.anim-text span:nth-child(8) {
	animation-delay: 1.2s;
}

.anim-text span:nth-child(9) {
	animation-delay: 1.3s;
}

.anim-text span:nth-child(10) {
	animation-delay: 1.4s;
}

.anim-text span:nth-child(11) {
	animation-delay: 1.5s;
}

.anim-text span:nth-child(12) {
	animation-delay: 1.6s;
}

.anim-text span:nth-child(13) {
	animation-delay: 1.7s;
}

.anim-text span:nth-child(14) {
	animation-delay: 1.8s;
}

.anim-text span:nth-child(15) {
	animation-delay: 1.9s;
}

.anim-text span:nth-child(16) {
	animation-delay: 2s;
}

.anim-text span:nth-child(17) {
	animation-delay: 2.1s;
}

.anim-text span:nth-child(18) {
	animation-delay: 2.2s;
}

.anim-text span:nth-child(19) {
	animation-delay: 2.3s;
}


.anim-text span:nth-child(20) {
	animation-delay: 2.3s;
}

.anim-text span:nth-child(21) {
	animation-delay: 2.4s;
}

.anim-text span:nth-child(22) {
	animation-delay: 2.5s;
}

.anim-text span:nth-child(23) {
	animation-delay: 2.6s;
}

.anim-text span:nth-child(24) {
	animation-delay: 2.7s;
}

.anim-text span:nth-child(25) {
	animation-delay: 2.8s;
}


@keyframes pop {
	0% {
		transform: scale(1);
	}

	50% {
		transform: scale(1.5);
		opacity: 1;
	}

	100% {
		transform: scale(1);
		opacity: 1;
	}
}


.box {
	animation: pop 0.16s ease-in-out 3s, rotateAnim 2s linear 3s infinite;
	font-size: 60px;
	display: inline-block;

	font-family: Stara Bold !important; 
}

@keyframes rotateAnim {
	0% {
		transform: rotateX(40deg);
	}

	50% {
		transform: rotateX(60deg);
	}

	80% {
		transform: rotateX(360deg);
	}

	100% {
		transform: rotateX(0deg);
	}
}



.animate-charcter {

	background-image: linear-gradient(-225deg,
			#ffffff 0%,
			#e2e2e2 29%,
			#bdbdbd 67%,
			#a8a8a8 100%);
	background-size: auto auto;
	background-clip: border-box;
	background-size: 200% auto;
	color: #fff;
	background-clip: text;
	text-fill-color: transparent;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	animation: textclip 2s linear infinite;
	display: inline-block;

}

@keyframes textclip {
	to {
		background-position: 200% center;
	}
}


.about-img{
	background-color:  #bbbbbb;
}
.img-fluid{
   max-width: 100%!important;
	height:auto;
}

/********************* About Section ***********************/

.about-content-area h2{
	font-family: Stara Medium !important; 
	font-size: 30px;
	font-weight: 500;
	position: relative;
	letter-spacing: -1px;
	color: #ded6ce;
}
.about-content-area h2::after{
    position: absolute;
    content: '';
    background-image: url(../img/shape-bg.png);
    width: 100px;
    height: 40px;
    left: -5px;
    top: 0px;
    z-index: -1;
	background-repeat: no-repeat;
}
/* .about-content-area{
	width: 50%;
	display: flex;
	align-items: flex-start;
	flex-direction: column;
	justify-content: center;
	margin-left: auto;
	margin-right: auto;
	
} */

p{
	font-family: Stara Medium;
	color: #bcb5ad;
	font-size: 16px;
}


.about-content-area h5{
	font-size: 23px;
	font-weight: 400;
	color: #bcb5ad;
	line-height: 31px;
	font-family: Stara Medium;
}
/* .animate-charcter {
	text-transform: uppercase;
	background-image: linear-gradient(-225deg,
			#ffffff 0%,
			#e2e2e2 29%,
			#ff0000 67%,
			#a8a8a8 100%);
	background-size: auto auto;
	background-clip: border-box;
	background-size: 200% auto;
	color: #fff;
	background-clip: text;
	text-fill-color: transparent;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	animation: textclip 2s linear infinite;
	display: inline-block;
	position: relative;
	z-index: 99999;

}

@keyframes textclip {
	to {
		background-position: 200% center;
	}
} */


@media(max-width: 576px){
	.about-content-area h2{
		font-size: 40px;
	}

	.about-content-area {
	 width: 100%;

	}
	.about-content-section {
		padding-left: 0px;

	}
}


.count-item{
	text-align: center;
	position: relative;
	/* border-right: solid 1px rgb(203, 203, 203); */
}
.count-one{
	position: relative;
}
.count-one::before{	
	content: '';
	position: absolute;
	border-left: solid 2px #dfdfdf;
    top: 0;
    right: 0;
    bottom: 0;
}
.count-two{
	position: relative;
}
.count-two::before{	
	content: '';
	position: absolute;
	border-left: solid 2px #dfdfdf;
    top: 0;
    right: 0;
    bottom: 0;
}

.count-item h5{
	text-transform: uppercase;
	  font-size: 16px;
	  color: #e8e1d8;
	  
}
#counter {


  color: #e8e1d8;
}
.count h2{
	font-size: 48px;
	color: #e8e1d8;
	font-weight: 400;
	font-family: Stara Medium;
	margin-bottom: 0px;
}
#counter div {
  text-align: center;
  text-decoration: none;
  list-style: none;
}

/* .background-used{
	width: 90%;
	margin-right: auto;
	
} */

.count span{
	color:#ff1419;
}
.arrowPacman {
	--arrow-width: 20px;
	--arrow-spacer: 4px;
	--arrow-plus-spacer: calc(var(--arrow-width) + var(--arrow-spacer));
	overflow: hidden;
	position: absolute;
	right: -11px;
	top: 50%;
	transform: translate(-50%, -50%);
	width: var(--arrow-plus-spacer);
	background-color: #fff;
	height: 30px;
	width: 30px;
	border-radius: 50%;
	padding-top: 7px;
	padding-left: 5px;
	
  }
  .arrowPacman svg {
	height: 12px;
	width: var(--arrow-width);

  }
  .arrowPacman svg:last-of-type {
	margin-left: var(--arrow-spacer);
  }
  
  .arrowPacman-clip {
	align-items: center;
	display: flex;
	overflow: hidden;
	transform: translateX(calc(var(--arrow-plus-spacer) * -1));
	width: calc(var(--arrow-plus-spacer) + var(--arrow-width));
  }
  
  @-webkit-keyframes pacman {
	to {
	  transform: translateX(0);
	}
  }
  
  @keyframes pacman {
	to {
	  transform: translateX(0);
	}
  }
  @media (min-width: 560px) {
	.buttons {
	  align-items: center;
	  display: flex;
	  justify-content: center;
	}
  }
  .buttons button {
	width: 100%;
  }
  @media (min-width: 560px) {
	.buttons button {
	  width: auto;
	}
  }
  .buttons button:not(:first-of-type) {
	margin-top: 1rem;
  }
  @media (min-width: 560px) {
	.buttons button:not(:first-of-type) {
	  margin-left: 1rem;
	  margin-top: 0;
	}
  }
  
  button {
	--button-background: transparent;
	--button-color: black;
	background-color: var(--button-background);
	border-radius: 4px;
	border: 0;
	box-shadow: none;
	color: var(--button-color);
	cursor: pointer;
	display: inline-block;
	font-size: 1rem;
	font-weight: 400;
	height: 40px;
	line-height: 1;
	padding-left: 1rem;
	padding-right: 2rem;
	position: relative;
	text-align: left;
	text-decoration: none;
	transition: box-shadow 150ms cubic-bezier(0.61, 1, 0.88, 1);
	white-space: nowrap;
	font-family: Stara Medium;
  }
  button:hover, button:focus {
	box-shadow: none;
	color: gray;
	outline: 0;
  }
  button:hover .arrowPacman-clip, button:focus .arrowPacman-clip {
	-webkit-animation-delay: 150ms;
			animation-delay: 150ms;
	-webkit-animation-duration: 0.8s;
			animation-duration: 0.8s;
	-webkit-animation-name: pacman;
			animation-name: pacman;
	-webkit-animation-iteration-count: infinite;
			animation-iteration-count: infinite;
	-webkit-animation-timing-function: cubic-bezier(0.55, 0, 0.21, 1);
			animation-timing-function: cubic-bezier(0.55, 0, 0.21, 1);
  }

  button.-bg-purple {
	--button-background: #1b1b1b;
	--button-color: #ffb31c;
	border-radius: 30px;
  }
  button > span {
	display: block;
	line-height: 1;
	padding-right: 1.5rem;
  }
  button > span:first-of-type {
	color: white;
	font-size: 16px;
	line-height: 1.5;
  }



  /* :root {
	align-items: center;
	display: flex;
	justify-content: center;
	min-height: 100vh;
  } */
  
  .twitter {
	bottom: 0;
	position: fixed;
	right: 0;
	width: 50px;
  }






  .slider {

	--slider-padding: 1rem;

	--slider-column-gap: 1rem;

	--slide-width: 33%;

	--slide-min-width: 15rem;

	position: relative;

	overflow: hidden;

}



.slider__track {

	display: flex;

	overflow-x: auto;

	-ms-scroll-snap-type: x mandatory;

	scroll-snap-type: x mandatory;

	padding-inline: var(--slider-padding);

	scroll-behavior: smooth;

	list-style-type: none;

	padding: 0;

	margin-right: calc(var(--slider-column-gap) * -1);

	scrollbar-width: none;

}



.slider__track>* {

	flex: 0 0 var(--slide-width);

	min-width: var(--slide-min-width);

	scroll-snap-align: start;

	scroll-snap-stop: always;

	padding-right: var(--slider-column-gap);

}



.slider__track::-webkit-scrollbar {

	display: none;

}



.slider__buttons  {

	/* opacity: 0.2; */

}


.slider__button:hover {
	border: solid #ff1419 2px;
}

.slider__button {

	border: #e8e1d8   solid 2px;

	border-radius: 50% !important;

	width: 30px;

	height: 30px;

	font-size: 0px;
    padding: 0px 7px !important;
	margin: 2px;

}
.slider-section h2{
	font-weight: 500;
	font-size: 40px;
	letter-spacing: -3px;;
}

.slider__buttons svg{
	height: 11px !important;
}

.testimonial-slider h2{
	position: relative;
	z-index: 0;
	color: #e8e1d8;
}
.testimonial-slider h2::after {
    position: absolute;
    content: '';
    background-image: url(../img/shape-bg.png);
	background-repeat: no-repeat;
    width: 100px;
    height: 40px;
    left: 0;
    top: 0px;
    z-index: -1;
}

#section-more-text {



	word-wrap: break-word;

}

.moretext {
	display: none;
  }


.moreless-button {

color: #c9171a;

	font-weight: 800;

}

.moreless-button:hover {
	color: #c9171a;
	opacity: 0.5;
}

.testi-person h5{
	color:#e8e1d8 ;
}

.testimonial-item button{
	padding-left: 0px !important;
	height: 0;
}
.testimonial-item button:hover {
    box-shadow: none;
    color: #fbb448;
    outline: 0;
}
.testimonial-item button:focus{
	color: #000000;
}
.title-hd h2 {
    font-size: 50px;
    font-weight: 500;
	text-align: center;
	position: relative;
	width: 460px;
    z-index: 99999;
	letter-spacing: -3px;
	margin-bottom: 0;
	color: #e8e1d8;
}
.title-hd h2::after{
    position: absolute;
    content: '';
    background-image: url(../img/shape-bg.png);
	background-repeat: no-repeat;
    width: 100px;
    height: 40px;
    left: 0;
    top: 0px;
    z-index: -1;
}



.feature-projects {
    padding-top: 80px;
    padding-bottom: 80px;
}

.feature-service h5{
	padding-top: 20px;
	font-family: Stara Medium;
	color: #e8e1d8;
}

.more-button button{
	font-family: Stara Medium;
	color: #e8e1d8 !important;
}
.more-button button:hover{
	color: #ff1419 !important;
}

.why-choose-us{
	
	
	
}

.quick-contact-banner-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 30px;
    height: 100%;
}
.quick-contact-banner-content h2{
	letter-spacing: -3px;
	font-size: 40px;
	color: #e8e1d8;
}
.quick-contact-banner-first {

	border: solid #c9171a 2px;
}
.quick-contact-banner-content p{
	color: #bcb5ad;
	font-family: Stara Medium;
}



.quick-contact-banner-first {
	color: #fff;
	font-family: Stara Bold;
	font-weight: 600;
}
.start{
	background-color: #c9171a;
	color: #fff;
}

.booking{
	color: #c9171a;
}
.book-btn-area{
	display: flex;
	align-items: end;
	height: 100%;
}
.why-choose-side span{
	color: #c9171a;
}

/* .why-choose-side{
	display: flex;
	justify-content: center;
	flex-direction: column;
	height: 100%;
} */
.why-choose-cards h5{
	font-size: 19px;
	margin-top: 20px;
	color: #e8e1d8;
	font-family: Stara Medium;
  }
  .why-choose-cards{
	padding: 15px;
	padding-top: 20px;
	padding-bottom: 20px;
	text-align: left;
	border-radius: 10px;
	/* background-color: #fff; */
  }
  
  /* .card-01{
	background-color: rgba(249,243,231,255);
  }
  .card-02{
	background-color: rgba(253,235,231,255);
  }
  .card-03{
	background-color: rgba(237,245,230,255);
  }
  .card-04{
	background-color: rgba(233,247,248,255);
  }
  .card-05{
	background-color: rgb(213 226 226);
  } */

  .title-hd h3 {
   font-family: Stara Bold;
    font-size: 45px;
    font-weight: 500;
	letter-spacing: -3px;
  }
  
  .why-choose-us h3{
	position: relative;
	color: #e8e1d8;
  }

  .why-choose-us h3::after{
    position: absolute;
    content: '';
    background-image: url(../img/shape-bg.png);
	background-repeat: no-repeat;
    width: 100px;
    height: 40px;
    left: 0;
    top: 0px;
    z-index: -1;
}

.testimonial-area{
	padding-bottom: 60px;
	padding-top: 30px;
}


.test-img {
display: flex;
flex-direction: column;
align-items: center;
height: 100%;
justify-content: center;
}
.testimonial-item{
    border: solid #e8e1d8 2px;
	padding: 20px;
}

.testimonial-item p{
	font-size: 18px;
	margin-bottom: 5px;
}

.testimonial-item h5{
	font-family: Stara Medium;
	margin-bottom: 0px;
	font-size: 17px;
}

.testimonial-item {
	font-family: Stara Medium;
	font-size: 14px;
	color: gray;
}

.testimonial-slider .slider {

	--slider-padding: 1rem;

	--slider-column-gap: 1rem;

	--slide-width: 60%;

	--slide-min-width: 15rem;

	position: relative;

	overflow: hidden;

}

.testimonial-item img{
	width: 40px;
	height: 40px;
	border-radius: 50%;
}


.curved-container {
    width: 100%;
    overflow: hidden;
    position: relative;
  }

  .curved-image {
    width: 100%;
    clip-path: path("M 0 0 L 100% 0 L 100% 90% Q 90% 100% 80% 90% Q 50% 70% 20% 90% Q 10% 100% 0 90% Z");
  }


.contact{
	background-image: url(../img/contact.jpg);
	padding-top: 50px ;
	padding-bottom: 50px;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}
.contact-form{
	border-radius: 10px;
	border: none;
}

.quick-links h5{
	font-family: Stara Medium;
	color: #98948f;
}
.quick-links a{
	  color: #bcb5ad;
}
.quick-links a:hover{
	color: #c9171a;
}
.quick-links li{
	font-family: Stara Medium;
	line-height: 2;
    color: #bcb5ad;
	font-size: 15px;
}

.social-icon h5{
	font-family: Stara Medium;
	color: #98948f;
}
.social-icon i{
	border: solid 1px rgb(188, 188, 188);
	padding: 10px;
    border-radius: 50%;
    margin: 5px;
	color: #bcb5ad;
}
.social-icon i:hover{
	background-color: #c9171a;
	color: #ffffff;
}

.footer-about p{
	color: #bcb5ad;
	font-size: 15px;
}
.copyright p{
	color: #bcb5ad;
	font-size: 15px;
}





/******************************** Services Page ******************/
.services h2{
	font-size: 50px;
	position: relative;
	color: #e8e1d8 ;
}


.services h2::after {
    position: absolute;
    content: '';
    background-image: url(../img/shape-bg.png);
    width: 100px;
    height: 40px;
    left: 0;
    top: 0px;
    z-index: -1;
	background-repeat: no-repeat;
}
/* .services-item{
	border: solid 2px #d5d5d5;
	padding: 20px;
	display: flex;
	justify-content: space-around;
	align-items: center;
} */

.services-item {
  position: relative;
  padding: 20px;
  background: linear-gradient(to right, #180b20, #c9171a);
  color: #fff;
 display: flex;
}
.arrow-btn {
    position: absolute;
    right: 10%;
}
/* Diagonal Border effect (like your red triangle corner) */
.services-item::before {
  content: '';
  position: absolute;
  top: 1px;
  right: 0;
  width: 100px;
  height: 100%;
  background: #180b20; 
  clip-path: polygon(100% 0, 0 100%, 100% 100%);
  z-index: 1;
  
}

/* Optional: to keep content above the ::before shape */
.services-item > * {
  position: relative;
  z-index: 2;
}


/* .services-item{
	position: relative;
}
.services-item::before{
	position: absolute;
	content: '';
    border-radius: 20px;
    border: 2px solid transparent;
    background: linear-gradient(95deg, #01061F, #babbc287) border-box;
    -webkit-mask:  linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
	 clip-path: polygon(0 0, 100% 0, 100% 100%, 30% 100%);
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
} */
.services-item .para{
	margin-right: 100px;
	margin-left: auto;
	width: 65%;
	text-align: left;
}
.services-item .head h3{
	font-family: Stara Medium;
	font-size: 35px;
	color: #e8e1d8 ;
}
.services-item .arrow-btn svg{
	width: 28px;
	height: 28px;
	rotate: -30deg;

}
/************************** Projects Page **************************/


.gallery-row{
  content: "";
  display: table;
  clear: both;
}
.gallery-item {
	float: left;
	width: 33.33%;
	display: none; 
	margin: 0px;
  }

  .show {
	display: block;
  }
  .gallery-content{
	position: relative;
  }
.project-name{
	position: absolute;
	bottom: 0;
	color: #fff;
	padding-left: 20px;
	
}
.project-name span{
	font-family: Stara Medium;
}
.project-name h4{
	font-family: Stara Medium;
	font-weight: 500;
}
.fillter-controls{
	text-align: center;
	font-family: Stara Medium;
}
.projects-list h3{
		font-family: Stara Medium;
		color: #e8e1d8;
}
.projects-list h2{
		color: #e8e1d8;
}
.load-moore-btn{
	display: flex !important;
	flex-direction: column;
    align-items: center;
    height: 100%;
    justify-content: center;
}
.team h2{
	font-size: 50px;
	width: 40%;
	letter-spacing: -2px;
	color: #c9171a ;
}
.team h3{
		font-family: Stara Medium;
		color: #e8e1d8 ;
}
.team-img {
	position: relative;
	display: inline-block;
  }
  
  .team-img img {
	display: block;
	width: 100%;
	height: auto;

  }
  .team-img{
	  filter: grayscale(100%);
  transition: filter 0.3s ease;
  }
  .overlay {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: rgba(0, 0, 0, 0.241);
	color: white;
	text-align: center;
	
	opacity: 0;
	transition: opacity 0.5s ease-in-out;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
  }
.overlay h5{
	position: relative;
}

  .overlay h5::after{
	position: absolute;
    content: '';
    background-color: #ffffff;
    height: 1px;
    bottom: -15px;
    left: 0;
    right: 0;
  }	
  .team-img:hover .overlay {
	opacity: 1;
	filter: grayscale(0%) !important;
  }
  
  .team-img:hover {
	filter: grayscale(0%) !important;
  }
  










  .contacts-data {

	display: flex;

	flex-direction: column;

	justify-content: center;



	height: 100%;

}



.contact-form-field {

	background: #e8e1d8  !important;

	border: 2px #ccc8c3 solid !important;

	padding: 10px;

	color: #000 !important;


	width: 100%;

	font-size: 15px;

}



input[type]:focus {



	border: 2px solid #ff1419 !important;



	outline: 0px !important;





}



textarea:focus {



	border: 2px solid #ff1419 !important;



	outline: 0px !important;





}



.button-solid{
	background-color: #000;
	border-radius: 50px;
	padding: 6px 30px 6px;
	color: #fff;
	font-family: Stara Medium;
}

.contact-form-field-area label {

	font-family: Stara Medium;

	padding-top: 20px;

	font-size: 18px;



}



.contact-form-field-area {

	border: solid #8080807a 1px;

	padding: 20px;

	background-color: #e8e1d8 ;

	padding-bottom: 50px;
	font-family: Stara Medium;
}



.contact-quote p {

	width: 70%;

}



.contact-quote h2 {

	font-size: 35px;

	letter-spacing: -3px;

}



.info-ic {

	width: 50px;

	height: 50px;

}



.contact-info-quote span {

	width: 70% !important;

}




.contact-banner-first h1 {
  position: relative;
  color: #e8e1d8 ;	
}
.contact-banner-first h1::after {
    position: absolute;
    content: '';
    background-image: url(../img/shape-bg.png);
	background-repeat: no-repeat;
    width: 100px;
    height: 40px;
    left: 0;
    top: 0px;
    z-index: -1;
}
.contact-info a{
	color: #000;
}

.contact-info a:hover{
	text-decoration: none;
	color: #000;
}
.contact-info{
	padding: 20px;
	padding-top: 30px;
	padding-bottom: 30px;
	width: 100%;
    margin-right: auto;
	background-color: #e8e1d8 ;
	font-family: Stara Medium;
}
.contact-banner-content {
    display: flex
;
    flex-direction: column;
    justify-content: center;
    padding: 30px;
    height: 100%;
	
}

.contact-banner-content h1{
	font-family: Stara Bold;
    font-weight: 500;
    letter-spacing: -3px;
    font-size: 50px;
}


.about-main h3{
	width: 55%;
	margin-left: auto;
	margin-right: auto;
		font-family: Stara Bold;
		color: #e8e1d8;
}
.about-main i{
	color: #ff1419;
}
.about-points li{
	color:#bcb5ad;
	margin-bottom: 25px;
	font-family: Stara Medium;
}
.aligned-list{
	  display: flex;
  align-items: start;
  list-style: none;

}

.about{
	background-image: url(../img/about.jpg);
	background-size: cover;
	height: 600px;
}
.about-content{
	
	display: flex;
	flex-direction: column;
	justify-content: center !important;
	align-items: center;
	height: 600px;

	
}
.about-content-p p{
	color: #fff;
}
.first-abt{
	border: solid 2px #fff;
	color: #fff;
	padding: 25px;
}

.two-abt{
	border: solid 2px #fff;
}

.first-abt p{
	color: #fff;
}
.about-content h2{
	color: #e8e1d8;
	font-size: 50px;
	font-family: Stara Bold;
	font-weight: 500;
	position: relative;
	z-index: 0;
	letter-spacing: -3px;
}

.about-content h2::after {
    position: absolute;
    content: '';
    background-image: url(../img/shape-bg.png);
	background-repeat: no-repeat;
	width: 100px;
    height: 40px;
    left: 0;
    top: 0px;
    z-index: -1;
}

.p-2{
	color: #9eaf08;
}
.about-more h2{
	letter-spacing: -3px;
	font-size: 40px;
}

.fa-dot-circle-o{
	color: #fbb448;
	font-size: 18px;
}












/* Common style */
.project-img-grid figure {
	position: relative;

	overflow: hidden;
	margin: 10px 1%;
	min-width: 320px;
	max-width: 480px;
	max-height: 100%;
	width: 100%;
	background: #3085a3;
	text-align: center;
	cursor: pointer;
}

.project-img-grid figure img {
	position: relative;
	display: block;
	min-height: 100%;
	max-width: 100%;
	opacity: 0.8;
}

.project-img-grid figure figcaption {
	padding: 0;
	color: #fff;
	text-transform: uppercase;
	font-size: 1.25em;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

.project-img-grid figure figcaption::before,
.project-img-grid figure figcaption::after {
	pointer-events: none;
}

.project-img-grid figure figcaption,
.project-img-grid figure figcaption > a {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
figure{
	    margin: 0 0 5px !important;
}
/* Anchor will cover the whole item by default */
/* For some effects it will show as a button */
.project-img-grid figure figcaption > a {
	z-index: 1000;
	text-indent: 200%;
	white-space: nowrap;
	font-size: 0;
	opacity: 0;
}

.project-img-grid figure h2 {
	word-spacing: -0.15em;
	font-weight: 300;
}

.project-img-grid figure h2 span {
	font-weight: 800;
}

.grproject-img-gridid figure h2,
.project-img-grid figure p {
	margin: 0;
}

.project-img-grid figure p {
	letter-spacing: 1px;
	font-size: 68.5%;
}

figure.effect-hover figcaption {
	top: auto;
	bottom: 0;
	padding: 1em;
	height: 3.75em;
	background: #47474700;
	
	color: #ffffff;
	-webkit-transition: -webkit-transform 0.35s;
	transition: transform 0.35s;
	-webkit-transform: translate3d(0,100%,0);
	transform: translate3d(0,100%,0);
	position: absolute;
	width: 100%;
}

figure.effect-hover h2 {
	float: left;
}

figure.effect-hover p.icon-links a {
	float: right;
	color: #3c4a50;
	font-size: 1.4em;
}

figure.effect-hover:hover p.icon-links a:hover,
figure.effect-hover:hover p.icon-links a:focus {
	color: #252d31;
}

figure.effect-hover p.description {
	position: absolute;
	bottom: 0;
	padding: 2em 0;
	color: #fff;
	text-transform: none;
	font-size: 90%;
	opacity: 0;
	-webkit-transition: opacity 0.35s;
	transition: opacity 0.35s;
	-webkit-backface-visibility: hidden; /* Fix for Chrome 37.0.2062.120 (Mac) */
}

figure.effect-hover h2,
figure.effect-hover p.icon-links a {
	-webkit-transition: -webkit-transform 0.35s;
	transition: transform 0.35s;
	-webkit-transform: translate3d(0,200%,0);
	transform: translate3d(0,200%,0);
}

figure.effect-hover p.icon-links a span::before {
	display: inline-block;
	padding: 8px 10px;
	font-family: 'feathericons';
	speak: none;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.icon-eye::before {
	content: '\e000';
}

.icon-paper-clip::before {
	content: '\e001';
}

.icon-heart::before {
	content: '\e024';
}

figure.effect-hover h2 {
	display: inline-block;
}

figure.effect-hover:hover p.description {
	opacity: 1;
}

figure.effect-hover:hover figcaption,
figure.effect-hover:hover h2,
figure.effect-hover:hover p.icon-links a {
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
}

figure.effect-hover:hover h2 {
	-webkit-transition-delay: 0.05s;
	transition-delay: 0.05s;
}

figure.effect-hover:hover p.icon-links a:nth-child(3) {
	-webkit-transition-delay: 0.1s;
	transition-delay: 0.1s;
}

figure.effect-hover:hover p.icon-links a:nth-child(2) {
	-webkit-transition-delay: 0.15s;
	transition-delay: 0.15s;
}

figure.effect-hover:hover p.icon-links a:first-child {
	-webkit-transition-delay: 0.2s;
	transition-delay: 0.2s;
}

/* ------------------------
    How It Work
------------------------*/


.how-we-work{
	padding-top: 50px;
	padding-bottom: 50px;
	background-image: url(../img/how-to-work.jpg);
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	background-attachment: fixed;
}

.how-we-work h2{
	font-family: Stara Bold;
    font-size: 50px;
    font-weight: 500;
    text-align: center;
	letter-spacing: -3px;
	color: #fff;
	margin-bottom: 0px;
	position: relative;
	z-index: 0;
	width: 400px;
}
.how-we-work h2::after {
    position: absolute;
    content: '';
    background-image: url(../img/shape-bg.png);
	background-repeat: no-repeat;

    width: 100px;
    height: 50px;
    left: 0;
    top: 0px;
    z-index: -1;
}
.how-we-work p{
	text-align: center;
	color: #fff;
}
.step-num-box h4{
	font-size: 20px;
	font-family: BAHNSCHRIFT Regular;
	margin-top: 20px;
	color: #fff;
}


.work-process{
    position: relative;
}
.step-num {
    background: #fff;
    box-shadow: 0 12px 20px 0 rgba(117, 178, 240, 0.4);
    color: #ff1419;
    display: inline-block;
    font-size: 15px;
    font-weight: 600;
    height: 40px;
    right: -25px;
    line-height: 40px;
    position: absolute;
    text-align: center;
    top: -8px;
    width: 40px;
	font-family: BAHNSCHRIFT Regular;
}
 .theme-bg .work-process h4, .theme-bg .work-process p{
    color: #ffffff;
}
 .step-icon {
    background: #ffffff;
     width:140px;
     height:140px;
     position: relative;
     border: 3px solid #fafaff;
     line-height: 140px;
     font-size: 40px;
     text-align: center;
     color: #1c1d3e;
	 left: 50px;
}
 .step-icon span {
    position: relative;
}
 .step-icon span::after, .step-icon span::before {
    border-radius: 50%;
     content: "";
     height: 40px;
     position: absolute;
     width: 40px;
     z-index: -1;
}
 .step-icon span::after {
    background: #cdf3f6;
     height: 25px;
     left: -10px;
     top: 5px;
     width: 25px;
}
 .step-icon span::before {
    background: #d4f8e6;
     bottom: 0;
     right: -10px;
}
 .dark-bg .step-icon{
    color: rgba(255,255,255,0.9);
     background: none;
}
 .dark-bg .step-desc h4{
    color: #2575fc;
}
 .dark-bg .step-icon{
    border-color: rgba(255,255,255,0.1);
}
 .dark-bg .step-desc p{
    color: rgba(255,255,255,0.7);
}
 .step-num-box{
    position: relative;
     display: inline-block;
     margin-bottom: 20px;
}
 .work-process .box-loader{
    position: absolute;
     top: 30%;
     right: -15%;
     left: inherit;
}
 .work-process.style-2 {
    padding: 0;
     display: flex;
     align-items: center;
}
 .work-process.style-2:before{
    display: none;
}
 .work-process.style-2 .step-num-box {
    margin-bottom: 0;
     margin-right: 30px;
}
 .work-process.style-3 {
    padding: 70px 30px 0;
}
 .work-process.style-3 .step-num {
    background: none;
     box-shadow: none;
     color: rgba(255, 255, 255, 0.1);
     font-size: 120px;
     height: auto;
     left: 50%;
     line-height: 120px;
     margin-bottom: 0;
     position: absolute;
     top: 0;
     transform: translateX(-50%);
     width: auto;
}
 #svg-container {
    position: absolute;
     width: 100%;
     left: 52%;
     z-index: 0;
     transform: translateX(-50%);
     width: 75%;
}
 #svgC {
    margin: 0 auto;
     width: 100%;
}
 





@media(max-width: 576px){
	.logo img{
		width: 120px;
	}
	.anim-text{
		font-size: 50px;
		letter-spacing: -6px;
		line-height: 45px;
	}
	.services-item{
		display: block;
	}
	.services-item .para{
		width: 100%;
		margin-right: 0px;
	}
	.title-hd h2{
		font-size: 42px;
	}
	.project-name h4 {
		font-size: 14px;
	}
	.project-name span{
		font-size: 11px;
	}
	.testimonial-item p {
		font-size: 16px;
	}
	.testimonial-item span{
		font-size: 12px;
	}
	.header .menu > ul > li > a{
		color: #777777 !important;
		text-align: left;
	}
	.team h2{
		width: 100%;
	}
	.contact-info{
		width: 100% !important;
	}
	.title-hd h2{
		width: 100% !important;
	}
	.book-btn-area{
		display: block;
	}
	.d-none-mob{
		display: none !important;
	}
	.about-main h3{
		width: 100%;
	}
	.how-we-work h2{
		width: 100%;
		font-size: 40px;
	}
	.arrow-btn{
		right: 0px;
	}
	.services-item::before{
		background: none;
	}
}
 @media (min-width: 1200px) {
	.d-none-desk{
		display: none !important;
	}
 }


.js-scroll {
  position: fixed;
  z-index: 0;
  top: 0;
  left: 0;
  overflow: hidden;
  width: 100%;
  will-change: transform;
}



