@import url(fontawesome-all.min.css);
@import url("https://fonts.googleapis.com/css?family=Open+Sans:400,400italic,600,600italic,800,800italic");

/*
	Spectral by HTML5 UP
	html5up.net | @ajlkn
	Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
*/

/* Fonts */
:root {
	--font-default: "Open Sans", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
	--font-primary: "Roboto", sans-serif;
	--font-secondary: "Work Sans", sans-serif;
  }
  
  /* Colors */
  :root {
	--color-default: #364d59;
	--color-primary: #A81916;
	--color-secondary: #52565e;
  }
  
  /* Smooth scroll behavior */
  :root {
	scroll-behavior: smooth;
  }
  
  /*--------------------------------------------------------------
  # General
  --------------------------------------------------------------*/
  body {
	font-family: var(--font-default);
	color: var(--color-default);
	overflow-x: hidden;
	margin: 0;
  }
  
  a {
	color: var(--color-primary);
	text-decoration: none;
  }
  
  a:hover {
	color: #ffc732;
	text-decoration: none;
  }

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-primary);
}

nav{
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;}
nav {
	display: block;}





/* Section/Article */

	section.special, article.special {
		text-align: center;
	}

/*--------------------------------------------------------------
# Scroll top button
--------------------------------------------------------------*/
.scroll-top {
	position: fixed;
	visibility: hidden;
	opacity: 0;
	right: 15px;
	bottom: 15px;
	z-index: 99999;
	background: var(--color-primary);
	width: 40px;
	height: 40px;
	border-radius: 4px;
	transition: all 0.4s;
  }
  
  .scroll-top i {
	font-size: 24px;
	color: var(--color-secondary);
	line-height: 0;
  }
  
  .scroll-top:hover {
	background: #ffc732;
	color: #fff;
  }
  
  .scroll-top.active {
	visibility: visible;
	opacity: 1;
  }

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
	position: fixed;
	inset: 0;
	z-index: 999999;
	overflow: hidden;
	background: #fff;
	transition: all 0.6s ease-out;
  }
  
  #preloader:before {
	content: "";
	position: fixed;
	top: calc(50% - 30px);
	left: calc(50% - 30px);
	border: 6px solid #fff;
	border-color: var(--color-primary) transparent var(--color-primary) transparent;
	border-radius: 50%;
	width: 60px;
	height: 60px;
	animation: animate-preloader 1.5s linear infinite;
  }
  
  @keyframes animate-preloader {
	0% {
	  transform: rotate(0deg);
	}
  
	100% {
	  transform: rotate(360deg);
	}
  }
  
  /*--------------------------------------------------------------
  # Disable aos animation delay on mobile devices
  --------------------------------------------------------------*/
  @media screen and (max-width: 768px) {
	[data-aos-delay] {
	  transition-delay: 0 !important;
	}
  }
  

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.header {
	z-index: 997;
	position: absolute;
	padding: 0px 0;
	top: 0;
	left: 0;
	right: 0;
  }
  
  .header .logo img {
	max-height: 40px;
	margin-right: 6px;
  }
  
  .header .logo h1 {
	font-size: 24px;
	font-weight: 700;
	color: #343434;
	margin-bottom: 0;
	font-family: var(--font-primary);
  }
  
  .header .logo h1 span {
	color: var(--color-primary);
  }

/* Page content */
.scrollcontent {
	padding: 16px;
  }
  
/* The sticky class is added to the header with JS when it reaches its scroll position */
.sticky {
	position: fixed;
	top: 0;
	width: 100%
  }
  
  /* Add some top padding to the page content to prevent sudden quick movement (as the header gets a new position at the top of the page (position:fixed and top:0) */
  .sticky + .scrollcontent {
	padding-top: 102px;
  }





/* Icon */

	.icon {
		text-decoration: none;
		border-bottom: none;
		position: relative;
	}

		.icon:before {
			-moz-osx-font-smoothing: grayscale;
			-webkit-font-smoothing: antialiased;
			display: inline-block;
			font-style: normal;
			font-variant: normal;
			text-rendering: auto;
			line-height: 1;
			text-transform: none !important;
			font-family: 'Font Awesome 5 Free';
			font-weight: 400;
		}

		.icon > .label {
			display: none;
		}

		.icon:before {
			line-height: inherit;
		}

		.icon.solid:before {
			font-weight: 900;
		}

		.icon.brands:before {
			font-family: 'Font Awesome 5 Brands';
		}

		.icon.major {
			-moz-transform: rotate(-45deg);
			-webkit-transform: rotate(-45deg);
			-ms-transform: rotate(-45deg);
			transform: rotate(-45deg);
			border-radius: 3px;
			border: solid 2px #fff;
			display: inline-block;
			font-size: 1.35em;
			height: calc(3em + 2px);
			line-height: 3em;
			text-align: center;
			width: calc(3em + 2px);
		}

			.icon.major:before {
				-moz-transform: rotate(45deg);
				-webkit-transform: rotate(45deg);
				-ms-transform: rotate(45deg);
				transform: rotate(45deg);
				display: inline-block;
				font-size: 1.5em;
			}

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

				.icon.major {
					font-size: 1em;
				}

			}

		.icon.style1 {
			color: #00ffcc;
		}

		.icon.style2 {
			color: #00f0ff;
		}

		.icon.style3 {
			color: #76ddff;
		}

/* Image */

	.image {
		border-radius: 3px;
		border: 0;
		display: inline-block;
		position: relative;
	}

		.image img {
			border-radius: 3px;
			display: block;
		}

		.image.left {
			float: left;
			margin: 0 2em 2em 0;
			top: 0.25em;
		}

		.image.right {
			float: right;
			margin: 0 0 2em 2em;
			top: 0.25em;
		}

		.image.left, .image.right {
			max-width: 40%;
		}

			.image.left img, .image.right img {
				width: 100%;
			}

		.image.fit {
			display: block;
			margin: 0 0 2em 0;
			width: 100%;
		}

			.image.fit img {
				width: 100%;
			}

/* NAVBAR */


.banner-image-writing1{
	margin: 0px;
	z-index: 5;
	font-size: 1vw;
	position: absolute;
	top: 0;
	padding-top: 30%;
	max-width: 100%;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center ; /** Y-axis align **/
	justify-content: center; /** X-axis align **/
	background:#faeae8;
	transition: all .3s ease-in;
	color: #A81916;
	flex-direction: column;
	row-gap: 10px;
	text-decoration-color: #feb900;
}

.underline1{
	text-decoration-color: #feb900;
}

.banner-image-writing2{
	margin: 0px;
	z-index: 5;
	font-size: 1vw;
	position: absolute;
	top: 0;
	padding-top: 30%;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center; /** Y-axis align **/
	justify-content: center; /** X-axis align **/
	background: #A81916;
	transition: all .3s ease-in;
	color: white;
	flex-direction: column;
	row-gap: 10px;
	text-decoration-color: #feb900;
}

