/* font family start*/

@font-face {
	font-family: "Gill Sans";
	src:
		url("../fonts/GillSans-Bold.woff2") format("woff2"),
		url("../fonts/GillSans-Bold.woff") format("woff");
	font-weight: bold;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "Gill Sans";
	src:
		url("../fonts/GillSans.woff2") format("woff2"),
		url("../fonts/GillSans.woff") format("woff");
	font-weight: normal;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "Gill Sans";
	src:
		url("../fonts/GillSans-Light.woff2") format("woff2"),
		url("../fonts/GillSans-Light.woff") format("woff");
	font-weight: 300;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "Gill Sans";
	src:
		url("../fonts/GillSans-SemiBold.woff2") format("woff2"),
		url("../fonts/GillSans-SemiBold.woff") format("woff");
	font-weight: 600;
	font-style: normal;
	font-display: swap;
}

:root {
	--blue-dark-color: #0099cc;
	--blue-light-color: #0099cc;
	--orange-light-color: #0099cc;
}

/* font-family end */
html {
	overflow-x: hidden;
}

body {
	font-family: "Gill Sans";
	margin: 0;
	color: #1d272f;
	overflow-x: hidden;
}

.post,
.page {
	margin-bottom: 0;
}

a {
	display: inline-block;
	text-decoration: none;
	color: #0099cc;
}

img {
	height: auto;
	max-width: 100%;
}

embed,
iframe,
object {
	max-width: 100%;
}

p {
	margin-bottom: 1.5em;
}

*,
*::before,
*::after {
	box-sizing: inherit;
}

html {
	box-sizing: border-box;
}

::-webkit-file-upload-button {
	-webkit-appearance: button;
	font: inherit;
}

[type="search"] {
	-webkit-appearance: textfield;
	outline-offset: -2px;
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type="search"]::-webkit-search-decoration {
	-webkit-appearance: none;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type="checkbox"],
[type="radio"] {
	box-sizing: border-box;
	padding: 0;
}

/**
  * Correct the cursor style of increment and decrement buttons in Chrome.
  */
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
	height: auto;
}

main {
	display: block;
}

html {
	line-height: 1.15;
	-webkit-text-size-adjust: 100%;
}

.container {
	max-width: 1392px;
	margin: 0 auto;
	padding: 0 24px;
}

/* header start */
.site-header {
	display: flex;
	padding: 14px 23px 0;
	position: absolute;
	width: 100%;
	z-index: 1;
	justify-content: space-between;
	z-index: 5;
}

/* logo start */
.site-logo img {
	max-width: 140px;
}

.home .white-logo {
	display: inline-block;
}

.home .black-logo {
	display: none;
}

.white-logo {
	display: none;
}

/* logo end */
/* top-link start */
.top-link {
	display: none;
	text-transform: uppercase;
}

/* top-link end */
/* hamburger start*/
.menu-toggle {
	background: transparent;
	border: 0;
	padding: 0;
	width: 25px;
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	margin-left: auto;
	position: relative;
	z-index: 11;
	outline: 0;
	cursor: pointer;
}

.menu-toggle[aria-expanded="true"] .line:nth-child(1),
.menu-toggle[aria-expanded="true"] .line:nth-child(2) {
	display: none;
}

.menu-toggle[aria-expanded="true"] .line:nth-child(3) {
	width: 25px;
	transform: rotate(45deg) translate(7px, 7px);
	background-color: #fff;
}

.menu-toggle[aria-expanded="true"] .line:nth-child(4) {
	transform: rotate(-45deg) translate(-4px, 4px);
	background-color: #fff;
}

.home .line:nth-child(1),
.home .line:nth-child(3),
.home .line:nth-child(4) {
	background: #fff;
}

.line {
	display: inline-block;
	height: 2px;
	transition: 0.5s ease;
}

.line:nth-child(1) {
	width: 19px;
	background-color: #ffffff;
	margin-bottom: 2px;
	margin-right: 2px;
}

.line:nth-child(2) {
	width: 4px;
	background-color: #0099cc;
	margin-bottom: 2px;
}

.line:nth-child(3) {
	width: 20px;
	background-color: #ffffff;
	margin-bottom: 2px;
	display: block;
}

.line:nth-child(4) {
	width: 25px;
	background-color: #ffffff;
	display: block;
}

/* hamburger end */
/* menu start */
.menu-header-menu-container .nav-menu {
	position: fixed;
	top: 0;
	background: rgb(5, 5, 3, 0.8);
	width: 0;
	right: 0;
	height: 100vh;
	z-index: 10;
	display: block;
	transition: all ease 0.5s;
	backdrop-filter: blur(1px);
	visibility: hidden;
	overflow-x: hidden;
}

.menu-overlay {
	position: relative;
}

.fancybox-active.menu-overlay {
	position: unset;
	overflow: visible;
}

.menu-overlay:before {
	content: "";
	position: absolute;
	width: 100%;
	left: 0;
	height: 100%;
	background: #000;
	z-index: 4;
	opacity: 0.5;
}

/* .main-navigation.toggled:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    background: #000;
    opacity: 0.5;
    width: 100%;
    height: 100vh;
} */
.main-navigation.toggled ul.nav-menu {
	width: 80%;
	visibility: visible;
}

.main-navigation ul {
	padding: 20px 0;
	display: none;
}

.main-navigation.toggled ul.nav-menu li:last-child {
	margin-top: 50px;
}

.main-navigation.toggled ul.nav-menu li:last-child a {
	font-size: 12px;
}

.main-navigation a {
	color: #fff;
	opacity: 0.8;
	text-transform: uppercase;
	padding: 10px 30px;
	font-size: 14px;
	font-weight: 300;
	letter-spacing: 2px;
}

.main-navigation .current_page_item a {
	color: #fff;
}

.main-navigation a:hover {
	opacity: 1;
	color: #0099cc;
}

.home .top-link a:hover {
	color: #0099cc;
}

/* menu end */
/* header end */
/* homepage start */
/* video section start */
.video-section {
	position: relative;
}

.video-parent-div:after {
	position: absolute;
	content: "";
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: rgba(0, 0, 0, 0.5);
}

.video-section video {
	width: 100%;
	height: 100%;
	max-height: 734px;
	min-height: 431px;
	object-fit: cover;
	position: relative;
	display: block;
}

.video-section video.desktop-video {
	display: none;
}

.video-section + .about-content-wrap .container {
	position: relative;
}

.video-section + .about-content-wrap .container:after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	margin: auto;
	top: -97px;
	width: 2px;
	height: 42px;
	background: linear-gradient(#0099cc 50%, #6a6a6a 50%);
	z-index: 3;
}

.video-section:before {
	content: "";
	background: url("../images/banner-overlay.png");
	background-size: cover;
	height: 100%;
	width: 100%;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 3;
}

.video-heading {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	margin: auto;
	text-align: center;
	color: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	max-width: 72%;
	height: 100%;
	flex-direction: column;
	z-index: 2;
}

@media screen and (min-width: 768px) {
	.video-heading {
		max-width: 262px;
	}
}

.video-heading .heading {
	font-size: 6vw;
	font-weight: 300;
	letter-spacing: 1.8px;
	line-height: 1.2;
}

@media screen and (min-width: 768px) {
	.video-heading .heading {
		font-size: 20px;
	}
}

.video-heading .heading span {
	/*font-weight: 600;*/
	font-weight: 400;
	position: relative;
	padding-left: 11px;
	display: inline-block;
}

.video-heading .sub-heading {
	display: none;
}

.video-heading .heading span:before {
	content: "";
	width: 2px;
	height: 20px;
	background: #0099cc;
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	margin: auto 0;
}

/* video section end */
/* about section start */

