/*
==============================================
Praise Pro Wash
============================================== */

:root {
	/* Colors */
	--blue1: #00B2F0;
	--blue2: #1169A4;
	--blue3: #002654;
	--white: #FFFFFF;
	--divider: #CBDFE7;
	--text: #3B6F85;

	--delay: 0.05s;

	interpolate-size: allow-keywords;
}

/*
==============================================
General Styles
============================================== */

*:not(i) {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
  -moz-osx-font-smoothing: grayscale;
   -webkit-font-smoothing: antialiased;
  font-family: "DM Sans", serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 400;
  color: var(--text);
  font-size: 16px;
}

/* Body */
html, body {
    width: 100%;
    margin:0px !important;
    font-size: 62.5%;
    background-color: var(--black);
}
html { scroll-behavior: smooth; }
body {
	position: relative;
	min-height: 100vh;
}

.preload * {
  -webkit-transition: none;
  -moz-transition: none;
  -ms-transition: none;
  -o-transition: none;
}

/* Text styles */
h1, h1 * {
	font-family: "Poppins", sans-serif;
	font-weight: 700;
	font-style: normal;
	color: var(--blue3);
	font-size: 84px;
	line-height: 100px;
}

h2, h2 * {
	font-family: "Poppins", sans-serif;
	font-weight: 700;
	font-style: normal;
	color: var(--blue3);
	font-size: 64px;
	margin-bottom: 20px;
}

h3, h3 * {
	font-family: "Poppins", sans-serif;
	font-weight: 700;
	font-style: normal;
	color: var(--blue1);
	font-size: 24px;
}
h4, h4 * {
	font-family: "Poppins", sans-serif;
	font-weight: 600;
	font-style: normal;
	color: var(--blue3);
	font-size: 24px;
	margin-bottom: 10px;
}
h5, h5 * {
	font-family: "DM Sans", sans-serif;
  	font-optical-sizing: auto;
  	font-weight: 400;
  	font-style: normal;
  	font-size: 20px;
}

p {
	font-family: "DM Sans", sans-serif;
  	font-optical-sizing: auto;
  	font-weight: 400;
  	font-style: normal;
  	font-size: 16px;
  	margin-bottom: 20px;
}

a, a:link, a:visited { text-decoration: none; }
p a, p a:link, p a:visited { text-decoration: underline; }

@media (max-width: 800px) {
	h1 { font-size: 44px; line-height: 50px }
	h2 { font-size: 40px }
	h3 { font-size: 20px }
}

img {
	border: none;
}

.resp-img {
	width: 100%;
}
.object-fit {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	object-fit: cover;
	object-position: center;
}
input {
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
}


input[type="checkbox"]:focus{
	outline:0;
}

.button {
	display: inline-block;
	text-transform: uppercase;
	font-family: "Poppins", sans-serif;
	font-weight: 600;
	font-style: normal;
	color: var(--blue1);
	font-size: 20px;
	border-radius: 5px;
	white-space: nowrap;
	background-color: var(--blue3);
	padding: 14px 25px;
}

/*
==============================================
Header
============================================== */

header {
	position: sticky;
	display: block;
	top: 0;
	background-color: var(--white);
	width: 100%;
	padding: 25px 40px;
	border-bottom: 1px solid var(--divider);
	z-index: 3;
}
nav {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-direction: row-reverse;
}
nav ul {
	display: inline;
}
nav ul li {
	display: inline;
	margin-right: 15px;
}
nav ul li a { color: var(--blue2) }
#mobile-nav-container {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-direction: row-reverse;
}
#mobile-nav-icon { display: none; }
#mobile-nav { display:none }
#nav-contact {
	text-align: right;
}
#nav-logo {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
}
#nav-logo img {
	height: 80px;
	width: auto;
}
#nav-phone { display:none }

@media (max-width: 800px) {
	header, nav {
		height: 116px;
	}
	header { padding: 0 20px }
	
	#mobile-nav-icon {
		display: block;
		width: 40px;
		height: 40px;
		background-color: var(--blue3);
		border-radius: 5px;
		position: relative;
	}
	#mobile-nav-icon div {
		pointer-events: none;
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%,-50%);
		width: 14px;
		height: 10px;
		border-top: 2px solid var(--white);
		border-bottom: 2px solid var(--white);
		transition: all 0.3s ease-in-out;
	}
	#mobile-nav-icon:before {
		z-index: 3;
		content: '';
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%,-50%);
		height: 2px;
		width: 14px;
		background-color: var(--white);
		transition: all 0.3s ease-in-out;
	}
	#mobile-nav-icon:after {
		z-index: 3;
		content: '';
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%,-50%);
		height: 2px;
		width: 14px;
		background-color: var(--white);
		transition: all 0.3s ease-in-out;
	}

	nav { flex-direction: row }
	#mobile-nav-container {
		position: fixed;
		display: block;
		pointer-events: none;
		top: 116px;
		left: 0;
		width: 100%;
		padding: 10px 20px 20px;
		border-bottom: 1px solid var(--divider);
		background-color: var(--white);
		opacity: 0;
		transition: all 0.3s ease-in-out;
		transform: translateY(-10px);
	}
	#mobile-nav:checked ~ #mobile-nav-container { pointer-events: all; opacity:1; transform: translateY(0); }
	#mobile-nav:checked + #mobile-nav-icon div { opacity:0 }
	#mobile-nav:checked + #mobile-nav-icon:before { transform: translate(-50%, -50%) rotateZ(45deg); }
	#mobile-nav:checked + #mobile-nav-icon:after { transform: translate(-50%, -50%) rotateZ(-45deg); }
	nav ul {
		position: relative;
		top: 10px;
		left: 0;
		width: 100%;
		display: flex;
		justify-content: space-around;
		gap: 20px;
		padding: ;
	}
	nav ul li {
		display: block;
		background-color: var(--blue3);
		width: 100%;
		text-align: center;
		padding: 5px 5px;
		margin-right: 0;
		border-radius: 5px;
	}
	nav ul li a {
		display:block;
		width: 100%;
		font-family: "DM Sans", sans-serif;
	  	font-optical-sizing: auto;
	  	font-weight: 400;
	  	font-style: normal;
	  	font-size: 16px;
	  	color: var(--white);
	}
	#nav-contact { display: block;
	text-align:center; }
	#nav-contact h3, #nav-contact h3 * { font-size: 15px !important }
	#nav-contact h5, #nav-contact h5 * { font-size: 12px }
	#nav-phone { display:block }
}