.banner-image-writing3{
	margin: 0px;
	z-index: 5;
	font-size: 1vw;
	position: absolute;
	top: 0;
	padding-top: 30%;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center; /** Y-axis align **/
	justify-content: center; /** X-axis align **/
	transition: all .3s ease-in;
	color: white;
	flex-direction: column;
	row-gap: 10px;
	text-decoration-color: #feb900;
}

.banner-image-writing1:hover{
	/* // These styles affect the div when hovered. */
	background: #00000000;
	transform: scale(1);
	z-index: 5;
	position: absolute;
	color: rgba(0, 0, 0, 0);
	text-decoration: none;
	text-decoration-color: #feba0000;
	
}

.banner-image-writing1 .underline1:hover{
	text-decoration-color: #feba0000;
}

.banner-image-writing2 .underline1:hover{
	text-decoration-color: #feba0000;
}

.banner-image-writing3 .underline1:hover{
	text-decoration-color: #feba0000;
}

.banner-image-writing2:hover{
	/* // These styles affect the div when hovered. */
	background: #00000000;
	transform: scale(1);
	z-index: 5;
	position: absolute;
	color: rgba(0, 0, 0, 0);
	text-decoration: none;
	text-decoration-color: #feba0000;
}

.banner-image-writing3:hover{
	/* // These styles affect the div when hovered. */
	background: #00000000;
	transform: scale(1);
	z-index: 5;
	position: absolute;
	color: rgba(0, 0, 0, 0);
	text-decoration: none;
	text-decoration-color: #feba0000;
}

/* Banner */

.banner-wrapper{
	width: 100%;
	position: relative;
	height: 100vh;
	display: flex;
	padding-top: 60px;
}



	#banner {
		flex: 4;
		display: flex;
		justify-content: center;
		cursor: default;
		height: 100%;
		position: relative;
		text-align: center;
		border-bottom: black;
		border-bottom-width: 2px;
		border-bottom-style: solid;
	}

	.inner-banner{
		height: auto;
		position: relative;
		top: 10%;
		width: 50%;
		max-width: 50%;
	}


	#banner h2 {
		-moz-transform: scale(1);
		-webkit-transform: scale(1);
		-ms-transform: scale(1);
		transform: scale(1);
		-moz-transition: -moz-transform 0.5s ease, opacity 0.5s ease;
		-webkit-transition: -webkit-transform 0.5s ease, opacity 0.5s ease;
		-ms-transition: -ms-transform 0.5s ease, opacity 0.5s ease;
		transition: transform 0.5s ease, opacity 0.5s ease;
		display: inline-block;
		font-size: 1.75em;
		opacity: 1;
		position: relative;
		z-index: 1;
		
	}

		#banner h2:before, #banner h2:after {
			-moz-transition: width 0.85s ease;
			-webkit-transition: width 0.85s ease;
			-ms-transition: width 0.85s ease;
			transition: width 0.85s ease;
			-moz-transition-delay: 0.25s;
			-webkit-transition-delay: 0.25s;
			-ms-transition-delay: 0.25s;
			transition-delay: 0.25s;
			background: #fff;
			content: '';
			display: block;
			height: 2px;
			position: absolute;
			width: 100%;
			
			
		}

		#banner h2:before {
			top: -10px;
			left: 0;
			margin-bottom: 10px;
		}

		#banner h2:after {
			bottom: -10px;
			right: 0;
			margin-top: 10px;
		}

	#banner p {
		letter-spacing: 0.225em;
		text-transform: uppercase;
	}

		#banner p a {
			color: inherit;
		}

		#banner .more {
			-moz-transition: -moz-transform 0.75s ease, opacity 0.75s ease;
			-webkit-transition: -webkit-transform 0.75s ease, opacity 0.75s ease;
			-ms-transition: -ms-transform 0.75s ease, opacity 0.75s ease;
			transition: transform 0.75s ease, opacity 0.75s ease;
			-moz-transition-delay: 3.5s;
			-webkit-transition-delay: 3.5s;
			-ms-transition-delay: 3.5s;
			transition-delay: 3.5s;
			-moz-transform: translateY(0);
			-webkit-transform: translateY(0);
			-ms-transform: translateY(0);
			transform: translateY(0);
			border: none;
			bottom: 0;
			font-size: 1.0em;
			font-weight: 800;
			height: 8.5em;
			left: 50%;
			letter-spacing: 0.225em;
			margin-left: -8.5em;
			opacity: 1;
			outline: 0;
			padding-left: 0.225em;
			position: absolute;
			text-align: center;
			text-transform: uppercase;
			width: 16em;
			z-index: 1;
			color: white;
		}

			#banner .more:after {
				background-image: url("images/arrow.svg");
				background-position: center;
				background-repeat: no-repeat;
				background-size: contain;
				bottom: 4em;
				content: '';
				display: block;
				height: 1.5em;
				left: 50%;
				margin: 0 0 0 -0.75em;
				position: absolute;
				width: 1.5em;
			}



	#banner:after {
		pointer-events: none;
		-moz-transition: opacity 3s ease-in-out;
		-webkit-transition: opacity 3s ease-in-out;
		-ms-transition: opacity 3s ease-in-out;
		transition: opacity 3s ease-in-out;
		-moz-transition-delay: 1.25s;
		-webkit-transition-delay: 1.25s;
		-ms-transition-delay: 1.25s;
		transition-delay: 1.25s;
		content: '';
		background: #343434;
		display: block;
		width: 100%;
		height: 100%;
		position: absolute;
		left: 0;
		top: 0;
		opacity: 0;
		border-bottom: white;
		border-bottom-width: 2px;
		border-bottom-style: solid;
	}

	.banner-right {
		flex: 1;
		display: flex;
		flex-direction: column;
		justify-content: center;
		cursor: default;
		position: relative;
		text-align: center;
		object-fit: contain;
		width: 100%;
		border-left: white;
		border-left-width: 2px;
		border-left-style: solid;
		background-color: #2e3842;
		z-index: 1;
		opacity: 1;
	}

	#banner-right:after {
		pointer-events: none;
		-moz-transition: opacity 3s ease-in-out;
		-webkit-transition: opacity 3s ease-in-out;
		-ms-transition: opacity 3s ease-in-out;
		transition: opacity 3s ease-in-out;
		-moz-transition-delay: 1.25s;
		-webkit-transition-delay: 1.25s;
		-ms-transition-delay: 1.25s;
		transition-delay: 1.25s;
		content: "";
		display: block;
		background: #343434;
		opacity: 1;
		position: relative;
	}




	.banner-right-wrapper{
		flex: 1;
		flex-direction: column;
		justify-content: center;
		cursor: default;
		position: relative;
		text-align: center;
		display: flex;
		object-fit: cover;
		align-self: center;
		width: 100%;
		object-fit: contain;
	}



	.banner-right-image{
		flex: 1;
		object-fit: cover;
		align-self: center;
		flex-direction: column;
		justify-content: center;
		cursor: default;
		position: relative;
		text-align: center;
		display: flex;
		background-color: #76ddff;
		width: 100%;
		height: 100%;
		min-height: 33.3%;
		max-height: 33.3%;
		object-fit: contain;
		border-bottom: white;
		border-bottom-width: 2px;
		border-bottom-style: solid;
		z-index: 5;
	}

	.bannerimage{
		flex: 1;
		flex-direction: row;
		justify-content: center;
		cursor: default;
		position: relative;
		text-align: center;
		display: flex;
		flex-wrap: wrap;
		overflow: hidden;
		max-width: 100%;
		object-fit: contain;
		width: 100%;
		height: 0;
		min-height: 33.3%;
		max-height: 33.3%;
		
	}


	
	.banner-hover{
		z-index: 3;
		position: absolute;
		left: 0%;
		top: 0%;
		/* transform: translate(-50%, -50%); */
		width: 100%;
		height: 100%;
		max-width: 100%;
		max-height: 100%;
	}


	.banner-image img {
		z-index: 2;
		position: absolute;
		left: 0%;
		top: 0%;
		/* transform: translate(-50%, -50%); */
		width: 100%;
		height: 100%;
		max-width: 100%;
		max-height: 100%;
		object-fit: cover;
		object-position: 50%;
		transform: scale(1.0) translate(0, 0%);
	  }

	.banner-image-hidden{
		image-rendering: -moz-crisp-edges;
		image-rendering: -moz-crisp-edges;
		image-rendering: -o-crisp-edges;
		image-rendering: -webkit-optimize-contrast;
		-ms-interpolation-mode: nearest-neighbor;
	}

	.banner-icon{
		display:block;
		margin:auto;
		position: relative;
		z-index: 6;
		max-height: 90px;
		min-height: 90px;
		min-width: 90px;
		max-height: 90px;
		width: 30%;
		margin-bottom: 50px;
		top: -10%;
	}

	.banner-icon2{
		display:block;
		margin:auto;
		position: relative;
		z-index: 6;
		max-height: 90px;
		min-height: 90px;
		min-width: 90px;
		max-width: 90px;
		width: 30%;
		margin-bottom: 50px;
		top: -10%;

	}

	.banner-icon3{
		display:block;
		margin:auto;
		position: relative;
		z-index: 6;
		max-height: 70px;
		min-height: 70px;
		min-width: 70px;
		max-width: 70px;
		width: 30%;
		margin-bottom: 50px;
		top: -10%;

	}