.about-content-wrap.background-mage {
	position: relative;
	padding: 212px 0 46px 0;
	background-size: cover;
	z-index: 1;

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

	&:after {
		content: "";
		position: absolute;
		width: 100%;
		height: 100%;
		left: 0;
		top: 0;
		background: linear-gradient(transparent, #132433 68%);
	}
}

.heading-wrap {
	border-bottom: 2px solid #e3e3e3;
	padding-bottom: 25px;
	margin-bottom: 25px;
}

.about-content-wrap.background-mage .heading-wrap {
	border-bottom: 1px solid #676461;
	margin-bottom: 50px;
}

.heading-wrap h2 {
	font-weight: 400;
	/*font-size: 21px;*/
	font-size: 26px;
	letter-spacing: 3.3px;
	/*max-width: 220px;*/
	text-transform: uppercase;
	margin-bottom: 0;
}

.heading-wrap .btn {
	margin-top: 17px;
}

.about-content-wrap.background-mage .heading-wrap h2 {
	/*max-width: 250px;*/
	color: #fefcfc;
}

.heading-wrap .btn a {
	text-transform: uppercase;
	display: inline-block;
	text-decoration: none;
	border: 1px solid #0099cc;
	color: #0099cc;
	font-weight: normal;
	transition: 0.3s ease;
	text-align: center;
	line-height: 1;
	white-space: nowrap;

	/*font-size: 11px;*/
	/*border-radius: 6px;*/
	/*padding: 14px 36px;*/

	font-size: 14px;
	padding: 11px 30px;
	border-radius: 8px;
	letter-spacing: 2px;
}

.about-content-wrap.background-mage .heading-wrap .btn a {
	font-size: 14px;
	/*padding: 11px 39px;*/
	padding: 11px 30px;
	border-radius: 8px;
	letter-spacing: 2px;
	color: #0099cc;
	border-color: #0099cc;
}

.about-content-wrap.background-mage .heading-wrap .btn a:hover {
	background: #0099cc;
	color: #fff;
}

.heading-wrap .btn a:hover {
	color: #fff;
	background: #0099cc;
}

.about-content .left-content {
	color: #0099cc;
	font-size: 23.5px;
	font-weight: 300;
	letter-spacing: 0.4px;
	line-height: 1.3;
	margin-bottom: 28px;
}

.about-content-wrap.background-mage .about-content .left-content {
	margin-bottom: 22px;
	color: #0099cc;
}

.about-content .right-content {
	font-size: 16.8px;
	font-weight: 300;
	color: #1d272f;
	letter-spacing: 0.4px;
	line-height: 1.4;

	display: none;
}

.about-content .right-content.mobile-show {
	display: block;
}

.about-content-wrap.background-mage .about-content .right-content {
	color: #999999;
	font-size: 16px;
}

/* about section end */
/* homepage end */
/* service-page start */
.inner-page-banner {
	position: relative;
	margin-bottom: 50px;
	overflow: hidden;
}

.inner-page-banner:before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 120%;
	background: #2029326b url(../images/service-overlay-white.png);
	background-size: cover;
}

.inner-page-banner .background-mage {
	height: 141px;
	display: flex;
	align-items: flex-end;
	padding-bottom: 23px;
	background-size: cover;
}

.inner-page-banner .page-title {
	padding: 0 24px;
	width: 100%;
	max-width: 1680px;
	margin: 0 auto;
	position: relative;
	z-index: 1;
}

.inner-page-banner .title {
	color: #fff;
	text-transform: uppercase;
	font-size: 14px;
	letter-spacing: 6.7px;
}

.inner-page-banner + .about-content-wrap {
	padding: 35px 0 62px 0;
}

.inner-page-banner + .about-content-wrap .heading-wrap h2 {
	text-transform: uppercase;
	margin-top: 0;
	/*letter-spacing: 3.9px;*/
}

.inner-page-banner + .about-content-wrap .about-content .left-content {
	/*font-size: 24.22px;*/
	/*letter-spacing: 0.5px;*/
	color: var(--blue-dark-color);
}

.inner-page-banner + .about-content-wrap .about-content .right-content {
	/*font-size: 14.2px;*/
	/*letter-spacing: 0.3px;*/
	/*line-height: 1.45;*/
}

.accordion-section {
	margin-bottom: 70px;
}

.accordion-section h2 {
	font-weight: 400;
	text-transform: uppercase;
	font-size: 21px;
	/*letter-spacing: 4px;*/
	letter-spacing: 2.7px;
	line-height: 1.2;
	margin-bottom: 11px;
}

.accordion-head p {
	font-weight: 400;
	font-size: 12px;
	text-transform: uppercase;
	/*letter-spacing: 2px;*/
	letter-spacing: 3px;
	margin-bottom: 0px;
	margin-top: 0;
	padding: 19px 0px 20px 35px;
	line-height: 1;
	color: #333333;
}

.accordion-block {
	border-bottom: 1px solid #ebebeb;
}

.accordion-block:last-child {
	border-bottom: 0;
}

.accordion-head {
	font-size: 22px;
	position: relative;
	cursor: pointer;
	padding: 4px 0 0;
}

.accordion-head.active p {
	font-weight: 700;
}

.accordion-head::before,
.accordion-head::after {
	content: "";
	position: absolute;
	top: 50%;
	background-color: #0099cc;
	transition: all 0.3s;
}

.accordion-head::before {
	left: 9px;
	top: 0px;
	width: 1px;
	height: 18px;
	bottom: 0;
	margin: auto 0;
}

.accordion-head::after {
	left: 0;
	width: 20px;
	height: 1px;
}

.accordion-content {
	display: none;
}

.acc-description p {
	font-size: 14px;
	line-height: 1.44;
	margin-bottom: 25px;
	margin-top: 0;
	color: #232323;
	font-weight: 300;
	letter-spacing: 0.4px;
}

.acc-description h3 {
	font-size: 12px;
	font-weight: 600;
	padding-left: 35px;
	letter-spacing: 3px;
	margin-top: 0;

	@media (min-width: 768px) {
		font-size: 14px;
	}

	@media (min-width: 1440px) {
		padding-left: 71px;
	}
}

.acc-image {
	margin-bottom: 25px;
}

.insight-bottom-content .right-content strong {
	color: #333333;
	font-weight: 600;
}

.acc-image img {
	object-fit: cover;
}

.accordion-head.active::before {
	transform: rotate(90deg);
}

.insight-desktop-image {
	display: none;
}

.footer-content-section {
	text-align: center;
}

.insight-bottom-content ul,
.acc-description ul,
.project-management ul {
	padding-left: 20px;
	list-style: none;
}

.insight-bottom-content li,
.acc-description li,
.project-management li {
	font-weight: 300;
	font-size: 13px;
	line-height: 1.5;
	margin-bottom: 2px;
	position: relative;
}

.insight-bottom-content {
	margin-bottom: 45px;
}

.insight-header,
.insight-footer {
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	margin-bottom: 13px;
}

.delivery-image-wrapper .image {
	margin-bottom: 25px;
}

.insight-logo,
.insight-footer-logo {
	order: 1;
	text-transform: uppercase;
	font-weight: 700;
	font-size: 11px;
	letter-spacing: 2.4px;
	padding-left: 30px;
	color: #fe9500;
	position: relative;
	border-bottom: 1px solid #fee5c9;
	padding-bottom: 10px;
	margin-bottom: 10px;
}

.insight-logo:before,
.insight-footer-logo:before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 15px;
	height: 15px;
	background: url("../images/insight-icon.png") no-repeat;
	background-size: cover;
}

.insight-btn,
.insight-footer-btn {
	order: 3;
}

.insight-btn a,
.insight-footer-btn a,
.model-stats-content a,
.project-management .package-btn a,
.package-btn a {
	border: 1px solid #fc8200;
	text-transform: uppercase;
	font-weight: 400;
	/*padding: 14px 28px;*/
	/*border-radius: 5px;*/
	/*font-size: 10px;*/
	/*letter-spacing: 2.4px;*/

	font-size: 14px;
	line-height: 1;
	padding: 11px 30px;
	border-radius: 8px;
	letter-spacing: 2px;
}

.model-stats-content a,
.project-management .package-btn a,
.package-btn a {
	padding: 14px 17px;
}
.package-btn a:hover {
	background: #fc8200;
	color: #fff;
}
span.timing-text {
	font-weight: 500;
	margin-bottom: 30px;
	display: block;
	font-size: 24px;
}
.right-content table {
	width: 100%;
}
.right-content table tr td:last-child {
	font-weight: 400;
}
.insight-btn a:hover,
.insight-footer-btn a:hover,
.model-stats-content a:hover {
	background: #fc8200;
	color: #fff;
}

.insight-content,
.insight-footer-content {
	order: 2;
	width: 100%;
	font-size: 14px;
	font-weight: 300;
	color: #333333;
	margin-bottom: 14px;
	letter-spacing: 0.5px;
	padding-right: 5px;
	line-height: 1.5;
}

.insight-footer-content {
	margin-bottom: 40px;
}

.insight-bottom-content .right-content p {
	font-size: 14px;
	line-height: 1.44;
	margin-bottom: 25px;
	margin-top: 0;
	color: #232323;
	font-weight: 300;
	letter-spacing: 0.4px;
}

.tarion-image {
	margin-bottom: 30px;
	max-width: 200px;
}

@media all and (min-width: 992px) {
	.tarion-image {
		max-width: none;
	}
}

.delivery-image-wrapper ul,
.tarion-list ul {
	list-style: none;
	padding-left: 30px;
	margin-bottom: 0;
	margin-top: 0;
	margin-bottom: 0;
}
.policy-content strong {
	font-weight: 600;
}

.policy-content ul {
	padding-left: 30px;
	list-style: none;
}

