/* Site Presets */
:root {
	--gold:#996830;
	--black:#0F1417;
	--text:#1E1E1E;
}
ul:not([class]) {
	list-style:disc outside;
	padding-left: 20px;
	display: flex;
	flex-direction: column;
	position: relative;
	row-gap:15px;
}
ul:not([class]) li {
	position: relative;
}
html, body {
	font-family: "Manrope", serif;
	scroll-behavior:smooth;
	overflow-x:clip !important;
	color:#393B3F;
	font-weight: 300;
	font-size: 16px;
	line-height: 22px;
}
html.hide--scroll,
html.hide--scroll body {
	overflow:hidden !important;
}
h1,h2,h3,h4,h5,h6,p {
	margin:0;
}
h1,
.h1 {
	font-weight: 400;
	font-size: 56px;
	line-height: 61px;
}
.h2,
h2 {
	font-size:48px;
}
.h3,
h3 {
	font-size:40px;
}
.h4,
h4 {
	font-size:42px;
}
p {
	font-size:16px;
	line-height:25px;
}

p:not(:last-child):not(:only-child) {
	margin-bottom:20px;
}


/* 404 */
body.error404 #header {
	background-color:#fff;
}

.error__page-wrapper {
	min-height: 60vh;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	gap:40px;
	padding:20px;
	margin-top: 80px;
	padding-block: 100px;
}
.error__page-wrapper h1 {
	text-align:center;
}
.error__page-cta {
	background-color: var(--gold);
	padding: 20px 40px;
	color: #fff;
	text-transform: uppercase;
	font-size: 12px;
	line-height: 16px;
	font-weight: 600;
	max-width: max-content;
	transition: all ease-in-out 450ms;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	margin-top: 50px;
	cursor: pointer;
}
.error__page-cta:hover {
	background-color:var(--text);
	color:#fff;
}
/* End 404 */

/*Footer*/
#footer {
	background-color: var(--black);
	padding-inline: 100px;
	padding-block: 60px 30px;
}
.footer--inner {
	max-width:1350px;
	margin-inline:auto;
}
.footer--top-title {
	color: #EAEDF6;
	font-size: 32px;
	line-height: 35px;
	margin-bottom: 30px;
	font-weight:300;
}
.footer--top--con {
	max-width: 650px;
	font-size: 24px;
	line-height: 30px;
	letter-spacing: -0.36px;
	font-weight: 200;
	color:#F1F3F9;
	padding-bottom: 40px;
}
.footer--top {
	border-bottom:1px solid var(--gold);
}
.sub-footer {
	margin-top:40px;
}
.sub-footer a ,
.sub-title {
	color: #ffff;
	font-size: 14px;
	line-height: 20px;
	text-transform: uppercase;
}
.sub-footer a span {
	padding-inline: 5px;
}
.sub-footer a:hover {
	color:var(--gold);
}
.sub-footer a {
	transition:all ease-in-out 350ms;
}
.footer--title {
	color:#fff;
	font-size:24px;
	line-height:30px;
	font-weight:400;
	margin-bottom: 10px;
}
.footer--bottom {
	column-gap:100px;
	margin-top:40px;
}
.footer--links {
	color: #fff;
	font-size: 16px;
	line-height: 25px;
	font-weight: 200;
	transition:all ease-in-out 350ms;
}
.footer--links:hover {
	color:var(--gold);
}
#footer .col-right .footer-wrap-info:last-child {
	margin-top:10px;
}
.sub-title {
	margin-right:20px;
}
.seperator {
	border: 1px solid var(--gold);
	width: 64px;

	margin-right: 20px;
}
.social-links {
	column-gap:15px;
	transition:all ease-in-out 350ms;
}
.social-links a:hover  {
	transform: scale(1.2);
}
.scroll-to-target  {
	writing-mode: vertical-lr;
	-webkit-writing-mode: vertical-lr;
	writing-mode: sideways-lr;
	color:#fff;
	font-size:14px;
	line-height:20px;
	display:flex!important;
	align-items:center;
	position: absolute;
	top: 20%;
	right: 10%;
	transform: translate(-20%, -10%);
	transition:all ease-in-out 350ms;
}
.scroll-to-target:hover ,
.footer-menu li a:hover {
	color:var(--gold);
}
.scroll-to-target a svg {
	width:40px;
	height:40px;
}
.footer-menu li a {
	color: #fff;
	font-size: 16px;
	line-height: 25px;
	font-weight: 200;
	transition: all ease-in-out 350ms;
	text-transform:uppercase;
}
.footer-menu li {
	list-style:none;
}
/*End Footer*/

