@charset "UTF-8";

/*-- Google Font Import 
-----------------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Montserrat+Alternates:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Titillium+Web:ital,wght@0,200;0,300;0,400;0,600;0,700;0,900;1,200;1,300;1,400;1,600;1,700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Titillium+Web:ital,wght@0,200;0,300;0,400;0,600;0,700;0,900;1,200;1,300;1,400;1,600;1,700&display=swap");




/*--
    - Common CSS 
-----------------------------------------*/

::-webkit-scrollbar {
  width: 8px;
  height: 8px;
  background-color: rgba(135, 150, 165, .1);
}
::-webkit-scrollbar-thumb {
  border-radius: 8px;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
  background: #df3716 linear-gradient(45deg, #3B4B9D, #3B4B9D);
}
::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
  border-radius: 8px;
  background-color: rgba(135, 150, 165, .1);
}


html,
body {
	height: 100%;
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
	scroll-behavior: smooth;
}

body {
	font-family: "Montserrat", sans-serif;
	font-size: 16px;
	line-height: 26px;
	font-weight: 400;
	position: relative;
	z-index: 1;
	background: #fff;
	overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	position: relative;
	color: #171717;

	font-weight: 400;
	margin: 0;
}

a {
	text-decoration: none;
	cursor: pointer;
	font-size: 12px;
	font-weight: 400;
	-webkit-transition: 0.5s;
	transition: 0.5s;
	color: #171717;
}

a:hover {
	color: #333;
}

p {
	font-family: "Montserrat", sans-serif;
	font-size: 18px;
	font-weight: 400;
	line-height: 27px;
	position: relative;
	color: #000;
}

button,
input,
textarea,
a:hover,
a:focus,
a:visited {
	text-decoration: none;
	outline: none;
	outline-width: 0 !important;
}

input:focus::-webkit-input-placeholder,
textarea:focus::-webkit-input-placeholder {
	color: transparent;
}

img {
	display: inline-block;
	width: 100%;
}

i,
span,
a {
	display: inline-block;
}

ul {
	list-style: none;
	margin: 0px;
	padding: 0px;
}

table,
th,
tr,
td {
	border: 1px solid #ddd;
}

th,
tr,
td {
	padding: 10px;
}

hr {
	border-top: 1px solid #777;
}

::selection {
	background: #ddd;
}

.fix {
	overflow: hidden;
}

.auto-container {
	position: static;
	max-width: 1200px;
	padding: 0 80px;
	margin: 0 auto;
}

/*Section Padding CSS*/
.section-padding {
	padding: 150px 0;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
	.section-padding {
		padding: 100px 10px;
	}
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
	.section-padding {
		padding: 100px 30px;
	}
}

@media (max-width: 767px) {
	.section-padding {
		padding: 100px 10px;
	}
}

/*Margin & Padding */
.pt-0 {
	padding-top: 0;
}

.pb-0 {
	padding-bottom: 0;
}

.pt-20 {
	padding-top: 20px;
}

.pb-20 {
	padding-bottom: 20px;
}

.pt-30 {
	padding-top: 30px;
}

.pb-30 {
	padding-bottom: 30px;
}

.pt-40 {
	padding-top: 40px;
}

.pb-40 {
	padding-bottom: 40px;
}

.pt-50 {
	padding-top: 50px;
}

.pb-50 {
	padding-bottom: 50px;
}

.pt-60 {
	padding-top: 60px;
}

.pb-60 {
	padding-bottom: 60px;
}

.pt-70 {
	padding-top: 70px;
}

.pb-70 {
	padding-bottom: 70px;
}

.pt-80 {
	padding-top: 80px;
}

.pb-80 {
	padding-bottom: 80px;
}

.pt-90 {
	padding-top: 90px;
}

.pb-90 {
	padding-bottom: 90px;
}

.pt-100 {
	padding-top: 100px;
}

.pb-100 {
	padding-bottom: 100px;
}

.pt-120 {
	padding-top: 120px;
}

.pb-120 {
	padding-bottom: 120px;
}

.pt-150 {
	padding-top: 150px;
}

.pb-150 {
	padding-bottom: 150px;
}

.pt-180 {
	padding-top: 180px;
}

.pb-180 {
	padding-bottom: 180px;
}

.mt-10 {
	margin-top: 10px;
}

.mb-10 {
	margin-bottom: 10px;
}

.mt-15 {
	margin-top: 15px;
}

.mb-15 {
	margin-bottom: 15px;
}

.mt-20 {
	margin-top: 20px;
}

.mb-20 {
	margin-bottom: 20px;
}

.mt-30 {
	margin-top: 30px;
}

.mb-30 {
	margin-bottom: 30px !important;
}

.mt-40 {
	margin-top: 40px;
}

.mb-40 {
	margin-bottom: 40px;
}

.mt-50 {
	margin-top: 50px;
}

.mb-50 {
	margin-bottom: 50px;
}

.mt-60 {
	margin-top: 60px;
}

.mb-60 {
	margin-bottom: 60px;
}

.mt-70 {
	margin-top: 70px;
}

.mb-70 {
	margin-bottom: 70px;
}

.mt-80 {
	margin-top: 80px;
}

.mb-80 {
	margin-bottom: 80px;
}

.mt-90 {
	margin-top: 90px;
}

.mb-90 {
	margin-bottom: 90px;
}

.mt-100 {
	margin-top: 100px;
}

.mb-100 {
	margin-bottom: 100px;
}

.mt-120 {
	margin-top: 120px;
}

.mb-120 {
	margin-bottom: 120px;
}

.mt-150 {
	margin-top: 150px;
}

.mt-300 {
	margin-top: 300px;
}

.ml-10 {
	margin-left: 10px;
}

.ml-20 {
	margin-left: 20px;
}

.ml-30 {
	margin-left: 30px;
}

.ml-40 {
	margin-left: 40px;
}

.ml-50 {
	margin-left: 50px;
}

.mr-10 {
	margin-right: 10px;
}

.mr-20 {
	margin-right: 20px;
}

.mr-30 {
	margin-right: 30px;
}

.mr-40 {
	margin-right: 40px;
}

.mr-50 {
	margin-right: 50px;
}

.pt-50 {
	padding-top: 50px;
}

.pb-50 {
	padding-bottom: 50px;
}

.pl-50 {
	padding-left: 50px;
}

.pl-100 {
	padding-left: 100px;
}

.pr-100 {
	padding-right: 100px;
}

.pl-150 {
	padding-left: 150px;
}

.pr-150 {
	padding-right: 150px;
}

.pr-50 {
	padding-right: 50px;
}

.pl-60 {
	padding-left: 60px;
}

.pr-60 {
	padding-right: 60px;
}

.pl-100 {
	padding-left: 100px;
}

.pr-50 {
	padding-right: 100px;
}

.ml-auto {
	margin-left: auto !important;
}

.mr-auto {
	margin-right: auto !important;
}

/*Section Title */
.section-title {
	position: relative;
	margin-bottom: 30px;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
	.section-title {
		margin-bottom: 10px;
	}
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
	.section-title {
		margin-bottom: 20px;
	}
}

@media (max-width: 767px) {
	.section-title {
		margin-bottom: 10px;
	}
}

.section-title h1 {
	font-size: 90px;
	font-weight: 500;
	line-height: 100px;
	letter-spacing: -2px;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
	.section-title h1 {
		font-size: 80px;
		line-height: 90px;
	}
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
	.section-title h1 {
		font-size: 70px;
		line-height: 80px;
	}
}

@media (max-width: 767px) {
	.section-title h1 {
		font-size: 40px;
		line-height: 50px;
	}
}

.section-title h2 {
	font-size: 65px;
	font-weight: 500;
	line-height: 80px;
	letter-spacing: -2px;
	color: #000;
	font-family: "Montserrat Alternates", sans-serif;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
	.section-title h2 {
		font-size: 60px;
		line-height: 70px;
		margin: 0;
	}
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
	.section-title h2 {
		font-size: 60px;
		line-height: 70px;
		margin: 0;
	}
}

@media (max-width: 767px) {
	.section-title h2 {
		font-size: 40px;
		line-height: 50px;
		margin: 15px 0;
	}
}

.section-title h2 span {
	color: #E8E3DF;
}

.section-title h3 {
	font-size: 30px;
	line-height: 40px;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
	.section-title h3 {
		font-size: 30px;
		line-height: 30px;
	}
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
	.section-title h3 {
		font-size: 36px;
		line-height: 40px;
	}
}

@media (max-width: 767px) {
	.section-title h3 {
		font-size: 24px;
		line-height: 30px;
	}
}

.section-title p {
	margin: 0;
}

.section-title span i {
	color: #ddd;
	font-size: 80px;
}

@media (max-width: 767px) {
	.section-title span i {
		font-size: 40px;
	}
}

.section-title i {
	color: #ddd;
	position: relative;
	top: 10px;
}

.gray-bg .section-title span i {
	color: #bebeb5;
}

.section-title img {
	border-radius: 50px;
	height: 60px;
	position: relative;
	bottom: 5px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
	.section-title img {
		display: none;
	}
}

@media (max-width: 767px) {
	.section-title img {
		display: none;
	}
}

@media (max-width: 767px) {
	.section-title img {
		height: 40px;
	}
}

/*Button Style */
.theme-btn,
.white-btn {
	/*display: inline-flex;*/
	color: #171717;
	font-size: 16px;
	font-weight: 500;
	line-height: 16px;
	padding: 15px 35px;
	border: 1px solid #171717;
	/* border-radius: 50px;*/
	text-align: center;
	cursor: pointer;
	-webkit-transition: 0.3s;
	transition: 0.3s;
	text-transform: uppercase;
	width: 290px
}

@media (max-width: 767px) {

	.theme-btn,
	.white-btn {
		padding: 15px 32px;
	}
}

.theme-btn:hover,
.white-btn:hover {
	background: #171717;
	border-color: #171717;
	color: #fff;
}

.theme-btn i,
.white-btn i {
	transform: rotate(-45deg);
	font-size: 20px;
	padding-left: 5px;
	position: relative;
	top: 1px;
}

.theme-btn i:hover,
.white-btn i:hover {
	transform: rotate(0);
}

.white-btn {
	border-color: #fff;
	color: #fff;
}

.white-btn:hover {
	background: #fff;
	border-color: #fff;
	color: #171717;
}

/*Form Style CSS */
input,
textarea,
select {
	width: 100%;
	background: #fff;
	border: 2px solid #E0E0E0;
	padding: 13px 20px;
	font-size: 14px;
	letter-spacing: 1px;
	-webkit-transition: 0.3s;
	transition: 0.3s;
	margin-bottom: 20px;
}

button {

	background: transparent;
	border: 1px solid #111;
	padding: 13px 20px;
	font-size: 14px;
	letter-spacing: 1px;
	-webkit-transition: 0.3s;
	transition: 0.3s;
	margin-bottom: 20px;
}

textarea {
	height: 200px;
}

input[type=submit],
button[type=submit] {
	border: none;
	border-radius: 0;
	display: inline-block;
	color: #171717;
	width: 290px;
	-webkit-transition: 0.3s;
	transition: 0.3s;
	cursor: pointer;
	font-size: 15px;
	font-weight: 600;
	border: 1px solid;
}

input[type=submit]:hover,
button[type=submit]:hover {
	background: #171717;
	color: #fff;
}

select {
	color: #666;
	font-size: 15px;
	letter-spacing: 1px;
	text-transform: uppercase;
}

input::placeholder,
textarea::placeholder {
	font-size: 16px;
	font-weight: 400;
}

@media (max-width: 767px) {

	input::placeholder,
	textarea::placeholder {
		font-size: 14px;
	}
}

input.form-control {
	padding: 12px 20px;
	line-height: 1.2;
}

button.form-control {
	padding: 12px 20px;
	line-height: 1.2;
}

/*Bootstrap CSS*/
.container-fluid {
	padding: 0 20px;
}

.container {
	max-width: 1200px;
}

.navbar-toggler-icon {
	background-image: none;
}

.btn:focus,
.btn:active {
	outline: none !important;
	box-shadow: none;
}

/* Bacground Color & Overlay CSS 
============== */
.white-bg {
	background: #fff;
}

.dark-bg {
	background: #171717;
}

.gray-bg {
	background: #f1f1f1;
}

.bg-cover {
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	background-attachment: fixed;
	width: 100%;
}

.overlay,
.overlay-5,
.overlay-4,
.overlay-3,
.overlay-2 {
	position: absolute;
	content: "";
	width: 100%;
	height: 100%;
	background-color: #171717;
	opacity: 0.6;
	top: 0;
	left: 0;
	z-index: -1;
}

.overlay-2 {
	opacity: 0.2;
}

.overlay-3 {
	opacity: 0.3;
}

.overlay-4 {
	opacity: 0.4;
}

.overlay-5 {
	opacity: 0.5;
}

.overlay.active,
.active.overlay-2,
.active.overlay-3,
.active.overlay-4,
.active.overlay-5 {
	position: fixed;
	right: 0;
	top: 0;
	height: 100%;
	width: 100%;
	content: "";
	background-color: #000;
	z-index: 99;
	opacity: 0.5;
	visibility: visible;
}

.text-black {
	color: #171717 !important;
}

.text-white {
	color: #fff !important;
}

.fix {
	overflow: hidden;
}

.separator {
	display: block;
	background-color: #ddd;
	width: 30px;
	height: 3px;
	margin: auto;
	margin-top: 20px;
	margin-bottom: 20px;
}

/* Preloader*/
.preloader {
	background-color: #fff;
	bottom: 0;
	top: 0;
	left: 0;
	right: 0;
	position: fixed;
	z-index: 9999999;
}

.spinner {
	width: 60px;
	height: 60px;
	top: 30%;
	position: relative;
	margin: 100px auto;
}

.double-bounce1,
.double-bounce2 {
	width: 100%;
	height: 100%;
	border-radius: 50%;
	background-color: #ddd;
	opacity: 0.6;
	position: absolute;
	top: 0;
	left: 0;
	-webkit-animation: sk-bounce 2s infinite ease-in-out;
	animation: sk-bounce 2s infinite ease-in-out;
}

.double-bounce2 {
	-webkit-animation-delay: -1s;
	animation-delay: -1s;
}

@-webkit-keyframes sk-bounce {

	0%,
	100% {
		-webkit-transform: scale(0);
	}

	50% {
		-webkit-transform: scale(1);
	}
}

@keyframes sk-bounce {

	0%,
	100% {
		transform: scale(0);
		-webkit-transform: scale(0);
	}

	50% {
		transform: scale(1);
		-webkit-transform: scale(1);
	}
}

.mouseCursor {
	position: fixed;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	pointer-events: none;
	border-radius: 50%;
	transform: translateZ(0);
	visibility: hidden;
	text-align: center;
}

@media (max-width: 767px) {
	.mouseCursor {
		display: none;
	}
}

.cursor-outer {
	margin-left: -20px;
	margin-top: -20px;
	width: 40px;
	height: 40px;
	border: 1px solid #ddd;
	box-sizing: border-box;
	z-index: 10000000;
	opacity: 0.5;
	transition: all 0.08s ease-out;
}

