@font-face {
  font-family: "Nunito Sans Bold";
  src: url("font/NunitoSans-Bold.ttf");
}
@font-face {
  font-family: "Mukta Light";
  src: url("font/Mukta-Light.ttf");
}

/* VARIABLES
================================= */
:root {
  --main-client-color: #001a99;
  --secondary-client-color: #3ae500;
  --font-family-headings: "Nunito Sans Bold";
  --font-family-body: "Mukta Light";
  --primary:  #001a99;
  --secondary: #141464;
  --highlight: #00e1e1;
  --transparent: transparent;
  --white: #ffffff;
  --gray-100: #f8f9fa;
  --gray-200: #e9ecef;
  --gray-300: #dee2e6;
  --gray-400: #ced4da;
  --gray-500: #adb5bd;
  --gray-600: #6c757d;
  --gray-700: #495057;
  --gray-800: #343a40;
  --gray-900: #212529;
  --black: #000000;
  --red: #bf4a46;
  --purple: #6a3bb1;
  --green: #20bda8;
  --orange: #ff9900;
  --yellow: #eff636;
  --gold: #fcf0a2;
  --rgb-primary: 0, 26, 153;
  --rgb-secondary: 20, 20, 100;
  --rgb-highlight: 0, 225, 225;
  --rgb-transparent: transparent;
  --rgb-white: 255, 255, 255;
  --rgb-gray-100: 248, 249, 250;
  --rgb-gray-200: 233, 236, 239;
  --rgb-gray-300: 222, 226, 230;
  --rgb-gray-400: 206, 212, 218;
  --rgb-gray-500: 173, 181, 189;
  --rgb-gray-600: 108, 117, 125;
  --rgb-gray-700: 73, 80, 87;
  --rgb-gray-800: 52, 58, 64;
  --rgb-gray-900: 33, 37, 41;
  --rgb-black: 0, 0, 0;
  --rgb-red: 191, 74, 70;
  --rgb-purple: 106, 59, 177;
  --rgb-green: 32, 189, 168;
  --rgb-orange: 255, 153, 0;
  --rgb-yellow: 239, 246, 54;
  --rgb-gold: 252, 240, 162;
}
/* BASICS
=============================== */
* {
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-family-body);
}
h1,
h2,
h3,
h4,
h5 {
  font-family: var(--font-family-headings);
}
.d-c {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* COLORS
================================= */
.client-color-primary {
  color: var(--main-client-color);
}
.bg-client-color {
  background-color: var(--main-client-color);
}
.bg-secondary-client-color {
  background-color: var(--secondary-client-color);
}

/* FONT STYLES
================================= */
a:hover {
  text-decoration: none;
}
.bold {
  font-weight: bolder;
}
.sub-shadow-text {
  text-shadow: 1px 1px 2px #333;
}

/* ICON STYLES
================================ */
.fb-icon,
.tw-icon,
.ig-icon {
  transition: color 0.3s;
}
.fb-icon:hover {
  color: #1978f6;
  /* filter: drop-shadow(0px 0px 4px rgba(225,225,225,1)); */
}
.tw-icon:hover {
  color: #1c9fef;
}
.ig-icon:hover {
  background: -webkit-linear-gradient(
    45deg,
    #405de6,
    #5851db,
    #833ab4,
    #c13584,
    #e1306c,
    #fd1d1d
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
footer .fb-icon,
footer .tw-icon,
footer .ig-icon {
  transition: color 0.3s;
  color: #fff;
}
.round {
  border-radius: 35px;
  border: solid 1px white;
  background-color: #266cff;
  color: #fff;
}

/* IMAGE STYLES
================================ */
.img-nav {
  height: 85px;
  width: auto;
  transition: all 0.4s;
}
.img-shrink {
  height: 50px;
  width: auto;
}
.img-thumbnail {
  background: none;
  border: none;
}

/* BUTTONS
================================= */
.btn {
  border-radius: 25px;
  background: linear-gradient(
      160deg,
      rgba(225, 225, 225, 0.15),
      rgba(0, 0, 0, 0.15)
    ),
    var(--main-client-color);
}
.btn-secondary {
  border-radius: 25px;
  background: linear-gradient(
      160deg,
      rgba(225, 225, 225, 0.15),
      rgba(0, 0, 0, 0.15)
    ),
    var(--secondary-client-color);
  color: var(--gray-900) !important;
}
.btn-secondary:hover {
  background: var(--secondary-client-color);
}
.btn:hover {
  background: var(--main-client-color);
}
.btn-outline {
  border-color: var(--main-client-color);
  color: var(--main-client-color) !important;
  background: none;
}
.btn-outline a {
  color: var(--main-client-color) !important;
}
.btn-outline a:hover {
  color: #fff !important;
}
.btn-outline:hover {
  background-color: var(--main-client-color);
  border-color: var(--main-client-color);
  color: #fff;
}
#featuresSection .btn {
  background: none;
}
/* BUTTON SHINE EFFECT */

/* BACKGROUNDS
================================= */
.bg-membership {
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #bedcf4;
  background-image: linear-gradient(
      130deg,
      rgba(var(--rgb-primary), 1),
      rgba(var(--rgb-highlight), 0.7)
    ),
    url(../img/bently-everwash.jpg);
  background-attachment: scroll;
  background-size: cover;
  z-index: 1;
  padding: 7% 5% 7% 5%;
  /*USE FOR TOP BAR*/
  /* padding-top: 100px; */
}
.bg-membership h3 {
  font-family: var(--font-family-headings);
}
/* NAV
================================= */
.navbar {
  padding-top: 3px;
  padding-bottom: 3px;
  background: rgb(255, 255, 255);
  color: #fff;
  transition: all 0.4s;
}
.navbar2 {
  background: rgba(0, 0, 0, 0.25);
}
.navbar .navbar-toggler {
  padding: 0;
  border: none;
}
.navbar .navbar-toggler:focus {
  outline: none!important;
}
.navbar .navbar-toggler .icon-bar {
  position: relative;
  height: 2px;
  width: 30px;
  display: block;
  margin: 5px 0px;
  background-color: #222;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
.navbar .navbar-toggler:hover .icon-bar {
  opacity: 0.5;
}
.navbar-menu-icon {
  color: rgba(66, 66, 66, 0.5);
  font-size: 1.7rem;
}
.navbar2 {
  padding-top: 3px;
  padding-bottom: 3px;
  background: #111;
  color: #fff;
  transition: all 0.4s;
}
.navbar a {
  color: #fff;
  font-size: 1.2rem;
}
/* .navbar-toggler{
  border-color: #fff;
  background-color: #333;
} */
.navbar.compressed {
  padding-top: 1px;
  padding-bottom: 1px;

  backdrop-filter: blur(11.5px);
  -webkit-backdrop-filter: blur(11.5px);

  /* opacity: 0.95; */
}
.navbar.compressed.nav-link:link {
  color: #fff;
}
.dropdown-menu {
  border: none;
  border-radius: 25px;
  box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);

  margin: auto;
  margin-bottom: 1rem;
  margin-top: -5px;
  max-width: 10%;
  text-align: center;
}
.dropdown-dark {
  background: #111;
  color: #fff;
}
.dropdown-dark a {
  color: #fff;
}
.dropdown:hover > .dropdown-menu {
  display: block;
}
.dropdown-item:hover {
  border-radius: 25px;
}
.dropdown-dark .dropdown-item:hover {
  border-radius: 25px;
  background-color: rgba(0, 0, 0, 0.2);
  color: #bd121c;
}
.img-nav {
  height: 85px;
  width: auto;
  transition: all 0.4s;
}
.img-shrink {
  height: 50px;
  width: auto;
}
.img-thumbnail {
  background: none;
  border: none;
}
/* HOMEPAGE HERO
============================ */
.showcase {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 0 20px;
}

.video-container {
  position: absolute;
  top: 75px;
  left: 0;
  width: 100%;
  height: calc(100% - 75px);
  overflow: hidden;
  background: url("../img/car_carpet.jpg") no-repeat center
    center/cover;
}

.video-container img {
  position: absolute;
  max-width: 20%;
  top: 75px;
  right: 7.5%;
}

.video-container:after {
  content: "";
  z-index: 1;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.4) 0%,

    rgba(0, 0, 0, 0.75) 100%
  );
  position: absolute;
}