/*Navigation*/
#header {
	position: fixed;
	z-index: 10;
	top: 0;
	left: 0;
	right: 0;
	transition:all ease-in-out 350ms;
}
.main-menu-nav {
	display:flex;
	align-items:center;
}
.main-menu-nav li {
	list-style:none;
}
.main-menu-nav li a {
	padding-inline: 50px;
	position:relative;
	color: #fff;
	font-size: 16px;
	text-transform: uppercase;
	line-height:20px;
	transition:all ease-in-out 450ms;
}
.main-menu-nav li a::before {
	content:'';
	position:absolute;
	left:0;
	top:0;
	width:1px;
	height:100%;
	background-color:#fff;
	transition:all linear 450ms;
}
.main-menu-nav li a:hover::before,
.main-menu-nav li.current-menu-item a::before {
	height:50px;
}
.main-menu-nav li a:hover ,
.header-black .main-menu-nav li a:hover {
	color:var(--gold);
}
.main-menu-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	max-width: 1550px;
	margin-inline: auto;
}
.main-menu-wrapper {
	padding: 40px 20px;
	transition: all ease-in-out 350ms;
}
.header-scrolled {
	background-color:var(--text);
}
.header-scrolled .main-menu-wrapper {
	padding: 30px 20px;
}

.header-black .main-menu-nav li a {
	color:var(--black);
}
.header-black .main-menu-nav li a::before {
	background-color:#000;
}
.header-black.header-scrolled {
	background-color:#fff;
}


/*End Navigation*/

.hero-tit {
	position: absolute;
	bottom: 160px;
	font-size: 90px;
	line-height: 100px;
	color: #ffff;
	left: 185px;
	font-weight: 300;
	z-index: 1;
	display: flex;
	flex-direction: column;
	max-width: 1100px;
	width: 100%;
}
.hero-slider .owl-stage {
	display:flex;
}
.hero-single {
	height: 100%; 
	display: flex;
	justify-content: center;
	align-items: center;
}
.slider--control .right-arrow {
	position: absolute;
	right: 10%;
	z-index: 8;
	top: 50%;
	transform: translate(-10%, -50%);
	cursor:pointer;
}
.hero-image::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #0F1417;
	opacity: .1;
	z-index: 1;
}
.hero-slider .owl-dots .owl-dot {
	background-color:#ffff;
	width:60px;
	height:2px;
	min-width:50px;
	min-height:2px;
	transition: all ease-in-out 250ms;
}
.hero-slider .owl-dots .owl-dot.active {
	transform:scale(1.2);
	height:4px;
	min-height:4px;
}
.hero-slider .owl-dots .owl-dot span {
	display: none;
}
.hero-slider .owl-dots {
	display:flex;
	align-items:center;
	column-gap:20px;
	justify-content:center;
	margin-top:80px;
	position: absolute;
	bottom: 5%;
	right: 50%;
	transform: translate(50%, -5%);
}
.hero-image img,
.hero-image {
	height: 100svh;
	max-height: 1080px;
}
.hero-image {
	width:100%;
}
/*Homepage*/