.cursor-inner {
	margin-left: -3px;
	margin-top: -3px;
	width: 6px;
	height: 6px;
	z-index: 10000001;
	background-color: #000;
	transition: width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.cursor-inner span {
	color: #fff;
	line-height: 80px;
	opacity: 0;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-size: 12px;
}

.cursor-inner.cursor-big span {
	opacity: 1;
}

.mouseCursor.cursor-big {
	width: 80px;
	height: 80px;
}

.mouseCursor.cursor-big.cursor-outer {
	display: none;
}

.tp-cursor-point-area {
	cursor: none;
}

/*-- Search Form --*/
.search-box button {
	text-decoration: none;
	outline: none;
	outline-width: 0 !important;
	border: none;
	background: none;
	position: absolute;
	top: 32px;
	right: 10px;
	font-size: 20px;
}

.search-box button:before {
	position: absolute;
	content: "";
	top: 50%;
	left: -40px;
	height: 40px;
	border-left: 2px solid #eee;
	margin-top: -20px;
}

.search-box button:hover {
	cursor: pointer;
}

.search-popup {
	position: fixed;
	left: 0;
	top: 0;
	height: 100vh;
	width: 100%;
	z-index: 999;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all 500ms ease;
	transition: all 500ms ease;
}

.search-popup .search-back-drop {
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	background: rgba(0, 0, 0, 0.5);
}

.search-active .search-popup {
	opacity: 1;
	visibility: visible;
}

.search-popup .search-inner {
	position: relative;
	background: #ffffff;
	padding: 25px 0 30px;
	z-index: 1;
	-webkit-transform: translateY(-100%);
	transform: translateY(-100%);
	-webkit-transition: all 300ms ease;
	transition: all 300ms ease;
}

.search-active .search-popup .search-inner {
	-webkit-transform: translateY(0);
	transform: translateY(0);
}

.search-popup .upper-text {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	margin-bottom: 15px;
}

.search-popup .upper-text .text {
	font-family: "Jost", sans-serif;
	font-size: 18px;
	letter-spacing: 1px;
}

.search-popup .close-search {
	position: absolute;
	right: 30px;
	top: 35px;
	font-size: 30px;
	line-height: 27px;
	z-index: 3;
	-webkit-transition: all 500ms ease;
	transition: all 500ms ease;
	border: none;
	background: none;
}

.search-popup .form-group form {
	position: relative;
}

.search-popup .form-group {
	position: relative;
	margin: 0px;
	overflow: hidden;
	border-bottom: 1px solid #e5e5e5;
	width: 50%;
}

.search-popup .form-group input[type=text],
.search-popup .form-group input[type=search] {
	position: relative;
	display: block;
	font-size: 18px;
	line-height: 25px;
	color: #333333;
	padding: 10px 14px;
	height: 45px;
	width: 100%;
	background-color: transparent;
	-webkit-transition: all 500ms ease;
	transition: all 500ms ease;
	border: none;
	margin-bottom: 5px;
}

.search-popup .form-group input[type=submit],
.search-popup .form-group button {
	position: absolute;
	right: -25px;
	top: 0px;
	background: transparent !important;
	text-align: center;
	font-size: 18px;
	line-height: 45px;
	color: #333333;
	padding: 0;
	background: none;
	border: none;
	-webkit-transition: all 500ms ease;
	transition: all 500ms ease;
}

/* clears the ‘X’ from Chrome */
input[type=search]::-webkit-search-decoration,
input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-results-button,
input[type=search]::-webkit-search-results-decoration {
	display: none;
}

.header-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
	.header-btn {
		display: none;
	}
}

@media (max-width: 767px) {
	.header-btn {
		display: none;
	}
}

.menu-trigger span {
	background-color: #fff;
	display: block;
	height: 1px;
	margin: 8px auto;
	margin-left: 5px;
	width: 30px;
	transition: all 0.1s;
}

.menu-trigger span:nth-child(2) {
	margin-left: 0px;
}

.menu-trigger:hover span:nth-child(2) {
	margin-left: 5px;
}

.header-area.absolute-header .menu-trigger span {
	background: #fff;
}

.menu-trigger span:nth-child(2) {
	margin-left: 0px;
}

.off-canvas-menu {
	position: fixed;
	top: 0;
	right: -320px;
	background: #fff;
	box-shadow: -6px -3px 16px -8px rgba(0, 0, 0, 0.25);
	width: 350px;
	padding: 50px;
	height: 100%;
	z-index: 999;
	opacity: 0;
	visibility: hidden;
	transition: 0.3s;
}

.off-canvas-menu.show-off-canvas-menu {
	right: 0;
	opacity: 1;
	visibility: visible;
}

.off-canvas-menu p {
	font-size: 16px;
	color: #b4afaf;
	font-weight: 400;
	position: absolute;
	bottom: 15px;
	opacity: 0.5;
}

.menu-close {
	position: absolute;
	right: 25px;
	top: 25px;
	color: #777;
	padding: 7px;
	cursor: pointer;
	font-size: 30px;
	font-weight: 300;
}

.menu-close:hover {
	color: #333;
}

.extra-info {
	background: #141417 none repeat scroll 0 0;
	height: 100%;
	padding: 40px;
	position: fixed;
	right: 0;
	top: 0;
	-webkit-transition: all 0.7s ease 0s;
	-o-transition: all 0.7s ease 0s;
	transition: all 0.7s ease 0s;
	width: 400px;
	z-index: 999;
	overflow-y: scroll;
	-webkit-transform: translateX(100%);
	-ms-transform: translateX(100%);
	transform: translateX(100%);
	opacity: 0;
	visibility: hidden;
}

.extra-info.active {
	-webkit-transform: translateX(0);
	-ms-transform: translateX(0);
	transform: translateX(0);
	opacity: 1;
	visibility: visible;
}

.close-icon {
	margin-top: 0;
	text-align: right;
}

.close-icon > button {
	background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
	border: 0 none;
	cursor: pointer;
	font-size: 20px;
	padding: 0;
}

.close-icon > button i {
	color: #fff;
	font-size: 30px;
}

.side-info {
	border-top: 1px solid #333;
	padding-top: 10px;
}

.contact-list h4 {
	color: #fff;
	font-weight: 400;
	font-size: 20px;
	margin-bottom: 20px;
}

.contact-list p {
	color: #fff;
	margin-top: 10px;
	margin-bottom: 15px;
	line-height: 30px;
	font-size: 16px;
}

.contact-list p i {
	float: left;
	margin-top: 6px;
	width: 25px;
}

.contact-list p span {
	display: block;
	overflow: hidden;
}

.offcanvas-overlay {
	position: fixed;
	background: rgba(34, 40, 49, 0.4392156863);
	top: 0;
	left: 100%;
	height: 100%;
	width: 100%;
	z-index: 99;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all 0.4s ease-in 0.4s;
	-o-transition: all 0.4s ease-in 0.4s;
	transition: all 0.4s ease-in 0.4s;
}

.offcanvas-overlay.active {
	opacity: 1;
	visibility: visible;
	left: 0;
	transition: all 0.8s ease-out 0s;
}

.extra-info .site-logo-2 {
	width: 220px;
	text-align: center;
	margin-top: 20px;
}

.social-area-wrap a i {
	font-size: 16px;
}

.social-area-wrap a {
	width: 40px;
	height: 40px;
	background: #18222b;
	color: #fff;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-left: 10px;
}

.social-area-wrap a:hover {
	background: #000;
}

.header-sticky {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	background-color: #fff;
	opacity: 1;
	visibility: visible;
	width: 100%;
	box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
	animation: 0.5s ease-in-out 0s normal none 1 running fadeInDown;
	z-index: 999;
}

.header-sticky .header-inner-box .logo img {
	filter: none
}

.header-sticky .main-menu ul li.active a {
	color: #111
}

.header-sticky .main-menu ul li a.navlink:before {
	background: #111
}

.header-sticky .main-menu ul > li > a {
	color: #111
}

.header-sticky .main-menu ul li.active:before {
	background: #fff
}

.header-sticky .header-right .search-trigger i {
	color: #fff
}

.header-sticky .menu-trigger span {
	background-color: #111
}

.absolute-header .header-sticky {
	background: #141417;
}

.directon-sign i {
	font-size: 80px;
	color: #ddd;
}

.header-sticky .main-menu ul li:last-child {
	color: #fff;
	background: #111
}

.header-sticky .main-menu ul li:last-child a {
	color: #fff;
}

.circle-button {
	position: relative;
	display: inline-block;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
	.circle-button {
		display: none;
	}
}

@media (max-width: 767px) {
	.circle-button {
		display: none;
	}
}

.circle-button.in-bord:before {
	content: "";
	position: absolute;
	top: 15px;
	left: 15px;
	right: 15px;
	bottom: 15px;
	border: 1px solid #eee;
	border-radius: 50%;
}

.circle-button .rotate-circle svg {
	width: 210px;
	fill: #1d1d1d;
}

.circle-button .arrow {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translateX(-20px) translateY(-20px);
	-ms-transform: translateX(-20px) translateY(-20px);
	transform: translateX(-20px) translateY(-20px);
	display: inline-block;
	width: 0;
	height: 0;
}

.circle-button .arrow svg {
	width: 40px;
	height: 40px;
}

.circle-button .icon {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translateX(-50%) translateY(-50%);
	-ms-transform: translateX(-50%) translateY(-50%);
	transform: translateX(-50%) translateY(-50%);
}

.circle-button .in-circle {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translateX(-50%) translateY(-50%);
	-ms-transform: translateX(-50%) translateY(-50%);
	transform: translateX(-50%) translateY(-50%);
}

.circle-button.no-animate .rotate-circle {
	-webkit-animation: none;
	animation: none;
}

.rotate-circle {
	-webkit-animation-name: rotateCircle;
	animation-name: rotateCircle;
	-webkit-animation-duration: 20s;
	animation-duration: 20s;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
	-webkit-animation-timing-function: linear;
	animation-timing-function: linear;
}

.fz-30 {
	font-size: 30px !important;
}

.text-u {
	text-transform: uppercase !important;
}

.hover-this .hover-anim {
	pointer-events: none;
	-webkit-transition: -webkit-transform 0.2s linear;
	transition: -webkit-transform 0.2s linear;
	-o-transition: transform 0.2s linear;
	transition: transform 0.2s linear;
	transition: transform 0.2s linear, -webkit-transform 0.2s linear;
}

.rotate-circle {
	-webkit-animation-name: rotateCircle;
	animation-name: rotateCircle;
	-webkit-animation-duration: 20s;
	animation-duration: 20s;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
	-webkit-animation-timing-function: linear;
	animation-timing-function: linear;
}

@-webkit-keyframes rotateCircle {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}

	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

@keyframes rotateCircle {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}

	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

.header-area {
	padding: 10px 0;
	position: fixed;
	z-index: 2;
	width: 100%;
	/* background: rgba(0,0,0,0.5)*/
}

.header-inner-box .logo img {
	/*filter: invert(1) brightness(11);*/
}

.header-area .navigation {
	height: 90px;
	position: relative;
	z-index: 9;
	display: flex;
	align-items: center;
	/*background: #fff;*/
}

.header-area .header-inner-box {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.header-area .header-inner-box .logo {

	display: flex;

}

@media only screen and (min-width: 768px) and (max-width: 991px) {
	.header-area .header-inner-box .logo {
		border-right: none;
	}
}

@media (max-width: 767px) {
	.header-area .header-inner-box .logo {
		font-size: 30px;
		border-right: none;
	}
}

.logo a {
	font-family: "Jost", sans-serif;
	font-size: 30px;
	font-weight: 500;
	color: rgb(255, 255, 255);
	letter-spacing: 1px;
}

.main-menu ul {
	line-height: 1;
}

.main-menu ul > li {
	display: inline-block;
	line-height: 1;
	margin: 0 20px;
	position: relative;
}

.main-menu ul > li > a {
	display: inline-block;
	font-size: 14px;
	font-weight: 500;
	line-height: 1;
	/*padding: 12px;*/
	overflow: hidden;
	color: #111;
	text-transform: uppercase;
	letter-spacing: 0.5px;

}

.main-menu ul li:last-child {
	background: #fff;
	padding: 10px;
}

.main-menu ul > li:hover > ul {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.main-menu ul > li > ul {
	position: absolute;
	top: 100%;
	width: 235px;
	background-color: #171717;
	left: 0;
	z-index: 999;
	box-shadow: 0 13px 35px -12px rgba(35, 35, 35, 0.15);
	visibility: hidden;
	opacity: 0;
	transform: translateY(40px);
	transition: all 0.5s ease-in-out;
	padding: 10px 0px;
}

.main-menu ul > li > ul li {
	display: block;
	margin-right: 0;
	margin-left: 0;
	border-bottom: 1px solid #ffffff54;
	text-align: left
}

.main-menu ul > li > ul li:last-child {
	border-bottom: 0
}

.main-menu ul > li > ul li a {
	display: block;
	color: rgba(255, 255, 255, 0.7) !important;
	padding: 12px 25px;
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 2px;
	outline: 0
}

.main-menu ul > li > ul li a:hover {
	color: #fff !important;
}

.main-menu ul > li > ul li a i {
	transform: rotate(-45deg);
	font-size: 15px;
	position: absolute;
	right: 20px;
	bottom: 11px;
	transition: 0.3s;
}

.main-menu ul > li > ul li a:hover i {
	transform: rotate(0);
}

.main-menu ul > li > ul ul {
	left: 100%;
	top: 0;
}

.main-menu ul li {
	position: relative;
}

.main-menu ul li a.navlink:before {
	/*position: absolute;
  content: "";
  bottom: 30px;
  left: 0;
  width: 0%;
  height: 1px;
  background: #fff;
  visibility: hidden;
  opacity: 0;
  transition: all 0.5s ease 0s;*/
}

.main-menu ul li a.navlink:hover:before {
	visibility: visible;
	opacity: 1;
	width: 100%;
}

.main-menu ul li.active {
	position: relative;
}

.main-menu ul li.active a {
	color: #fff;
}

.main-menu ul li.active:before {
	position: absolute;
	content: "";
	bottom: 30px;
	left: 0;
	width: 100%;
	height: 1px;
	background: #fff;
}

.mobile-nav {
	position: fixed;
	right: -380px;
	top: 0;
	width: 320px;
	height: 100vh;
	scroll-behavior: smooth;
	overflow-y: hidden;
	transition: right 0.5s ease-in;
	background-color: #171717;
	padding: 20px;
	z-index: 9999;
	box-shadow: 0 13px 35px -12px rgba(35, 35, 35, 0.15);
	/* Vertical Menu Style */
}

.mobile-nav.show {
	right: 0px;
}

.mobile-nav .close-nav {
	border: 0;
	background: transparent;
	color: #fff;
	border-radius: 30px;
	font-size: 30px;
	position: absolute;
	left: 20px;
	top: 10px;
	padding-left: 0
}

.mobile-nav .sidebar-nav {
	margin-top: 60px;
}

.mobile-nav .sidebar-nav ul {
	margin: 0;
	padding: 0;
	list-style: none;
	background-color: transparent;
}

.mobile-nav .sidebar-nav .metismenu {
	display: flex;
	flex-direction: column;
}

.mobile-nav .sidebar-nav .metismenu > li {
	position: relative;
	display: flex;
	flex-direction: column;
}

.mobile-nav .sidebar-nav .metismenu a {
	position: relative;
	display: block;
	padding: 10px 15px;
	transition: all 0.3s ease-out;
	text-decoration: none;
	color: rgba(255, 255, 255, 0.7);
	outline-width: 0;
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 2px;
	border-bottom: 1px solid #333;
}

.mobile-nav .sidebar-nav .metismenu ul li {
	display: block;
}

.mobile-nav .sidebar-nav .metismenu ul a {
	padding: 10px 15px 10px 35px;
	position: relative;
}

.mobile-nav .sidebar-nav .metismenu ul a:hover {
	padding-left: 40px;
}

.mobile-nav .sidebar-nav .metismenu ul a:hover::before {
	background-color: #fff;
}

.mobile-nav .sidebar-nav .metismenu ul a::before {
	position: absolute;
	left: 15px;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	border: 2px solid #fff;
	content: "";
	top: 50%;
	transition: all 0.3s ease-in-out;
	transform: translateY(-50%);
}

.mobile-nav .sidebar-nav .metismenu ul ul {
	list-style-type: circle !important;
}

.mobile-nav .sidebar-nav .metismenu ul ul a {
	padding: 10px 15px 10px 45px;
}

.mobile-nav .sidebar-nav .metismenu a:hover,
.mobile-nav .sidebar-nav .metismenu a:focus,
.mobile-nav .sidebar-nav .metismenu a:active {
	text-decoration: none;
	color: #f8f9fa;
	background: #171717;
}

.header-area .container {
	/* background: #fff;*/
	/*max-width: 100%;*/
}

.header-area.absolute-header .container {
	background: transparent;
}

#hamburger {
	color: #fff;
	font-size: 32px;
	line-height: 1;
	text-align: right;
	display: block;
	/*    background: #17171782;*/
	padding: 10px;

}

#hamburger i {
	cursor: pointer;
	color: #111
}

@media (max-width: 1199px) {
	#hamburger {
		display: block;
	}
}

.header-area.absolute-header #hamburger {
	color: #fff;
}

.action-bar {
	margin-top: 60px;
	padding-left: 20px;
}

.action-bar a {
	color: #fff;
	display: block;
	margin-top: 12px;
	font-size: 15px;
}

.action-bar a i {
	margin-right: 10px;
}

.action-bar .theme-btn,
.action-bar .white-btn {
	margin-top: 30px;
	display: inline-block;
}

.header-right {
	display: flex;
	align-items: center;
	/* border-left: 1px solid #eee;*/
	/* height: 90px;
  padding-left: 30px;*/
	background: #17171782;
	padding: 10px;
	border-radius: 100px;
}