.delivery-image-wrapper li:before,
.tarion-list li:before,
.left-content li:before,
.right-content li:before,
.acc-description li:before,
.policy-content li:before,
.project-management li:before {
	content: "";
	position: absolute;
	left: -30px;
	top: 4px;
	bottom: 0;
	background: url("../images/PBG-bulletOrangeDot.png") no-repeat;
	width: 15px;
	height: 15px;
}

.model-stats-content li:before {
	content: "";
	position: absolute;
	left: -30px;
	top: 2px;
	bottom: 0;
	background: url("../images/PBG-bulletOrangeDot.png") no-repeat;
	width: 15px;
	height: 15px;
}

.delivery-image-wrapper li,
.tarion-list li {
	position: relative;
	margin-bottom: 10px;
}
.delivery-image-wrapper li {
	font-weight: 300;
	color: #333;
	letter-spacing: 0.5px;
	line-height: 1.5;
}

/* .tarion-listli:after,.left-content:after {
    content: '';
    position: absolute;
    left: -20px;
    top: 4px;
    bottom: 0;
    background: #0099cc;
    width: 12px;
    height: 11px;
    border-radius: 50%;
} */
.tarion-block {
	margin-top: 40px;
}

.insight-bottom-content .right-content li {
	font-weight: 300;
	font-size: 13px;
	line-height: 1.5;
	margin-bottom: 2px;
}

.insight-bottom-content .right-content .tarion-list li {
	margin-bottom: 15px;
}

.accordion-section .simple-content {
	margin-top: 40px;
	border-bottom: 1px solid #ebebeb;
	padding-bottom: 30px;
	margin-bottom: 10px;
}

.accordion-section .simple-content a {
	border: 1px solid #fc8200;
	padding: 14px 28px;
	border-radius: 5px;
	text-transform: uppercase;
	font-size: 10px;
	letter-spacing: 2.4px;
	font-weight: 400;
}

.accordion-section .simple-content a:hover {
	background: #fc8200;
	color: #fff;
}

.acc-description strong {
	margin-top: 15px;
	display: inline-block;
	color: #333333;
	font-weight: 600;
}

.acc-description ul li strong {
	margin-top: 0;
}

.insight-content span,
.insight-footer-content span {
	color: #fe9500;
	font-weight: 400;
	font-size: 13px;
}

.insight-content span {
	display: block;
	/*color: #333;*/
}

.policy-content li {
	position: relative;
}

.footer-content-section .footer-content {
	height: 390px;
	display: flex;
	align-items: flex-end;
	justify-content: center;
	padding-bottom: 40px;
	position: relative;
	background-size: cover;
	background-position: center;
}

.footer-content-section .container {
	position: relative;
	z-index: 1;
}

.footer-content-section .footer-content:after {
	position: absolute;
	content: "";
	width: 100%;
	height: 100%;
	left: 0;
	bottom: 0px;
	background: rgb(0, 0, 0);
	background: linear-gradient(
		180deg,
		rgba(0, 0, 0, 0) 0%,
		rgba(0, 0, 0, 1) 70%
	);
}

.footer-content-section h3 {
	margin: 0 0 33px 0;
	color: #fbf8f8;
	/*font-size: 20.76px;*/
	font-size: 18px;
	font-weight: 400;
	text-transform: uppercase;
	letter-spacing: 4px;
}

.footer-content-section .footer-btn a {
	display: inline-block;
	text-decoration: none;
	color: #0099cc;
	border: 1px solid #0099cc;
	text-transform: uppercase;
	text-align: center;
	width: 242px;
	font-weight: 400;
	/*border-radius: 5px;*/
	/*font-size: 11px;*/
	/*line-height: 1.4;*/
	/*padding: 14px 30px;*/
	/*letter-spacing: 3px;*/

	font-size: 14px;
	line-height: 1;
	padding: 11px 30px;
	border-radius: 8px;
	letter-spacing: 2px;
}

.footer-content-section .footer-btn a:hover {
	background: #0099cc;
	color: #fff;
}

/* service-page end */
/* company-page start */
.simple-content {
	margin-bottom: 80px;
}

.simple-content p {
	font-size: 14.2px;
	letter-spacing: 0.3px;
	font-weight: 400;
	line-height: 1.45;
	font-weight: 300;
	color: #1d272f;
	margin-top: 0;
}

.testimonial-image {
	margin-bottom: 30px;
}

.testimonial-content .heading {
	font-weight: 400;
	font-size: 21px;
	letter-spacing: 3.3px;
	margin-bottom: 9px;
	text-transform: uppercase;
	color: #333333;
	border-bottom: 2px solid #e3e3e3;
	padding-bottom: 20px;
}

.testimonial-content p {
	font-size: 14.2px;
	letter-spacing: 0.3px;
	/*font-weight: 400;*/
	line-height: 1.45;
	font-weight: 300;
	color: #1d272f;
}

.testimonial-content .default-btn a {
	border: 1px solid #0099cc;
	text-transform: uppercase;
	/*border-radius: 5px;*/
	/*padding: 12px 30px;*/
	/*font-size: 13px;*/
	/*letter-spacing: 2px;*/

	font-size: 14px;
	padding: 11px 30px;
	border-radius: 8px;
	letter-spacing: 2px;
	line-height: 1;
}

.testimonial-content .default-btn a:hover {
	background: #0099cc;
	color: #fff;
}

.masonry-section {
	margin-bottom: 60px;
}

.masonry-section .container {
	column-count: 1;
}

.masonry-section .items {
	position: relative;
	margin-bottom: 14px;
}

.masonry-section .image {
	width: 100%;
	height: 100%;
}

.masonry-section img {
	height: 100%;
	width: 100%;
	object-fit: cover;
	display: block;
}

.masonry-section .overlay-content {
	background: rgba(0, 0, 0, 0.5);
	color: #fff;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding: 20px 0 20px 20px;
	z-index: 1;
	opacity: 0;
	transition: all ease 0.3s;
}

.masonry-section .items:hover .overlay-content {
	opacity: 1;
}

.masonry-section .title {
	font-size: 17px;
	margin-bottom: 10px;
	letter-spacing: 3px;
	text-transform: uppercase;
}

.masonry-section .department {
	font-size: 13px;
	font-weight: 300;
}

.number-mail-wrapper a {
	border: 1px solid #0099cc;
	padding: 10px 10px 10px 60px;
	border-radius: 5px;
	text-transform: uppercase;
	font-size: 12px;
	letter-spacing: 2px;
	font-weight: 400;
	position: relative;
}

.number-mail-wrapper a:before {
	content: "";
	position: absolute;
	left: 10px;
	bottom: 0;
	top: 0;
	margin: auto 0;
	width: 10px;
	height: 10px;
	background: url("../images/mail-btn.png");
	background-size: cover;
}

.overlay-content:after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 40%;
	background: rgb(0, 0, 0);
	background: linear-gradient(
		180deg,
		rgba(0, 0, 0, 0) 0%,
		rgba(0, 0, 0, 1) 90%
	);
	z-index: -1;
}

.number-mail-wrapper .ext-number {
	margin-bottom: 17px;
	font-size: 15px;
	font-weight: 300;
	letter-spacing: 3px;
}

/* company-page end */
/* Our process start */
.ourprocess-repeater-section {
	padding-bottom: 70px;
	margin-top: -80px;
}

.ourprocess-outer {
	background: url("../images/road-map.png") no-repeat;
	min-height: 670px;
	padding-top: 0;
	max-width: 312px;
	margin: 0 auto;
	background-size: 100% auto;
}

.process-header {
	display: flex;
	align-items: center;
}

.ourprocess-outer .process-heading {
	margin-left: 10px;
	text-transform: uppercase;
	font-size: 14px;
	color: #333;
	padding-right: 60px;
}

.process-pointer-main {
	display: flex;
	justify-content: center;
	max-width: 1160px;
	margin: 0px auto;
	position: relative;
}

.process-pointer {
	position: absolute;
	text-align: center;
	max-width: 143px;
}

.pointer-detail {
	position: absolute;
	bottom: 35px;
	width: 150px;
	left: -62px;
	visibility: hidden;
	opacity: 0;
	transition: all ease 0.3s;
	z-index: 5;
}

.pointer-detail img {
	display: block;
}

.process-pointer-main .process-pointer:nth-child(3) .pointer-detail {
	left: -52px;
	bottom: 34px;
}

.ourprocess-outer
	.ourprocess-box:nth-child(2)
	.process-pointer:nth-child(3)
	.pointer-detail {
	left: -62px;
}

.process-pointer-main .process-pointer:nth-child(7) .pointer-detail {
	bottom: 67px;
	left: -34px;
}

.ourprocess-outer
	.ourprocess-box:nth-child(3)
	.process-pointer-main
	.process-pointer:nth-child(1)
	.pointer-detail {
	left: -63px;
}