/*
==============================================
Footer
============================================== */

footer {
	position: relative;
	width: 100%;
	height: 60px;
	text-align: center;
	background-color: var(--blue3);
}
footer p {
	position: relative;
	top: 50%;
	transform: translateY(-50%);
	color: var(--blue1);
}

/*
==============================================
Hero
============================================== */

#hero {
	position: relative;
	width: 100%;
	background-image: url('../img/hero-bg.jpg');
	background-size: cover;
	background-position: bottom center;
	background-repeat: no-repeat;
	z-index: 2;
	padding: 140px 50px;
}
#hero-content {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
}
#hero-content > * { width: calc(50% - 20px); }
#hero-content > *:first-of-type { margin-right:20px }

#hero-right { margin-top: 25px; }
#hero p { font-weight:500; }

@media (max-width: 800px) {
	#hero { padding: 40px 20px; text-align: center; }
	#hero-content { display:block }
	#hero-content > * { width: 100%; }
}

/*
==============================================
Marquee
============================================== */

#marquee {
	width: 100%;
	background-color: var(--blue3);
	padding: 10px 0;
}

.marquee {
  --gap: 1rem;
  display: flex;
  overflow: hidden;
  user-select: none;
  gap: var(--gap);
}

.marquee__content {
  flex-shrink: 0;
  display: flex;
  justify-content: space-around;
  min-width: 100%;
  gap: var(--gap);
  animation: scroll 30s linear infinite;
}

.marquee__content li {
	position: relative;
	list-style-type: none;
	font-family: "Poppins", sans-serif;
	font-weight: 700;
	font-style: normal;
	color: var(--blue1);
	font-size: 24px;
	margin-right: 60px;
}
.marquee__content li:after {
	content: '';
	display: block;
	position: absolute;
	z-index: 2;
	right: -45px;
	top: 50%;
	transform: translateY(-50%);
	height: 20px;
	width: 20px;
	background-image-size: cover;
	background-repeat: no-repeat;
	background-position: center;
}

.marquee__content li:nth-of-type(odd):after {
	background: url('../img/marquee1.svg');
}

.marquee__content li:nth-of-type(even):after {
	background-image: url('../img/marquee2.svg');
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-100% - var(--gap)));
  }
}

/*
==============================================
Services
============================================== */

#services {
	padding: 40px 50px;
	with: 100%;
	overflow: hidden;
	border-bottom: 1px solid var(--divider);
}
#services h2 {
	margin: 0 auto 20px;
	width: 100%;
	max-width: 1200px;
}

#main-carousel .flickity-viewport { overflow: visible !important; }


.carousel-cell {
	margin: 0 20px;
	width: calc(50% - 40px);
}
#main-carousel .carousel-cell .image-container { margin-bottom: 25px; }

.image-container {
	position: relative;
	width: 100%;
	background-color: var(--divider);
	border-radius: 10px;
	overflow: hidden;
	min-height: 100%; width:100%;
}

.image-cell {
	position: relative;
	background-color: var(--divider);
	width: 100%;
	height: 68%;
	padding-bottom: 68%;
	overflow: hidden;
}

.flickity-prev-next-button {
	top: initial !important;
	bottom: 20px !important;
	transform: translateY(0) !important;
	background-color: var(--blue3) !important;
}
.flickity-prev-next-button.previous {
	left: initial !important;
	right: 74px;
}
.flickity-prev-next-button.next {
	right: 20px !important;
}
.flickity-button-icon {
	fill: var(--white) !important;
}

.image-arrows {
	position: absolute;
	bottom: 20px;
	right: 20px;
	display: inline;
}
.arrow-link {
	width: 50px;
	height: 50px;
	background-color: var(--blue1);
}

@media (max-width: 800px) {
	#services { padding: 25px 20px; }
	.carousel-cell {
		margin: 0 20px;
		width: calc(100% - 40px);
	}
	.image-cell { padding-bottom: 100%; }
}

/*
==============================================
Contact
============================================== */

#contact {
	padding: 120px 50px;
	with: 100%;
	overflow: hidden;
	border-bottom: 1px solid var(--divider);
}
#contact-container { 
	margin: 0 auto 20px;
	width: 100%;
	max-width: 1200px;
	display: flex; }

#contact-container > * { width: 50%; padding-right:20px; }

#contact-right { margin-top: 45px; }
#contact-right ul li { display:block; list-style-type: none }
#contact-right ul li a, #contact-right ul li a:link, #contact-right ul li a:visited { display:inline; }
#contact-right ul li a h3 { display:inline; margin-left: 10px }

@media (max-width: 800px) {
	#contact { padding: 25px 20px 100px; }
	#contact-container { display: block; }
	#contact-container > * { width: 100%; padding-right:0; }
	#contact-right { margin-top: 0; }
	#contact-right ul li a, #contact-right ul li a:link, #contact-right ul li a:visited { display:block; margin-bottom:10px }
	#contact-right ul li a h3 { display: block; margin-left: 0 }
}