.mobile-nav-wrap {
	display: flex;
	align-items: center;
	justify-content: end;
	gap: 10px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
	.header-right {
		border-left: none;
	}
}

@media (max-width: 767px) {
	.header-right {
		padding-left: 0;
		border-left: none;
	}
}

.header-right .search-trigger i {
	font-size: 30px;
	/* margin-right: 30px;*/
	position: relative;
	top: 0px;
	color: #fff;
}

.header-right .search-trigger i:hover {
	cursor: pointer;
}

@media (max-width: 767px),
only screen and (min-width: 768px) and (max-width: 991px) {
	.header-right .search-trigger i {
		display: none;
	}
}

.absolute-header .header-right .search-trigger i {
	color: #fff;
}

.header-area.absolute-header {
	position: absolute;
	top: 0;
	width: 100%;
	z-index: 99;
	-webkit-transition: 0.3s;
	transition: 0.3s;
}

.header-area.absolute-header .navigation {
	background: inherit;
}

.header-area.absolute-header .logo {
	color: #fff;
}

.header-area.absolute-header .main-menu ul > li > a {
	color: #fff;
}

.header-area.absolute-header .main-menu ul li a:before {
	background: #fff;
}

.header-area.absolute-header .main-menu ul li.active:before {
	background: #fff;
}

.header-area.absolute-header {
	position: absolute;
	top: 0;
	width: 100%;
	z-index: 99;
	-webkit-transition: 0.3s;
	transition: 0.3s;
}

.header-area.absolute-header .logo {
	color: #fff;
}

.header-area.header-four.absolute-header {
	top: 45px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
	.header-area.header-four.absolute-header {
		top: 0;
	}
}

@media (max-width: 767px) {
	.header-area.header-four.absolute-header {
		top: 0;
	}
}

#home-1 .hero-area-banner {
	background-image: url(../img/slider/slide-1.jpg);
	background-size: cover;
	background-position: top;
	background-color: #ddd;
	color: #fff;
	width: 100%;
	height: 800px;
	display: table;
	position: relative;
	z-index: 1;
}

@media (max-width: 767px) {
	#home-1 .hero-area-banner {
		background-position: top;
	}
}

#home-1 .hero-area-banner .hero-area-content {
	display: table-cell;
	vertical-align: middle;
}

#home-1 .hero-area-banner h1 {
	font-size: 90px;
	font-weight: 500;
	line-height: 100px;
	padding-left: 70px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
	#home-1 .hero-area-banner h1 {
		font-size: 75px;
		line-height: 85px;
		margin: 40px 0 0;
	}
}

@media (max-width: 767px) {
	#home-1 .hero-area-banner h1 {
		font-size: 40px;
		line-height: 50px;
		padding-left: 0;
	}
}

@media only screen and (min-width: 540px) and (max-width: 767px) {
	#home-1 .hero-area-banner h1 {
		font-size: 50px;
		line-height: 60px;
	}
}

#home-1 .hero-area-banner p {
	font-size: 18px;
	line-height: 28px;
	margin-top: 30px;
	color: #777;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
	#home-1 .hero-area-banner p {
		color: #333;
		margin-top: 50px;
	}
}

@media (max-width: 767px) {
	#home-1 .hero-area-banner p {
		color: #333;
		margin-top: 50px;
	}
}

#home-1 .service-info h4 {
	color: #333;
}

#home-1 .theme-btn,
#home-1 .white-btn {
	background: #171717;
	color: #fff;
}

#home-1 .theme-btn:hover,
#home-1 .white-btn:hover {
	background: #fff;
	border-color: #fff;
	color: #171717;
}

.hero-area {
	position: relative;
}

.hero-area-inner {
	padding: 80px 0 80px;
}

@media (max-width: 767px) {
	.hero-area-inner {
		padding: 120px 0 60px;
	}
}

.hero-area-content p {
	margin-top: 40px;
}

.slider-bg {
	height: 100vh;
	position: relative;
	z-index: 1;
}

@media (max-width: 767px) {
	.slider-bg {
		min-height: 500px;
	}
}

.circle-shape-wrap {
	position: absolute;
	top: 150px;
	right: 50px;
	z-index: 9;
	animation: rotation 30s infinite linear;
	width: 200px;
}

.circle-shape-wrap img {
	animation: rotation 30s infinite linear;
}

@keyframes rotation {
	from {
		transform: rotate(0deg);
	}

	to {
		transform: rotate(360deg);
	}
}

.single-slide-item {
	position: relative;
	z-index: 1;
}

.homepage-slides .owl-nav button.owl-prev,
.homepage-slides .owl-nav button.owl-next {
	width: 50px;
	height: 50px;
	border: 2px solid #686765;
	border-radius: 50%;
	font-size: 20px;
	font-weight: 400;
	line-height: 16px;
	position: absolute;
	right: 60px;
	bottom: 10px;
	margin-top: -25px;
	background: none;
	color: #fff;
	visibility: visible;
	opacity: 1;
	-webkit-transition: all 0.3s ease-out 0s;
	transition: all 0.3s ease-out 0s;
}

.homepage-slides .owl-nav button.owl-next {
	left: auto;
	right: 60px;
	bottom: 65px;
}

.homepage-slides .owl-nav button.owl-prev:hover,
.homepage-slides .owl-nav button.owl-next:hover {
	background: #fff;
	color: #171717;
	border-color: #fff;
}

#home-2 .project-dtl-info {
	padding: 15px 20px;
	background: #17171782;
	text-transform: uppercase;
	border-top: 5px solid #00a658
}

@media (max-width: 767px) {
	#home-2 .project-dtl-info {
		flex-direction: column;
		align-items: baseline;
		padding-left: 40px;
	}
}

#home-2 .project-dtl-info .project-title {
	flex: 0 0 30%;
	padding-left: 0px;
}

#home-2 .project-dtl-info .project-title h6 {
	text-transform: capitalize;
	font-family: "Jost", sans-serif;
	font-size: 17px;
	letter-spacing: 0px;
}

#home-2 .project-dtl-info .project-title h2 {
	font-size: 35px;
	margin: 5px 0;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
	#home-2 .project-dtl-info .project-title h2 {
		font-size: 24px;
	}
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
	#home-2 .project-dtl-info .project-title h2 {
		font-size: 24px;
	}
}

#home-2 .project-dtl-info .project-title::before {
	display: none;
}

#home-2 .project-dtl-info .project-title p {
	margin: 0;
	color: #fff;
	line-height: 23px;
	font-size: 17px;
}

#home-2 .project-info-wrap {
	flex: 0 0 50%;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
	#home-2 .project-info-wrap {
		flex: 0 0 60%;
	}
}

#home-2 .single-project-info {
	display: flex;
	flex-direction: column;
	margin: 25px 0;
}

#home-2 .single-project-info h6 {
	color: #fff;
}

#home-2 .single-project-info p {
	margin: 0;
	color: #fff
}

#home-2 .project-dtl-wrap {
	width: auto;
	position: absolute;
	bottom: 20px;
	/*   left: 40px;
  transform: translateY(-100px);*/
	z-index: 2;
	/*margin-bottom: -100px;*/
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
	#home-2 .project-dtl-wrap {
		width: 100%;
		right: 0;
	}
}

@media (max-width: 767px) {
	#home-2 .project-dtl-wrap {
		width: 100%;
		right: 0;
		transform: translateY(-50%);
		margin-bottom: -225px;
	}
}

#home-3 .hero-area-inner {
	padding: 120px 0 0;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
	#home-3 .hero-area-inner {
		padding: 75px 0;
	}
}

@media (max-width: 767px) {
	#home-3 .hero-area-inner {
		padding: 60px 0;
	}
}

#home-3 .hero-area-content .section-title span {
	padding-left: 150px;
}

@media (max-width: 767px) {
	#home-3 .hero-area-content .section-title span {
		padding-left: 0;
	}
}

#home-3 .hero-area-banner p {
	margin-top: 10px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
	#home-3 .hero-area-banner {
		max-width: calc(100% - 40px);
	}
}

#home-3 .hero-area-content p {
	text-align: justify;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
	#home-3 .hero-area-content p {
		text-align: justify;
	}
}

@media (max-width: 767px) {
	.about-section.pb-100 {
		padding-bottom: 50px;
	}
}

.about-bg-wrap {
	max-width: calc(100% - 80px);
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
	.about-bg-wrap {
		margin-top: 60px;
	}
}

@media (max-width: 767px) {
	.about-bg-wrap {
		margin-top: 60px;
		max-width: calc(100% - 0px);
	}
}

.about-content-wrapper h3 {
	color: #636363;
	font-size: 30px;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
	.about-content-wrapper h3 {
		font-size: 24px;
		line-height: 34px;
		margin-top: 15px;
	}
}

@media (max-width: 767px) {
	.about-content-wrapper h3 {
		font-size: 20px;
		line-height: 32px;
		margin-top: 20px;
	}
}

.about-content-wrapper p {
	font-size: 18px;
	margin-top: 50px;
	text-align: justify;
	padding-right: 15px;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
	.about-content-wrapper p {
		margin-top: 35px;
	}
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
	.about-content-wrapper p {
		text-align: left;
	}
}

@media (max-width: 767px) {
	.about-content-wrapper p {
		margin-top: 30px;
	}
}

#about-two .section-title {
	margin: 0;
}

#about-two .about-bg-wrapper {
	max-width: calc(100% - 40px);
	margin-top: 60px;
}

@media (max-width: 767px) {
	#about-two .about-bg-wrapper {
		max-width: calc(100% - 0px);
		margin-top: 0;
	}
}

#about-two .about-content-wrapper {
	margin-top: 50px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
	#about-two .about-content-wrapper {
		max-width: calc(100% - 60px);
	}
}

#about-two .about-content-wrapper h3 {
	color: #636363;
	font-size: 26px;
	line-height: 36px;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
	#about-two .about-content-wrapper h3 {
		font-size: 24px;
	}
}

@media (max-width: 767px) {
	#about-two .about-content-wrapper h3 {
		font-size: 20px;
	}
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
	#about-two .about-content-wrapper p {
		margin-top: 20px;
	}
}

@media (max-width: 767px) {
	#about-two .about-content-wrapper p {
		margin-top: 20px;
	}
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
	.about-desc.pl-150 {
		padding-left: 145px;
	}
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
	.about-desc.pl-150 {
		padding-left: 0;
	}
}

@media (max-width: 767px) {
	.about-desc.pl-150 {
		padding-left: 0;
	}
}

.about-desc p {
	margin: 0;
	/*font-size: 35px;
	line-height: 40px;*/
	    line-height: 30px;
    font-size: 23px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
	.about-desc p {
		margin-bottom: 30px;
	}
}

@media (max-width: 767px) {
	.about-desc p {
		margin-bottom: 30px;
	}
}

#about_page .hero-area-inner {
	padding: 50px 0 0;
}

#about_page .section-title h1 {
	font-size: 90px;
	font-weight: 500;
	line-height: 100px;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
	#about_page .section-title h1 {
		font-size: 80px;
		line-height: 85px;
	}
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
	#about_page .section-title h1 {
		font-size: 70px;
		line-height: 80px;
	}
}

@media (max-width: 767px) {
	#about_page .section-title h1 {
		font-size: 40px;
		line-height: 50px;
	}
}

.about-feature-img {
	margin-top: -120px;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
	.about-feature-img {
		margin-top: -100px;
	}
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
	.about-feature-img {
		margin-top: -100px;
	}
}

@media (max-width: 767px) {
	.about-feature-img {
		margin-top: 0;
	}
}

h1.pl-150 {
	color: #fff;
}

@media (max-width: 767px) {
	h1.pl-150 {
		color: inherit;
		padding-left: 0;
	}
}

.content-wrap {
	text-align: center;
	padding: 20px;
}

.content-wrap h5 {
	font-size: 20px;
}

.content-wrap p {
	margin-top: 10px;
	margin-bottom: 0;
}

.timeline-wrap {
	position: relative;
}

.timeline-wrap:after {
	position: absolute;
	top: 50%;
	left: 0;
	width: 100%;
	height: 1px;
	background: #ddd;
	content: "";
	transform: translate(0, 60px);
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
	.timeline-wrap:after {
		display: none;
	}
}

@media (max-width: 767px) {
	.timeline-wrap:after {
		display: none;
	}
}

.single-history-item {
	position: relative;
	z-index: 1;
}

@media (max-width: 767px) {
	.single-history-item {
		margin-bottom: 30px;
	}
}

@media (max-width: 767px) {
	.history-section.pt-60.pb-60 {
		padding-top: 30px;
		padding-bottom: 30px;
	}
}

@media (max-width: 767px) {
	.history-section .mt-120 {
		margin-top: 0;
	}
}

.history-img img {
	height: 220px;
	width: 100%;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
	#about-two.about-section {
		padding-bottom: 50px;
	}
}

.feature-bg-wrap {
	margin-top: -150px;
	margin-right: -85px;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
	.feature-bg-wrap {
		margin-top: -100px;
	}
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
	.feature-bg-wrap {
		margin-top: 0;
	}
}

@media (max-width: 767px) {
	.feature-bg-wrap {
		margin-top: 0;
		margin-right: 0;
	}
}

.single-feature-item {
	margin-top: 100px;
}

@media (max-width: 767px) {
	.single-feature-item {
		margin-top: 60px;
	}
}

.single-feature-item .feature-icon {
	border: 1px solid;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #636363;
}

.single-feature-item .feature-icon i {
	font-size: 25px;
	transform: rotate(-45deg);
	transition: -webkit-transform 0.3s linear;
}

.single-feature-item h4 {
	margin-top: 30px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
	.single-feature-item h4 {
		font-size: 22px;
	}
}

.single-feature-item:hover .feature-icon i {
	transform: rotate(0);
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
	.feature-area .mt-150 {
		margin-top: 0;
	}
}

@media (max-width: 767px) {
	.feature-area .mt-150 {
		margin-top: 0;
	}
}

.feature_wrap {
	position: relative;
	z-index: 1;
}

.feature_wrap:after {
	position: absolute;
	content: "";
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #171717;
	opacity: 0.2;
}

.feature_item {
	display: flex;
	align-items: center;
	height: 400px;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
	.feature_item {
		height: 300px;
	}
}

@media (max-width: 767px) {
	.feature_item {
		height: 200px;
	}
}

.feature_item h5 {
	color: #fff;
	font-size: 90px;
	font-weight: 500;
	text-transform: uppercase;
	margin-right: 60px;
	color: transparent;
	-webkit-text-stroke: 0.8px #FFFBFB;
	-webkit-text-stroke-width: 1px;
	letter-spacing: -2px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
	.feature_item h5 {
		font-size: 80px;
	}
}

@media (max-width: 767px) {
	.feature_item h5 {
		font-size: 60px;
	}
}

.slick-list {
	z-index: 1;
}

.single-counter-box {
	margin-bottom: 20px;
}

@media (max-width: 767px) {
	.single-counter-box {
		text-align: center;
	}
}

.single-counter-box h6 {
	font-size: 18px;
	font-weight: 500;
	color: #111;
	text-align: center
}

@media (max-width: 767px) {
	.single-counter-box h6 {
		font-size: 17px;
	}
}

.single-counter-box .counter-number span {
	font-size: 70px;
	font-weight: 500;
	line-height: 1.5;
	letter-spacing: 1px;
	color: #3B4B9D;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
	.single-counter-box .counter-number span {
		font-size: 70px;
	}
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
	.single-counter-box .counter-number span {
		font-size: 50px;
	}
}

@media (max-width: 767px) {
	.single-counter-box .counter-number span {
		font-size: 45px;
	}
}

.single-counter-box p.counter-number {
	font-size: 70px;
	color: #3B4B9D;
	text-align: center;
	margin-bottom: 0
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
	.single-counter-box p.counter-number {
		font-size: 65px;
	}
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
	.single-counter-box p.counter-number {
		font-size: 55px;
	}
}

@media (max-width: 767px) {
	.single-counter-box p.counter-number {
		font-size: 50px;
	}
}

.single-counter-box p.counter-number {
	/*border-bottom: 1px solid #ddd;*/
}

.single-service-item {
	position: relative;
}

.single-service-item:last-child {
	border-bottom: 1px solid #ddd;
}

.single-service-item .single-service-inner {
	border-top: 1px solid #ddd;
	position: relative;
	z-index: 1;
	padding: 40px 0;
}