/*--------------------------------------------------------------
# Desktop Navigation
--------------------------------------------------------------*/
@media (min-width: 1280px) {
	.navbar {
	  width: 100%;	
	  padding: 0;
	  background-color: white;
	  position: absolute;
	  display: grid;
	  min-height: 60px;
	  border-bottom: black;
	  border-bottom-width: 2px;
	  border-bottom-style: solid;
	  z-index: 2000;
	}

	.navbar .hidden-marker{
		z-index: 2001;
	}

	.menubar{
		width: 100%;
		margin: 0px;
	}

  
	.navbar ul {
	  margin: 0;
	  padding-left: 0px;
	  display: flex;
	  list-style: none;
	  align-items: center;
		justify-self: center;
		position: absolute;

	}


  
	.navbar li {
	  position: relative;
	}
  
	.navbar>ul>li {
	  white-space: nowrap;
	  padding: 10px 0 10px 28px;
	}
 

	.navbar a,
	.navbar a:focus {
	  display: flex;
	  align-items: center;
	  justify-content: space-between;
	  padding: 0 3px;
	  font-family: var(--font-primary);
	  font-size: 16px;
	  font-weight: 500;
	  color: black;
	  text-transform: uppercase;
	  white-space: nowrap;
	  transition: 0.3s;
	  position: relative;
	}
  
	.navbar a i,
	.navbar a:focus i {
	  font-size: 14px;
	  line-height: 0;
	  margin-left: 5px;
	}
  
	.navbar>ul>li>a:before {
	  content: "";
	  position: absolute;
	  width: 100%;
	  height: 2px;
	  bottom: -6px;
	  left: 0;
	  background-color: var(--color-primary);
	  visibility: hidden;
	  width: 0px;
	  transition: all 0.3s ease-in-out 0s;
	}
  
	.navbar a:hover:before,
	.navbar li:hover>a:before,
	.navbar .active:before {
	  visibility: visible;
	  width: 100%;
	}
  
	.navbar a:hover,
	.navbar .active,
	.navbar .active:focus,
	.navbar li:hover>a {
	  color: black;
	}
  
	.navbar .dropdown ul {
	  display: block;
	  position: absolute;
	  left: 28px;
	  top: calc(100% + 30px);
	  margin: 0;
	  padding: 10px 0;
	  z-index: 99;
	  opacity: 0;
	  visibility: hidden;
	  background: white;
	  box-shadow: 0px 0px 30px rgb(127, 137, 161);
	  transition: 0.3s;
	}
  
	.navbar .dropdown ul li {
	  min-width: 200px;
	}


  
	.navbar .dropdown ul a {
	  padding: 10px 20px;
	  font-size: 20px;
	  text-transform: none;
	  color: var(--color-default);
	  font-weight: 400;
	  color: black;
	}
  
	.navbar .dropdown ul a i {
	  font-size: 12px;
	}
  
	.navbar .dropdown ul a:hover,
	.navbar .dropdown ul .active:hover,
	.navbar .dropdown ul li:hover>a {
	  color: var(--color-primary);
	}
  
	.navbar .dropdown:hover>ul {
	  opacity: 1;
	  top: 100%;
	  visibility: visible;
	}
  
	.navbar .dropdown .dropdown ul {
	  top: 0;
	  left: calc(100% - 30px);
	  visibility: hidden;
	}
  
	.navbar .dropdown .dropdown:hover>ul {
	  opacity: 1;
	  top: 0;
	  left: 100%;
	  visibility: visible;
	}
  }
  
  @media (min-width: 1280px) and (max-width: 1366px) {
	.navbar .dropdown .dropdown ul {
	  left: -90%;
	}
  
	.navbar .dropdown .dropdown:hover>ul {
	  left: -100%;
	}
  }
  
  @media (min-width: 1280px) {
  
	.mobile-nav-show,
	.mobile-nav-hide {
	  display: none;
	  padding-top: 10px;
	}
  }
  
  .navbar-logo {
	margin: 0;
	position: absolute;
	left: 60px;
	top: 5px;
	z-index: 9998;
	width: auto;
	height: 100%;
	padding-top: 5px;
	padding-bottom: 5px;

}

	.navbar-logo img {
		height: auto;
		min-width: 100px;
		width: 15%;
	}