.sec-tit {
	font-size: 65px;
	line-height: 70px;
	font-weight: 400;
}
.sec-sub {
	font-size: 14px;
	text-transform: uppercase;
	color: var(--gold);
	font-weight: 600;
}
.cta-btn {
	background-color: var(--gold);
	padding: 20px 40px;
	color: #fff;
	text-transform: uppercase;
	font-size: 12px;
	line-height: 16px;
	font-weight: 600;
	max-width: max-content;
	transition:all ease-in-out 450ms;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	margin-top:50px;
	cursor:pointer;
}
.cta-btn:hover {
	background-color:var(--black);
	color:#fff;
}

.home-container {
	max-width: 1550px;
	margin-inline: auto;
}
.tem-home-ab {
	padding-block:200px;
	background-color:#F1F3F9;
}

.tem-home-ab-in .cor-first {
	margin-bottom: 20px;
}

.tem-home-ab-in .colls .cor ,
.tem-home-ab-in .colls .col {
	flex:1;
}

.tem-home-ab-in .colls .cor {
	row-gap:20px;
	align-items:flex-start;
}


.tem-home-ab-in .colls .cor .text {
	max-width:530px;
	margin-top:20px;
}

.tem-home-proj {
	padding-block:100px;
}
.tem-home-proj-wrap-tit  {
	column-gap:50px;
}
.tem-home-proj-wrap-tit  .cta-btn {
	margin-top:0;
}
.tem-home-serv {
	padding-block:80px 100px;
	background-color:#F1F3F9;
}
.tem-home-serv-wrap .sec-tit {
	margin-top:50px;
	max-width:900px;
}
.serv-single {
	border:1px solid #E6D8CC;
	padding: 30px 40px;
	max-width: 500px;
}
.serv-single-wrap {
	column-gap:20px;
	margin-top:65px;
	justify-content:space-between;
	margin-inline: auto;
}
.serv-single .icon {
	margin-bottom:60px;
}
.serv-tit-single {
	margin-bottom: 30px;
	font-size: 36px;
	line-height: 48px;
	font-weight: 400;
	max-width: 250px;
}
.tem-home-serv-wrap  .cta-btn ,
.tem-home-blog-wrap .cta-btn {
	margin-inline:auto;
}
.tem-home-blog {
	padding-block:150px 100px;
}
.tem-home-blog-wrap  .sec-tit {
	max-width:600px;
}
.proj-text {
	color:#798996;
}
.proj-tit {
	font-size:16px;
	line-height:25px;
	color:var(--black);
	transition:all linear 400ms;
}
.proj-tit:hover {
	color:var(--gold);
}
.proj-single-tit-wrap {
	background-color: #fff;
	padding: 10px 20px;
	max-width: 300px;
	column-gap:20px;
	position: absolute;
	bottom: 30px;
	right: 20px;
	cursor:pointer;
}
.proj-single:hover .image img {
	transform:scale(1.07);
}
.proj-single .image  {
	height:480px;
	overflow:hidden;
	display:block;
	max-height:480px;
}
.proj-single .image img {
	width:100%;
	height:100%;
	transition:all linear 650ms;
}
.proj-slider-wrap {
	margin-top:60px;
}
.projects-slider .owl-stage {
	display:flex;
}

.projects-slider .owl-dots .owl-dot {
	background-color:#EFF2F8;
	flex:1;
	height:4px;
	min-height:4px;
	transition: all ease-in-out 450ms;
}
.projects-slider .owl-dots .owl-dot.active {
	background-color:var(--black);
	height:6px;
}
.projects-slider .owl-dots .owl-dot span {
	display: none;
}
.projects-slider .owl-dots {
	display:flex;
	align-items:center;
	justify-content: space-between;
	margin-top:50px;
}
.slider-fade {
	position: absolute;
	right: -48px;
	top: 0;
	height: 480px;
	z-index: 2;
	pointer-events:none;
	opacity:0.8;
}
.slider-fade  svg {
	max-height:480px;
}
.blog-single-wrapper {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	column-gap: 200px;
	row-gap: 40px;
}

.blog-single:nth-child(1) {
	grid-column: 1 / 2;
	grid-row: 1 / 3;
	max-width:600px;
}

.blog-single:nth-child(2),
.blog-single:nth-child(3) {
	grid-column: 2 / 3;
	max-width:500px;
}