.ourprocess-outer
	.ourprocess-box:nth-child(2)
	.process-pointer-main
	.process-pointer:nth-child(3)
	.pointer-detail,
.ourprocess-outer
	.ourprocess-box:nth-child(3)
	.process-pointer-main
	.process-pointer:nth-child(3)
	.pointer-detail {
	visibility: hidden;
	opacity: 0;
}

.ourprocess-outer
	.ourprocess-box:nth-child(2)
	.process-pointer-main
	.process-pointer:nth-child(3):hover
	.pointer-detail,
.ourprocess-outer
	.ourprocess-box:nth-child(3)
	.process-pointer-main
	.process-pointer:nth-child(3):hover
	.pointer-detail {
	visibility: visible;
	opacity: 1;
}

.ourprocess-outer
	.ourprocess-box:nth-child(2)
	.process-pointer-main
	.process-pointer:nth-child(3)
	.pointer-icon::after,
.ourprocess-outer
	.ourprocess-box:nth-child(3)
	.process-pointer-main
	.process-pointer:nth-child(3)
	.pointer-icon::after {
	display: block;
}

.pointer-icon img {
	width: 35px;
	position: relative;
	z-index: 2;
}

.process-pointer-main .process-pointer:hover .pointer-detail {
	opacity: 1;
	visibility: visible;
}

.process-pointer-main .process-pointer:nth-child(1) {
	left: 98px;
	top: 45px;
}

.process-pointer-main .process-pointer:nth-child(2) {
	left: 186px;
	top: 45px;
}

.process-pointer-main .process-pointer:nth-child(3) {
	left: 159px;
	top: 134px;
}

.process-pointer-main .process-pointer:nth-child(4) {
	left: 90px;
	top: 105px;
}

.process-pointer-main .process-pointer:nth-child(5) {
	left: 146px;
	top: 188px;
}

.pointer-text {
	color: #bdb8ac;
	margin-top: 3px;
	margin-left: -8px;
	font-size: 11px;
}

.pointer-icon {
	position: relative;
	z-index: 1;
}

.process-pointer .pointer-icon::after {
	content: "";
	position: absolute;
	top: 35.7px;
	left: 5.25px;
	height: 15px;
	width: 15px;
	z-index: -1;
	border: 2px solid #a09a8d;
	border-radius: 70px;
	-moz-animation: heartbit 2s linear infinite;
	-moz-animation-iteration-count: infinite;
	-o-animation: heartbit 2s linear infinite;
	-o-animation-iteration-count: infinite;
	-webkit-animation: heartbit 2s linear infinite;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
	z-index: 1;
}
.process-pointer-main .process-pointer:nth-child(2) .pointer-icon::after {
	top: 35.6px;
	left: 5.4px;
}
.process-pointer-main .process-pointer:nth-child(3) .pointer-icon::after {
	top: 35.6px;
	left: 5.5px;
}
.process-pointer-main .process-pointer:nth-child(4) .pointer-icon::after {
	top: 35.3px;
	left: 5.6px;
}
.process-pointer-main .process-pointer:nth-child(5) .pointer-icon::after {
	top: 35.4px;
	left: 5.4px;
}
.ourprocess-outer
	.ourprocess-box:nth-child(2)
	.process-pointer-main
	.process-pointer:nth-child(1)
	.pointer-icon::after {
	top: 35.4px;
	left: 5.4px;
}
.ourprocess-outer
	.ourprocess-box:nth-child(2)
	.process-pointer-main
	.process-pointer:nth-child(2)
	.pointer-icon::after {
	top: 35.6px;
	left: 5.3px;
}
.ourprocess-outer
	.ourprocess-box:nth-child(2)
	.process-pointer-main
	.process-pointer:nth-child(3)
	.pointer-icon::after {
	top: 35.6px;
	left: 5.4px;
}
.ourprocess-outer
	.ourprocess-box:nth-child(3)
	.process-pointer-main
	.process-pointer:nth-child(1)
	.pointer-icon::after {
	top: 35.4px;
	left: 5.3px;
}
.ourprocess-outer
	.ourprocess-box:nth-child(3)
	.process-pointer-main
	.process-pointer:nth-child(2)
	.pointer-icon::after {
	top: 35.4px;
	left: 5.4px;
}
.ourprocess-outer
	.ourprocess-box:nth-child(3)
	.process-pointer-main
	.process-pointer:nth-child(3)
	.pointer-icon::after {
	top: 35.7px;
	left: 5.4px;
}

.image-dot:after {
	content: "";
	/*position: absolute;*/
	top: 0;
	left: 0;
	height: 26px;
	width: 26px;
	z-index: -1;
	border: 3px solid #a09a8d;
	border-radius: 70px;
	-moz-animation: heartbit 2s linear infinite;
	-moz-animation-iteration-count: infinite;
	-o-animation: heartbit 2s linear infinite;
	-o-animation-iteration-count: infinite;
	-webkit-animation: heartbit 2s linear infinite;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
	z-index: 1;
}

.image-hover:nth-child(2) .image-dot:after {
	top: 1px;
}

.image-hover:nth-child(3) .image-dot:after {
	top: 1px;
	left: 1px;
}