.navbar-info{
	margin: 0;
	position: absolute;
	right: 10%;
	top: 0px;
	color: black;
	max-height: 60px;
}

.navbar-info a{
	align-items: center;
	justify-content: center;
	font-family: var(--font-primary);
	height: auto;
	font-weight: 800;
	color: #A81916;
	text-transform: uppercase;
	white-space: nowrap;
	position: absolute;
	top: 5px;
	padding-left: 0px;
	z-index: 9998;
	right: 5px;
}

.navbar-social a {
	margin: 0;
	position: relative;
	right: 0;
	padding-right: 0px;
	z-index: 9998;
  }

  .navbar-social a {
	font-size: 30px;
	display: inline-block;
	background: rgba(255, 255, 255, 0.1);
	color: #000000;
	line-height: 1;
	border-radius: 4px;
	width: 36px;
	height: 30px;
	transition: 0.5s;
	z-index: 9998;
	top: 25px;
	}

	.navbar-social a i{
		font-size: 20px;
	}

	.navbar-social a i:hover{
		font-size: 25px;
		transition: 0.5s;
	}
	
	.navbar-social a:hover {
	background: var(--color-primary);
	text-decoration: none;
	transition: 0.5s;
	}




  /*--------------------------------------------------------------
  # Mobile Navigation
  --------------------------------------------------------------*/
  @media (max-width: 1279px) {
	.navbar {
	  position: fixed;
	  top: 0;
	  right: -100%;
	  width: 100%;
	  height: 60px;
	  bottom: 0;
	  transition: 0.3s;
	  z-index: 9997;
	  background-color: white;
	  border-bottom: black;
	  border-bottom-width: 2px;
	  border-bottom-style: solid;
	}

	.navbar .hidden-marker{
		z-index: 9999;
	}




	.mobile-menubar{
		background-color: #ffffff;
		width: 100%;
		margin: 0px;
		height: 60px;
	}
  
	.navbar ul {
	  position: absolute;
	  inset: 0;
	  padding: 50px 0 10px 0;
	  margin: 0;
	  background: rgba(255, 255, 255, 0);
	  overflow-y: visible;
	  transition: 0.3s;
	  z-index: 9998;
	  min-width: 210px;
	}

	.navbar ::marker {
		visibility: hidden;
		color: transparent;
	}

	.hidden-marker ::marker {
		visibility: hidden;
	}

	.hidden-marker::before i {
		left: 0;
		visibility: visible;
	}

	.hidden-marker::before ::marker {
		visibility: hidden;
	}
  
	.navbar a,
	.navbar a:focus {
	  display: flex;
	  align-items: center;
	  justify-content: space-between;
	  padding: 10px 20px;
	  font-family: var(--font-primary);
	  font-size: 15px;
	  font-weight: 500;
	  color: black;
	  white-space: nowrap;
	  text-transform: uppercase;
	  transition: 0.3s;
	}

  
	.navbar a i,
	.navbar a:focus i {
	  font-size: 12px;
	  line-height: 0;
	  margin-left: 5px;
	}
  
	.navbar a:hover,
	.navbar .active,
	.navbar .active:focus,
	.navbar li:hover>a {
	  color: black;
	}
  
	.navbar .dropdown ul,
	.navbar .dropdown .dropdown ul {
	  position: static;
	  display: none;
	  padding: 10px 0;
	  margin: 10px 20px;
	  transition: all 0.5s ease-in-out;
	  border: 1px solid #ffffff00;
	  min-width: auto;
	}
  
	.navbar .dropdown>.dropdown-active,
	.navbar .dropdown .dropdown>.dropdown-active {
	  display: block;
	}
  
	.mobile-nav-show {
	  position: absolute;
	  color: black;
	  font-size: 28px;
	  cursor: pointer;
	  line-height: 0;
	  transition: 0.5s;
	  z-index: 9999;
	  padding-left: 10px;
	  padding-top: 15px;

	}
  
	.mobile-nav-hide {
		position: absolute;
		color: #000000;
		font-size: 28px;
		cursor: pointer;
		line-height: 0;
		transition: 0.5s;
		z-index: 9999;
		padding-left: 10px;
		padding-top: 15px;
	}
  
	.mobile-nav-active {
	  overflow:visible ;
	}
  
	.mobile-nav-active .navbar {
	  left: 0;
	}
  
	.mobile-nav-active .navbar:before {
	  content: "";
	  width: 20%;
	  position: fixed;
	  inset: 0;
	  background-color: #ffffff;
	  z-index: 9996;
	  min-width: 210px;
	}

	.banner-image-writing1{
		font-size: 1.5vh;
	}
	.banner-image-writing2{
		font-size: 1.5vh;
	}
	.banner-image-writing3{
		font-size: 1.5vh;
	}

	

	.navbar-info a{
		font-size: 2vh;
		font-weight: 800;
	}

  }












body.is-preload #banner h2 {
	-moz-transform: scale(0.95);
	-webkit-transform: scale(0.95);
	-ms-transform: scale(0.95);
	transform: scale(0.95);
	opacity: 0;
}

	body.is-preload #banner h2:before, body.is-preload #banner h2:after {
		width: 0;
	}

body.is-preload #banner .more {
	-moz-transform: translateY(8.5em);
	-webkit-transform: translateY(8.5em);
	-ms-transform: translateY(8.5em);
	transform: translateY(8.5em);
	opacity: 0;
}

body.is-preload #banner:after {
	opacity: 1;
}



/* Main */

/*--------------------------------------------------------------
# Sections & Section Header
--------------------------------------------------------------*/
section {
	padding: 80px 0;
	overflow: hidden;
  }
  
  .section-bg {
	background-color: #f5f6f7;
  }

  .section-bg2 {
	background-color: #dedede;
  }
  
  .section-header {
	text-align: center;
	padding-bottom: 70px;
  }
  
  .section-header h2 {
	font-size: 32px;
	font-weight: 700;
	position: relative;
	color: #2e3135;
  }
  
  .section-header h2:before,
  .section-header h2:after {
	content: "";
	width: 50px;
	height: 2px;
	background: var(--color-primary);
	display: inline-block;
  }
  
  .section-header h2:before {
	margin: 0 15px 10px 0;
  }
  
  .section-header h2:after {
	margin: 0 0 10px 15px;
  }
  
  .section-header p {
	margin: 0 auto 0 auto;
	color: black
  }
  
  @media (min-width: 1199px) {
	.section-header p {
	  max-width: 60%;
	}
  }


/*--------------------------------------------------------------
# Constructions Section
--------------------------------------------------------------*/

.constructions{
 	background-color: #f5f6f7;
  }

