@font-face {
  font-family: "A&S Blaze";
  src: url("font/as_blaze.ttf");
}
@font-face {
  font-family: "Oswald Bold";
  src: url("font/oswald_bold.ttf");
}
@font-face {
  font-family: "Lato Regular";
  src: url("font/Lato-Regular.ttf");
}
@font-face {
  font-family: "Quicksand";
  src: url("font/Quicksand-VariableFont_wght.ttf");
}
@font-face {
  font-family: var(--font-family-headings);
  src: url("font/Montserrat-Black.ttf");
}
@font-face {
  font-family: var(--font-family-headings);
  src: url("font/montserrat_regular.ttf");
}
@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: red;
  --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: #FE0204;
}
.bg-client-color{
  background-color: #FE0204;
}

/* 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)), #FE0204;
}
.btn:hover{
  background:  #FE0204;
}
.btn-outline {
  border-color: #FE0204;
  color: #FE0204!important;
  background: none;
}
.btn-outline a{
  color: #FE0204!important;
}
.btn-outline a:hover{
  color: #fff!important;
}
.btn-outline:hover {
  background-color: #FE0204;
  border-color: #FE0204;
  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(200deg,rgba(62,182,232,0.95), rgba(0,0,0,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-body);
}
/* NAV
================================= */
.navbar {
  padding-top: 3px;
  padding-bottom: 3px;
  background: rgba(0, 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: #333; */
  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;
}
.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.30) 70%, rgba(0,0,0,0.55) 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: #FE0204;
}
#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: #FE0204;
  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)), #ec1e22;
}
#comingSoon .btn:hover{
  background: #ec1e22;
}
#comingSoon img{
  width: 300px;
}

/* 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));
}

/* PHOTO GALLERY
============================ */
#photoGallery{
  background: rgb(216, 216, 216);
  padding: 5% 0;
}
.gallery-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  background-color: #fff;
  box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.3);
  width: 80%;
  margin: 0 auto;
  padding: 1%;
  border-radius: 32px;
}
.gallery-item {
  flex-basis: 32.7%;
  margin-bottom: 1%;
  opacity: .85;
  cursor: pointer;
  transition: opacity 0.3s ease;
  filter:drop-shadow(0 0 3px rgba(0, 0, 0, 0.3));
}
.gallery-item:hover {
  opacity: 1;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 32px;
}
.gallery-content {
  font-size: .8em;
}

.lightbox {
  position: fixed;
  display: none;
  background-color: rgba(0, 0, 0, 0.8);
  width: 100%;
  height: 100%;              
  overflow: auto;
  top: 0;
  left: 0;
}
.lightbox-content {
  position: relative;
  width: 70%;
  height: 70%;
  margin: 5% auto;
}
.lightbox-content img {
  border-radius: 32px;
  border: solid 2px #b6b6b6;
  box-shadow: 0 0 3px 0 rgba(225, 225, 225, .25);
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background-color: rgba(0, 0, 0, 0.8);
  color: #fff;
  padding: 7px;
  font-size: 2rem;
  top: 45%;
  cursor: pointer;
  box-shadow: 0px 0px 4px rgba(225, 225, 225, .75);
  opacity: .5;
  transition: opacity 0.3s ease;
}
.lightbox-prev {
  left: 0;
  border-radius: 0 32px 32px 0;
  padding-right: 1%;
  margin-left: 3px;
}
.lightbox-next {
  right: 0;
  border-radius: 32px 0 0 32px;
  padding-left: 1%;
  margin-right: 3px;
}
.lightbox-prev:hover,
.lightbox-next:hover {
  opacity: 1;
}

@media (max-width: 767px) {
  .gallery-container {
      width: 100%;
  }
  .gallery-item {
      flex-basis: 49.80%;
      margin-bottom: 3px;
  }
  .lightbox-content {
      width: 80%;
      height: 60%;
      margin: 15% auto;
  }
}
@media (max-width: 480px) {
  .gallery-item {
      flex-basis: 100%;
      margin-bottom: 1px;
  }
  .lightbox-content {
      width: 90%;
      margin: 20% auto;
  }
}

/* BUSINESS INFO SECTION
============================ */
#businessInfo{
  padding: 5% 2%;
}
#businessInfo i{
  font-size: 1.75rem;
  color: #FE0204;
  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;
  }
}

/* .all-plans.red .plan{
  border: none!important;
  box-shadow: 2px 2px 8px 1px rgba(0, 0, 0, 0.25);
  max-width: 50%;
  padding-top: 3%;
  border-radius: 50px;
  background: #fff;
}
.all-plans.red .plan .buy-cta .btn-default{
  background: #333!important;
} */