.single-service-item .single-service-inner:nth-of-type(4) {
	border-bottom: 1px solid #ddd;
}

.single-service-item .single-service-inner h5 {
	font-size: 45px;
	font-weight: 400;
	color: #9F9F9F;
	transition: 0.4s linear;
}

.single-service-item .single-service-inner h5 span {
	font-size: 18px;
	position: relative;
	top: -45px;
}

@media (max-width: 767px) {
	.single-service-item .single-service-inner h5 span {
		font-size: 16px;
	}
}

@media (max-width: 767px) {
	.single-service-item .single-service-inner h5 {
		font-size: 24px;
		line-height: 34px;
	}
}

.single-service-item .single-service-inner p {
	font-size: 18px;
	font-weight: 400;
	margin: 26px 0;
	padding-right: 50px;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
	.single-service-item .single-service-inner p {
		margin: 20px 0;
	}
}

@media (max-width: 767px) {
	.single-service-item .single-service-inner p {
		padding-right: 75px;
	}
}

.single-service-item .single-service-inner .details-link {
	border: 1px solid #7f7f7f;
	border-radius: 50%;
	width: 45px;
	height: 45px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	right: 0;
	top: 50%;
	transform: translate(0, -50%);
}

.single-service-item .single-service-inner .details-link i {
	font-size: 25px;
	color: #7f7f7f;
	transform: rotate(-45deg);
	transition: 0.3s;
}

.single-service-item .single-service-inner:nth-of-type(4) .details-link {
	bottom: 30px;
}

.single-service-item .single-service-inner:hover h5 {
	color: #171717;
}

.single-service-item .single-service-inner:hover h5 span {
	color: #7f7f7f;
}

.single-service-item .single-service-inner:hover .details-link i {
	transform: rotate(180deg);
}

.service-img {
	width: 30%;
	height: 100%;
	object-fit: cover;
	position: absolute;
	inset-inline-end: 10%;
	top: 80px;
	transform: translateY(-50%);
	opacity: 0;
	visibility: hidden;
	transition: 0.4s linear;
	z-index: 9;
}

.service-img.img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.single-service-item:nth-child(5) .service-img {
	top: -120px;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
	.single-service-item:nth-child(5) .service-img {
		top: -60px;
	}
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
	.single-service-item:nth-child(5) .service-img {
		top: -60px;
	}
}

@media (max-width: 767px) {
	.single-service-item:nth-child(5) .service-img {
		top: 80px;
	}
}

.single-service-item:last-child .service-img {
	top: -225px;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
	.single-service-item:last-child .service-img {
		top: -200px;
	}
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
	.single-service-item:last-child .service-img {
		top: -50px;
	}
}

@media (max-width: 767px) {
	.single-service-item:last-child .service-img {
		top: 80px;
	}
}

.single-service-item .service-img img {
	width: 100%;
}

.single-service-item:hover .service-img {
	opacity: 1;
	visibility: visible;
	inset-inline-end: 20%;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
	.single-service-item:hover .service-img {
		inset-inline-end: 10%;
	}
}

.service-section .cp-custom-accordion .accordion-items {
	margin-bottom: 0;
}

.service-section .cp-custom-accordion .accordion-buttons {
	position: relative;
	width: 100%;
	padding: 20px 0 20px 30px;
	background-color: #fff;
	text-align: left;
	font-weight: 400;
	font-size: 30px;
	color: #171717;
	border: none;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
	.service-section .cp-custom-accordion .accordion-buttons {
		font-size: 24px;
	}
}

@media (max-width: 767px) {
	.service-section .cp-custom-accordion .accordion-buttons {
		font-size: 20px;
	}
}

.service-section .cp-custom-accordion .accordion-body {
	background-color: #fff;
	color: #878787;
	padding: 20px 0;
	padding-left: 30px;
	position: relative;
	font-size: 17px;
	font-weight: 400;
	line-height: 28px;
	z-index: 1;
	border-top: 1px solid #eee;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
	.service-section .cp-custom-accordion .accordion-body {
		padding: 10px 0;
	}
}

@media (max-width: 767px) {
	.service-section .cp-custom-accordion .accordion-body {
		padding-left: 0;
	}
}

.service-section .cp-custom-accordion .accordion-buttons::after {
	content: "\f068";
	visibility: visible;
	top: 20%;
}

.service-section .cp-custom-accordion .accordion-buttons.collapsed::after {
	content: "\f067";
	transform: rotate(0);
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
	.service-section .service-bg-wrap {
		max-width: calc(100% - 20px);
		margin-top: 50px;
	}
}

@media (max-width: 767px) {
	.service-section .service-bg-wrap {
		margin-top: 50px;
	}
}

@media (max-width: 767px) {
	.service-section.service-two.pt-50 {
		padding-top: 0;
	}
}

#service-3.service-section .cp-custom-accordion {
	margin-top: 30px;
}

#service-3.service-section .cp-custom-accordion .accordion-buttons {
	display: flex;
	align-items: center;
	padding: 30px 0 30px 30px;
	border-top: 1px solid #ddd;
}

#service-3.service-section .cp-custom-accordion .accordion-buttons {
	font-size: 30px;
}

@media (max-width: 767px) {
	#service-3.service-section .cp-custom-accordion .accordion-buttons {
		font-size: 24px;
		padding-left: 5px;
	}
}

#service-3.service-section .cp-custom-accordion .accordion-buttons span {
	padding-right: 30px;
}

@media (max-width: 767px) {
	#service-3.service-section .cp-custom-accordion .accordion-buttons span {
		padding-right: 0;
	}
}

#service-3.service-section .cp-custom-accordion .accordion-buttons::after {
	content: "\f061";
	transform: rotate(135deg);
	visibility: visible;
	transition: 0.3s;
}

@media (max-width: 767px) {
	#service-3.service-section .cp-custom-accordion .accordion-buttons::after {
		width: 30px;
		height: 30px;
		top: 30%;
		right: 10px;
	}
}

#service-3.service-section .cp-custom-accordion .accordion-buttons.collapsed::after {
	transform: rotate(-45deg);
}

#service-3.service-section .accordion-body {
	display: flex;
	justify-content: space-around;
	height: 250px;
	border-top: none;
	padding-top: 0;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
	#service-3.service-section .accordion-body img {
		width: 360px;
	}
}

@media (max-width: 767px) {
	#service-3.service-section .accordion-body {
		flex-direction: column;
		height: auto;
	}
}

#service-3.service-section .accordion-body p {
	padding: 30px 120px 0 60px;
	text-align: justify;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
	#service-3.service-section .accordion-body p {
		padding: 0px 20px 0 40px;
	}
}

@media (max-width: 767px) {
	#service-3.service-section .accordion-body p {
		padding: 0;
		padding-top: 20px;
	}
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
	.service-section.pt-100 {
		padding-top: 50px;
	}
}

@media (max-width: 767px) {
	.service-section.pt-100 {
		padding-top: 0px;
	}
}

#service_page .section-title span i {
	font-size: 60px;
}

@media (max-width: 767px) {
	#service_page .section-title span i {
		display: none;
	}
}

@media (max-width: 767px) {
	#service_page .section-title i {
		display: none;
	}
}

#service_page .hero-area-content {
	padding-left: 75px;
	margin-top: 30px;
	margin-bottom: 50px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
	#service_page .hero-area-content {
		padding-left: 0px;
	}
}

@media (max-width: 767px) {
	#service_page .hero-area-content {
		padding-left: 0px;
	}
}

#service_page .hero-area-content h1 {
	font-size: 80px;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
	#service_page .hero-area-content h1 {
		font-size: 70px;
	}
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
	#service_page .hero-area-content h1 {
		font-size: 60px;
		line-height: 70px;
		padding-left: 50px;
	}
}

@media (max-width: 767px) {
	#service_page .hero-area-content h1 {
		font-size: 45px;
		line-height: 60px;
		padding-left: 0px;
	}
}

#service_page .hero-area-content span.meta {
	color: #a39d9d;
	position: relative;
	bottom: -65px;
}

@media (max-width: 767px) {
	#service_page .hero-area-content span.meta {
		bottom: 15px;
	}
}

#service_page h1.first_line {
	padding-left: 160px;
}

@media (max-width: 767px) {
	#service_page h1.first_line {
		padding-left: 0px;
	}
}

#service_page h1.third_line {
	padding-left: 85px;
}

@media (max-width: 767px) {
	#service_page h1.third_line {
		padding-left: 0px;
	}
}

#service_page .single-feature-item {
	margin-top: 0;
}

.services-tabs ul {
	display: block;
	border-bottom: none;
}

.services-tabs li {
	display: block;
}

.services-tabs li a {
	font-size: 40px;
	letter-spacing: -1px;
	position: relative;
	display: inline-block;
	padding-bottom: 15px;
	margin-bottom: 25px;
	text-decoration: none;
	opacity: 0.27;
	transition: all 0.27s cubic-bezier(0, 0, 0.58, 1);
}

@media (max-width: 767px) {
	.services-tabs li a {
		font-size: 30px;
	}
}

.services-tabs li a:hover {
	color: unset;
	opacity: 0.5;
}

.services-tabs li a.active {
	opacity: 1;
}

.services-tabs li a .number {
	position: absolute;
	top: 0;
	right: -25px;
	display: inline-block;
	font-size: 16px;
	font-weight: 700;
	letter-spacing: 0;
	opacity: 0;
	transform: translateX(5px);
	transition: all 0.27s cubic-bezier(0, 0, 0.58, 1);
}

.services-tabs li a.active .number {
	opacity: 1;
	transform: translateX(0);
}

.services-tabs li a:before {
	content: "";
	display: block;
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 2px;
	background: currentColor;
	transform-origin: left center;
	transform: scaleX(0);
	transition: all 0.5s cubic-bezier(0, 0, 0.58, 1);
}

.services-tabs li a.active:before {
	transform: scaleX(1);
}

.services-content {
	position: relative;
}

.services-text {
	position: absolute;
	bottom: 35px;
	left: -220px;
	max-width: 410px;
	background: #f1f1f1;
	padding: 50px;
	z-index: 2;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
	.services-text {
		left: 0;
		bottom: 0;
	}
}

@media (max-width: 767px) {
	.services-text {
		left: 0;
		bottom: 0;
		padding: 30px;
	}
}

.services-text h4 {
	font-size: 24px;
	font-weight: 500;
	margin-bottom: 20px;
}

.services-text p {
	font-size: 18px;
	line-height: 30px;
}

.services-content-item {
	position: relative;
	width: 100%;
	min-height: 600px;
	transition: all 0.27s cubic-bezier(0, 0, 0.58, 1);
}

img.services-image {
	position: relative;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
	img.services-image {
		width: 60%;
		margin: 10px 0 0 40%;
	}
}

@keyframes services-tabs-animation-1 {
	0% {
		opacity: 0;
		transform: translate(0, 40px);
	}

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

.services-content-item.active img.services-image {
	animation: services-tabs-animation-1 0.7s ease-in-out;
}

@keyframes services-tabs-animation-2 {
	0% {
		transform: translate(0, 20px) scale(0.93);
	}

	100% {
		transform: translate(0, 0) scale(1);
	}
}

.services-content-item.active .services-text {
	animation: services-tabs-animation-2 0.7s ease-in-out;
	will-change: transform;
}

@media (max-width: 767px) {
	.services-tabs.mt-100 {
		margin-top: 50px;
	}
}

@media (max-width: 767px) {
	.service-section.pt-50 {
		padding-top: 0;
	}
}

@media (max-width: 767px) {
	.service-section {
		padding-bottom: 50px;
	}
}

.project-title {
	position: relative;

}

.project-title:before {
	/* position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: #eee;*/
}

.project-title h3 {
	font-size: 20px;
	margin-top: 20px;
	color: #3B4B9D;
	text-transform: uppercase;
	font-family: "Montserrat";
	font-weight: 500;
}

.project-title h6 {
	text-transform: none;
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 0px;
	color: #111;
	margin-top: 5px;
}

.project-title a {
	font-size: 18px;
	margin-top: 20px;
	color: #fff;
	border: 1px solid #ccc;
	padding: 5px 10px;
	margin-right: 10px
}

.project-title a:hover {
	background: #00a658;
	border-color: #00a658;
}

.project-slider .owl-stage-outer {
	overflow: inherit;
}

.project-slider:before,
.project-slider:after {
	position: absolute;
	content: "";
	width: 500%;
	height: 100%;
	top: 0;
	left: -500%;
	background: #fff;
	opacity: 1;
	z-index: 1;
}

.project-slider:after {
	left: auto;
	right: -500%;
}

.project-slider .owl-nav button.owl-prev,
.project-slider .owl-nav button.owl-next {
	border: 1px solid #ddd;
	width: 45px;
	height: 45px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-left: 20px;
}

.project-slider .owl-nav button.owl-prev:hover,
.project-slider .owl-nav button.owl-next:hover {
	background: #171717;
	border-color: #171717;
	color: #fff;
}

.project-slider .owl-nav {
	position: absolute;
	top: -90px;
	right: 0;
	display: flex;
	justify-content: center
}

.project-slider .owl-nav i {
	font-size: 20px;
}




.project-slider2 .owl-stage-outer {
	overflow: inherit;
}

.project-slider2:before,
.project-slider2:after {
	position: absolute;
	content: "";
	width: 500%;
	height: 100%;
	top: 0;
	left: -500%;
	background: #fff;
	opacity: 1;
	z-index: 1;
}

.project-slider2:after {
	left: auto;
	right: -500%;
}

.project-slider2 .owl-nav button.owl-prev,
.project-slider2 .owl-nav button.owl-next {
	border: 1px solid #ddd;
	width: 45px;
	height: 45px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-left: 20px;
}

.project-slider2 .owl-nav button.owl-prev:hover,
.project-slider2 .owl-nav button.owl-next:hover {
	background: #171717;
	border-color: #171717;
	color: #fff;
}

.project-slider2 .owl-nav {
	position: absolute;
	top: -90px;
	right: 0;
	display: flex !important;
	justify-content: center
}

.project-slider2 .owl-nav i {
	font-size: 20px;
}






.project-slider3 .owl-stage-outer {
	overflow: inherit;
}

.project-slider3:before,
.project-slider3:after {
	position: absolute;
	content: "";
	width: 500%;
	height: 100%;
	top: 0;
	left: -500%;
	background: #fff;
	opacity: 1;
	z-index: 1;
}

.project-slider3:after {
	left: auto;
	right: -500%;
}

.project-slider3 .owl-nav button.owl-prev,
.project-slider3 .owl-nav button.owl-next {
	border: 1px solid #ddd;
	width: 45px;
	height: 45px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-left: 20px;
}

.project-slider3 .owl-nav button.owl-prev:hover,
.project-slider3 .owl-nav button.owl-next:hover {
	background: #171717;
	border-color: #171717;
	color: #fff;
}

.project-slider3 .owl-nav {
	position: absolute;
	top: -90px;
	right: 0;
	display: flex !important;
	justify-content: center
}

.project-slider3 .owl-nav i {
	font-size: 20px;
}




.f-500{
	font-weight: 500
}




#project-2 .project-section {
	position: relative;
}

#project-2 .project-section.pt-100 {
	padding-top: 50px;
}

#project-2 .single-project-wrapper {
	display: block;
	min-height: 475px;
	position: relative;
	overflow: hidden;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	margin-bottom: 30px;
}

#project-2 .project-info-inner {
	position: absolute;
	left: 0;
	-webkit-transform: translateY(100%);
	-ms-transform: translateY(100%);
	transform: translateY(100%);
	-webkit-transition: -webkit-transform 0.3s linear;
	transition: -webkit-transform 0.3s linear;
	-o-transition: transform 0.3s linear;
	transition: transform 0.3s linear;
	transition: transform 0.3s linear, -webkit-transform 0.5s linear;
	-webkit-transition: -webkit-transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
	transition: -webkit-transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
	-o-transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
	transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
	transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
	background: #171717;
	position: absolute;
	bottom: 0;
	left: 0;
	padding: 25px 40px;
}

@media (max-width: 767px) {
	#project-2 .project-info-inner {
		padding: 25px 15px;
	}
}

#project-2 .project-info-inner h3 {
	color: #fff;
	font-size: 24px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
	#project-2 .project-info-inner h3 {
		font-size: 20px;
	}
}

@media (max-width: 767px) {
	#project-2 .project-info-inner h3 {
		font-size: 18px;
	}
}