.constructions .card-item {
	border: 1px solid rgba(82, 86, 94, 0.2);
	position: relative;
	border-radius: 0;
  }
  
  .constructions .card-item .card-bg {
	min-height: 300px;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
  }
  
  .constructions .card-item .card-body {
	padding: 30px;
  }
  
  .constructions .card-item h4 {
	font-weight: 700;
	font-size: 20px;
	margin-bottom: 15px;
	color: var(--color-secondary);
  }
  
  .constructions .card-item p {
	color: var(--color-secondary);
	margin: 0;
  }

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .testimonial-wrap {
	padding-left: 50px;
  }
  
  .testimonials .testimonials-carousel,
  .testimonials .testimonials-slider {
	overflow: hidden;
  }
  
  .testimonials .testimonial-item {
	box-sizing: content-box;
	padding: 30px 30px 30px 60px;
	margin: 0 15px 30px 0;
	min-height: 200px;
	box-shadow: 0px 2px 20px rgba(82, 86, 94, 0.1);
	position: relative;
	background: #fff;
  }
  
  .testimonials .testimonial-item .testimonial-img {
	width: 90px;
	border-radius: 10px;
	border: 6px solid #fff;
	position: absolute;
	left: -45px;
  }
  
  .testimonials .testimonial-item h3 {
	font-size: 18px;
	font-weight: bold;
	margin: 10px 0 5px 0;
	color: #000;
  }
  
  .testimonials .testimonial-item h4 {
	font-size: 14px;
	color: #999;
	margin: 0;
  }
  
  .testimonials .testimonial-item .stars {
	margin: 10px 0;
  }
  
  .testimonials .testimonial-item .stars i {
	color: #ffc107;
	margin: 0 1px;
  }
  
  .testimonials .testimonial-item .quote-icon-left,
  .testimonials .testimonial-item .quote-icon-right {
	color: #ffd565;
	font-size: 26px;
	line-height: 0;
  }
  
  .testimonials .testimonial-item .quote-icon-left {
	display: inline-block;
	left: -5px;
	position: relative;
  }
  
  .testimonials .testimonial-item .quote-icon-right {
	display: inline-block;
	right: -5px;
	position: relative;
	top: 10px;
	transform: scale(-1, -1);
  }
  
  .testimonials .testimonial-item p {
	font-style: italic;
	margin: 15px auto 15px auto;
  }
  
  .testimonials .swiper-pagination {
	margin-top: 20px;
	position: relative;
  }
  
  .testimonials .swiper-pagination .swiper-pagination-bullet {
	width: 12px;
	height: 12px;
	background-color: #d5d7da;
	opacity: 1;
  }
  
  .testimonials .swiper-pagination .swiper-pagination-bullet-active {
	background-color: var(--color-primary);
  }
  
  @media (max-width: 767px) {
	.testimonials .testimonial-wrap {
	  padding-left: 0;
	}
  
	.testimonials .testimonials-carousel,
	.testimonials .testimonials-slider {
	  overflow: hidden;
	}
  
	.testimonials .testimonial-item {
	  padding: 30px;
	  margin: 15px;
	}
  
	.testimonials .testimonial-item .testimonial-img {
	  position: static;
	  left: auto;
	}
  }


/*--------------------------------------------------------------
# Get Started Section
--------------------------------------------------------------*/
.get-started .content {
	padding: 30px 0;
  }
  
  .get-started .content h3 {
	font-size: 36px;
	color: var(--color-secondary);
	font-weight: 600;
	margin-bottom: 25px;
	padding-bottom: 25px;
	position: relative;
  }
  
  .get-started .content h3:after {
	content: "";
	position: absolute;
	display: block;
	width: 60px;
	height: 4px;
	background: var(--color-primary);
	left: 0;
	bottom: 0;
  }
  
  .get-started .content p {
	font-size: 14px;
  }
  
  .get-started .php-email-form {
	background: #fff;
	padding: 30px;
	height: 100%;
  }
  
  @media (max-width: 575px) {
	.get-started .php-email-form {
	  padding: 20px;
	}
  }
  
  .get-started .php-email-form h3 {
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
  }
  
  .get-started .php-email-form p {
	font-size: 14px;
	margin-bottom: 20px;
  }

/*    Form Dropdown Start   */


.custom-select {
	position: relative;
	border: var(--bs-border-width) solid var(--bs-border-color);;
	border-width: 1px;
	border-style: solid;
	font-size: 14px;
  }
  
  .custom-select select {
	display: none; /*hide original SELECT element: */
	border: var(--color-primary);
	border-width: 1px;
	border-style: solid;
  }
  
  .select-selected {
	background-color: rgb(255, 255, 255);
	border: var(--color-primary);
	border-width: 1px;
	border-style: solid;
  }
  
  /* Style the arrow inside the select element: */
  .select-selected:after {
	position: absolute;
	content: "";
	top: 14px;
	right: 10px;
	width: 0;
	height: 0;
	border: 6px solid transparent;
	border-color: #000000 transparent transparent transparent;
  }
  
  /* Point the arrow upwards when the select box is open (active): */
  .select-selected.select-arrow-active:after {
	border-color: transparent transparent #000000 transparent;
	top: 7px;
  }
  
  /* style the items (options), including the selected item: */
  .select-items div,.select-selected {
	padding: 8px 16px;
	border: 1px solid transparent;
	border-color: transparent transparent rgba(0, 0, 0, 0.1) transparent;
	cursor: pointer;
  }
  
  /* Style items (options): */
  .select-items {
	position: absolute;
	background-color: rgb(255, 255, 255);
	top: 100%;
	left: 0;
	right: 0;
	z-index: 99;
	border: var(--color-primary);
	border-width: 1px;
	border-style: solid;
  }
  
  /* Hide the items when the select box is closed: */
  .select-hide {
	display: none;
  }
  
  .select-items div:hover, .same-as-selected {
	background-color: rgba(0, 0, 0, 0.1);
  }
  