.content {
  z-index: 2;
}

.showcase .btn {
  background: var(--);
}

/* HERO IMG ONLY */

/* HERO SECTIONS
============================ */

/* CAR WASH SERVICES */
#carWashHero {
  padding: 15% 0;
  background-image: linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.85),
      rgba(0, 0, 0, 0.35)
    ),
    url(../img/hero_img.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  color: #fff;
  text-align: center;
  padding-top: max(17.5rem, 20%);
  padding-bottom: max(12.5rem, 15%);
  background-position: center;
}
#carWashHero p {
  font-size: 2rem;
}
#carWashHero p span {
  font-weight: bold;
  /* text-transform: uppercase; */
}

/* CAR WASH Contact */
#contactHero {
  background-image: linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.85),
      rgba(0, 0, 0, 0.35)
    ),
    url(../img/contact.jpeg);
  background-repeat: no-repeat;
  background-size: cover;
  color: #fff;
  text-align: center;
  padding-top: max(17.5rem, 20%);
  padding-bottom: max(12.5rem, 12.5%);
  background-position: center;
}
#contactHero p {
  font-size: 2rem;
}
#contactHero p span {
  font-weight: bold;
  /* text-transform: uppercase; */
}

/* DETAILING SERVICES */
#detailHero {
  padding: 10% 0;
  background-image: linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.85),
      rgba(0, 0, 0, 0.35)
    ),
    url(../img/hand-clean.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  color: #fff;
  text-align: center;
}
#detailHero p {
  font-size: 2rem;
}
#detailHero p span {
  font-weight: bold;
  /* text-transform: uppercase; */
}