#project-2 .project-info-inner p {
	margin: 0;
}

#project-2 .project-info-inner h6 {
	color: #444;
	margin: 17px 0;
}

#project-2 .project-info-inner:hover h3 {
	text-decoration: underline;
	text-underline-offset: 3px;
	text-decoration-thickness: 2px;
}

#project-2 .project-info-inner {
	display: flex;
	align-items: center;
	justify-content: space-around;
}

#project-2 .project-details-link {
	color: #fff;
	border: 1px solid;
	width: 45px;
	height: 45px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
}

#project-2 .project-details-link i {
	font-size: 20px;
	transform: rotate(-45deg);
	transition: -webkit-transform 0.3s linear;
}

#project-2 .project-info {
	margin-right: 40px;
}

#project-2 .portfolio-content {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 40%;
	background-color: #fff;
	padding: 20px 10px;
	-webkit-transform: translateY(100%);
	-ms-transform: translateY(100%);
	transform: translateY(100%);
	-webkit-transition: -webkit-transform 0.5s linear;
	transition: -webkit-transform 0.5s linear;
	-o-transition: transform 0.5s linear;
	transition: transform 0.5s linear;
	transition: transform 0.5s linear, -webkit-transform 0.5s linear;
	-webkit-transition: -webkit-transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
	transition: -webkit-transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
	-o-transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
	transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
	transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

#project-2 .single-project-wrapper:hover .project-info-inner {
	-webkit-transform: translateY(0);
	-ms-transform: translateY(0);
	transform: translateY(0);
	-webkit-transition-delay: 0.15s;
	-o-transition-delay: 0.15s;
	transition-delay: 0.15s;
}

#project-2 .project-info-inner:hover .project-details-link i {
	transform: rotate(0);
}

#project-3 .project-list {
	position: relative;
	z-index: 1;
	margin: 20px 0 10px;
}

#project-3 .project-list:after {
	position: absolute;
	content: "";
	top: 46px;
	left: 0;
	width: 100%;
	height: 1px;
	background: #777;
}

#project-3 .project-list button {
	border: none;
	background: none;
	margin-bottom: 30px;
	color: #333;
	padding-left: 0;
	padding-right: 0px;
	margin-right: 50px;
	padding-bottom: 10px;
	font-size: 18px;
}

#project-3 .project-list button:hover {
	color: #000;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
	#project-3 .project-list button {
		margin-right: 35px;
	}
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
	#project-3 .project-list button {
		margin-right: 45px;
	}
}

#project-3 .project-list .nav-link.active {
	border-bottom: 4px solid #777;
}

#project-3 .project-list .nav-link:focus,
#project-3 .project-list .nav-link:hover {
	color: #000 !important;
}

#project-3 .featured-work-wrapper {
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	height: 450px;
	position: relative;
	margin-bottom: 50px;
}

#project-3 .featured-work-wrapper:after {
	position: absolute;
	content: " ";
	width: 100%;
	height: 100%;
	background-color: #171717;
	display: block;
	opacity: 0;
	left: 0;
	top: 0;
	transition: all ease 0.3s;
}

#project-3 .featured-work-wrapper:hover::after {
	opacity: 0.6;
}

#project-3 .featured-work-wrapper .featured-work-info {
	position: absolute;
	left: 0;
	bottom: 0;
	opacity: 0;
	transform: translateY(50px);
	width: 100%;
	z-index: 2;
	padding: 35px 40px 35px 40px;
	max-width: 500px;
	transition: all ease 0.3s;
	transition-delay: 0.07s;
}

#project-3 .featured-work-wrapper .featured-work-info h2 {
	color: transparent;
	-webkit-text-stroke: 0.8px #FFFBFB;
	-webkit-text-stroke-width: 1px;
	font-size: 70px;
}

#project-3 .featured-work-wrapper .featured-work-info h4 {
	color: #fff;
	font-size: 30px;
}

#project-3 .featured-work-wrapper:hover .featured-work-info {
	opacity: 1;
	transform: translateY(0);
}

#project-3 .featured-work-wrapper .details-link {
	border: 1px solid #fff;
	border-radius: 50%;
	width: 45px;
	height: 45px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	top: 25px;
	right: 25px;
	transform: translate3d(0, -100%, 0);
	transition: all ease 0.3s;
	opacity: 0;
	z-index: 2;
}

#project-3 .featured-work-wrapper .details-link i {
	font-size: 20px;
	color: #fff;
	transform: rotate(-45deg);
	transition: all ease 0.3s;
}

#project-3 .featured-work-wrapper .details-link i:hover {
	transform: rotate(0);
}

#project-3 .featured-work-wrapper:hover .details-link {
	opacity: 1;
	transform: translate(0, 0);
}

@media (max-width: 767px) {
	#project-3.project-section.pt-100 {
		padding-top: 50px;
	}
}

@media (max-width: 767px) {
	#project-3.project-section.pb-100 {
		padding-bottom: 50px;
		padding-top: 0;
	}
}

#project_page .section-title h1 {
	font-size: 90px;
	font-weight: 500;
	line-height: 100px;
}

@media (max-width: 767px) {
	#project_page .section-title h1 {
		font-size: 35px;
		line-height: 45px;
	}
}

@media (max-width: 767px) {
	.project-feature-img img {
		width: 100%;
		height: 250px;
		object-fit: cover;
	}
}

#project_page .hero-area-inner {
	padding: 80px 0 40px;
}

.service-info p {
	position: relative;
	z-index: 1;
}

.service-info p:before {
	position: absolute;
	content: "";
	top: 50%;
	right: 100px;
	width: 80px;
	height: 1px;
	background: #ddd;
}

@media (max-width: 767px) {
	.project-details-wrap.section-padding {
		padding-bottom: 50px;
	}
}

.project-details-wrap .section-title h1 {
	font-size: 90px;
	font-weight: 500;
	line-height: 100px;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
	.project-details-wrap .section-title h1 {
		font-size: 75px;
		line-height: 80px;
	}
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
	.project-details-wrap .section-title h1 {
		font-size: 70px;
		line-height: 80px;
	}
}

@media (max-width: 767px) {
	.project-details-wrap .section-title h1 {
		font-size: 40px;
		line-height: 50px;
	}
}

.project-details-wrap h6 {
	color: #a39d9d;
	line-height: 1.3;
}

.project-details-wrap h6 a {
	color: #a39d9d;
	font-size: 16px;
}

.project-details-wrap h6 span {
	color: #333;
	font-weight: 500;
}

.project-details-inner .section-title {
	display: flex;
	align-items: end;
	justify-content: space-between;
	margin-bottom: 0;
}

.project-details-info {
	padding: 50px 0;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
	.project-details-info {
		padding: 40px 0;
	}
}

.single-info p {
	margin: 0;
}

.single-info {
	margin-bottom: 20px;
}

.project-details-inner {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	height: 100%;
	padding-left: 25px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
	.project-details-inner {
		margin-top: 60px;
	}
}

@media (max-width: 767px) {
	.project-details-inner {
		margin-top: 30px;
		padding-left: 0;
	}
}

.project-desc {
	text-align: end;
	padding-left: 150px;
}

.project-desc p {
	margin: 0;
}

@media (max-width: 767px) {
	.project-desc {
		padding-left: 0;
		text-align: start;
	}
}

.project-bg {
	position: relative;
}

@media (max-width: 767px) {
	.project-bg {
		height: 575px;
		object-fit: cover;
	}
}

.project-brief-wrap {
	position: absolute;
	bottom: 15px;
	left: 0;
	background: rgba(23, 23, 23, 0.7411764706);
	width: 400px;
	padding: 25px;
}

@media (max-width: 767px) {
	.project-brief-wrap {
		width: 350px;
		background: #171717;
	}
}

.single-brief {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.single-brief:not(:last-child) {
	margin-bottom: 15px;
}

.single-brief p {
	margin: 0;
}

.project-brief-wrap h6,
.project-brief-wrap p {
	color: #d6d6d6;
	font-size: 16px;
	font-weight: 400;
}

.single-brief.total-cost p {
	font-size: 30px;
	font-weight: 500;
}

figcaption {
	font-size: 17px;
	color: #777;
	border-bottom: 1px solid #ddd;
	padding: 5px 0;
}

.project-details-img.big-img img {
	min-height: 634px;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
	.project-details-img.big-img img {
		min-height: 600px;
	}
}

@media (max-width: 767px) {
	.challenge-section.section-padding {
		padding-bottom: 0;
	}
}

@media (max-width: 767px) {
	.challenge-section .section-title h2 {
		font-size: 32px;
		line-height: 42px;
	}
}

.challenge-section .section-title h2 span {
	display: inline;
	color: inherit;
	text-decoration: underline;
	text-underline-offset: 18px;
	text-decoration-thickness: 3px;
	line-height: 1.2;
}

@media (max-width: 767px) {
	.challenge-section .section-title h2 span {
		text-underline-offset: 10px;
	}
}

.challenge-section p {
	margin: 0;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
	.challenge-section p {
		margin-bottom: 60px;
	}
}

@media (max-width: 767px) {
	.challenge-section p {
		margin-bottom: 60px;
	}
}

.challenge-img-two img {
	margin-bottom: 60px;
}

@media (max-width: 767px) {
	.challenge-img-two img {
		margin-top: 60px;
	}
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
	.solutions-section.section-padding.pt-100 {
		padding-top: 50px;
	}
}

@media (max-width: 767px) {
	.solutions-section.section-padding.pt-100 {
		padding-top: 50px;
	}
}

.solutions-section h2 {
	font-size: 70px;
}

.solutions-section h4 {
	margin-bottom: 30px;
}

.solutions-img {
	max-width: calc(100% - 40px);
	margin-top: 60px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
	.solutions-img {
		margin-top: 10px;
	}
}

@media (max-width: 767px) {
	.solutions-img {
		margin-top: 10px;
		max-width: calc(100% - 0px);
	}
}

.solutions-content h3 {
	font-size: 50px;
	line-height: 60px;
	margin-bottom: 60px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
	.solutions-content h3 {
		margin-top: 30px;
		margin-bottom: 30px;
	}
}

@media (max-width: 767px) {
	.solutions-content h3 {
		font-size: 32px;
		line-height: 42px;
		margin-top: 30px;
	}
}

.solutions-content h3 span {
	display: inline;
	text-decoration: underline;
	text-underline-offset: 12px;
	text-decoration-thickness: 3px;
	line-height: 1.2;
}

@media (max-width: 767px) {
	.project-section.pb-100 {
		padding-bottom: 50px;
	}
}

.testimonial-section {
	position: relative;
}

.testimonial-section .directon-sign {
	position: absolute;
	top: 140px;
}

.quote-icon {
	margin-bottom: 30px;
}

.testimonial-content p {
	font-size: 30px;
	line-height: 1.5;
}

@media (max-width: 767px) {
	.testimonial-content p {
		font-size: 20px;
	}
}

.testimonial-author h6 {
	color: #fff;
	font-size: 20px;
	margin-top: 30px;
}

.testimonial-author h6 span {
	display: block;
	opacity: 0.5;
	font-size: 85%;
	margin-top: 5px;
}

.single-testimonial-item img {
	width: inherit !important;
}

.testimonial-author {
	margin-top: 30px;
}

.testimonial-author img {
	width: 70px !important;
	height: 70px !important;
}

.testimonial-wrapper .owl-nav button.owl-prev,
.testimonial-wrapper .owl-nav button.owl-next {
	border: 1px solid #ddd;
	width: 45px;
	height: 45px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-left: 20px;
}

.testimonial-wrapper .owl-nav button.owl-prev:hover,
.testimonial-wrapper .owl-nav button.owl-next:hover {
	background: #171717;
	border-color: #171717;
	color: #fff;
}

.testimonial-wrapper .owl-nav {
	position: absolute;
	bottom: 0;
	right: 70px;
	display: flex;
}

@media (max-width: 767px) {
	.testimonial-wrapper .owl-nav {
		right: auto;
		bottom: -70px;
		left: -20px;
	}
}

.testimonial-wrapper .owl-nav i {
	font-size: 20px;
}

#testimonial-2 .single-testimonial-item {
	border: 1px solid #dadada;
	text-align: center;
	padding: 40px;
}

@media (max-width: 767px) {
	#testimonial-2 .single-testimonial-item {
		padding: 25px;
	}
}

#testimonial-2 .single-testimonial-item p {
	font-size: 18px;
	line-height: 28px;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
	#testimonial-2 .single-testimonial-item p {
		font-size: 18px;
	}
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
	#testimonial-2 .single-testimonial-item p {
		font-size: 18px;
	}
}

#testimonial-2 .testimonial-img img {
	margin: 0 auto;
	border-radius: 50%;
	transform: translateY(-100px);
	margin-bottom: -60px;
}

#testimonial-2 .testimonial-author h6 {
	color: inherit;
}

#testimonial-2 .owl-carousel .owl-stage-outer {
	overflow: initial;
}

#testimonial-2 .owl-item {
	opacity: 0;
}

#testimonial-2 .owl-item.active {
	opacity: 1;
}

#testimonial-2 .owl-nav button.owl-prev,
#testimonial-2 .owl-nav button.owl-next {
	border: 1px solid #ddd;
	width: 45px;
	height: 45px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-left: 20px;
}

#testimonial-2 .owl-nav button.owl-prev:hover,
#testimonial-2 .owl-nav button.owl-next:hover {
	background: #171717;
	border-color: #171717;
	color: #fff;
}

#testimonial-2 .owl-nav {
	position: absolute;
	bottom: -50px;
	right: 50%;
	display: flex;
	transform: translate(50%, 50%);
}

#testimonial-2 .owl-nav i {
	font-size: 20px;
}

@media (max-width: 767px) {
	#testimonial-2.testimonial-section.pt-50 {
		padding-top: 0;
	}
}

.cta-area {
	position: relative;
	z-index: 1;
	height: 500px;
}

.cta-area h2 {
	font-size: 80px;
	font-weight: 500;
	line-height: 90px;
}

@media (max-width: 767px) {
	.cta-area h2 br {
		display: none;
	}
}

@media (max-width: 767px) {
	.cta-area h2 {
		font-size: 40px;
		line-height: 45px;
		margin-bottom: 30px;
	}
}

.cta-area-two {
	background-size: cover;
	background-repeat: no-repeat;
	padding: 75px 0;
}

.cta-area-two span i {
	transform: rotate(-45deg);
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
	.cta-area-two {
		text-align: center;
		padding: 50px 100px;
	}

	.cta-area-two h2 br {
		display: none;
	}
}

@media (max-width: 767px) {
	.cta-area-two {
		text-align: center;
	}

	.cta-area-two h2 {
		font-size: 35px;
	}

	.cta-area-two h2 br {
		display: none;
	}
}

.cta-content p {
	font-size: 20px;
	line-height: 30px;
}

.cta-content p a {
	font-size: 20px;
	color: #171717;
	font-weight: 500;
	text-decoration: underline;
	text-underline-offset: 4px;
	text-decoration-thickness: 2px;
}

.cta-img-area {
	position: relative;
	height: 600px;
}

@media (max-width: 767px) {
	.cta-img-area {
		display: none;
	}
}

.cta-img-area .cta-inner {
	overflow: hidden;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	display: flex;
	justify-content: center;
	align-items: center;
}

.cta-img-area .cta-inner .cta-img-wrap {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	display: flex;
	justify-content: center;
	align-items: center;
}

.cta-img-area h2 {
	font-size: 70px;
	font-weight: 500;
	line-height: 80px;
}

@media (max-width: 767px) {
	.cta-img-area h2 {
		font-size: 45px;
		line-height: 50px;
	}

	.cta-img-area h2 br {
		display: none;
	}
}

.cta-img-area .cta-inner img {
	width: 100%;
	object-fit: cover;
	object-position: center center;
}

.blog-section.blog-two.pb-100 {
	padding-bottom: 50px;
}

.single-blog-item {
	margin-bottom: 50px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
	.single-blog-item .blog-bg img {
		height: 270px;
		width: 100%;
		object-fit: cover;
	}
}

.single-blog-item .blog-content h3 a {
	font-size: 24px;
	font-weight: 400;
	line-height: 1.4;
	margin-top: 10px;
}

.single-blog-item .blog-meta {
	border-bottom: 1px solid #eee;
}

.single-blog-item .blog-meta p {
	margin-top: 20px;
	margin-bottom: 10px;
}

.single-blog-item .blog-info {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 10px;
}