/*    Form Dropdown End   */
  
  .get-started .php-email-form .error-message {
	display: none;
	color: #fff;
	background: #df1529;
	text-align: left;
	padding: 15px;
	margin-bottom: 24px;
	font-weight: 600;
  }
  
  .get-started .php-email-form .sent-message {
	display: none;
	color: #fff;
	background: #059652;
	text-align: center;
	padding: 15px;
	margin-bottom: 24px;
	font-weight: 600;
  }
  
  .get-started .php-email-form .loading {
	display: none;
	background: #fff;
	text-align: center;
	padding: 15px;
	margin-bottom: 24px;
  }
  
  .get-started .php-email-form .loading:before {
	content: "";
	display: inline-block;
	border-radius: 50%;
	width: 24px;
	height: 24px;
	margin: 0 10px -6px 0;
	border: 3px solid #059652;
	border-top-color: #fff;
	animation: animate-loading 1s linear infinite;
  }
  
  .get-started .php-email-form input,
  .get-started .php-email-form textarea {
	border-radius: 0;
	box-shadow: none;
	font-size: 14px;
	border-radius: 0;
  }
  
  .get-started .php-email-form input:focus,
  .get-started .php-email-form textarea:focus {
	border-color: var(--color-primary);
  }
  
  .get-started .php-email-form input {
	padding: 12px 15px;
  }
  
  .get-started .php-email-form textarea {
	padding: 12px 15px;
  }
  
  .get-started .php-email-form button[type=submit] {
	background: var(--color-primary);
	border: 0;
	padding: 10px 30px;
	color: #fff;
	transition: 0.4s;
	border-radius: 4px;
  }
  
  .get-started .php-email-form button[type=submit]:hover {
	background: rgba(254, 185, 0, 0.8);
  }
  
  @keyframes animate-loading {
	0% {
	  transform: rotate(0deg);
	}
  
	100% {
	  transform: rotate(360deg);
	}
  }
  

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
	padding: 140px 0 60px 0;
	min-height: 30vh;
	position: relative;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
  }
  
  .breadcrumbs:before {
	content: "";
	background-color: rgba(0, 0, 0, 0.6);
	position: absolute;
	inset: 0;
  }
  
  .breadcrumbs h2 {
	font-size: 56px;
	font-weight: 500;
	color: #fff;
	font-family: var(--font-secondary);
  }
  
  .breadcrumbs ol {
	display: flex;
	flex-wrap: wrap;
	list-style: none;
	padding: 0 0 10px 0;
	margin: 0;
	font-size: 16px;
	font-weight: 600;
	color: var(--color-primary);
  }
  
  .breadcrumbs ol a {
	color: rgba(255, 255, 255, 0.8);
	transition: 0.3s;
  }
  
  .breadcrumbs ol a:hover {
	text-decoration: underline;
  }
  
  .breadcrumbs ol li+li {
	padding-left: 10px;
  }
  
  .breadcrumbs ol li+li::before {
	display: inline-block;
	padding-right: 10px;
	color: #fff;
	content: "/";
  }
  
/*--------------------------------------------------------------
# Our Projects Section
--------------------------------------------------------------*/
.projects .portfolio-flters {
	padding: 0;
	margin: 0 auto 20px auto;
	list-style: none;
	text-align: center;
  }
  
  .projects .portfolio-flters li {
	cursor: pointer;
	display: inline-block;
	padding: 0;
	font-size: 18px;
	font-weight: 500;
	margin: 0 10px;
	line-height: 1;
	margin-bottom: 5px;
	transition: all 0.3s ease-in-out;
  }
  
  .projects .portfolio-flters li:hover,
  .projects .portfolio-flters li.filter-active {
	color: var(--color-primary);
  }
  
  .projects .portfolio-flters li:first-child {
	margin-left: 0;
  }
  
  .projects .portfolio-flters li:last-child {
	margin-right: 0;
  }
  
  @media (max-width: 575px) {
	.projects .portfolio-flters li {
	  font-size: 14px;
	  margin: 0 5px;
	}
  }
  
  .projects .portfolio-content {
	position: relative;
	overflow: hidden;
  }
  
  .projects .portfolio-content img {
	transition: 0.3s;
  }
  
  .projects .portfolio-content .portfolio-info {
	opacity: 0;
	position: absolute;
	inset: 0;
	z-index: 3;
	transition: all ease-in-out 0.3s;
	background: rgba(0, 0, 0, 0.6);
	padding: 15px;
  }
  
  .projects .portfolio-content .portfolio-info h4 {
	font-size: 14px;
	padding: 5px 10px;
	font-weight: 400;
	color: #fff;
	display: inline-block;
	background-color: var(--color-primary);
  }
  
  .projects .portfolio-content .portfolio-info p {
	position: absolute;
	bottom: 10px;
	text-align: center;
	display: inline-block;
	left: 0;
	right: 0;
	font-size: 16px;
	font-weight: 600;
	color: rgba(255, 255, 255, 0.8);
  }
  
  .projects .portfolio-content .portfolio-info .preview-link,
  .projects .portfolio-content .portfolio-info .details-link {
	position: absolute;
	left: calc(50% - 40px);
	font-size: 26px;
	top: calc(50% - 14px);
	color: #fff;
	transition: 0.3s;
	line-height: 1.2;
  }
  
  .projects .portfolio-content .portfolio-info .preview-link:hover,
  .projects .portfolio-content .portfolio-info .details-link:hover {
	color: var(--color-primary);
  }
  
  .projects .portfolio-content .portfolio-info .details-link {
	left: 50%;
	font-size: 34px;
	line-height: 0;
  }
  
  .projects .portfolio-content:hover .portfolio-info {
	opacity: 1;
  }
  
  .projects .portfolio-content:hover img {
	transform: scale(1.1);
  }


/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-item {
	box-shadow: 0 0 25px rgba(0, 0, 0, 0.08);
	padding: 20px 0 30px 0;
  }
  
  .contact .info-item i {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	font-size: 24px;
	line-height: 0;
	color: var(--color-primary);
	border-radius: 50%;
	border: 2px dotted #ffd565;
  }
  
  .contact .info-item h3 {
	font-size: 20px;
	color: #6c757d;
	font-weight: 700;
	margin: 10px 0;
  }
  
  .contact .info-item p {
	padding: 0;
	line-height: 24px;
	font-size: 14px;
	margin-bottom: 0;
  }
  
  .contact .php-email-form {
	width: 100%;
	background: #fff;
	box-shadow: 0 0 25px rgba(0, 0, 0, 0.08);
	padding: 30px;
  }
  
  .contact .php-email-form .form-group {
	padding-bottom: 20px;
  }
  
  .contact .php-email-form .error-message {
	display: none;
	color: #fff;
	background: #df1529;
	text-align: left;
	padding: 15px;
	font-weight: 600;
  }
  
  .contact .php-email-form .error-message br+br {
	margin-top: 25px;
  }
  
  .contact .php-email-form .sent-message {
	display: none;
	color: #fff;
	background: #059652;
	text-align: center;
	padding: 15px;
	font-weight: 600;
  }
  
  .contact .php-email-form .loading {
	display: none;
	background: #fff;
	text-align: center;
	padding: 15px;
  }
  
  .contact .php-email-form .loading:before {
	content: "";
	display: inline-block;
	border-radius: 50%;
	width: 24px;
	height: 24px;
	margin: 0 10px -6px 0;
	border: 3px solid #059652;
	border-top-color: #fff;
	animation: animate-loading 1s linear infinite;
  }
  
  .contact .php-email-form input,
  .contact .php-email-form textarea {
	border-radius: 0;
	box-shadow: none;
	font-size: 14px;
  }
  
  .contact .php-email-form input:focus,
  .contact .php-email-form textarea:focus {
	border-color: var(--color-primary);
  }
  
  .contact .php-email-form input {
	height: 44px;
  }
  
  .contact .php-email-form textarea {
	padding: 10px 12px;
  }
  
  .contact .php-email-form button[type=submit] {
	background: var(--color-primary);
	border: 0;
	padding: 10px 35px;
	color: #fff;
	transition: 0.4s;
	border-radius: 5px;
  }
  
  .contact .php-email-form button[type=submit]:hover {
	background: rgba(254, 185, 0, 0.8);
  }
  
  @keyframes animate-loading {
	0% {
	  transform: rotate(0deg);
	}
  
	100% {
	  transform: rotate(360deg);
	}
  }