/* @-moz-keyframes heartbit {

    0% {

        -moz-transform: scale(0);
        opacity: 0
    }

    25% {

        -moz-transform: scale(.1);

        opacity: .1
    }

    50% {

        -moz-transform: scale(.5);

        opacity: .3
    }

    75% {

        -moz-transform: scale(.8);

        opacity: .5
    }

    100% {

        -moz-transform: scale(1);

        opacity: 0
    }

}



@-webkit-keyframes heartbit {

    0% {

        -webkit-transform: scale(0);
        opacity: 0
    }

    25% {

        -webkit-transform: scale(.1);
        opacity: .1
    }

    50% {

        -webkit-transform: scale(.5);
        opacity: .3
    }

    75% {

        -webkit-transform: scale(.8);
        opacity: .5
    }

    100% {

        -webkit-transform: scale(1);
        opacity: 0
    }
}*/
@-webkit-keyframes heartbit {
	0% {
		-webkit-transform: scale(0.1);
		opacity: 0;
	}

	50% {
		opacity: 0.7;
	}

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

@keyframes heartbit {
	0% {
		transform: scale(0.1);
		opacity: 0;
	}

	50% {
		opacity: 0.7;
	}

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

.ourprocess-outer .ourprocess-box:nth-child(1) {
	min-height: 345px;
}

.ourprocess-outer .ourprocess-box:nth-child(2) {
	min-height: 205px;
}

.ourprocess-outer
	.ourprocess-box:nth-child(2)
	.process-pointer-main
	.process-pointer:nth-child(1) {
	left: 147px;
	top: -64px;
}

.ourprocess-outer
	.ourprocess-box:nth-child(2)
	.process-pointer-main
	.process-pointer:nth-child(2) {
	left: 66px;
	top: -27px;
}

.ourprocess-outer
	.ourprocess-box:nth-child(2)
	.process-pointer-main
	.process-pointer:nth-child(3) {
	left: 158px;
	top: 2px;
}

.ourprocess-outer .ourprocess-box:nth-child(3):after {
	display: none;
}

.ourprocess-outer
	.ourprocess-box:nth-child(3)
	.process-pointer-main
	.process-pointer:nth-child(1) {
	left: 200px;
	top: -104px;
}

.ourprocess-outer
	.ourprocess-box:nth-child(3)
	.process-pointer-main
	.process-pointer:nth-child(2) {
	left: 124px;
	top: -48px;
}

.ourprocess-outer
	.ourprocess-box:nth-child(3)
	.process-pointer-main
	.process-pointer:nth-child(3) {
	left: 124px;
	top: 19px;
}

/* our process end */
/* Delivery Page Start */
.delivery-accordion-section {
	margin-bottom: 50px;
}

.delivery-accordion-section .accordion {
	border-bottom: 1px solid #bababa;
}

.delivery-accordion-section .accordion:last-child {
	border-bottom: 0;
}

.delivery-accordion-section .accordion-content {
	padding-bottom: 30px;
}

.delivery-accordion-section h2 {
	font-weight: 400;
	margin-top: 0;
	color: #333333;
	font-size: 21px;
	/*letter-spacing: 3.8px;*/
	letter-spacing: 2.7px;
	margin-bottom: 9px;
}

.delivery-image-wrapper p {
	font-weight: 400;
	font-size: 14px;
	color: #232323;
	letter-spacing: 0.4px;
}

.delivery-image-wrapper ul {
	padding-left: 20px;
}

.delivery-image-wrapper li {
	font-weight: 300;
	font-size: 14px;
	color: #232323;
	margin-bottom: 7px;
}

.question-wrapper {
	margin-bottom: 30px;
}

.question-wrapper:last-child {
	margin-bottom: 0;
}

.faq-layout .question {
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 0.4px;
	margin-bottom: 5px;
	margin-top: 0;
}

.faq-layout .answer {
	font-weight: 300;
	font-size: 14px;
	line-height: 1.3;
	letter-spacing: 0.4px;
	margin-top: 0;
	margin-bottom: 0;
}

.table-content-wrapper {
	display: flex;
}
.tabletext {
	position: relative;
	min-width: 110px;
	word-break: break-word;
}
.tabletext ul {
	padding-left: 0;
	list-style: none;
	margin: 20px 0;
}

.table-images {
	position: relative;
	width: 100%;
	overflow-x: auto;
	padding-top: 252px;
	margin-top: -252px;
	/*padding-left: 47px;*/
	padding-left: 15px;
}
.table-image-block {
	padding-bottom: 10px;
}

.tabletext li {
	margin-bottom: 60px;
	margin-right: 10px;
	text-transform: uppercase;
	/*font-size: 12px;*/
	font-size: 10px;
	font-weight: 400;
}

.tabletext li:nth-child(2) {
	margin-bottom: 90px;
	max-width: 140px;
}

@media screen and (max-width: 767px) {
	.table-content-two .table-images {
		padding-left: 0;
	}
}

@media screen and (min-width: 768px) {
	.tabletext li:nth-child(2) {
		max-width: none;
	}
}

.tabletext li:nth-child(3) {
	margin-bottom: 30px;
}

.table-content-two .tabletext ul {
	margin: 30px 0 0 0;
}

.table-content-two .table-images img {
	width: 1200px;
}

.table-content-two .tabletext li {
	padding-left: 15px;
	/*font-size: 11px;*/
	font-size: 8px;
	margin-bottom: 4px;
}

.table-content-two .tabletext li:first-child {
	margin-bottom: 62px;
	margin-top: 30px;
}

.table-content-two .tabletext li:nth-child(2) {
	margin-bottom: 13px;
}

.home .site-main {
	margin-bottom: 55px;
}

.financial-popup {
	position: absolute;
	width: 340px;
	top: 40px;
	left: 4px;
	z-index: 1;
	display: none;
}

.financial-table:hover .financial-popup {
	display: block;
}

.financial-icon {
	width: 15px;
	position: absolute;
	top: 101px;
	left: -6px;
}

.financial-table:nth-child(2) .financial-icon {
	top: 130px;
}

.financial-table:nth-child(2) .financial-popup {
	top: 81px;
}

.financial-table:nth-child(3) .financial-icon {
	top: 146px;
}

.financial-table:nth-child(3) .financial-popup {
	top: 67px;
}

.financial-table:nth-child(4) .financial-icon {
	top: 169px;
}

.financial-table:nth-child(4) .financial-popup {
	top: 105px;
}

.table-content-two .tabletext li:last-child {
	margin-top: 0;
}

.simple-images {
	margin-bottom: 30px;
}

.tabletext li:last-child {
	margin-bottom: 0;
}

.table-images img {
	width: 900px;
	max-width: inherit;
	height: 100%;
}

.table-images::-webkit-scrollbar-thumb,
.package-table::-webkit-scrollbar-thumb,
.estimation-table::-webkit-scrollbar-thumb,
.estimation-table::-webkit-scrollbar {
	background: #ed8b00;
	border-radius: 12px;
	height: 12px;
	width: 90px;
}

.table-images::-webkit-scrollbar,
.package-table::-webkit-scrollbar,
.estimation-table::-webkit-scrollbar {
	width: 100%;
	height: 12px;
}

.table-images::-webkit-scrollbar-track,
.package-table::-webkit-scrollbar-track,
.estimation-table::-webkit-scrollbar-track {
	background: #c6cccf;
	border-radius: 12px;
}
.table-images::-webkit-scrollbar-track {
	margin-left: 47px;
}

.pdf-btn {
	margin-top: 30px;
}

.pdf-btn a {
	border: 1px solid #fc8200;
	color: #fc8200;
	/*font-weight: 600;*/
	text-transform: uppercase;
	/*padding: 17px 20px;*/
	/*font-size: 10px;*/
	/*border-radius: 8px;*/
	/*letter-spacing: 3px;*/

	font-size: 14px;
	line-height: 1;
	padding: 11px 30px;
	border-radius: 8px;
	letter-spacing: 2px;
}

.pdf-btn a:hover {
	background: #fc8200;
	color: #fff;
}

/* Delivery Page End */
/* product page start */
.product-overlay-wrapper {
	position: absolute;
	bottom: 0px;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(transparent, rgb(29 29 29));
	display: flex;
	align-items: flex-end;
	transition: 0.4s all;
	opacity: 0;
}

.product-grid-column:hover .product-overlay-wrapper {
	opacity: 1;
}

.grid-layout {
	display: flex;
	flex-direction: column;
}

.grid-image {
	position: relative;
	overflow-y: hidden;
}

.grid-image img {
	display: block;
	max-height: 221px;
	width: 100%;
	height: 100%;
	object-fit: cover;
	min-height: 221px;
}

.projects-repeater-section .grid-title {
	margin-top: 10px;
	padding-left: 37px;
	letter-spacing: 3.7px;
	font-size: 14px;
	text-transform: uppercase;
}

.projects-repeater-section h3 {
	font-weight: 500;
	letter-spacing: 3px;
	margin-bottom: 30px;
	margin-top: 0;
}

.grid-title-residence {
	display: block;
	margin-top: 5px;
	text-transform: uppercase;
	/*font-size: 12px;*/
	font-size: 11px;
}

.projects-repeater-section .grid-title a {
	color: #000;
}

.projects-repeater-section .grid-title a:hover {
	color: var(--blue-light-color);
}

.projects-repeater-section .product-grid-column {
	margin-bottom: 30px;
	position: relative;
	max-width: 439px;
	width: 100%;
}

.product-grid-column:after {
	content: "";
	position: absolute;
	left: 13px;
	bottom: -5px;
	height: 115px;
	background: var(--orange-light-color);
	width: 2px;
}

.grid-overlay {
	margin-bottom: 1rem;
}

.specification p {
	color: #fefcfc;
	padding-left: 37px;
	margin-bottom: 0;
	margin-top: 5px;
	font-size: 13px;
	font-weight: 400;
}

.under-construction {
	position: absolute;
	top: 17px;
	left: 22px;
	color: var(--orange-light-color);
	text-transform: uppercase;
	font-size: 16px;
}

.under-construction span {
	letter-spacing: 3.5px;
}

.single-project-content-wrap {
	padding: 35px 0 62px 0;
}

.single-project-content-wrap .heading-wrap {
	padding-bottom: 0;
	border-bottom: 0;
}

.project-sidebar ul {
	display: none;
}

.project-sidebar ul li {
	margin-bottom: 45px;
}

.project-sidebar ul li a {
	color: #989898;
}

.project-sidebar ul li span {
	color: #ccc;
}

.project-sidebar ul li a:hover {
	color: var(--blue-light-color);
}

.project-sidebar ul li.active a {
	color: #000;
}

.project-sidebar h3 {
	text-transform: uppercase;
	font-size: 14px;
	font-weight: 400;
	letter-spacing: 2.4px;
	margin-bottom: 30px;
}

.project-sidebar select {
	border: 2px solid #fb7d02;
	appearance: none;
	background: transparent;
	font-size: 14px;
	font-weight: 600;
	padding: 11px 45px 11px 16px;
	color: #333333;
	border-radius: 5px;
	width: 100%;
}

.project-sidebar select:focus-visible {
	outline: 0;
}

.category-select {
	position: relative;
	width: 100%;
	margin-bottom: 30px;
}

.category-select:after {
	content: "";
	position: absolute;
	right: 20px;
	top: -7px;
	bottom: 0;
	margin: auto 0;
	border-left: 2px solid #fb7d02;
	border-top: 2px solid #fb7d02;
	width: 14px;
	height: 9px;
	padding: 7px;
	transform: rotate(-135deg);
}

.gallery-sec {
	flex-wrap: wrap;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-column-gap: 15px;
	grid-row-gap: 15px;
	margin-bottom: 100px;
	height: 100%;
}

.product-gallery {
	margin-right: auto;
	position: relative;
}

.product-gallery:after {
	position: absolute;
	content: "";
	width: 100%;
	height: 100%;
	background: rgba(255, 255, 255, 0.3);
	left: 0px;
	top: 0;
}

.product-gallery:hover:after {
	background: transparent;
}

.product-gallery:nth-child(2n) {
	margin-left: auto;
	margin-right: 0;
}

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

.single-our_projects .fancybox-container {
	position: absolute;
	height: 100vh;
}

.single-our_projects .fancybox-infobar {
	bottom: 80px !important;
	top: auto;
	left: 50%;
	margin: 0px auto;
	transform: translateX(-50%);
	font-size: 19px;
	right: auto;
	min-width: 90px;
	text-align: center;
	color: #fff;
}

.single-our_projects .fancybox-infobar span {
	color: #fff;
}

.single-our_projects .fancybox-toolbar {
	display: none !important;
}

.single-our_projects.fancybox-active .site-header {
	z-index: 99999;
	position: relative;
}

.single-our_projects.fancybox-active main.site-main {
	display: none;
}

.single-our_projects .fancybox-container .fancybox-inner:after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	margin: 0 auto;
	bottom: 0px;
	width: 2px;
	height: 28px;
	background: linear-gradient(
		to bottom,
		#fe9900 40%,
		#6a6a6a 40%,
		#6a6a6a 60%
	);
	z-index: 3;
	animation: MoveUpDown 1s linear infinite;
	z-index: 99999;
	display: block;
}

.single-our_projects .fancybox-container .fancybox-stage:before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: rgb(255, 255, 255);
	background: linear-gradient(
		185deg,
		rgba(255, 255, 255, 1) 0%,
		rgba(255, 255, 255, 0) 50%
	);
	background-size: cover;
	z-index: 99;
}