.single-blog-item:hover .blog-content h3 a {
	text-decoration: underline;
	text-underline-offset: 8px;
	text-decoration-thickness: 2px;
}

.blog-carousel .owl-stage-outer {
	overflow: inherit;
}

.blog-carousel-wrapper {
	overflow-x: hidden;
}

.blog-carousel:before,
.blog-carousel:after {
	position: absolute;
	content: "";
	width: 500%;
	height: 100%;
	top: 0;
	left: -500%;
	background: #fff;
	opacity: 0.7;
	z-index: 1;
}

.blog-carousel:after {
	left: auto;
	right: -500%;
}

.blog-carousel .owl-nav button.owl-prev,
.blog-carousel .owl-nav button.owl-next {
	border: 1px solid #ddd;
	width: 45px;
	height: 45px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-left: 20px;
}

.blog-carousel .owl-nav button.owl-prev:hover,
.blog-carousel .owl-nav button.owl-next:hover {
	background: #171717;
	border-color: #171717;
	color: #fff;
}

.blog-carousel .owl-nav {
	position: absolute;
	bottom: -40px;
	right: 0;
	display: flex;
}

.blog-carousel .owl-nav i {
	font-size: 20px;
}

#blog-3 .single-blog-item {
	display: flex;
	border-bottom: 1px solid #ddd;
	margin-bottom: 50px;
}

#blog-3 .single-blog-item:nth-of-type(1) {
	border-top: 1px solid #ddd;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
	#blog-3 .single-blog-item {
		flex-direction: column;
	}
}

@media (max-width: 767px) {
	#blog-3 .single-blog-item {
		flex-direction: column;
	}
}

#blog-3 .single-blog-item h3 a {
	font-size: 30px;
	text-underline-offset: 8px;
	text-decoration-thickness: 2px;
}

@media (max-width: 767px) {
	#blog-3 .single-blog-item h3 a {
		font-size: 24px;
		margin-bottom: 20px;
	}

	#blog-3 .single-blog-item h3 a br {
		display: none;
	}
}

#blog-3 .blog-bg {
	flex: 0 0 45%;
}

#blog-3 .blog-content {
	padding-left: 60px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
	#blog-3 .blog-content {
		padding-left: 0;
	}
}

@media (max-width: 767px) {
	#blog-3 .blog-content {
		padding-left: 0;
	}
}

#blog-3 .blog-info {
	margin-top: -30px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
	#blog-3 .blog-info {
		margin-top: 10px;
	}
}

#blog-3 .blog-meta {
	border-bottom: none;
}

#blog-3 .blog-meta p {
	color: #333;
	margin-top: 0;
	margin-bottom: 12px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
	#blog-3 .blog-meta p {
		margin-top: 20px;
		margin-bottom: 0;
	}
}

@media (max-width: 767px) {
	#blog-3 .blog-meta p {
		margin-top: 0;
		margin-bottom: 30px;
	}
}

#blog-3 a.read-more-btn {
	font-size: 16px;
	font-weight: 500;
	text-decoration: underline;
}

#blog_page .section-title h1 {
	font-size: 90px;
	font-weight: 500;
	line-height: 100px;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
	#blog_page .section-title h1 {
		font-size: 80px;
		line-height: 85px;
	}
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
	#blog_page .section-title h1 {
		font-size: 70px;
		line-height: 80px;
	}
}

@media (max-width: 767px) {
	#blog_page .section-title h1 {
		font-size: 40px;
		line-height: 50px;
	}
}

#blog_page .hero-area-inner {
	padding: 40px 0 0px;
}

#blog_page .pagination {
	margin: 30px 0 60px;
	justify-content: center;
}

#blog_page .page-link {
	margin-right: 20px;
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: none;
	color: #171717;
}

#blog_page .page-link:hover {
	background: none;
	font-weight: 500;
}

#blog_page .page-link:focus {
	background-color: none;
	outline: 0;
	box-shadow: none;
}

#blog_page .page-item:first-child .page-link {
	display: inline-flex;
	border: 1px solid #171717;
	border-radius: 50%;
}

#blog_page .page-item:first-child .page-link i {
	font-size: 22px;
}

#blog_page .page-item:first-child .page-link:hover {
	background: #171717;
	color: #fff;
}

#blog_page .page-item:last-child .page-link {
	border: 1px solid #171717;
	border-radius: 50%;
}

#blog_page .page-item:last-child .page-link i {
	font-size: 22px;
}

#blog_page .page-item:last-child .page-link:hover {
	background: #171717;
	color: #fff;
}

#blog_page .active > .page-link,
#blog_page .page-link.active {
	border-radius: 0;
	margin-right: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: none;
	border-bottom: 1px solid;
	font-weight: 500;
}

.blog-details-page {
	padding: 0 0 100px;
}

.blog-details-page .section-title span i {
	color: #ddd;
	font-size: 80px;
	transform: rotate(-45deg);
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
	.blog-details-page .section-title span i {
		font-size: 60px;
	}
}

@media (max-width: 767px) {
	.blog-details-page .section-title span i {
		font-size: 40px;
	}
}

.blog-details-page .blog-meta {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.blog-details-page .blog-meta p {
	margin: 0;
}

@media (max-width: 767px) {
	.blog-details-page .blog-meta p {
		display: none;
	}
}

.blog-details-page .blog-meta span {
	font-size: 17px;
	color: #777;
	margin-right: 45px;
}

.blog-details-page .blog-content {
	padding-left: 80px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
	.blog-details-page .blog-content {
		padding-left: 60px;
	}
}

@media (max-width: 767px) {
	.blog-details-page .blog-content {
		padding-left: 0;
	}
}

.blog-details-page .blog-content h3 {
	font-size: 35px;
	line-height: 45px;
	margin-top: 60px;
	margin-bottom: 60px;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
	.blog-details-page .blog-content h3 {
		font-size: 30px;
		line-height: 40px;
	}
}

@media (max-width: 767px) {
	.blog-details-page .blog-content h3 {
		font-size: 24px;
		line-height: 34px;
		margin-top: 30px;
		margin-bottom: 30px;
	}
}

.blog-details-page .blog-content-inner h4 {
	font-size: 22px;
	font-weight: 400;
	margin-bottom: 15px;
	margin-top: 30px;
	color: #777;
}

.blog-details-page .blog-content-inner h4 span {
	font-size: 18px;
	padding-right: 30px;
}

.blog-details-page .blog-content-inner p {
	padding-left: 50px;
}

.blog-details-page .blog-quote-text {
	position: relative;
}

.blog-details-page .blog-quote-text h3 {
	font-size: 28px;
	line-height: 40px;
	margin-top: 10px;
	margin-bottom: 60px;
	color: #777;
}

@media (max-width: 767px) {
	.blog-details-page .blog-quote-text h3 {
		font-size: 24px;
		line-height: 34px;
	}
}

.blog-details-page .blog-tag-wrap h6 {
	font-size: 22px;
	color: #777;
	margin-bottom: 30px;
}

.blog-details-page .blog-tag-wrap a {
	font-size: 16px;
	color: #777;
	border: 1px solid #ddd;
	padding: 7px 15px;
	margin-right: 10px;
	margin-bottom: 10px;
}

.comments-headline h5 {
	font-weight: 500;
}

.single-comments-inner {
	display: inline-flex;
	justify-content: space-around;
	margin-bottom: 60px;
}

@media (max-width: 767px) {
	.single-comments-inner {
		flex-direction: column;
	}
}

.comments-autor-thumb img {
	width: 100px;
}

@media (max-width: 767px) {
	.comments-autor-thumb img {
		margin-bottom: 10px;
	}
}

.comments-content {
	padding-left: 30px;
}

@media (max-width: 767px) {
	.comments-content {
		padding-left: 0;
	}
}

.comments-content h6 {
	font-size: 20px;
}

p.comments-date {
	margin-bottom: 30px;
}

a.reply-btn {
	font-size: 17px;
	color: #777;
}

a.reply-btn i {
	margin-right: 15px;
}

.comments-form-wrap {
	background: #fff;
	margin-top: 60px;
}

.comments-form-wrap h3 {
	margin: 0 0 30px;
}

.comments-form-wrap .comments-form input,
.comments-form-wrap .comments-form textarea {
	border: 1px solid #ddd;
	border-radius: 25px;
	margin-bottom: 30px;
}

.comments-form-wrap .comments-form textarea {
	height: 200px;
}

.comments-form-wrap input[type=submit] {
	width: 170px;
	font-size: 17px;
}

.blog-sidebar {
	margin-top: 270px;
}

.blog-sidebar h5 {
	font-size: 28px;
	margin-bottom: 25px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
	.blog-sidebar {
		margin-top: 100px;
	}
}

@media (max-width: 767px) {
	.blog-sidebar {
		margin-top: 50px;
	}
}

.search-bar-wrap input {
	border: 1px solid #ddd;
	padding: 15px;
	border-radius: 50px;
}

.search-bar-wrap i {
	font-size: 18px;
	border: 0;
	padding: 0;
	display: flex;
	align-items: center;
	position: relative;
	right: 35px;
}

.search-bar-wrap i:hover {
	cursor: pointer;
}

.blog-category {
	background: #fff;
	margin: 60px 0;
}

.blog-category ul li {
	display: block;
	border-top: 1px solid #ddd;
}

.blog-category ul li span {
	font-size: 14px;
	color: #777;
}

.blog-category ul li a {
	font-size: 18px;
	font-weight: 400;
	color: #777;
	padding-left: 20px;
	margin: 20px 0;
}

.blog-category ul li a:hover {
	color: #171717;
}

.blog-category ul li i {
	margin-right: 15px;
}

.single-latest-post {
	border-top: 1px solid #ddd;
	border-bottom: 1px solid #ddd;
	padding: 10px 0;
}

.post-title h3 a {
	font-size: 22px;
	line-height: 30px;
}

.post-tag p {
	margin: 10px 0;
}

.blog-info {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 10px;
}

.popular-tag-wrap a {
	font-size: 15px;
	color: #777;
	border: 1px solid #ddd;
	padding: 7px;
	margin-right: 8px;
	margin-bottom: 10px;
}

@media (max-width: 767px) {
	.blog-section {
		padding-top: 50px;
	}
}

.faq-section {
	position: relative;
	z-index: 1;
	background-size: cover;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
	.faq-section.section-padding {
		background-image: none !important;
	}
}

@media (max-width: 767px) {
	.faq-section img {
		width: 100%;
		height: 250px;
		object-fit: cover;
	}
}

.cp-custom-accordion .accordion-items {
	margin-bottom: 20px;
}

.cp-custom-accordion .accordion-buttons {
	position: relative;
	width: 100%;
	padding: 30px;
	background-color: #fff;
	text-align: left;
	font-weight: 600;
	font-size: 20px;
	color: #171717;
	border: none;
	border-bottom: 1px solid #eee;
	padding-left: 0;
	padding-bottom: 20px
}

@media (max-width: 767px) {
	.cp-custom-accordion .accordion-buttons {
		padding: 20px 30px;
		font-size: 18px;
		line-height: 30px;
	}
}

.cp-custom-accordion .accordion-buttons span {
	font-size: 15px;
	margin-right: 15px;
	color: #777;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
	.cp-custom-accordion .accordion-buttons {
		padding: 25px 28px;
	}
}

.cp-custom-accordion .accordion-buttons::after {
	position: absolute;
	content: "\f107";
	font-family: "Line Awesome Free";
	top: 25%;
	transform: rotate(-180deg);
	right: 30px;
	font-size: 20px;
	font-weight: 500;
	opacity: 1;
	color: #777;
	/*border: 1.5px solid #ddd;*/
	width: 45px;
	height: 45px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
}

@media (max-width: 767px) {
	.cp-custom-accordion .accordion-buttons::after {
		top: 35px;
		right: 0;
		font-size: 16px;
	}
}

.cp-custom-accordion .accordion-buttons.collapsed::after {
	content: "\f107";
	transform: rotate(0deg);
}

.cp-custom-accordion .collapsed {
	position: relative;
}

.cp-custom-accordion .accordion-body {
	background-color: #fff;
	color: #878787;
	padding: 20px 0;
	padding-left: 30px;
	position: relative;
	font-size: 17px;
	font-weight: 400;
	line-height: 28px;
	z-index: 1;
	padding-left: 0;
}

.cp-custom-accordion .accordion-body p {

	font-size: 20px;
	line-height: 30px;
}




@media (max-width: 767px) {
	.cp-custom-accordion .accordion-body {
		font-size: 15px;
		padding-right: 30px;
		padding-left: 30px;
	}
}

@media (max-width: 767px) {
	.faq-section {
		padding-bottom: 50px;
	}
}

@media (max-width: 767px) {
	.client-area.pt-100 {
		padding-top: 50px;
	}
}

.single-client {
	display: flex;
	align-items: center;
	justify-content: space-around;
	width: 215px;
	margin-left: 30px;
}

.single-client img {
	max-width: inherit;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
	.single-client {
		margin-left: 0;
		width: inherit;
	}
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
	.single-client {
		margin-left: 0;
		width: inherit;
	}
}

@media (max-width: 767px) {
	.single-client {
		margin-left: 0;
		width: inherit;
	}
}

.client-area .owl-dots {
	display: none;
}

.single-team-item {
	margin-bottom: 50px;
}

.single-team-item .team-info h5 {
	font-size: 24px;
	margin-top: 15px;
}

.single-team-item .team-info hr {
	margin: 8px 0;
}

.single-team-item .team-info p {
	margin: 0;
}

.single-team-item .social-icon {
	font-size: 18px;
}

.single-team-item .social-icon a i {
	font-size: 18px;
	margin-right: 10px;
	color: #777;
	margin-top: 5px;
}

.single-team-item .social-icon a i:hover {
	color: #333;
}

@media (max-width: 767px) {
	.team-section.pb-60 {
		padding-bottom: 0;
	}
}

@media (max-width: 767px) {
	.team-section .section-title h2 br {
		display: none;
	}
}

@media (max-width: 767px) {
	.team-area.section-padding.pb-100 {
		padding-bottom: 50px;
	}
}

.team-bg-wrap {
	max-width: calc(100% - 80px);
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
	.team-bg-wrap {
		margin-top: 60px;
	}
}

@media (max-width: 767px) {
	.team-bg-wrap {
		margin-top: 60px;
		max-width: calc(100% - 0px);
	}
}

.team-content-wrapper h3 {
	color: #636363;
	font-size: 30px;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
	.team-content-wrapper h3 {
		font-size: 24px;
		line-height: 34px;
		margin-top: 15px;
	}
}

@media (max-width: 767px) {
	.team-content-wrapper h3 {
		font-size: 22px;
		line-height: 32px;
		margin-top: 20px;
	}
}

.team-content-wrapper p {
	margin-top: 50px;
	text-align: justify;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
	.team-content-wrapper p {
		margin-top: 35px;
	}
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
	.team-content-wrapper p {
		text-align: left;
	}
}

@media (max-width: 767px) {
	.team-content-wrapper p {
		margin-top: 30px;
	}
}

@media (max-width: 767px) {
	.team-section {
		padding-top: 50px;
		padding-bottom: 50px;
	}
}

@media (max-width: 767px) {
	.process-section.pt-0 {
		padding-top: 50px !important;
	}
}

@media (max-width: 767px) {
	.process-section.pb-100 {
		padding-bottom: 50px;
	}
}

.single-process-item {
	border-top: 1px solid #ddd;
	padding: 30px;
	padding-bottom: 0;
	margin-bottom: 50px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
	.single-process-item {
		padding: 30px;
	}
}

.single-process-item h2 {
	font-size: 50px;
}

.single-process-item h4 {
	margin: 30px 0 20px;
}

.single-process-item p {
	margin: 0;
}

.single-process-item .process-num {
	position: relative;
	z-index: 1;
}

.single-process-item .process-num i {
	color: #ddd;
	padding-left: 30px;
}

.single-process-item .process-num:before {
	position: absolute;
	content: "";
	top: -30px;
	left: -30px;
	width: 1px;
	height: 90px;
	background: #ddd;
}

.process-content-wrap .accordions {
	border-bottom: 1px solid #ddd;
}

.process-content-wrap .cp-custom-accordion .accordion-items {
	margin-bottom: 0;
}

.process-content-wrap .cp-custom-accordion .accordion-buttons {
	border-top: 1px solid #ddd;
	border-bottom: none;
	padding: 30px 0px;
	font-size: 30px;
	font-weight: normal;
}

.process-content-wrap .cp-custom-accordion .accordion-body {
	padding-top: 0;
	padding-left: 0;
	padding-right: 25px;
}

.process-img-wrap {
	position: relative;
	max-width: calc(100% - 40px);
}

.process-img-1 {
	position: absolute;
	top: 0;
	left: 0;
	width: 40%;
	overflow: hidden;
}

.process-img-2 {
	position: relative;
	width: 75%;
	margin: 120px auto;
	overflow: hidden;
}

.process-img-3 {
	position: absolute;
	bottom: 0;
	right: 0;
	width: 40%;
	overflow: hidden;
}

.single-process-item {
	margin-bottom: 60px;
}

.single-process-item h5 {
	font-size: 24px;
	margin: 30px 0;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
	.single-process-item {
		padding: 30px;
		margin-bottom: 0;
	}
}

@media (max-width: 767px) {
	.single-process-item {
		padding: 30px;
		margin-bottom: 0;
	}
}

.process-icon img {
	width: 60px;
	height: auto;
}

@media (max-width: 767px) {
	.process-section {
		padding-bottom: 50px;
	}
}

.single-choose-wrap {
	max-width: calc(100% - 100px);
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
	.single-choose-wrap {
		max-width: calc(100% - 60px);
	}
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
	.single-choose-wrap {
		max-width: calc(100% - 60px);
	}
}

@media (max-width: 767px) {
	.single-choose-wrap {
		max-width: calc(100% - 10px);
	}
}

.single-choose-inner {
	border-bottom: 1px solid #ddd;
	position: relative;
	z-index: 1;
	padding: 40px 0;
}

.single-choose-inner h5 {
	font-size: 45px;
	font-weight: 400;
	color: #9F9F9F;
}

.single-choose-inner h5 span {
	font-size: 20px;
	position: relative;
	top: -45px;
}

@media (max-width: 767px) {
	.single-choose-inner h5 span {
		font-size: 16px;
		line-height: 1;
	}
}

@media (max-width: 767px) {
	.single-choose-inner h5 {
		font-size: 24px;
		line-height: 34px;
	}
}

.single-choose-inner p {
	font-size: 18px;
	font-weight: 400;
	margin: 26px 0;
	padding-right: 50px;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
	.single-choose-inner p {
		margin: 20px 0;
	}
}

@media (max-width: 767px) {
	.single-choose-inner p {
		padding-right: 75px;
	}
}

.single-choose-inner .details-link {
	border: 1px solid #7f7f7f;
	border-radius: 50%;
	width: 45px;
	height: 45px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	right: 0;
	top: 50%;
	transform: translate(0, -50%);
}

.single-choose-inner .details-link i {
	font-size: 25px;
	color: #7f7f7f;
	transform: rotate(-45deg);
	transition: 0.3s;
}

.single-choose-inner:nth-of-type(4) .details-link {
	bottom: 30px;
}

.single-choose-inner:hover h5 a {
	color: #171717;
}

.single-choose-inner:hover .details-link i {
	transform: rotate(180deg);
}

.choose-content-wrap p {
	font-size: 18px;
	margin: 40px 0;
}

.single-choose-item {
	position: relative;
}

@media (max-width: 767px) {
	.single-choose-item {
		margin-top: 30px;
	}
}

.choose-img {
	width: 32.5%;
	height: 100%;
	object-fit: cover;
	position: absolute;
	inset-inline-end: 10%;
	top: 80px;
	transform: translateY(-50%);
	opacity: 0;
	visibility: hidden;
	transition: 0.4s linear;
	z-index: 9;
}

.choose-img .img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.single-choose-item:last-child .choose-img {
	bottom: 0;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
	.single-choose-item:last-child .choose-img {
		top: -100px;
	}
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
	.single-choose-item:last-child .choose-img {
		top: -50px;
	}
}

.single-choose-item .choose-img img {
	width: 100%;
}

.single-choose-item:hover .choose-img {
	opacity: 1;
	visibility: visible;
	inset-inline-end: 0;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
	.single-choose-item:hover .choose-img {
		inset-inline-end: 10%;
	}
}

.footer-area {
	background: #3B4B9D;
	color: #fff;
	position: relative;
	/* margin-top: -100px;*/
	z-index: -1;
	padding-top: 50px;
	padding-bottom: 50px
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
	.footer-area {
		padding: 100px 50px;
	}
}

@media (max-width: 767px) {
	.footer-area {
		padding: 50px 50px;
		margin-top: 0;
	}
}

.footer-area .logo {
	height: 100%;
	display: flex;
	align-items: center;
	padding-right: 30px;
	font-size: 30px;
	font-weight: 500;
	color: #fff;
	letter-spacing: 1px;
	/* justify-content: center;*/
}

.footer-area .logo img {

	width: 200px;
	filter: invert(1) brightness(12);
	display: flex;
	align-items: center;
	/*height: 100%;*/
}

.footer-area h5 {
	font-size: 22px;
	font-weight: 500;
	color: #fff;
	margin: 0 0 20px;
}

.footer-area p {
	font-size: 16px;
	margin-top: 5px;
	color: #fff;
	margin-bottom: 0
}

.footer-area ul li a {
	font-size: 16px;
	display: block;
	color: #fff;
	padding: 5px 0;
	position: relative;
}

@media (max-width: 767px) {
	.footer-area ul li a {
		padding: 6px 0;
	}
}

.footer-area ul li a:hover {
	opacity: 0.5;
}

.footer-up {
	padding: 0px 0;
}

.footer-up .social-area i {
	color: #eee;
	font-size: 20px;
	margin-right: 10px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
	.footer-up {
		padding-bottom: 0;
	}
}

@media (max-width: 767px) {
	.footer-up {
		padding: 0;
	}
}

.footer-bottom {
	font-size: 15px;
	font-weight: 400;
	padding: 20px 0;
	background: #3B4B9D;
	/* border-top: 1px solid #3B4B9D;*/
	border-top: 1px solid #cccccc2b;
}

.footer-bottom p {
	margin: 0;
	color: #fff;
	font-size: 15px;
	text-align: center;
	margin-bottom: 20px
}

@media (max-width: 767px) {
	.footer-bottom {
		text-align: center;
	}
}

.phone-number {
	margin-bottom: 20px
}

.phone-number p {
	line-height: 12px;
}

.company-email a {
	color: #f6f6f6;
	font-size: 17px;
	font-weight: 400;
	margin-bottom: 20px;
	margin-top: 10px;
}

.company-email a:hover {
	color: #fff;
}

.phone-number a {
	color: #f6f6f6;
	font-size: 17px;
	font-weight: 400;

	margin-top: 10px;
}

.phone-number a:hover {
	color: #fff;
}

.award-section {
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
}

.award-wrap {
	border-top: 1px solid #ddd;
	border-bottom: 1px solid #ddd;
}

.single-award-item {
	display: flex;
	align-items: end;
}

@media (max-width: 767px) {
	.single-award-item {
		margin-bottom: 30px;
	}
}

.single-award-item p {
	margin-bottom: 10px;
}

@media (max-width: 767px) {
	.single-award-item p {
		margin-bottom: 0;
	}
}

.single-award-item h3 {
	line-height: 1;
}

.award-icon {
	border: 1px solid #ddd;
	border-radius: 50%;
	width: 45px;
	height: 45px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.award-icon i {
	font-size: 20px;
	transform: rotate(-45deg);
}

.award-info {
	padding-left: 30px;
}

.award-info h3 {
	font-size: 30px;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
	.award-info h3 {
		font-size: 28px;
		line-height: 34px;
	}
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
	.award-info h3 {
		font-size: 20px;
		line-height: 30px;
	}
}

@media (max-width: 767px) {
	.award-info h3 {
		font-size: 20px;
		line-height: 30px;
	}
}

@media (max-width: 767px) {
	.award-section {
		padding-bottom: 50px;
	}
}

@media (max-width: 767px) {
	.newsletter-section h2 {
		font-size: 35px;
	}
}

.newsletter-inner {
	padding: 50px;
	background: #00a658
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
	.newsletter-inner {
		text-align: center;
	}
}

@media (max-width: 767px) {
	.newsletter-inner {
		padding: 50px 30px;
	}
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
	.newsletter-content {
		margin-top: 50px;
		padding: 0 50px;
	}
}

@media (max-width: 767px) {
	.newsletter-content {
		margin-top: 30px;
	}
}

.subscribed-form input[type=text] {
	border: 1px solid #999;
	border-radius: 50px;
}

.subscribed-form form {
	position: relative;
}

.subscribed-form input[type=submit] {
	position: absolute;
	right: 10px;
	border: 1px solid #999;
	border-radius: 50px;
	padding: 7px;
	top: 6px;
}

.subscribed-form input[type=submit]:hover {
	background: #171717;
	border-color: #171717;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
	.newsletter-section .section-title span i {
		transform: rotate(90deg);
	}
}

.single-price-item {
	margin-top: 50px;
	transition: 0.3s;
	border-top: 2px solid;
	border-bottom: 2px solid;
	padding: 30px 10px;
	min-height: 600px;
}

.single-price-item h5 {
	font-size: 24px;
	font-weight: 400;
	position: relative;
	margin: 20px 0 0;
}

.single-price-item p {
	margin: 40px 0px;
}

.single-price-item .bordered-btn {
	color: #333;
	border-color: #333;
}

.price-box {
	margin-top: 10px;
	border-bottom: 1px solid #ddd;
}

.price-box h3 {
	font-size: 40px;
	margin-bottom: 20px;
}

.price-box h3 span {
	font-size: 16px;
}

.price-list {
	margin-top: 40px;
}

.price-list ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.price-list ul li {
	display: block;
	margin: 20px 0;
	color: #878787;
	font-size: 16px;
	position: relative;
	transition: 0.3s;
}

.price-list ul li i {
	margin-right: 15px;
}

#price_page .section-title h1 {
	font-size: 90px;
	font-weight: 500;
	line-height: 100px;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
	#price_page .section-title h1 {
		font-size: 80px;
		line-height: 85px;
	}
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
	#price_page .section-title h1 {
		font-size: 70px;
		line-height: 80px;
	}
}