/* ABOUT HERO */
#aboutHero {
  padding: 10% 0;
  background-image: linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.85),
      rgba(0, 0, 0, 0.35)
    ),
    url(../img/hero_img.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  color: #fff;
  text-align: center;
}
#detailHero p {
  font-size: 2rem;
}
#detailHero p span {
  font-weight: bold;
  /* text-transform: uppercase; */
}

/* PHOTO GALLERY HERO */
#photoGalleryHero {
  padding: 10% 0;
  background-image: linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.85),
      rgba(0, 0, 0, 0.25)
    ),
    url(../img/rainbow-car-wash-photo-gallery-hero.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top;
  color: #fff;
  text-align: center;
}
#photoGalleryHero p {
  font-size: 2rem;
}
#photoGalleryHero p span {
  font-weight: bold;
  /* text-transform: uppercase; */
}

/* DIVIDERS
============================ */
.custom-shape-divider-bottom-1596730586 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: rotate(180deg);
  z-index: 1;
}

.custom-shape-divider-bottom-1596730586 svg {
  position: relative;
  display: block;
  width: calc(154% + 1.3px);
  height: 121px;
}

.custom-shape-divider-bottom-1596730586 .shape-fill {
  fill: #ffffff;
}

/** For tablet devices **/
@media (min-width: 768px) and (max-width: 1023px) {
  .custom-shape-divider-bottom-1596730586 svg {
    width: calc(142% + 1.3px);
    height: 91px;
  }
}

/** For mobile devices **/
@media (max-width: 767px) {
  .custom-shape-divider-bottom-1596730586 svg {
    width: calc(151% + 1.3px);
    height: 66px;
  }
}

.qr_section {
  max-width: 600px;
  margin: auto;
  text-align: center;
}
.qr_section h5 {
  font-size: 20px;
  margin-bottom: 30px;
}
.qr_section img {
  max-width: 300px;
  margin: auto;
}

/* FEATURES SECTION
============================ */
#featuresSection {
  padding: 5% 0 0 0;
  background-color: #f8f9fa;
}
.features-row-c {
  display: flex;
  align-items: center;
  justify-content: center;
}
.features-row-s {
  display: flex;
  justify-content: center;
  /* align-items: stretch; */
}
#featuresSection .features-row-c .features-header {
  text-align: center;
}
#featuresSection .features-row-c .features-header .header-title {
  font-size: 2.7rem;
}
#featuresSection .features-row-c .features-header .header-title span {
  color: var(--main-client-color);
}
#featuresSection .features-row-c .features-header .header-description {
  font-size: 1.25rem;
}
#featuresSection .features-row-s .col-lg-4 {
  margin-bottom: 5%;
  display: flex;
}
#featuresSection .single-feature {
  padding: 10% 7%;
  border-radius: 50px;
  /* background: linear-gradient(145deg, #dfe0e1, #ffffff);
  box-shadow:  20px 20px 28px #d3d4d5, 
             -20px -20px 28px #ffffff; */
}
#featuresSection .single-feature i {
  font-size: 3.5rem;
  color: var(--main-client-color);
  margin: 5% 2.5% 10% 2.5%;
}