/* .single-our_projects .fancybox-container .fancybox-stage:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: url(../images/service-overlay-mobile.png);
    background-size: cover;
    z-index: 99;
} */

.single-our_projects .fancybox-container .fancybox-stage .fancybox-slide {
	z-index: 3;
}

.single-our_projects.fancybox-active .fancybox-slide--image .fancybox-content {
	width: 100% !important;
	height: 100% !important;
	transform: translate(0px) !important;
}

.single-our_projects.fancybox-active
	.fancybox-slide--image
	.fancybox-content
	img {
	object-fit: cover;
}

.single-our_projects .fancybox-navigation .fancybox-button {
	top: auto;
	bottom: 50px;
}

.single-our_projects
	.fancybox-navigation
	.fancybox-button.fancybox-button--arrow_right {
	right: 160px;
}

.single-our_projects
	.fancybox-navigation
	.fancybox-button.fancybox-button--arrow_left {
	left: 160px;
	right: auto;
}

.single-our_projects .fancybox-navigation .fancybox-button > div {
	border: solid 2px var(--blue-light-color);
	border-radius: 50%;
}

.single-our_projects .fancybox-navigation .fancybox-button svg path {
	fill: var(--blue-light-color);
}

.single-our_projects .fancybox-navigation .fancybox-button {
	height: 100px;
	width: 70px;
	background: transparent;
}

.single-our_projects .fancybox-caption {
	/*left: 20px;*/
	left: 23px;
	bottom: 140px;
	width: auto;
	right: auto;
	font-size: 17px;
	letter-spacing: 3px;
	text-align: left;
	background: transparent;
}

.single-our_projects .fancybox-caption span.catname {
	font-size: 15px;
	text-transform: uppercase;
	display: block;
}

.single-our_projects .fancybox-show-caption .fancybox-infobar,
.single-our_projects .fancybox-show-caption .fancybox-navigation,
.single-our_projects
	.fancybox-show-caption
	.fancybox-navigation
	.fancybox-button {
	opacity: 1;
	transition:
		opacity 0.25s ease 0s,
		visibility 0s ease 0s;
	visibility: visible;
}

.single-our_projects.fancybox-active .site-footer {
	position: absolute;
	z-index: 9999;
	bottom: -565px;
	width: 100%;
}

/* product page end */
/* footer start */
.footer-upper {
	padding: 0 24px 25px;
	background: #1d272f;
}

.footer-upper ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.footer-left {
	padding: 30px 0 30px 30px;
}

.footer-left h2 {
	text-transform: uppercase;
	color: #fff;
	font-weight: 600;
	font-size: 12px;
	border-bottom: 1px solid #4c4b4c;
	position: relative;
	padding: 14px 0 10px;
	margin: 0;
	line-height: 1;
	letter-spacing: 3px;
}

.footer-left-box.last-menu ul li {
	border-bottom: solid 1px #4c4b4c;
	position: relative;
}

.footer-left-box.last-menu ul li:last-child {
	border-bottom: 0;
}

.footer-left-box.last-menu ul li:after {
	content: "";
	position: absolute;
	left: -30px;
	top: 4px;
	bottom: 0;
	height: 15px;
	width: 15px;
	margin: auto 0;
	background: url("../images/plus-icon.png");
	filter: grayscale(1);
}

.footer-left-box.last-menu a {
	font-weight: 600;
	letter-spacing: 3px;
}

.footer-left-box.active h2 {
	border-bottom: 0;
}

.footer-left-box:last-child h2:last-child {
	border-bottom: 0;
}

.footer-left h2:before {
	content: "";
	position: absolute;
	left: -30px;
	top: 4px;
	bottom: 0;
	height: 15px;
	width: 15px;
	margin: auto 0;
	background: url("../images/plus-icon.png");
}

.footer-left .footer-left-box.active h2:before {
	background: url("../images/minus-icon.png");
	height: 2px;
}

.footer-left a {
	color: #8e8c8c;
	font-size: 12px;
	font-weight: 400;
	text-transform: uppercase;
	text-decoration: none;
	letter-spacing: 3px;
	padding: 14px 0 9px;
}

.footer-left-box.last-menu a {
	color: #fff;
}

.footer-left a:hover {
	color: #0099cc;
}

.footer-log {
	max-width: 159px;
	margin-bottom: 27px;
}

.footer-nav {
	display: none;
}

.footer-right-inner {
	color: #fff;
}

.footer-right-inner h4 {
	text-transform: uppercase;
	font-size: 13px;
	font-weight: 400;
	letter-spacing: 3px;
	margin-bottom: 16px;
	color: #c6c4c4;
}

.footer-right-inner p {
	font-weight: 400;
	margin-top: 0;
	font-size: 13px;
	line-height: 1.3;
	margin-bottom: 24px;
	color: #8e8c8c;
}

.footer-left-box.last-menu li:first-child a {
	padding-top: 8px;
}

.footer-social ul {
	display: flex;
}

.footer-social li {
	margin-right: 36px;
}

.copyright {
	background: #252e35;
	color: #8e8c8c;
	font-size: 10px;
	text-transform: uppercase;
	padding: 11px 24px 5px;
}

.copyright p {
	letter-spacing: 1.4px;
}

.copyright span {
	display: flex;
	margin-top: 6px;
}

.copyright a {
	color: #0099cc;
	text-decoration: none;
	margin-left: 8px;
}

/* footer end */

/* Banner video custom controller */
.mainvideo .custom-controls {
	display: flex;
	width: 80%;
	align-items: center;
	justify-content: center;
	position: absolute;
	max-width: 1072px;
	bottom: 50px;
	left: 0;
	right: 0;
	margin: 0 auto;
	z-index: 3;
}

.mainvideo {
	position: relative;
}

.mainvideo video {
	width: 100%;
}

.mainvideo .fullscreen,
.mainvideo #volume-bar {
	display: none;
}

.mainvideo button {
	font-size: 0;
	width: 30px;
	height: 30px;
	border: solid 1px #0099cc;
	background-color: transparent;
	background-image: url("../images/control-icon.png");
	border-radius: 50%;
	cursor: pointer;
	border-radius: 50%;
	background-repeat: no-repeat;
	box-shadow: none;
}

.mainvideo .play {
	background-position: -25px 6px;
}

.mainvideo .pause {
	background-position: 10px 6px;
}

.mainvideo .mute {
	background-position: -114px 6px;
}

.mainvideo .unmute {
	background-position: -70px 6px;
}

.mainvideo progress {
	color: green;
	font-size: 12px;
	width: 76%;
	height: 2px;
	border: none;
	background: #d0d0d0;
	border-radius: 9px;
	vertical-align: middle;
}

.mainvideo progress::-moz-progress-bar {
	color: green;
	background: #d0d0d0;
}

.mainvideo progress[value]::-webkit-progress-bar {
	background-color: #d0d0d0;
	border-radius: 2px;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25) inset;
}

.mainvideo progress[value]::-webkit-progress-value {
	background-color: #0099cc;
}

/***=== Testimonial ===***/

.testimonial-repeater-section {
	padding-bottom: 84px;
	padding-top: 81px;
}

.testimonial-repeater-section .items {
	margin-bottom: 50px;
}

.testimonial-repeater-section .items .content {
	padding-bottom: 40px;
	border-bottom: 1px solid #e3e3e3;
}

.testimonial-bottom {
	text-transform: uppercase;
	display: flex;
	padding-left: 41px;
}

.description {
	font-weight: 300;
	margin-bottom: 30px;
	position: relative;
	padding: 0 41px 15px;
	font-size: 14.2px;
	letter-spacing: 0.3px;
	line-height: 1.45;
}