.blog-single:nth-child(1) {
	margin-top:90px;
}
.blog-single:nth-child(2) {
	margin-top: -150px;
}
.blog-tit {
	font-size: 36px;
	line-height: 48px;
	font-weight: 400;
	margin-top:30px;
	color: var(--text);
	transition:all ease-in-out 450ms;
	cursor:pointer;
	margin-bottom: 20px;
}
.blog-tit:hover {
	color:var(--gold);
}
.blog-single:nth-child(1) .text {
	max-width: 550px;
}
.blog-single:nth-child(2) .text ,
.blog-single:nth-child(3) .text {
	max-width:400px;
}
.blog-single .text {
	margin-top:30px;
	color: var(--text);
}
.tem-home-blog-wrap .cta-btn {
	margin-top:100px;
}
.blog-single .image {
	transition:all ease-in-out 450ms;
}
.blog-single .image:hover {
	transform:scale(1.1);
}
.blog-single .image img {
	width:100%;
	height:100%;
}
.slider-counter {
	position:absolute;
	top:-20%;
	right:0;
	font-size: 18px;
	display: flex;
	column-gap: 10px;
}

.tem-home-video-wrap .bg-image {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit:cover;
}
.tem-home-video-wrap  .parallax-image {
	height:750px;
}
.tem-home-video-wrap .bg-image img {
	width:100%;
	height:100%;
	object-fit: cover;
}
.tem-home-video-wrap .play-now {
	position: absolute;
	top: 50%;
	right: 50%;
	transform: translate(50%, -50%);
	color: #fff;
	font-size: 60px;
	line-height: 70px;
	font-weight:400;
	display:flex;
	z-index:1;
}
.tem-home-video-wrap .play-now:hover {
	transform: translate(50%, -50%) scale(1.2);
	color:var(--gold);
}
.tem-home-video-wrap .image-video {
	overflow: hidden;
	height: 750px;
}
.tem-home-video-wrap .image-video img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.tem-home-video-wrap  .bg-image::before {
	content: '';
	background-color: #000;
	opacity: 0;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	transition: opacity 0.3s ease-in-out;
}
/*Video*/
.fixed--video-wrapper {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 999;
}
.fixed--video-inner {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100%;
	position: relative;
	width: 100%;
}
.fixed--video-inner .overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #000;
	cursor: pointer;
	opacity: .6;
}
.fixed--video-inner .iframe--wrapper {
	position: relative;
	z-index: 1;
	height: 750px;
	width: 100%;
	max-width: 70vw;
}
.fixed--video-inner .iframe--wrapper iframe {
	height: 100%;
	width: 100%;
	display: block;
}
.tem-home-video-wrap {
	height:750px;
}
/*End Homepage*/

/*Blog Page*/
body.page-template-template-blog {
	background-color:#F1F3F9;
}
.tem-blog {
	padding-block:150px;
	margin-top:100px;
}

.blog-sin-wrap {
	display:grid;
	grid-template-columns:repeat(2,1fr);
	column-gap:50px;
	row-gap:50px;
	padding-inline:100px;
}
.tem-blog-wrap .cor-first {
	margin-bottom: 50px;
}
.tem-blog-wrap .cta-btn {
	margin-inline:auto;
}
.blog-sin {
	max-width:600px;
}
.blog-sin .image img {
	width:100%;
	height:100%;
}
.blog-sin .image {
	transition:all ease-in-out 450ms;
	cursor:pointer;
	position: relative;
	height:450px;
}
.blog-sin .image:hover {
	transform:scale(1.05);
}

.blog-sin .image a::before {
	content: '';
	background-color: #000;
	opacity: 0;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	transition: opacity 0.3s ease-in-out;

}

.blog-sin .image a:hover::before {
	opacity: 0.4;
}