#feature .col-lg-4 {
  padding-top: max(2rem, 3%);
  padding-bottom: max(3rem, 5%);
}
#feature .col-lg-7 {
  padding-top: max(2rem, 3%);
  padding-bottom: max(2rem, 5%);
}

#feature img {
  border-radius: 32px;
}
#feature {
  max-width: 1800px;
  margin: auto;
}

#featuresSection .btn {
  padding-left: 0;
  font-weight: bolder;
}

#featuresSection .feature-description {
  margin-bottom: 0.5rem;
}

/* COMING SOON SECTION
============================ */
#comingSoon .btn {
  background: linear-gradient(
      160deg,
      rgba(225, 225, 225, 0.15),
      rgba(0, 0, 0, 0.15)
    ),
    #f9f9f9;
  color: var(--main-client-color);
  text-shadow: none;
}
#comingSoon .btn:hover {
  background: #dbdbdb;
}
#comingSoon img {
  width: 300px;
}
div#comingSoon section#everwashSection {
  text-align: left;
  /* background: var(--main-client-color); */
}
div#comingSoon section#everwashSection h3 {
  font-family: var(--font-family-headings);
}

/* MEMBERSHIP SECTION
============================ */
#everwashSection {
  background: linear-gradient(
    rgba(248, 249, 250, 1) 2%,
    rgba(72, 185, 233, 1) 30%,
    rgba(var(--rgb-primary), 1) 95%
  );
  background-attachment: scroll;
  background-size: cover;
  background-position: bottom;
  color: #fff;
  text-align: center;
  font-size: 2rem;
}

/* BUSINESS INFO SECTION
============================ */
#businessInfo {
  padding: 5% 2%;
  max-width: 1600px;
  margin: auto;
}
#businessInfo i {
  font-size: 1.75rem;
  color: var(--main-client-color);
  margin: 5% 2.5% 10% 2.5%;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5);
}
#map_canvas {
  height: 250px;
  width: auto;
  border-radius: 32px;
  box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.15);
}
.directions-address {
  text-align: center;
}

.directions-header {
  text-align: center;
}
#businessInfo .col-lg-3 .col-2 {
  text-align: right;
}
/* FOOTER SECTION
============================ */
footer {
  color: #fff;
  text-align: center;
  font-size: 0.75rem;
  padding: 0.5rem 0;
}
footer.bg-blue {
  background-color: #001a99 !important;
}
footer a:link {
  color: #fff;
}
footer i {
  font-size: 2rem;
}
footer img {
  width: 175px;
  height: auto;
}
.footer-social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.footer-social a {
  font-size: 15px;
}
footer .col-lg-4:first-child p:first-child {
  margin-top: 1rem;
  margin-bottom: 0;
}

/* MEDIA QUERIES 
============================ */

@media (max-width: 1024px) {
  .larger {
    font-size: 1.2rem;
  }
}

@media (max-width: 991px) {
  #galleryTitle {
    padding-top: 50px;
  }
  #featuresSection .single-feature {
    padding: 0% 7%;
  }
  #featuresSection .single-feature i {
    margin: 5% 2.5% 5% 0%;
  }
  .social-nav button {
    margin-bottom: 1rem;
  }
  #map_canvas {
    margin-bottom: 5%;
  }

  .social-nav {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
  }
  .footer-social {
    margin-bottom: 1rem;
  }
}