@media (max-width: 767px) {
	#price_page .section-title h1 {
		font-size: 40px;
		line-height: 50px;
	}
}

#price_page .hero-area-inner {
	padding: 80px 0 40px;
}

#price_page .hero-area-content p {
	padding-left: 400px;
	text-align: justify;
	margin-top: -25px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
	#price_page .hero-area-content p {
		padding-left: 0;
		margin-top: 50px;
	}
}

@media (max-width: 767px) {
	#price_page .hero-area-content p {
		padding-left: 0;
		margin-top: 50px;
		text-align: left;
	}
}

@media (max-width: 767px) {
	#price_page .section-title h1 br {
		display: none;
	}
}

.breadcrumb {
	margin-bottom: 0;
}

.breadcrumb-item a {
	color: #a39d9d;
	font-size: 17px;
}

.breadcrumb-item.active {
	color: #333;
	font-size: 17px;
	font-weight: 500;
}

.breadcrumb-item + .breadcrumb-item::before {
	color: #a39d9d !important;
}

.breadcrumb-area h4 {
	margin-top: 10px;
}

.contact-section .section-title h1 {
	font-size: 90px;
	font-weight: 500;
	line-height: 100px;
}

.contact-section .section-title i {
	transform: rotate(-45deg);
}

.contact-section .contact-text {
	text-align: justify;
}

.contact-section .subimit-form-wrap form {
	margin-top: 50px;
}

.contact-section .subimit-form-wrap input,
.contact-section .subimit-form-wrap textarea {
	border: none;
	border-bottom: 1px solid #ddd;
	margin-bottom: 30px;
}

.contact-section .subimit-form-wrap textarea {
	height: 60px;
}

.contact-section input[type=submit] {
	border: 1px solid #ddd;
	border-radius: 50px;
	width: 135px;
}

.contact-section iframe {
	max-width: calc(100% - 40px);
	height: 600px;
	filter: grayscale(1);
	position: relative;
	z-index: -1;
}

@media (max-width: 767px) {
	.contact-section iframe {
		max-width: calc(100% - 0px);
	}
}

.contact-section .single-contact-info {
	border-bottom: 1px solid #ddd;
}

.contact-section .single-contact-info p {
	margin: 0;
}

.contact-section .single-contact-info h4 {
	margin: 0 0 15px;
}

@media (max-width: 767px) {
	.contact-section .single-contact-info h4 {
		font-size: 18px;
	}
}

.contact-section .social-area {
	margin-top: 30px;
}

.contact-section .social-area a {
	background: #9F9F9D;
	color: #fff;
	border-radius: 50%;
	width: 30px;
	height: 30px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-right: 10px;
}

.contact-section .social-area a i {
	font-size: 14px;
}

.contact-section .contact-info {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	height: 100%;
}

@media (max-width: 767px) {
	.contact-section .contact-info {
		margin-top: 30px;
	}
}

@media (max-width: 767px) {
	.contact-section img {
		width: 100%;
		height: 250px;
		object-fit: cover;
	}
}

.funfacts_line {
	border-top: 1px solid #ddd;
}

.funfacts_item {
	display: flex;
	align-items: center;
	height: 250px;
}

@media (max-width: 767px) {
	.funfacts_item {
		height: 100px;
	}
}

.funfacts_item h5 {
	font-size: 75px;
	font-weight: 500;
	margin-right: 60px;
	color: #171717;
}

@media (max-width: 767px) {
	.funfacts_item h5 {
		font-size: 36px;
	}
}

.funfacts_item h5.stroke {
	-webkit-text-stroke: 0.8px #171717;
	-webkit-text-fill-color: #fff;
}

.funfacts_item img {
	display: inline-block;
	position: relative;
	top: 0px;
}

h5.slick-slide img {
	margin-right: 30px;
}

@media (max-width: 767px) {
	h5.slick-slide img {
		width: 40px;
		height: auto;
	}
}

.counter-section {
	/*background: #171717*/
}

.cb img {
	position: relative;
	top: -5px
}

.side-menu-img {
	width: 230px;
	margin-bottom: 30px
}

.hero-area .container {
	max-width: 100%
}

.main-menu {
	width: 100%
}

.main-menu ul {
	text-align: right
}

.main-menu ul > li:first-child {
	/*margin: 0*/
}

.about-img img {
	/*border-radius: 20px*/
}

.mobile-nav-bar {
	margin-left: 30px
}

.small-fnt {
	font-size: 15px
}

.ongoing-project-section .project-title h3 {
	font-size: 30px;
	margin-top: 0
}

.projects-type-box {
	background: #E5E6EE;
	padding: 70px;
}

.project-type .project-title h3 {
	font-size: 40px;
	margin-top: 0px;
	color: #111;
	text-transform: none;
	font-family: "Montserrat";
	text-align: left;
	font-weight: 600
}

.project-type .border-left {
	position: relative
}

.project-type .border-left:after {
	position: absolute;
	content: '';
	height: 100%;
	width: 0.5px;
	top: 0;
	right: 0;
	background: #111;
}

.quick-access .about-desc {
	padding-top: 60px;
	padding-bottom: 60px;

	/* padding-left: 20px;*/
}

.quick-access .section-title {
	margin-bottom: 0
}

.quick-access .project-title h3 {
	margin-top: 0
}

.quick-access {
	position: relative
}

.quick-access .section-title h2 {
	margin-bottom: 20px
}

.quick-access:after {
	position: absolute;
	content: '';
	height: 0.5px;
	width: 100%;
	top: 100px;
	right: 0;
	background: #111;
}

.inner-quick-access:after {
	top: 0
}

.values-section:before {
	position: absolute;
	content: '';
	height: 0.5px;
	width: 100%;
	bottom: 100px;
	right: 0;
	background: #111;
}

.quick-access.values-section .about-desc {
	padding-top: 40px;
	padding-bottom: 40px;
	border: 0;
	padding-left: 0
}

.border-right {
	border-right: 1px solid;
}

.quick-access.values-section .project-title h3 {
	color: #171717;
	margin-top: 0;
	font-family: 'Montserrat Alternates';
	text-align: center;
	font-weight: 600;
}

.quick-access.values-section .section-title h2 {
	font-size: 50px;
}

.no-border {
	border: 0 !important
}

.inner-hero-area {
	position: relative
}

.main-abt-title {
	font-size: 50px;
	font-weight: 600;
	margin-bottom: 30px;
	font-family: 'Montserrat Alternates';
}

.inner-page-about p {
	margin: 0;
text-align: justify;
	    line-height: 30px;
	    font-size: 23px;
}