/*Projects Page*/
body.page-template-template-projects {
	background-color:#F1F3F9;
}
.tem-projects {
	padding-block:150px;
	margin-top:100px;
}
.projects-sin-wrap {
	display:grid;
	grid-template-columns: repeat(3, 1fr);
	column-gap: 20px;
	row-gap:50px;
	margin-top:50px;
}
/* .proj-sin {
	position:relative;
}
.proj-sin .image {
	height:500px;
	max-height:500px;
}
.proj-sin .image a img {
	width:100%;
	height:100%;
} */
.project-tit {
	font-size: 20px;
	line-height: 30px;
	font-weight: 400;
	background-color: #fff;
	padding: 10px 20px;
	max-width: 400px;
	position: absolute;
	bottom: 25px;
	right: 20px;
	cursor: pointer;
	color: var(--text);
}

/*Contact Page*/
body.page-template-template-contact #header ,
.contact-form-sec {
	background-color:#F1F3F9;
}
.tem-contact {
	padding-block:200px 150px;
	margin-top:100px;
	background-color:#fff;
}
.contact--tem--tit {
	display: flex;
	flex-direction: column;
	font-size: 64px;
	line-height: 70px;
	font-weight: 100;
	max-width: 500px;
	row-gap: 10px;
	letter-spacing:-2px;
}
.tem-contact-wrapper .colls {
	justify-content: space-between;
}
.forms-wrapper {
	column-gap:50px;
}
.socials--contact {
	margin-top: 150px;
}
.top-form-tit {
	font-size: 22px;
	line-height: 30px;
	color: var(--text);
	font-weight:700;
}
.forms-wrapper .col ,
.forms-wrapper .cor {
	row-gap: 40px;
	flex:1;
}
.forms-wrapper .col .text,
.forms-wrapper .cor .text {
	font-weight:700;
	max-width: 320px;
}
.top-form-email  span input {
	border:none;
	border-bottom:1px solid var(--black);
	padding:10px 0;
	outline: none;
	max-width: 100%;
	width: 100%;
	font-size:15px;
	line-height:20px;
}
.top-form-email span input::placeholder {
	color:var(--black);
} 
.forms-wrapper .col .wpcf7-response-output ,
.forms-wrapper .cor  .wpcf7-response-output {
	padding: 10px 10px;
	font-size: 12px;
	margin: 20px 0;
	max-width: 400px;
	color: var(--black);
	font-weight: 600;
}

.forms-wrapper .col .wpcf7 form.invalid .wpcf7-response-output ,
.forms-wrapper .cor  .wpcf7 form.invalid .wpcf7-response-output {
	border-color: red;
}

.forms-wrapper .col  .wpcf7-not-valid-tip ,
.forms-wrapper .cor .wpcf7-not-valid-tip ,
.row-contact .wpcf7-not-valid-tip {
	color:#dc3232;
	font-size:12px;
	margin-top:10px;
}
.contact-links {
	margin-top:20px;
	row-gap:10px;
}

.contact-links a {
	font-size: 18px;
	line-height: 25px;
	color: var(--black);
	font-weight: 700;
	text-decoration: none;
	border-bottom: 1px solid var(--black);
	transition: color 0.3s ease-in-out, border-bottom-color 0.3s ease-in-out, opacity 0.3s ease-in-out;
	max-width:max-content;
}

