@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: #ed1c22;
  --secondary-client-color: #333;
  --font-family-headings: "Nunito Sans Bold";
  --font-family-body: "Mukta Light";
  --primary: #1e50ff;
  --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: 30, 80, 255;
  --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);
}

/* 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: 75px;
  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: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: rgba(0, 0, 0, 0);
  color: #fff;
  transition: all 0.4s;
}
.navbar2 {
  background: rgba(0, 0, 0, 0.25);
}
.navbar .navbar-toggler {
  border-color: rgba(225,225,225,0.5);
  background-color: #fff;
  border: none;
}
.navbar-menu-icon {
  color: rgba(225, 225, 225, 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;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(11.5px);
  -webkit-backdrop-filter: blur(11.5px);
  color: #fff;
  /* 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);
  background: rgba(0, 0, 0, 0.4);
  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: 70px;
  width: auto;
  transition: all 0.4s;
  border-radius: 10px;
}
.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: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: var(--primary-color) url("../img/hero_img.jpg") no-repeat center
    center/cover;
}

.video-container img {
  min-width: 100%;
  min-height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  object-fit: cover;
}

.video-container:after {
  content: "";
  z-index: 1;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.2) 70%,
    rgba(0, 0, 0, 0.35) 81%,
    rgba(0, 0, 0, 0.55) 88%
  );
  position: absolute;
}

.content {
  z-index: 2;
}

/* 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/car_carpet.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  color: #fff;
  text-align: center;
}
#carWashHero p {
  font-size: 2rem;
}
#carWashHero 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;
  }
}

/* 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;
  margin-bottom: 10%;
}
#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 .container-fluid {
  padding: 0 5% 0 5%;
}
#feature .col-lg-4 {
  padding: 2%;
}
#feature .col-lg-7 {
  padding: 2%;
}
#feature img {
  border-radius: 32px;
  filter: drop-shadow(1px 2px 2px rgba(0, 0, 0, 0.35));
}

/* 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;
  text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.4);
}
#everwashSection img {
  filter: drop-shadow(0px 2px 8px rgba(0, 0, 0, 0.4));
}

/* BUSINESS INFO SECTION
============================ */
#businessInfo {
  padding: 5% 2%;
}
#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;
}

/* FOOTER SECTION
============================ */
footer {
  color: #fff;
  text-align: center;
  font-size: 0.75rem;
  padding: 0.5rem 0;
}
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: space-around;
}

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

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

@media (max-width: 991px) {
  #galleryTitle {
    padding-top: 50px;
  }
}

@media (max-width: 768px) {
  #featureSection {
    margin-bottom: 10%;
  }
  .navbar {
    background-color: #111;
  }
  .social-nav {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
  }
  .social-nav li {
    margin: 2% 2%;
  }
  .dropdown-menu {
    margin-left: 38.5%;
  }
  #map_canvas {
    margin-bottom: 5%;
  }
}
@media (max-width: 541px) {
  .top-bar {
    font-size: 1rem;
  }
  .dropdown-menu {
    margin-left: 25%;
  }
  #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%;
  }
  #carWashHero {
    padding: 30% 0;
  }
  #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%;
  }
  .dropdown-menu {
    margin-left: 25%;
  }
}
@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;
  }
}
.contactbox {
	border: 1px solid lightblue;
	padding: 20px;
	border-radius: 5px;
	background: #ebebeb;
}
