/******************************************************************
  Theme Name: Staging
  Description: Staging bootstrap tamplate
  Author: Colorib
  Author URI: https://www.colorib.com//
  Version: 1.0
  Created: Colorib
******************************************************************/

:root {
	--main-color: #dfa667;
	--main-shade-color: #ebc9a3;
	--text-color: #303030;
	--default-color: #707070;
	--white-color: #f0f0f0;
	--border-color: #f8ede0;
	--font-default: "Saira", sans-serif;
	--font-techno: "Aldrich", sans-serif;
}

html {
	scroll-behavior: smooth;
}

html,
body {
	height: 100%;
	font-family: var(--font-default);
	-webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0;
	color: var(--text-color);
	font-weight: 400;
}

h1 {
	font-size: 70px;
}

h2 {
	font-size: 36px;
}

h3 {
	font-size: 30px;
}

h4 {
	font-size: 24px;
}

h5 {
	font-size: 18px;
}

h6 {
	font-size: 16px;
}

p {
	line-height: 26px;
	color: var(--text-color);
	font-size: 16px;
}

a {
	color: var(--main-color);
	text-decoration: none;
}

a:hover {
	color: var(--main-shade-color);
}

input:focus,
select:focus,
button:focus,
textarea:focus {
	outline: none;
}

ul,
ol {
	padding: 0;
	margin: 0;
}

section {
	padding-top: 50px;
	padding-bottom: 50px;
}

.section-title {
	margin-bottom: 40px;
}

.section-title span {
	display: block;
	margin-bottom: 12px;
	color: var(--main-color);
	text-transform: uppercase;
	letter-spacing: 1px;
	font-size: 16px;
	font-weight: bold;
}

.section-title h2 {
	line-height: 50px;
	text-transform: uppercase;
	font-size: 42px;
}

.set-bg {
	background-repeat: no-repeat;
	background-position: top center;
	background-size: cover;
}

.spad {
	padding-top: 100px;
	padding-bottom: 70px;
	border-bottom: 1px solid rgba(183, 183, 183, 0.2);
}

#preloader {
	position: fixed;
	z-index: 9999;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: white;
}

.loader {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 40px;
	height: 40px;
	margin-top: -13px;
	margin-left: -13px;
	border-radius: 60px;
	-webkit-animation: loader 0.8s linear infinite;
	animation: loader 0.8s linear infinite;
}

@keyframes loader {
	0% {
		border: 4px solid #f44336;
		border-left-color: transparent;
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}

	50% {
		border: 4px solid #673ab7;
		border-left-color: transparent;
		-webkit-transform: rotate(180deg);
		transform: rotate(180deg);
	}

	100% {
		border: 4px solid #f44336;
		border-left-color: transparent;
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

@-webkit-keyframes loader {
	0% {
		border: 4px solid #f44336;
		border-left-color: transparent;
		-webkit-transform: rotate(0deg);
	}

	50% {
		border: 4px solid #673ab7;
		border-left-color: transparent;
		-webkit-transform: rotate(180deg);
	}

	100% {
		border: 4px solid #f44336;
		border-left-color: transparent;
		-webkit-transform: rotate(360deg);
	}
}

.navbar {
	transition: background-color 0.3s ease;
}

.nav-link {
	transition: color 0.2s;
	font-family: var(--font-techno);
	font-size: 18px;
	font-weight: 500;
}

.nav-link:hover {
	color: var(--main-color);
}

.hero {
	position: relative;
	width: 100%;
	padding-bottom: 0;
}

.hero-scroll {
	display: flex;
	overflow-x: auto !important;
	scroll-snap-type: x mandatory;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: thin;
	scrollbar-color: rgba(255, 255, 255, 0.3) transparent;
}

.hero-scroll::-webkit-scrollbar {
	height: 6px;
}

.hero-scroll::-webkit-scrollbar-thumb {
	border-radius: 10px;
	background: rgba(255, 255, 255, 0.3);
}

.hero-item {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100vw;
	height: 100vh;
	background-position: center;
	background-size: cover;
	transition: transform 0.4s ease;
	text-align: center;
	scroll-snap-align: start;
}

.hero-item::before {
	position: absolute;
	z-index: 1;
	background: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.35));
	content: '';
	inset: 0;
}