/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about h2 {
	font-size: 48px;
	font-weight: 700;
	font-family: var(--font-secondary);
	margin: 30px 0;
  }
  
  @media (min-width: 991px) {
	.about h2 {
	  max-width: 65%;
	  margin: 0 0 80px 0;
	}
  }
  
  .about .our-story {
	padding: 40px;
	background-color: #f5f6f7;
  }
  
  @media (min-width: 991px) {
	.about .our-story {
	  padding-right: 35%;
	}
  }
  
  .about .our-story h4 {
	text-transform: uppercase;
	font-size: 18px;
	color: #838893;
  }
  
  .about .our-story h3 {
	font-size: 36px;
	font-weight: 700;
	margin-bottom: 20px;
	color: var(--color-secondary);
  }
  
  .about .our-story p:last-child {
	margin-bottom: 0;
  }
  
  .about ul {
	list-style: none;
	padding: 0;
	font-size: 15px;
  }
  
  .about ul li {
	padding: 5px 0;
	display: flex;
	align-items: center;
  }
  
  .about ul i {
	font-size: 20px;
	margin-right: 4px;
	color: var(--color-primary);
  }
  
  .about .watch-video i {
	font-size: 32px;
	transition: 0.3s;
	color: var(--color-primary);
  }
  
  .about .watch-video a {
	font-weight: 600;
	color: var(--color-secondary);
	margin-left: 8px;
	transition: 0.3s;
  }
  
  .about .watch-video:hover a {
	color: var(--color-primary);
  }
  
  .about .about-img {
	min-height: 400px;
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain
  }

  .aboutus-img {
	padding-bottom: 50px;
	z-index: 2;
  }
  
  @media (min-width: 992px) {
	.about .about-img {
	  position: absolute;

	  top: 0;
	  right: 0;
	}
  }
  
  /*--------------------------------------------------------------
  # Stats Counter Section
  --------------------------------------------------------------*/
  .stats-counter .stats-item {
	background: #fff;
	box-shadow: 0px 0 30px rgba(82, 86, 94, 0.05);
	padding: 30px;
  }
  
  .stats-counter .stats-item i {
	font-size: 42px;
	line-height: 0;
	margin-right: 20px;
	color: var(--color-primary);
  }
  
  .stats-counter .stats-item span {
	font-size: 36px;
	display: block;
	font-weight: 600;
	color: var(--color-secondary);
  }
  
  .stats-counter .stats-item p {
	padding: 0;
	margin: 0;
	font-family: var(--font-primary);
	font-size: 14px;
  }
  
  /*--------------------------------------------------------------
  # Our Team Section
  --------------------------------------------------------------*/
  .team .member {
	position: relative;
  }
  
  .team .member .member-img {
	margin: 0 80px;
	border-radius: 50%;
	overflow: hidden;
	position: relative;
  }
  
  @media (max-width: 1024px) {
	.team .member .member-img {
	  margin: 0 60px;
	}
  }
  
  .team .member .member-img img {
	position: relative;
	z-index: 1;
  }
  
  .team .member .member-img .social {
	position: absolute;
	inset: 0;
	background-color: rgba(0, 0, 0, 0.6);
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 2;
	padding-bottom: 20px;
	transition: 0.3s;
	visibility: hidden;
	opacity: 0;
  }
  
  .team .member .member-img .social a {
	transition: 0.3s;
	color: #fff;
	font-size: 20px;
	margin: 0 8px;
  }
  
  .team .member .member-img .social a:hover {
	color: var(--color-primary);
  }
  
  .team .member .member-info {
	margin-top: 30px;
  }
  
  .team .member .member-info h4 {
	font-weight: 700;
	margin-bottom: 6px;
	font-size: 18px;
	color: var(--color-secondary);
  }
  
  .team .member .member-info span {
	font-style: italic;
	display: block;
	font-size: 15px;
	color: #838893;
	margin-bottom: 10px;
  }
  
  .team .member .member-info p {
	margin-bottom: 0;
	font-size: 14px;
  }
  
  .team .member:hover .member-img .social {
	padding-bottom: 0;
	visibility: visible;
	opacity: 1;
  }  

/*--------------------------------------------------------------
# Projet Details Section
--------------------------------------------------------------*/
.project-details .portfolio-details-slider {
	justify-content: center;
	margin: auto;
	align-self: center;
}