.description:after,
.description:before {
	position: absolute;
	content: "";
	width: 30px;
	height: 40px;
	background: url("../images/quote-icon.png") no-repeat;
	background-size: 100%;
}

.description:after {
	bottom: 0px;
	right: 0px;
	transform: scaleX(-1);
}

.description:before {
	top: 0px;
	left: 0px;
}

.testimonial-repeater-section .client-name {
	font-weight: 300;
	font-size: 25px;
	text-align: center;
	margin-bottom: 25px;
	color: #333;
}

.testimonial-bottom .positions {
	font-size: 11px;
	font-weight: 400;
	color: #333;
	letter-spacing: 2px;
	padding-right: 10px;
	position: relative;
}

.testimonial-bottom .positions:after {
	content: "";
	position: absolute;
	right: 0;
	top: 0;
	width: 2px;
	height: 100%;
	background-color: #333;
}

.testimonial-bottom .subtitle {
	font-size: 11px;
	font-weight: 400;
	color: #0099cc;
	letter-spacing: 2px;
	padding-left: 10px;
}

.testimonial-repeater-section .items .image img {
	display: block;
}

.read-more {
	margin-top: 10px;
}

.custom-modal-popup.fancybox-content {
	max-width: 90%;
	margin: 0px auto;
	border-radius: 10px;
	border: solid 2px var(--blue-dark-color);
	overflow: visible;
	margin-top: 30px;
}

.custom-modal-popup.fancybox-content button.fancybox-button {
	background: #000;
	opacity: 1;
	position: absolute;
	width: 58px;
	height: 58px;
	border-radius: 50%;
	color: var(--blue-dark-color);
	padding: 5px;
	right: -30px;
	top: -30px;
}

.simple-page-content {
	padding: 35px 0 62px 0;
}

.simple-page-content h2,
.simple-page-content h3,
.simple-page-content h4 {
	font-weight: 400;
	letter-spacing: 3.2px;
}

.simple-page-content p {
	font-size: 14.2px;
	letter-spacing: 0.3px;
	line-height: 1.45;
	margin-bottom: 40px;
	color: #1d272f;
	font-weight: 300;
}

.simple-page-content ul li,
.simple-page-content ol li {
	font-size: 14.2px;
	letter-spacing: 0.3px;
	line-height: 1;
	margin-bottom: 10px;
	color: #1d272f;
	font-weight: 300;
}

#cookie-notice {
	background: rgba(0, 0, 0, 0.8) !important;
}

.cn-text-container p a {
	border-bottom: 1px solid;
	display: inline;
}

.cn-button {
	border: 1px solid;
	padding: 8px 50px;
	text-transform: uppercase;
	font-weight: 700;
	font-size: 10px;
	border-radius: 5px;
	letter-spacing: 2px;
}

#cookie-notice .cn-close-icon {
	top: 30px;
	right: 30px;
}

.cookie-notice-container .cn-text-container {
	font-family: "Gill Sans";
}

#cookie-notice .cn-button {
	font-family: "Gill Sans";
}

.cn-text-container h2 {
	text-transform: uppercase;
	font-size: 14px;
	font-weight: 400;
	margin-top: 0;
	margin-bottom: 0;
}

#cookie-notice.cn-animated {
	z-index: -1;
}

.policy-content h2 {
	font-weight: 400;
	font-size: 16px;
	letter-spacing: 2px;
	margin: 0;
	text-transform: uppercase;
}

.policy-content ul {
	padding-left: 0px;
}

.policy-content p,
.policy-content li {
	font-size: 17px;
	font-weight: 300;
	color: #010101;
	line-height: 1.3;
}

.policy-content li {
	margin-bottom: 10px;
	padding-left: 25px;
}

.policy-content li:before {
	left: 0px;
	top: 4px;
}

.policy-content li:after {
	left: 4px;
	top: 8px;
}

.buget-detail .insight-btn {
	position: unset;
	order: unset;
}

.buget-detail {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	margin-top: 50px;
}

.buget-detail strong,
.model-stats-content strong {
	/*font-weight: 600;*/
	font-weight: 400;
	color: #fe9500;
}

.bottom-image p,
.model-stats-content p {
	font-weight: 300;
	color: #232323;
	font-size: 14px;
}

.model-stats-content {
	margin-top: 30px;
}

.model-stats-content ul {
	list-style: none;
}

.model-stats-content li {
	font-weight: 300;
	color: #232323;
	margin-bottom: 7px;
	/*font-size: 16px;*/
	font-size: 14px;
	position: relative;
}

.package-btn {
	text-align: right;
	margin-bottom: 10px;
}

.package-table,
.estimation-table {
	margin-bottom: 40px;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
}

.estimation-table {
	position: relative;
	padding-top: 110px;
	margin-top: -110px;
}

.package-table-scroll,
.estimation-table-scroll {
	width: max-content;
}

.estimation-hover-image {
	position: absolute;
	left: 112px;
	top: -8px;
	width: 200px;
	width: 200px;
	display: none;
}

.estimation-hover:nth-child(4) .estimation-hover-image {
	left: 569px;
	top: 28px;
	width: 130px;
}

.estimation-hover:nth-child(4) .estimation-dots {
	left: 608px;
	top: 116px;
}

.estimation-hover:hover .estimation-hover-image {
	display: block;
}

.estimation-hover:nth-child(1) .estimation-dots {
	top: 199px;
	left: 54px;
}

.estimation-hover:nth-child(1) .estimation-hover-image {
	/*top: 259px;*/
	/*left: 164px;*/
	top: 137px;
	left: 89px;
}

.estimation-hover:nth-child(3) .estimation-hover-image {
	left: 358px;
	top: 27px;
}

.estimation-hover:nth-child(1) .estimation-dots:after {
	min-width: 50px;
	height: 50px;
	top: -10px;
	left: -11px;
}

@media all and (min-width: 768px) {
	.estimation-hover:nth-child(1) .estimation-dots:after {
		top: -10px;
		left: -10px;
	}
}

.estimation-hover:nth-child(3) .estimation-dots {
	left: 434px;
	top: 116px;
}

.table-content-one .pdf-btn {
	display: none;
}

.bottom-image {
	position: relative;
}

