/* Fonts */
:root {
	--font-default: "Open Sans", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
	--font-primary: "Roboto", sans-serif;
	--font-secondary: "Work Sans", sans-serif;
}

/* Colors */
:root {
	--color-default: #364d59;
	--color-primary: #feb900;
	--color-secondary: #143e65;
	--Section-Color: #f6f6f6;
}

/* Smooth scroll behavior */
:root {
	scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: var(--font-default);
  color: var(--color-default);
  overflow-x: hidden;
}

a {
  color: var(--color-primary);
  text-decoration: none;
}

a:hover {
  color: #ffc732;
  text-decoration: none;
}

span {
	color: var(--color-primary);
	font-weight: bold;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-primary);
}

/*--------------------------------------------------------------
# Scroll top button
--------------------------------------------------------------*/
.scroll-top {
	position: fixed;
	visibility: hidden;
	opacity: 0;
	right: 15px;
	bottom: 15px;
	z-index: 99999;
	background: var(--color-primary);
	width: 40px;
	height: 40px;
	border-radius: 4px;
	transition: all 0.4s;
}

.scroll-top i {
	font-size: 24px;
	color: var(--color-secondary);
	line-height: 0;
}

.scroll-top:hover {
	background: #ffc732;
	color: #fff;
}

.scroll-top.active {
	visibility: visible;
	opacity: 1;
}


/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: #fff;
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #fff;
  border-color: var(--color-primary) transparent var(--color-primary) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}




/*------- Start Hero Section  ------*/
#hero {
	width: 100%;
	height: 100dvh;
	background: url("/assets/img/hero-carousel/hero-carousel-3.jpg");
	background-size: cover;
	position: relative;
	top: 0;
	bottom: 0;
	/* margin-bottom: -76px; */
}

#hero:before {
	content: "";
	background: rgb(0, 0, 0);
	background: rgb(0, 0, 0);
	background: rgb(0, 0, 0);
	background: rgb(0, 0, 0);
	background: linear-gradient(0deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.6174496686965294) 50%, rgba(0, 0, 0, 0) 87%);
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
}

#hero .hero-container {
	position: absolute;
	top: 0;
	bottom: 0;
}

#hero .hero-text {
	color: #fff;
	text-transform: uppercase;
	font-weight: bold;
}

#hero .hero-container .hero-desc {
	color: #fff;
}

#hero .hero-container span {
	color: var(--color-primary);
	/* font-weight: bold; */
	text-shadow: rgb(0, 0, 0) 2px 0px 0px, rgb(0, 0, 0) 1.75517px 0.958851px 0px, rgb(0, 0, 0) 1.0806px 1.68294px 0px, rgb(0, 0, 0) 0.141474px 1.99499px 0px, rgb(0, 0, 0) -0.832294px 1.81859px 0px, rgb(0, 0, 0) -1.60229px 1.19694px 0px, rgb(0, 0, 0) -1.97998px 0.28224px 0px, rgb(0, 0, 0) -1.87291px -0.701566px 0px, rgb(0, 0, 0) -1.30729px -1.5136px 0px, rgb(0, 0, 0) -0.421592px -1.95506px 0px, rgb(0, 0, 0) 0.567324px -1.91785px 0px, rgb(0, 0, 0) 1.41734px -1.41108px 0px, rgb(0, 0, 0) 1.92034px -0.558831px 0px;
}

#hero .hero-container button {
	color: var(--color-primary);
}

#hero .hero-container button:hover {
	background-color: var(--color-primary);
	color: var(--color-default);
}

/*------- END Hero Section  ------*/




/* ====================    NavBar  =================== */
#navigation {
	background-color: var(--color-primary);
	z-index: 100;
	width: 100%;
	position: fixed;
}

#navigation .logo {
	filter: drop-shadow(-1px -1px 2px #000000);
	cursor: default;
}

#navigation .logotext {
	color: var(--color-secondary);
	cursor: default;
}

#navigation .navbar-brand {
	font-family: Impact, "Haettenschweiler", 'Arial Narrow Bold', sans-serif;
	font-size: clamp(1.25rem, 1.1492rem + 0.6452vw, 1.875rem);
}

#navigation .nav-item {
	font-size: clamp(0.8125rem, -0.3125rem + 1.5vw, 1rem);
		border-radius: 5px;
}

#navigation .nav-item:hover {
	background-color: var(--color-secondary);
	/* color: var(--color-primary); */
}

#navigation .nav-item a {
	color: var(--color-secondary);
	font-weight: bold;
	display: block;

}

#navigation .nav-item a:hover {
	color: #fff;
	/* color: var(--color-primary); */
}

#navigation .whatsapp {
	color: #128C7E;
}

@media only screen and (max-width: 480px) {
	.brand-text {
		display: none;
	}
}

/* ------------------       END NavBar Section          --------------------- */




/* =============     Start GET A Quote    =============== */
#quote {
	background-color: var(--Section-Color);
	color: var(--color-default);
}
/* =============     END  GET A Quote    =============== */




/* ===============  Services ============= */
.services {
	background-color: #143e65;
}

/* =============== END Services ============= */



/* ===============  Projects ============= */
#projects {
background-color: #ffffff;
		/* background-color: var(--Section-Color); */
}

/* =============== END Projects ============= */





/* ===============    START Gallery     ================= */
#Gallery{
	background-color: #ffffff;
	/* background-color: var(--Section-Color); */
}
.img-hover {
	transition: 0.5s;
	/* width: 250px; */

}

.img-hover:hover {
	transform: scale(1.30);
	

}
.gallery-box{
	border: 2px solid var(--color-secondary);
	overflow: hidden;
}
/* ===============    END Gallery     ================= */




/* ==========   About Company  ======= */
#about_company {
	background-color: var(--Section-Color);
	/* background-color: #ffffff; */
}

/* .company-container-box button {
	background-color: var(--color-primary);
	color: var(--color-secondary)
} */

.company-container-box button:hover {
	background-color: var(--color-primary);
	color: var(--color-default) !important;
}

/* ==========  END About Company  ======= */




/* ============    FAQ    =========== */
#faqs {
	background-color: var(--Section-Color);
	color: var(--color-default);
}
/* ============  END  FAQ    =========== */




/* =========     Footer   ========= */
#footer h2 {
	color: var(--color-primary);
}

#footer a {
	color: rgb(255, 255, 255);
	text-decoration: none;
}

#footer a:hover {
	color: var(--color-primary);
	text-decoration: none;
}
/* =========     Footer   ========= */









/* Media Queries */