/*.inner-hero-area:after{
	position: absolute;
	top:0;
	left: 0;
	content: '';
	background: rgba(25,255,255,0.3);
	width: 100%;
	height: 100%
}*/
.testimonial-section.section-padding.our-journey .section-title h2 {
	font-size: 50px;
}

#testimonial-2.our-journey .single-testimonial-item {
	border: 0;
	text-align: center;
	padding: 40px;
	background: #E5E6EE;
	    min-height: 372px;
}

#testimonial-2.our-journey .single-testimonial-item p {
	text-align: justify;
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 0;
    line-height: 24px;
}

#testimonial-2.our-journey .single-testimonial-item h4 {
	text-align: justify;
	color: #828282;
	font-weight: 700;
	font-size: 50px;
	line-height: 100px;

}
.onward-text{
	font-size: 20px;
	    line-height: normal;
    position: relative;
    top: -8px;

}
.about-page-projects .section-title h2 {
	font-size: 50px
}

.leader-ship .section-title h2 {
	font-size: 50px
}

.leader-ship .about-desc p {
	margin: 0;
	font-size: 27px;
	line-height: 35px;
	margin-bottom: 20px;
	text-align: justify
}

.leader-ship .about-desc p:last-child {
	margin-bottom: 0
}

.leader-ship .team-detail p {

	font-size: 18px;
	line-height: 26px;
	margin-bottom: 20px;
	text-align: justify;
}

.leader-ship .team-detail p.mt-30 {
	margin-top: 30px !important
}

.ongoing-project-section.leader-ship .project-title h3 {
	font-size: 25px;
	color: #171717;
	font-weight: 600;
}

.cntdetail {
	background: #3B4B9D;
	color: #fff;
	padding: 30px;
	text-align: center;
	min-height: 300px;
	border-right: 1px solid;
}

.cntdetail h4,
.cntdetail a {
	color: #fff;

}

.cntdetail h4 {
	font-size: 20px;
	font-weight: 100;
	margin-bottom: 20px;
}

.cntdetail img.email {
	width: 45px
}

.cntdetail img {
	width: 60px;
	margin-bottom: 20px
}

.cntdetail p {
	line-height: 20px;
	text-align: center
}

.cntdetail a {
	font-size: 16px;
	line-height: 22px;
}

.subimit-form-wrap .section-title h2 {
	font-size: 50px
}

.small-cnt-text {
	font-family: "Montserrat Alternates", sans-serif;
	font-weight: 600;
	line-height: 80px;
}

.fulbox {
	border: 1px solid;
	padding: 30px;
	display: flex;
	margin-top: 50px;
	justify-content: space-between;
	align-items: center
}

.career-page button[type=submit] {
	/* width: 170px;*/
	margin-bottom: 0
}

.openingbox h6 {
	font-weight: 500;
	line-height: 30px;
	font-size: 27px;
}

.openingbox a {
	margin-top: 30px;
	font-size: 14px;
}


#form_process {
	-webkit-animation-name: spinnerRotate;
	-webkit-animation-duration: 1.1s;
	-webkit-animation-iteration-count: infinite;
	-webkit-animation-timing-function: linear;
	-moz-animation-name: spinnerRotate;
	-moz-animation-duration: 1.1s;
	-moz-animation-iteration-count: infinite;
	-moz-animation-timing-function: linear;
	-ms-animation-name: spinnerRotate;
	-ms-animation-duration: 1.1s;
	-ms-animation-iteration-count: infinite;
	-ms-animation-timing-function: linear;
	display: inline-block;
	margin-left: 10px;
	position: relative;
	color: #000;
}

#error_data {
	color: red;
	font-size: 14px;
	margin: 0 0 10px;
	line-height: normal;
}

.alert.alert-danger p {
	color: #fff;
	background: red;
	border-radius: 24px;
	padding: 10px;
}

.alert.alert-danger {
	color: #454545;
	background-color: #ffb4b4;
}

.alert.alert-success {
	color: #508e14;
	background: #f0f0f0;
}

@-webkit-keyframes spinnerRotate {
	from {
		-webkit-transform: rotate(0);
	}

	to {
		-webkit-transform: rotate(360deg);
	}
}

@-moz-keyframes spinnerRotate {
	from {
		-moz-transform: rotate(0);
	}

	to {
		-moz-transform: rotate(360deg);
	}
}

@-ms-keyframes spinnerRotate {
	from {
		-ms-transform: rotate(0);
	}

	to {
		-ms-transform: rotate(360deg);
	}
}

.file-wrapper input {
	width: 100%;
	height: 50px;
	-moz-opacity: 0.01;

	opacity: 0.01;
	cursor: pointer;
	position: absolute !important;
	-moz-opacity: 0.01;
}

.form-control1 {
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	padding-left: 1rem;
	padding-right: 1rem;
	font-size: 15px;
	width: 100%;
	height: 45px;
	margin-bottom: 20px;

	cursor: pointer;
	color: #000;
	border: none;
}

.file-wrapper .file-button {
	cursor: pointer;
	padding: 15px;
	/* background: #c84527;*/
	color: #777;

	top: 11px;
	/*position:relative*/
	padding-left: 0
}

.file-wrapper .file-button .fa-upload {
	font-weight: normal
}

.file-holder {
	padding-left: 15px;
	position: absolute;
	left: 190px !important;
	border-left: 1px solid #ccc;
	margin-top: 15px;
}

.form-group.file-wrapper {
	border: 2px solid #E0E0E0;
	height: 60px;
	padding-left: 20px;
	margin-bottom: 20px;
	background: #fff
}

.project-logo {
	width: 250px;
	position: relative;
	/*left: 50px;*/
}

.about-project p {
	font-size: 18px;
	line-height: 30px;
}

.about-project .project-title h3 {
	color: #454545;
	font-weight: 600;
	font-size: 30px;
	margin-top: 0
}

.project-location .section-title h2 {
	font-size: 50px
}

.project-location-content p {
	font-size: 17px;
	margin-bottom: 0
}

.layout-plan .section-title h2 {
	font-size: 50px
}

.amenities-section:before {
	position: absolute;
	content: '';
	height: 0.5px;
	width: 100%;
	bottom: 89px;
	right: 0;
	background: #111;
}

.quick-access.amenities-section .about-desc {
	padding-top: 30px;
	padding-bottom: 30px;
	border: 0;
	padding-left: 0
}


.quick-access.amenities-section .section-title h2 {
	font-size: 50px;
}

.amenities-section .project-title img {
	width: 90px;
	margin: 0 auto 30px;
	display: block;
}

.quick-access.amenities-section .project-title h3 {
	color: #171717;
	margin-top: 0;
	font-family: "Montserrat";
	text-align: center;
	font-weight: 500;
	text-transform: none;
	font-size: 17px;
}

.gallery-section .owl-dots {
	display: none
}

.gallery-section .section-title h2 {
	font-size: 50px;
}

/*.gallery-slider{
	height: 75vh
}*/
.gallery-slider .owl-stage-outer {
	overflow: inherit;
	padding-left: 30px;
	/*height: 75vh*/
}

/*.gallery-slider .owl-stage {
	height: 75vh
}*/
.gallery-slider.owl-carousel .owl-item img {
	height: 100%
}

.gallery-slider:before,
.gallery-slider:after {
	position: absolute;
	content: "";
	width: 500%;
	height: 100%;
	top: 0;
	left: -500%;
	background: #fff;
	opacity: 1;
	z-index: 1;
}

.gallery-slider:after {
	left: auto;
	right: -500%;
}

.gallery-slider .owl-nav button.owl-prev,
.gallery-slider .owl-nav button.owl-next {
	border: 1px solid #ddd;
	width: 45px;
	height: 45px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-left: 20px;
}

.gallery-slider .owl-nav button.owl-prev:hover,
.gallery-slider .owl-nav button.owl-next:hover {
	background: #171717;
	border-color: #171717;
	color: #fff;
}

.gallery-slider .owl-nav {
	position: absolute;
	top: -90px;
	left: 0;
	display: flex;
	justify-content: end;
	right: 50px;
}

.gallery-slider .owl-nav i {
	font-size: 20px;
}

.rera-section .section-title h2 {
	font-size: 50px;
}

.rera-section p {
	font-size: 20px;
	line-height: 30px;
	font-weight: 500;

}

.rera-section p a {
	font-size: 20px;
	line-height: 30px;
	font-weight: 500;
}

.guide-section .section-title h2 {
	font-size: 50px;
}

.guide-section.quick-access .grey-bg {

	background: #D9D9D9;
}

.guide-section.quick-access .project-title h3 {
	text-transform: none;
	text-decoration: none;
	color: #000;
	font-weight: 500
}

.guide-section.quick-access .about-desc a {
	font-weight: 600;
	color: #000;
	font-size: 18px;
	margin-top: 20px;

}

.guide-section.quick-access .about-desc a i {
	padding-left: 5px
}

.btn-1 {
	border-bottom: 1.5px solid
}

.btn-1:hover {
	border-bottom: 1.5px solid
}

.quick-access-links {
	display: block;
	text-align: center;
	/*	border-right: 1px solid;*/
}

/*.quick-access-links:hover{
	    background: #eee;
}*/
.inner-quick-access {
	background: #d9d9d9
}

.inner-quick-access .about-desc {
	/* border-right: 1px solid;*/
	/* padding-left: 20px;*/
}

.width-290 {
	width: 290px
}

.single-counter-box {
	position: relative
}

.single-counter-box:after {
	position: absolute;
	top: 0;
	left: -24px;
	background: #ddd;
	content: '';
	height: 168px;
	width: 1px;
}

.single-counter-box-first:after {
	display: none
}

.leadership-name {
	font-family: Montserrat Alternates;
}

.subtitle {
	font-weight: 400;
	margin-bottom: 30px
}

.f-500 {
	font-weight: 500
}

/*320 - 767*/
@media screen and (min-width: 767px) {

	.no-margin-desktop {
		margin: 0
	}

	.desktop-border-right {
		border-right: 1px solid;
	}

	.desktop-padding-two-rem {
		padding: 0 2rem
	}

	.pl-xl-0 {
		padding-left: 0
	}
}

@media (min-width: 1280px) and (max-width: 1559px) {
	.position-top {
		background-position: top
	}

	.desktop-block {
		display: block
	}

	.project-title h3 {
		font-size: 16px
	}

	.leader-ship .about-desc p {

		        font-size: 18px;
        line-height: 26px;

	}
}

@media (min-width: 1920px) and (max-width: 2499px) {
	.container {
		max-width: 80%
	}

	.header-area .container {
		max-width: 80%
	}

	.header-area {
		padding: 20px 0;
	}

	.header-sticky {
		padding: 20px 0;
	}

	.project-location iframe {
		height: 900px
	}

	.mercado-project-location iframe {
		height: 575px !important;
	}
}

@media (min-width: 2500px) and (max-width: 5000px) {
	.container {
		max-width: 75%
	}

	.header-area .container {
		max-width: 75%
	}

	.header-area {
		padding: 20px 0;
	}

	.header-sticky {
		padding: 20px 0;
	}

	.project-location iframe {
		height: 900px
	}

	.ongoing-project-section .project-title h3 {
		font-size: 50px
	}

	.project-title h6 {
		font-size: 18px
	}

	.resp-tabs-top .resp-tabs-list li {
		width: 290px
	}

	.inner-page-about p {
		line-height: 45px;
	}
}


.yashasvi-jewelpark-plans .resp-tabs-top .resp-tabs-list li {
	width: 180px;
	margin-right: 15px;
}


.text-justify {
	text-align: justify
}

.layout-plan .single-testimonial-item img {
	width: 100% !important;
	margin-bottom: 20px;
}

#testimonial-2 .single-testimonial-item {
	padding: 20px
}

.layout-plan .owl-nav {
	position: absolute;
	top: -115px !important;
	right: 6% !important;
	bottom: inherit !important;
	display: flex;
	transform: translate(50%, 50%);
}

#testimonial-2 .owl-carousel .owl-stage-outer {
	z-index: 9999
}

#testimonial-2 .owl-dots {
	display: none
}

.header-area {
	position: relative
}

.inner-page-projects {
	background: #E5E6EE;

}

.all-project-section .project-title h3 {
	font-size: 20px;
	margin-bottom: 5px
}

.all-project-section .project-title h6 {
	margin-bottom: 10px;
	font-size: 16px;
}

.all-project-section .project-title span {
	color: #000
}

.all-project-section .about-desc {
	margin-bottom: 70px
}

.book-visit-top {
	margin-top: 5px
}

.pl-0 {
	padding-left: 0
}

.pr-0 {
	padding-right: 0
}

.pl-30 {
	padding-left: 30px
}

#role_applied_for {
	text-transform: uppercase;
	font-size: 16px;
	color: #777;
}

.form-box {
	background: #F3F2F2;
	padding: 50px;
}

.career-opening-box {
	background: #F3F2F2;
	padding: 50px
}

.career-opening-box .fulbox {
	background: #fff
}

.about-img {
	position: relative
}

.project-status-tag {
	position: absolute;
	bottom: 0;
	right: 0;
	background: #3B4B9D;
	color: #fff;
	padding: 10px 15px;
	text-transform: uppercase
}

.sticky-menu {
	position: fixed
}

.project-page-status-tag {
	background: #3B4B9D;
	color: #fff;
	padding: 10px 15px;
	text-transform: uppercase;
	width: 205px;
	margin-bottom: 30px;
	text-align: center
}

.pro-video-sec .faq-vidoe-play-btn {
	/*left: 60%;*/
	background-color: #000000ba;
	color: #fff;
	font-size: 28px;
	animation: pulse-d 2s infinite;
}

.faq-vidoe-play-btn {
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	text-align: center;
	width: 120px;
	height: 120px;
	margin: 0 auto;
	transform: translateY(-50%);
	background-color: white;
	border-radius: 50%;
	box-shadow: 0px 16px 32px 0px rgba(0, 0, 0, 0.06);
	line-height: 120px;
	font-size: 20px;
	color: var(--tp-theme-mandalay);
	animation: pulse 2s infinite;
}

@media (max-width: 767px) {
	.faq-vidoe-play-btn {
		font-size: 13px;
		width: 60px;
		height: 60px;
		line-height: 60px;
	}
}

.faq-vidoe-play-btn:hover {
	color: #fff;
}

.faq-vidoe-play-btn i {
	font-size: 50px;
	line-height: 50px;
	top: 10px;
	position: relative;
}

@-webkit-keyframes pulse-d {
	0% {
		-webkit-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.4);
	}

	70% {
		-webkit-box-shadow: 0 0 0 45px rgba(0, 0, 0, 0);
	}

	100% {
		-webkit-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
	}
}

@keyframes pulse-d {
	0% {
		box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.4);
	}

	70% {
		box-shadow: 0 0 0 45px rgba(0, 0, 0, 0);
	}

	100% {
		box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
	}
}

/*.hrg-crossroads-logo {
	width: 250px
}*/
.value-hover-text{
	    opacity: 0;
    position: absolute;
    top: 0;
	/*transition: opacity 0.3s ease, transform 0.3s ease;*/
	background: #000;
	transition: opacity 0.4s ease-in-out, transform 0.4s ease-in-out; 
	
}
.value-hover-text p{
line-height: 20px;
	  
	transition: transform 0.3s ease;
	}
/*.quick-access .about-desc p{
	opacity: 0;
	position: absolute
}*/
.about-desc{
	position: relative;
	overflow: hidden;
}

.about-desc:hover .value-hover-text {
	opacity: 1;
    position: absolute;
    
	    width: 100%;
    height: 100%;
    top: 50%;
   transition: transform 0.4s ease-in-out, color 0.4s ease-in-out;
	color:#fff;
	   transform: translateY(-50%);
	
	
}
.about-desc:hover .value-hover-text p{
	    color: #fff;
    font-size: 17px;
    line-height: 20px;
    text-align: center;
    transform: translateY(-50%);
    top: 50%;
    position: absolute;
	padding: 20px;
	transition: transform 0.4s ease-in-out, color 0.4s ease-in-out;
}
.value-bx{
	padding: 0
}
.project-title .f-500{
	font-size: 13px
}
.f-600{
	font-weight: 600
	
}
select option{
	font-weight: 600;
	color:#000
}
.cursor-pointer{
	cursor: pointer
}

.project-img {
    position: relative;
}
.quick-access-links:hover h3{
	    color: #171717;
}
.form-box button{
	    margin: auto;
    display: block;
}