.contact-links a:hover {
	color: var(--gold);
	border-bottom-color: var(--gold);
	opacity: 1;
}
.row-tit {
	font-size: 22px;
	line-height: 30px;
	text-align: center;
	text-transform: uppercase;
	color:var(--text);
	margin-bottom: 50px;
	margin-top: 50px;
}
.main-contact-form-inner {
	max-width:900px;
}
.contact-form-sec {
	padding-block:100px;
}
.row-contact span input  ,
.row-contact span textarea {
	border: none;
	border-bottom: 1px solid var(--black);
	padding: 20px 30px;
	outline: none;
	font-size: 15px;
	line-height: 20px;
	max-width: 500px;
	background-color: unset;

}
.row-contact span input::placeholder {
	color:var(--text);
}
.row-contact span textarea {
	height:80px;
	outline: none;
	resize: none;
}
.main-contact-form-inner .cta-btn--wrapper {
	margin-top: 40px;
	display: flex;
	justify-content: flex-end;
}
.row-contact-btn-box button svg {
	width:20px;
	height:20px;
}
.contact-submit {
	background-color: var(--gold);
	border: none;
	color: #fff;
	font-size: 18px;
	line-height: 20px;
	text-transform: uppercase;
	padding: 15px 30px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	column-gap: 15px;
	cursor:pointer;
	transition:all ease-in-out 350ms;
}
.contact-submit:hover {
	background-color:var(--text);
}
.contact--form form .wpcf7-response-output {
	margin-inline: auto;
	margin-top: 50px;
	max-width:500px;
	padding: 10px 10px;
	font-size: 12px;
	color: var(--black);
	font-weight: 600;
	border-color:red!important;
}


.map {
	height:500px;
}
.map iframe {
	width:100%;
	height:100%;
}