@media (max-width: 768px) {
  #featureSection {
    margin-bottom: 10%;
  }

  .social-nav li {
    margin: 2% 2%;
  }
}
@media (max-width: 541px) {
  .top-bar {
    font-size: 1rem;
  }

  #feature h3 {
    font-size: 1.75rem;
  }
  nav button.bg-client-color {
    margin-bottom: 2%;
  }
}
@media (max-width: 425px) {
  #businessInfo .col-lg-6:first-child {
    margin-bottom: 10%;
  }
  .shrink-it {
    font-size: 3rem;
    padding-top: 10%;
  }

  #photoGalleryHero {
    padding: 30% 0;
  }
  #aboutHero p {
    text-align: left;
  }
  #howItWorks img {
    padding-bottom: 5%;
  }
  #feature .col-lg-7 .row {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  #featuresSection {
    padding: 20% 10%;
  }
  .gallery-item {
    margin: 2% 2% 3% 2%;
  }
  #comingSoon img {
    width: 200px;
  }
  nav button.bg-client-color {
    margin-bottom: 5%;
  }
}
@media (max-width: 415px) {
  #topBarTitle {
    display: none;
  }
  h1 {
    padding-top: 5%;
  }
  .shrink-it {
    font-size: 3rem;
    padding-top: 10%;
  }
  .hero-title-size {
    font-size: 2rem;
  }
  .phone-number {
    font-size: 2rem;
  }
  .specials-sub {
    font-size: 1.5rem;
  }
  #map_canvas #map_cavas2 #map_canvas3 #map_canvas4 #map_canvas5 {
    height: 200px;
  }
  #featureSection {
    margin-bottom: 20%;
    padding-bottom: 20%;
  }
  .round-px {
    border-radius: 25px 25px 0 0;
  }
  .pad-jawn {
    padding-bottom: 20%;
  }
  .social-nav {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
  }
  .social-nav li {
    margin: 5% 5%;
  }
}
@media (max-width: 320px) {
  .display-2 {
    font-size: 3rem;
  }
  .shrink-it-sm {
    font-size: 3rem;
  }
  #featureSection {
    padding-bottom: 500px;
  }
  .round-px {
    border-radius: 25px 25px 0 0;
  }
}
@media (min-width: 991px) {
  .navbar-brand {
    flex: 1;
  }
  #navbarCollapse {
    flex: 2;
  }

  #navbarCollapse .navbar-nav {
    flex: 1;
    width: 100%;
  }
  #navbarCollapse .navbar-nav:first-of-type {
    margin: auto;
    justify-content: center;
  }
  #navbarCollapse .navbar-nav:last-of-type {
    justify-content: flex-end;
  }
}
#map_canvas {
  height: 300px; /* Map height */
  width: 100%;    /* Full width */
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}
.mydiv {
  border: 1px solid #ccc;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 1px 2px 7px rgba(0, 0, 0, 0.25);
  border-radius: 28px;
}
.mydiv h3 {
  background: #3ae500;
  color: white;
  padding: 6px;
  border-top-left-radius: 28px;
  border-top-right-radius: 28px;
}
.cardbox {
  padding-top: 20px;
  padding-bottom: 15px;
}
.contactbox span i {
  font-size: 24px;
}
#singleWash h3.gift_header {
  margin-bottom: 15px;
}
.contactbox {
  border: 1px solid lightblue;
  padding: 20px;
  border-radius: 5px;
  background: #ebebeb;
}
section#everwashSection {
  padding-bottom: 100px;
}
p.ptext {
  font-size: 22px;
}
/* 10/23/2024 */
.mypopup {
  width:100%;
  height:100%;
  display:none;
  position:fixed;
  top:0px;
  left:0px;
  background:rgba(0,0,0,0.75);
  z-index: 999999;
}
/* Inner */
.mypopup-inner {
  max-width: 380px;
  width: 600px;
  height: 380px;
  padding:40px;
  position:absolute;
  top:50%;
  left:50%;
  -webkit-transform:translate(-50%, -50%);
  transform:translate(-50%, -50%);
  box-shadow:0px 2px 6px rgba(0,0,0,1);
  border-radius:3px;
background:#fff;
  /* background-image:url(https://cdn.shopify.com/s/files/1/0434/6033/files/176414_background_image.png?15348752389284153581); */
}

/* Close Button */
.mypopup-close {
  width:30px;
  height:30px;
  padding-top:4px;
  display:inline-block;
  position:absolute;
  top:0px;
  right:0px;
  transition:ease 0.25s all;
  -webkit-transform:translate(50%, -50%);
  transform:translate(50%, -50%);
  border-radius:1000px;
  background:rgba(0,0,0,0.8);
  font-family:Arial, Sans-Serif;
  font-size:20px;
  text-align:center;
  line-height:100%;
   color:#fff;
}
.mypopup-close:hover {
  -webkit-transform:translate(50%, -50%) rotate(180deg);
  transform:translate(50%, -50%) rotate(180deg);
  background:rgba(0,0,0,1);
  text-decoration:none;
}
.max300{
  max-width: 300px;
}