.estimation-dots {
	position: absolute;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	top: 116px;
	left: 187px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.estimation-dots:after {
	content: "";
	/*position: absolute;*/
	/*top: -7px;*/
	/*left: -7px;*/
	height: 27px;
	width: 27px;
	border: 5px solid #a09a8d;
	border-radius: 70px;
	-moz-animation: heartbit 2s linear infinite;
	-moz-animation-iteration-count: infinite;
	-o-animation: heartbit 2s linear infinite;
	-o-animation-iteration-count: infinite;
	-webkit-animation: heartbit 2s linear infinite;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
	z-index: 1;
}
.estimation-hover:nth-child(2) .estimation-dots:after {
	left: -6px;
}

.optional-hover {
	position: absolute;
	top: 12px;
	left: 8px;
	width: 200px;
	display: none;
}

.optional-content {
	position: relative;
	display: inline-block;
}

.insight-item {
	width: 327px;
	margin: 0 auto;
}

.insight-chart {
	width: 327px;
}

.chart-dots {
	width: 25px;
	height: 25px;
	border-radius: 50%;
	position: absolute;
	top: 127px;
	left: 102px;
	cursor: pointer;
}
.optional-hover-popup .chart-dots {
	top: 120px;
	left: 98px;
}
.optional-hover-popup .dots-block:nth-child(2) .chart-dots {
	top: 97px;
	left: 116px;
}
.optional-hover-popup .dots-block:nth-child(3) .chart-dots {
	top: 77px;
	left: 140px;
}

.dots-block:nth-child(2) .chart-dots {
	top: 104px;
	left: 119px;
}

.dots-block:nth-child(3) .chart-dots {
	top: 90px;
	left: 145px;
}

.dots-block:hover .optional-hover {
	display: block;
}

.dots-block:nth-child(2) .optional-hover {
	top: -13px;
	left: 25px;
}

.dots-block:nth-child(3) .optional-hover {
	top: -3px;
	left: 54px;
}

.image-popup {
	position: absolute;
	top: 72px;
	left: 40px;
	z-index: 1;
	opacity: 0;
	pointer-events: none;
}

@media screen and (min-width: 768px) {
	.image-popup {
		left: 72px;
	}
}

.image-popup img {
	width: auto;
}

.image-dot {
	position: absolute;
	top: 255px;
	left: 156px;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 9;
}

@media screen and (min-width: 768px) {
	.image-dot {
		left: 198px;
		top: 267px;
	}
}

.image-hover:hover .image-popup {
	display: block;
}

.image-hover.hover .image-popup {
	opacity: 1;
}

.image-hover:nth-child(2) .image-popup {
	/*left: 418px;*/
	/*top: 96px;*/
	left: 371px;
	top: 109px;
}

@media screen and (min-width: 768px) {
	.image-hover:nth-child(2) .image-popup {
		left: 402px;
	}
}

.image-hover:nth-child(2) .image-dot {
	left: 495px;
}

@media screen and (min-width: 768px) {
	.image-hover:nth-child(2) .image-dot {
		left: 538px;
	}
}

.image-hover:nth-child(3) .image-dot {
	left: 736px;
}

@media screen and (min-width: 768px) {
	.image-hover:nth-child(3) .image-dot {
		left: 779px;
	}
}

.image-hover:nth-child(3) .image-popup {
	/*left: 723px;*/
	/*top: 96px;*/
	left: 676px;
	top: 132px;
	/*width: 375px;*/
}

@media screen and (min-width: 768px) {
	.image-hover:nth-child(3) .image-popup {
		left: 708px;
	}
}

.optional-hover-popup .optional-hover {
	top: 17px;
	/*left: 12px;*/
	left: 9px;
}
.optional-hover-popup .dots-block:nth-child(2) .optional-hover {
	/*top: -24px;*/
	/*left: 27px;*/
	top: -22px;
	left: 24px;
}
.optional-hover-popup .dots-block:nth-child(3) .optional-hover {
	/*top: -8px;*/
	/*left: 54px;*/
	top: -9px;
	left: 50px;
}
.project-management {
	margin: 50px 0;
}
.project-management h2 {
	color: #0099cc;
	font-family: "Gill Sans";
	/*font-size: 26px !important;*/
	font-size: 13px;
	letter-spacing: 0;
	text-transform: unset;
}
.project-management ul {
	list-style: none;
	padding-left: 20px;
}
.project-management li {
	/*font-size: 16px;*/
	font-size: 14px;
	font-weight: 300;
	margin-bottom: 5px;
}
.mail-info {
	border-bottom: 1px solid #0099cc;
}

.insight-twocolumns-content-image {
	padding: 10px;
}

.insight-twocolumns-content-text {
	padding: 10px;
	font-size: 14px;
	line-height: 1.44;
	margin-bottom: 25px;
	margin-top: 0;
	color: #232323;
	font-weight: 300;
	letter-spacing: 0.4px;
}

.custom-number {
	margin: 25px 0;
	padding: 0;
	list-style: none;
	counter-reset: item;
	font-size: 14px;
	line-height: 1.44;
	color: #232323;
	font-weight: 300;
	letter-spacing: 0.4px;
}

.custom-number > li {
	counter-increment: item;
	position: relative;
	padding-left: 40px;
	margin-bottom: 25px;
}

.custom-number > li:before {
	position: absolute;
	content: counter(item);
	top: 0;
	left: 0;
	width: 24px;
	height: 24px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #000;
	font-size: 14px;
	line-height: 1;
	font-weight: 400;
	background: #e6e6e7;
}

.fancybox-toolbar {
	display: none;
}

.fancybox-content {
	pointer-events: none;
}

.insight-image-item--full .insight-item {
	width: 100%;
}

.fancybox-bg {
	pointer-events: none;
}

#menu-footer-projects {
	max-width: 185px;
}

.label-block {
	max-width: 580px;
	border-radius: 12px;
	padding: 20px 20px;
	margin-left: auto;
	margin-right: auto;
	margin-top: 50px;
	box-shadow: 0 0 11px 7px #eee;
	text-align: center;
	color: #1a1a1a;
	font-size: 16px;
	background: url("../images/bg-decor.jpg");

	@media all and (min-width: 768px) {
		margin-top: 100px;
		padding: 20px 40px;
	}
}

.section-two-col {
	.copy-holder,
	.card-footer {
		font-size: 16px;
		font-weight: 300;
		color: #1d272f;
		letter-spacing: 0.4px;
		line-height: 1.4;

		@media (min-width: 1024px) {
			font-size: 17px;
		}

		@media (min-width: 1440px) {
			font-size: 18px;
			letter-spacing: 0.6px;
			line-height: 1.45;
			padding-top: 6px;
		}
	}

	h3 {
		font-weight: 400;
		letter-spacing: 2.7px;
		text-transform: uppercase;
		margin-top: 0;

		@media (min-width: 1200px) {
			font-size: 25px;
		}
	}

	.card-two-col {
		padding: 40px 0;

		&:nth-child(even) {
			.copy-holder {
				order: 1;
			}

			.grid {
				@media (min-width: 1200px) {
					gap: 50px;
					grid-template-columns: 580px 1fr;
				}
			}
		}

		+ .card-two-col {
			border-top: 1px solid #e3e3e3;
		}
	}

	.grid {
		display: grid;
		grid-template-columns: 1fr;
		gap: 20px;

		@media (min-width: 768px) {
			grid-template-columns: 1fr 1fr;
		}

		@media (min-width: 1200px) {
			gap: 50px;
			grid-template-columns: 1fr 580px;
		}
	}

	.img-holder {
		img {
			width: 100%;
		}
	}

	td {
		@media (max-width: 767px) {
			display: block;
			width: 100% !important;
			padding: 0 !important;
		}

		&:first-child {
			padding-right: 20px;
		}

		&:last-child {
			padding-left: 20px;
		}
	}

	p {
		&:last-child {
			margin-bottom: 0;
		}
	}
}

.section-fp {
	padding-top: 35px;

	.heading {
		border-bottom: 2px solid #e3e3e3;
		padding-bottom: 25px;
		margin-bottom: 25px;

		@media (min-width: 1200px) {
			padding-top: 40px;
			padding-bottom: 40px;
			margin-bottom: 40px;
		}
	}

	h2 {
		font-weight: 400;
		font-size: 26px;
		letter-spacing: 3.3px;
		text-transform: uppercase;
		margin: 0;
	}

	.card-fp {
		+ .card-fp {
			border-top: 2px solid #e3e3e3;
			padding-top: 25px;
			margin-top: 25px;

			@media (min-width: 1200px) {
				padding-top: 40px;
				margin-top: 40px;
			}
		}

		h3,
		h4 {
			color: #0099cc;
			text-transform: uppercase;
			letter-spacing: 3.3px;
			margin: 0;
		}

		h3 {
			margin-bottom: 10px;
		}

		h4 {
			font-size: 14px;
			font-weight: 600;
			margin-bottom: 30px;
		}
	}

	.card-fp--header {
		display: flex;
		flex-direction: column;
		margin-bottom: 20px;
		gap: 15px;

		@media (min-width: 768px) {
			align-items: flex-end;
			flex-direction: row;
			justify-content: space-between;
		}
	}

	.btn {
		text-transform: uppercase;
		display: inline-block;
		text-decoration: none;
		border: 1px solid #0099cc;
		color: #0099cc;
		font-weight: normal;
		transition: 0.3s ease;
		text-align: center;
		line-height: 1;
		white-space: nowrap;
		font-size: 12px;
		border-radius: 8px;
		padding: 14px 20px;
		letter-spacing: 2.1px;
		word-spacing: 1.7px;
		width: 190px;

		&:hover {
			color: #fff;
			background: #0099cc;
		}
	}

	.btn-holder {
		display: flex;
		justify-content: center;
		padding: 25px 0 0 0;

		@media (min-width: 768px) {
			padding: 50px 0 0 0;
		}

		.btn {
			min-width: 260px;
			width: auto;
		}
	}
}

.cards-holder {
	+ .cards-holder {
		margin-top: 50px;

		@media (min-width: 768px) {
			margin-top: 100px;
		}
	}
}

.gallery-wrapper {
	text-transform: uppercase;
}

.projects-repeater-section {
	padding-bottom: 60px;

	@media (min-width: 1200px) {
		padding-bottom: 100px;
	}

	.btn-holder {
		display: flex;
		justify-content: center;
		padding: 25px 0 0 0;

		@media (min-width: 768px) {
			padding: 50px 0 0 0;
		}

		.btn {
			min-width: 260px;
			width: auto;
		}
	}

	.btn {
		text-transform: uppercase;
		display: inline-block;
		text-decoration: none;
		border: 1px solid #0099cc;
		color: #0099cc;
		font-weight: normal;
		transition: 0.3s ease;
		text-align: center;
		line-height: 1;
		white-space: nowrap;
		font-size: 12px;
		border-radius: 8px;
		padding: 14px 20px;
		letter-spacing: 2.1px;
		word-spacing: 1.7px;
		width: 190px;

		&:hover {
			color: #fff;
			background: #0099cc;
		}
	}

	.open-close.active {
		.opener {
			display: none;
		}
	}
}

#menu-footer-last-menu {
	@media (min-width: 768px) {
		display: flex;
		gap: 40px;
	}
}