/*About Page*/
body.page-template-template-about {
	background-color:#F1F3F9;
}
.tem-lab-sec {
	padding-block:150px;
	margin-top:100px;
}
.tem-lab-wrap  .colls {
	justify-content:space-between;
}
.tem-lab-wrap  .colls .cor {
	max-width:750px;
}
.tem-lab-wrap  .colls .cor .sec-tit {
	margin-bottom:50px;
}
.tem-lab-wrap  .colls .cor .image {
	margin-top:80px;
}
.tem-lab-wrap  .colls .cor .image {
	height: 680px;
	width: 600px;
}
.tem-lab-wrap  .colls .cor .image img ,
.image-team img ,
.tem-lab-extra-wrap .colls .cor .image img ,
.tem-lab-services-wrap .image img {
	width:100%;
	height:100%;
	object-fit:cover;
}
.tem-lab-team {
	background-color:#fff;
	padding-block:100px;
}
.lab-team-tit-wrap  {
	justify-content:space-between;
}
.lab-team-tit-wrap .text {
	max-width:600px;
}
.tem-lab-team .parallax-image {
	margin-top: 100px;
}
.image-team {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.tem-lab-extra {
	padding-block:150px;
}
.tem-lab-extra-wrap .colls .col {
	max-width:600px;
}
.tem-lab-extra-wrap .colls .col .icon svg {
	width:70px;
	height:70px;
}
.tem-lab-extra-wrap .colls .cor .image {
	max-width:600px;
	height:750px;
}
.tem-lab-extra-wrap .colls {
	column-gap:100px;
}
.tem-lab-extra-wrap .colls .col .sec-tit {
	font-size: 50px;
	line-height: 60px;
	font-weight: 300;
	margin-top: 50px;
	color: var(--black);
}
.tem-lab-extra-wrap .colls .col .text {
	margin-top: 50px;
}
.tem-lab-extra-wrap .colls .col .text p {
	font-size: 32px;
	line-height: 40px;
	font-weight: 300;
}
.text-mini {
	display: flex;
	flex-direction: column;
	margin-top: 50px;
	color: var(--black);
	font-weight: 600;
}
.text-mini  span {
	font-weight: 300;
}
.tem-lab-services-wrap {
	height:750px;
	clip-path: inset(0);
}
.tem-lab-services-wrap .image {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.tem-lab-services-wrap .image::before {
	content:'';
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
	background-color:#000;
	opacity:.2;
}
.tem-lab-services-wrap .sec-tit  {
	position: absolute;
	z-index: 1;
	bottom: 30%;
	left: 20%;
	color: #fff;
}
.tem-lab-services-wrap .cta-btn {
	position:absolute;
	z-index:1;
	bottom:15%;
	left:20%;
}
.tem-lab-strategy {
	background-color:var(--text);
	padding-block:150px;
}
.tem-lab-strategy-wrap .colls {
	justify-content:space-between;
	margin-bottom:90px;
}
.tem-lab-strategy-wrap .colls .col .sec-tit {
	color: #fff;
	letter-spacing: -2px;
	font-weight: 300;
	max-width: 600px;
}
.tem-lab-strategy-wrap .colls .cor .text {
	max-width:700px;
	color:#fff;
}
.tem-lab-strategy-wrap .colls .cor .text p {
	font-size:24px;
	line-height:30px;
}
.strat-single {
	background-color: #F1F3F9;
	height: 230px;
	width: 100%;
	padding: 40px;
}
.strategy-wrap-single {
	display:grid;
	grid-template-columns:repeat(3,1fr);
	column-gap:20px;
}
.strat-tit-sin {
	font-size: 32px;
	letter-spacing: -2px;
	font-weight:300;
	line-height:40px;
	margin-bottom: 50px;
}
.strat-single .text p {
	font-weight:300;
	font-size:18px;
}
.tem-lab-awards {
	padding-top:150px;
}
.tem-lab-awards-wrap .sec-tit {
	color: #fff;
	margin-bottom: 80px;
	font-weight: 300;
}
.rpt-tit {
	font-size: 20px;
	font-weight: 300;
	color: #fff;
	line-height: 25px;
}
.awards-rpt-tit {
	max-width: 1200px;
	padding-right: 50px;
}
.awards-single-rpt {
	margin-top:50px;

}
.aw-sin-tit {
	font-size: 24px;
	font-weight: 300;
	color: #445461;
	line-height: 35px;
}
.awards-sin-inner {
	border-top: 1px solid #fff;
	border-bottom: 1px solid #fff;
	padding-block: 20px;
}

.awards-rpt-wrapper {
	width: 100%;
	margin: 50px auto;
}

.aw-icon  > span svg {
	height:100%;
	width:100%;
}
.aw-icon {
	border-radius: 50%;
	width: 40px;
	height: 40px;
	cursor: pointer;
	justify-content: center;
	align-items: center;
	display: flex;
}
.aw-icon .plus {
	transform: translate(4px, 3px);
}
.aw-icon:not(.activefaq) .plus,
.aw-icon.activefaq .minus {
	display: flex;
}
.aw-icon:not(.activefaq) .minus,
.aw-icon.activefaq .plus {
	display: none;
}
.awards-sin-inner {
	display: flex;
	flex-direction: column; /* Ensures that elements are stacked vertically */
}

.awards-sin-top {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.aw-text {
	width: 100%;
	padding: 20px 10px;
	display: none; /* Initially hidden */
	color: #fff;
}
.aw-text p {
	font-size: 18px;
	line-height: 24px;
}

/*Services Page*/
.tem-serv{
	padding-block:150px;
	margin-top:100px;
}
.tem-serv-wrapper .cor-first {
	margin-bottom:100px;
}
.gal-wrap {
	margin-top:50px;
}
.gallery {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	column-gap:20px;
}
.gallery .owl-stage {
	display:flex;
}
.serv-rpt-single:nth-child(2) .gallery {
	grid-template-columns:repeat(2,1fr)!important;
}
.serv-rpt-single {
	margin-bottom:150px;
}
.gallery .image {
	height:580px;
}
.gallery .image img {
	width:100%;
	height:100%;
	object-fit:cover;
}
.serv-rpt-single .colls .col .sec-tit {
	max-width:500px;
}
.serv-rpt-single .colls .cor .text {
	max-width: 600px;
}

/*Blog Single*/
body.post-template-default.single-post {
	background-color:#f7f7f7;
}
.single-blog-sec {
	padding-block:150px;
	margin-top:100px;
}
.parallax-image {
	height: 900px;
	clip-path: inset(0);
}
.parallax-image .image img{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit:cover;
}
.tem-lab-services-wrap .image img {
	width:100%;
	height:100%;
}
.single-blog-sec-wrapper .colls .col .sec-tit ,
.single-blog-sec-wrapper .colls .cor .text {
	max-width:600px;
}
.single-blog-extra-wrapper .text ,
.single-blog-extra-wrapper .text-bottom {
	padding-block:100px;
}
.single-blog-extra-wrapper .colls .col .image-left img ,
.single-blog-extra-wrapper .colls .cor .image-right img {
	width:100%;
	height:100%;
	object-fit:cover;
}
.single-blog-extra-wrapper .colls .col .image-left {
	max-width:900px;
	height:680px;
}
.single-blog-extra-wrapper .colls .cor .image-right {
	height:680px;
	max-width:600px;
}

.blog-single-read {
	max-width:600px;
}
.blog-single-read .image img {
	width: 100%;
	height: 100%;
}
.read-more-blog-wrap .sec-tit {
	margin-bottom:50px;
}
.read-more-blog-wrap {
	max-width:1350px;
	margin-inline:auto;
}
.blog-single-read .image a::before {
	content: '';
	background-color: #000;
	opacity: 0;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	transition: opacity 0.3s ease-in-out;
}
.blog-single-read .image a:hover::before {
	opacity: 0.4;
}
.blog-single-read .image {
	transition: all ease-in-out 450ms;
	cursor: pointer;
	position: relative;
	height: 450px;
}
.read-more-blog {
	padding-block:100px 150px;
	background-color:#fff;
}
/*Loading*/

#loading {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 100;
}
#loading > div > img {
	width: 350px;
	height: 183px;
	position:relative;
	z-index:1;
	transition:all linear 1.5s;
	opacity:0;
}
#loading > div > span {
	transition:all linear 1s;
}
#loading > div > span {
	position:absolute;
	height:51vh;
	width:100vw;
	left:0;
	background-color:#000;
}
#loading > div > span.top {
	top:0;
}
#loading > div > span.bottom{
	bottom:0;
}
#loading > div > span:not(.active) {
	height:0;
}
#loading > div > img.active {
	opacity:1;
}