.hero-text {
	position: relative;
	z-index: 2;
	color: #fff;
}

.hero-text h2 {
	margin-bottom: 1.5rem;
	color: var(--white-color);
	font-family: var(--font-techno);
	font-size: 3rem;
	font-variant: small-caps;
	font-weight: 700;
}

.hero-text .btn {
	padding: 0.75rem 1.5rem;
	border: none;
	background-color: #dfa667;
	transition: background-color 0.3s ease, transform 0.3s ease;
	font-weight: 600;
}

.hero-text .btn:hover {
	background-color: #c98b4f;
}

.hero-arrow {
	position: absolute;
	z-index: 10;
	top: 50%;
	width: 48px;
	height: 48px;
	border: none;
	border-radius: 50%;
	color: white;
	background: rgba(0, 0, 0, 0.4);
	cursor: pointer;
	transition: background 0.3s ease;
	transform: translateY(-50%);
	font-size: 1.8rem;
}

.hero-arrow:hover {
	background-color: var(--default-color);
}

.hero-arrow.left {
	left: 20px;
}

.hero-arrow.right {
	right: 20px;
}

.footer-section {
	/*padding-top: 90px;*/
	background-image: url(/images/footer-bg.jpg);
}

.footer-section p {
	color: var(--white-color);
}

.footer-section .menulinks a,
.footer-section .menu-social a {
	display: inline;
	padding-right: 5px;
	color: var(--white-color);
	transition: color 0.3s ease;
}

.footer-section .menu-social a {
	font-size: 1.2rem;
}

.footer-section .menu-social a:hover {
	color: var(--main-color);
}

.footer-section .copy p {
	color: var(--default-color);
}

.about-text .section-title {
	margin-bottom: 35px;
}

.services-item {
	margin-bottom: 30px;
}

.services-item h4 {
	margin-top: 35px;
	margin-bottom: 22px;
	color: #111111;
	text-transform: uppercase;
}

.services-item p {
	margin-bottom: 12px;
}

.services-item ul li,
.service-block ul li {
	margin-left: 15px;
}

.services-item ul li:last-child,
.service-block ul li:last-child {
	margin-bottom: 10px;
}

.services-item i,
.service-block i {
	color: #dfa667;
	transition: transform 0.3s ease, color 0.3s ease;
}

.services-item i:hover,
.service-block i:hover {
	color: #c98b4f;
	transform: scale(1.1);
}

.service-title {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 3.5rem;
	line-height: 1.2;
	text-align: center;
}

.icon-wrapper {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 80px;
	height: 80px;
	border-radius: 50%;
	background-color: rgba(223, 166, 103, 0.1);
}

.service-image {
	position: relative;
	overflow: hidden;
	width: 100%;
	border-radius: 0.75rem;
	aspect-ratio: 16 / 9;
}

.service-image img {
	width: 100%;
	height: 100%;
	transition: transform 0.4s ease;
	object-fit: cover;
}

.services-item:hover .service-image img {
	transform: scale(1.05);
}

.counter .counter-content {
	padding-top: 0;
	margin-top: 0;
	border: none;
}

.counter-content {
	padding-top: 70px;
	margin-top: 40px;
	border-top: 1px solid rgba(183, 183, 183, 0.2);
}

.counter-item {
	display: flex;
	align-items: center;
	flex-direction: column;
	justify-content: center;
	height: 100%;
	text-align: center;
}

.counter-item-number {
	float: left;
}

.counter-item-number p {
	line-height: 50px;
	color: #dfa667;
	font-size: 60px;
}

.counter-item-text {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 3.5rem;
}

.counter-item-text h5 {
	line-height: 24px;
	color: #111111;
	text-transform: uppercase;
}

.clients {
	padding-top: 120px;
	padding-bottom: 60px;
}

.clients img {
	margin-bottom: 60px;
}

.project-item {
	height: 250px;
	background-position: center;
	background-size: cover;
	transition: transform 0.4s ease;
}

.project-item h5 {
	color: var(--white-color);
}

.project-item:hover {
	transform: scale(1.05);
}