.project-details .portfolio-details-slider img {
	width: 100%;
	max-width: 500px;
	height: auto;
	justify-content: center;
	margin: auto;
	align-self: center;
	display: flex;
}
  
  .project-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
	width: 12px;
	height: 12px;
	background-color: rgba(255, 255, 255, 0.7);
	opacity: 1;
  }
  
  .project-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
	background-color: var(--color-primary);
  }
  
  .project-details .swiper-button-prev,
  .project-details .swiper-button-next {
	width: 48px;
	height: 48px;
  }
  
  .project-details .swiper-button-prev:after,
  .project-details .swiper-button-next:after {
	color: rgba(255, 255, 255, 0.8);
	background-color: rgba(0, 0, 0, 0.2);
	font-size: 24px;
	border-radius: 50%;
	width: 48px;
	height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: 0.3s;
  }
  
  .project-details .swiper-button-prev:hover:after,
  .project-details .swiper-button-next:hover:after {
	background-color: rgba(0, 0, 0, 0.6);
  }
  
  @media (max-width: 575px) {
  
	.project-details .swiper-button-prev,
	.project-details .swiper-button-next {
	  display: none;
	}
  }
  
  .project-details .portfolio-info h3 {
	font-size: 22px;
	font-weight: 700;
	margin-bottom: 20px;
	padding-bottom: 20px;
	position: relative;
  }
  
  .project-details .portfolio-info h3:after {
	content: "";
	position: absolute;
	display: block;
	width: 50px;
	height: 3px;
	background: var(--color-primary);
	left: 0;
	bottom: 0;
  }
  
  .project-details .portfolio-info ul {
	list-style: none;
	padding: 0;
	font-size: 15px;
  }
  
  .project-details .portfolio-info ul li {
	display: flex;
	flex-direction: column;
	padding-bottom: 15px;
  }
  
  .project-details .portfolio-info ul strong {
	text-transform: uppercase;
	font-weight: 400;
	color: #838893;
	font-size: 14px;
  }
  
  .project-details .portfolio-info .btn-visit {
	padding: 8px 40px;
	background: var(--color-primary);
	color: #fff;
	border-radius: 50px;
	transition: 0.3s;
  }
  
  .project-details .portfolio-info .btn-visit:hover {
	background: #ffc019;
  }
  
  .project-details .portfolio-description h2 {
	font-size: 26px;
	font-weight: 700;
	margin-bottom: 20px;
	color: var(--color-secondary);
  }
  
  .project-details .portfolio-description p {
	padding: 0;
  }
  
  .project-details .portfolio-description .testimonial-item {
	padding: 30px 30px 0 30px;
	position: relative;
	background: #f5f6f7;
	height: 100%;
	margin-bottom: 50px;
  }
  
  .project-details .portfolio-description .testimonial-item .testimonial-img {
	width: 90px;
	border-radius: 50px;
	border: 6px solid #fff;
	float: left;
	margin: 0 10px 0 0;
  }
  
  .project-details .portfolio-description .testimonial-item h3 {
	font-size: 18px;
	font-weight: bold;
	margin: 15px 0 5px 0;
	padding-top: 20px;
  }
  
  .project-details .portfolio-description .testimonial-item h4 {
	font-size: 14px;
	color: #6c757d;
	margin: 0;
  }
  
  .project-details .portfolio-description .testimonial-item .quote-icon-left,
  .project-details .portfolio-description .testimonial-item .quote-icon-right {
	color: #ffd565;
	font-size: 26px;
	line-height: 0;
  }
  
  .project-details .portfolio-description .testimonial-item .quote-icon-left {
	display: inline-block;
	left: -5px;
	position: relative;
  }
  
  .project-details .portfolio-description .testimonial-item .quote-icon-right {
	display: inline-block;
	right: -5px;
	position: relative;
	top: 10px;
	transform: scale(-1, -1);
  }
  
  .project-details .portfolio-description .testimonial-item p {
	font-style: italic;
	margin: 0 0 15px 0 0 0;
	padding: 0;
  }
  

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
	color: #fff;
	background: url("../img/pexels-anamul-rezwan-1145434.jpg") top center no-repeat;
	background-size: cover;
	font-size: 14px;
	padding: 80px 0 60px 0;
	position: relative;
  }
  
  .footer:before {
	content: "";
	background: rgba(0, 0, 0, 0.8);
	position: absolute;
	inset: 0;
  }

  .footer .footer-content {
	justify-items: end
  }
  
  .footer .footer-content .footer-info {
	margin-bottom: 30px;
  }
  
  .footer .footer-content .footer-info h3 {
	font-size: 28px;
	margin: 0 0 20px 0;
	padding: 2px 0 2px 0;
	line-height: 1;
	font-weight: 700;
	text-transform: uppercase;
  }
  
  .footer .footer-content .footer-info h3 span {
	color: var(--color-primary);
  }
  
  .footer .footer-content .footer-info p {
	font-size: 14px;
	line-height: 24px;
	margin-bottom: 0;
	font-family: var(--font-primary);
	color: #fff;
  }
  
  .footer .footer-content .social-links a {
	font-size: 18px;
	display: inline-block;
	background: rgba(255, 255, 255, 0.1);
	color: #fff;
	line-height: 1;
	margin-right: 8px;
	border-radius: 4px;
	width: 36px;
	height: 36px;
	transition: 0.3s;
  }
  
  .footer .footer-content .social-links a:hover {
	background: var(--color-primary);
	text-decoration: none;
  }
  
  .footer .footer-content h4 {
	font-size: 16px;
	font-weight: 600;
	color: #fff;
	position: relative;
	padding-bottom: 12px;
  }
  
  .footer .footer-content .footer-links {
	margin-bottom: 30px;
  }
  
  .footer .footer-content .footer-links ul {
	list-style: none;
	padding: 0;
	margin: 0;
  }
  
  .footer .footer-content .footer-links ul li {
	padding: 8px 0;
  }
  
  .footer .footer-content .footer-links ul li:first-child {
	padding-top: 0;
  }
  
  .footer .footer-content .footer-links ul a {
	color: rgba(255, 255, 255, 0.6);
	transition: 0.3s;
	display: inline-block;
	line-height: 1;
  }
  
  .footer .footer-content .footer-links ul a:hover {
	color: #fff;
  }
  
  .footer .footer-legal .copyright {
	padding-top: 30px;
	border-top: 1px solid rgba(255, 255, 255, 0.15);
  }
  
  .footer .footer-legal .credits {
	padding-top: 4px;
	font-size: 13px;
	color: #fff;
  }
  
  .footer .footer-legal .credits a {
	color: var(--color-primary);
  }

/* Landing */

	body.landing #page-wrapper {
		background-image: -moz-linear-gradient(top, rgba(0,0,0,0.2), rgba(0,0,0,0.2)), url("../../images/homepage-construction.jpg");
		background-image: -webkit-linear-gradient(top, rgba(0,0,0,0.2), rgba(0,0,0,0.2)), url("../../images/homepage-construction.jpg");
		background-image: -ms-linear-gradient(top, rgba(0,0,0,0.2), rgba(0,0,0,0.2)), url("../../images/homepage-construction.jpg");
		background-image: linear-gradient(top, rgba(0,0,0,0.2), rgba(0,0,0,0.2)), url("../../images/homepage-construction.jpg");
		background-attachment: fixed;
		background-position: center center;
		background-repeat: no-repeat;
		background-size: cover;
	}

	body.landing #footer {
		background-color: rgba(29, 36, 42, 0.9);
	}

	body.is-mobile.landing #page-wrapper {
		background: none;
	}

	body.is-mobile.landing #banner,
	body.is-mobile.landing .wrapper.style4 {
		background-image: -moz-linear-gradient(top, rgba(0,0,0,0.5), rgba(0,0,0,0.2)), url("../../images/homepage-construction.jpg");
		background-image: -webkit-linear-gradient(top, rgba(0,0,0,0.5), rgba(0,0,0,0.2)), url("../../images/homepage-construction.jpg");
		background-image: -ms-linear-gradient(top, rgba(0,0,0,0.5), rgba(0,0,0,0.2)), url("../../images/homepage-construction.jpg");
		background-image: linear-gradient(top, rgba(0,0,0,0.5), rgba(0,0,0,0.2)), url("../../images/homepage-construction.jpg");
		background-position: center center;
		background-repeat: no-repeat;
		background-size: cover;
	}

	body.is-mobile.landing #footer {
		background-color: #1d242a;
	}