/* End Loading */

/* Single Projects */
body.single-projects {
	background-color:#F1F3F9;
}
body.single-projects .tem-home-proj {
	background-color:#fff;
}

.single-projects-gallery-wrapper {
	max-width:1800px;
	margin-inline:auto;
}

.single-projects-gallery {
	padding-block:100px;
}

.single-projects-tem {
	padding-block:150px;
	margin-top:100px;
}
.single-projects-tem-wrap .colls .col ,
.single-projects-tem-wrap .colls .cor {
	max-width:600px;
}
.single-projects-tem-wrap .colls .cor .image {
	margin-top:50px;
}
.single-projects-tem-wrap .colls .cor .image img {
	width:100%;
	height:100%;
	object-fit:cover;
}
.hero-image-projects-single img {
	width:100%;
	height:100%;
}
.hero-overlay {
	position:absolute;
	bottom:0;
	left:0;
}
.facts-sec {
	position: absolute;
	bottom: 5%;
	left: 50%;
	transform: translate(-50%, -5%);
}
.facts-rpt-wrap {
	display:grid;
	grid-template-columns:repeat(4,1fr);
	row-gap:20px;
	column-gap:30px;
}
.sec-fact-tit {
	font-size: 30px;
	line-height: 40px;
	text-transform: uppercase;
	color: #ECE0DF;
	font-weight:300;
	display: flex;
	align-items: center;
	column-gap: 10px;
}
.sec-fact-tit::before {
	content: '';
	width: 8px;
	height: 8px;
	min-width: 8px;
	min-height: 8px;
	background-color: #fff;
	display: block;
	border-radius:
		50%;
}
.sec-fact-tit-wrap {
	margin-bottom:50px;
	column-gap: 10px;
}
.fact-tit {
	font-size: 20px;
	color: #ECE0DF;
	line-height: 30px;
	text-transform: uppercase;
	font-weight:300;
}
.facts-sec-wrap {
	max-width:1280px;
	margin-inline:auto;
}
.facts-single {
	padding: 10px 5px;
	border-top: 1px solid #ECE0DF;
	width: 300px;
}
.facts-single .text {
	font-size: 18px;
	color: #ECE0DF;
	line-height: 28px;
	font-weight: 300;
}