.overlay {
	position: absolute;
	opacity: 0;
	background: rgba(0, 0, 0, 0.6);
	transition: opacity 0.4s ease;
	inset: 0;
}

.project-item:hover .overlay {
	opacity: 1;
}

.btn-primary,
button.btn-primary {
	border: none !important;
	color: var(--text-color) !important;
	background-color: var(--main-color) !important;
	transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn-primary:hover,
button.btn-primary:hover {
	color: var(--text-color) !important;
	background-color: var(--main-shade-color) !important;
}

.callto-section {
	width: 100%;
	background: url('/images/call-bg.jpg') center/cover no-repeat;
}

.callto-section h2 {
	color: var(--white-color);
}

.callto-section p {
	color: var(--white-color);
}

.callto-section::before {
	position: absolute;
	content: '';
	inset: 0;
}

.callto-text {
	position: relative;
	z-index: 1;
}

.brands-section {
	overflow-x: hidden;
	background-color: #f8f9fa;
}

.brand-logo {
	max-width: 100%;
	max-height: 50px;
	opacity: 0.7;
	transition: all 0.3s ease;
	filter: grayscale(100%);
}

.brand-logo:hover {
	opacity: 1;
	filter: grayscale(0%);
}

.logo {
	width: 100%;
	max-width: 300px;
	height: auto;
	margin: 0 auto;
}

.gallery-item {
	cursor: pointer;
	transition: transform 0.3s ease;
}

.gallery-item:hover {
	transform: scale(1.03);
}

.gallery-thumb {
	overflow: hidden;
	width: 100%;
	aspect-ratio: 4 / 3;
}

.gallery-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.lightbox-overlay {
	position: fixed;
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
	background: rgba(0, 0, 0, 0.85);
	inset: 0;
}

.lightbox-image {
	max-width: 90%;
	max-height: 80vh;
	border-radius: 10px;
	box-shadow: 0 0 25px rgba(0, 0, 0, 0.6);
}

.lightbox-close {
	position: absolute;
	top: 20px;
	right: 30px;
	border: none;
	color: #fff;
	background: none;
	cursor: pointer;
	font-size: 3rem;
}

.lightbox-arrow {
	position: absolute;
	top: 50%;
	width: 60px;
	height: 60px;
	border: none;
	border-radius: 50%;
	color: #fff;
	background: rgba(0, 0, 0, 0.4);
	cursor: pointer;
	transition: background 0.3s;
	transform: translateY(-50%);
	font-size: 2.3rem;
}

.lightbox-arrow:hover {
	background: rgba(0, 0, 0, 0.8);
}

.lightbox-arrow.left {
	left: 30px;
}

.lightbox-arrow.right {
	right: 30px;
}

.lazy-img {
	transition: filter 0.4s ease;
	filter: blur(5px);
}

.lazy-img.loaded {
	filter: blur(0);
}

.map {
	height: 460px;
	margin-top: 40px;
	margin-bottom: 75px;
	-webkit-box-shadow: 0px 3px 15px rgba(0, 59, 85, 0.1);
	box-shadow: 0px 3px 15px rgba(0, 59, 85, 0.1);
}

.map iframe {
	width: 100%;
}

.contact-section .is-invalid {
	border-color: #dc3545;
}

.contact-section .invalid-feedback {
	font-size: 14px;
}

.map-container {
	min-height: 400px;
}

.cookie-banner {
	z-index: 1050;
}

.privacy-section p,
.cookies-section p {
	margin-top: 6px;
	margin-bottom: 6px;
}

@media (max-width: 768px) {
	.hero-arrow.left {
		left: 10px;
	}

	.hero-arrow.right {
		right: 10px;
	}

	.hero-text h2 {
		margin: 20% 40px;
		font-size: 28px;
	}

	.section-title h2 {
		font-size: 36px;
	}

	.counter-item-number {
		float: none;
		margin: auto;
	}

	.brand-grid {
		display: flex;
		align-items: center;
		flex-direction: column;
	}

	.brand-grid>div {
		width: 100%;
		max-width: 200px;
	}

	.brand-logo {
		max-height: 40px;
		margin: 10px 0;
	}

	.footer-section {
		text-align: center;
	}

	.footer-section .menu-social {
		float: none;
		margin-top: 10px;
	}
}