* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: hsl(221, 95%, 24%);
  --primary-transparent: hsla(221, 95%, 24%, 0.87);
  /* ghost/original */
  /* --off-white: #eeebf3; */
  /* better */
  /* --off-white: #f8f6fc; */
  /* best for now */
  --off-white: #f7f6fa;

  --primary-button: hsla(354, 99%, 38%, 0.81);
  --primary-button-hover: hsl(354, 99%, 38%);
  --primary-button-active: hsl(354, 95%, 44%);
  --off-black: #1e1e1e;
  --off-gray: #bebebe;
}

html,
body {
  position: relative;
  overflow-x: hidden;
  max-width: 2000px;
  margin: 0 auto;
  background: var(--off-white);
  width: 100%;
  height: 100%;
  scroll-behavior: smooth;
  line-height: 1.6;
}

html {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
    Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  color: var(--off-black);
}

body {
  display: grid;
  grid-template-columns: 20px repeat(12, 1fr) 20px;
  grid-template-rows: 0;
  column-gap: 20px;
  padding: 0;
  margin: 0;
  background: var(--off-white);
}

a {
  position: relative;
  display: block;
  text-decoration: none;
  color: white;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Montserrat', sans-serif;
}

ul {
  margin: 0;
  list-style-type: none;
}

button {
  border: none;
  background: none;
}

h1 {
  font-size: 32px;
  font-weight: 600;
}

h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  font-weight: 600;
}

h3 {
  font-size: 16px;
  font-weight: 500;
}

.text-center {
  text-align: center;
}

/* img {
  max-width: 100%;
  height: auto;
} */

/* FLEX UTILITIES */
.flex-justify {
  display: flex;
  justify-content: center;
}
.flex-align {
  display: flex;
  align-items: center;
}
.flex-justify-column {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.flex-start-column {
  display: flex;
  flex-direction: column;
  justify-content: start;
}
.flex-align-column {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hidden {
  display: none;
}

/* MAIN CODE */
/* Navbar */
.logo-wrap {
  margin-left: 20px;
}
.navbar {
  position: sticky;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 72px;
  width: 100%;
  background-color: var(--primary-transparent);
  grid-column: 1 / -1;
  z-index: 4;
}

.navbar-contents-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1750px;
  padding: 0 1rem;
}
.nav-list {
  display: none;
}

.nav-list li {
  position: relative;
}

.nav-link,
.footer-li a {
  letter-spacing: 1px;
}

/* .nav-list li .nav-link:hover::after,
.footer-ul .footer-li a:hover::after {
  content: '';
  width: 100%;
  height: 2px;
  background: var(--off-white);
  position: absolute;
  bottom: -5px;
  left: 0;
} */

.nav-list li .nav-link:active,
.footer-li a:active {
  color: var(--off-gray);
}

.nav-list li .nav-link:active::after,
.footer-ul .footer-li a:active::after {
  background: var(--off-gray);
}

.hamburger-menu-icon {
  cursor: pointer;
}

.hamburger-btn {
  height: 37px;
  width: 22px;
  margin-right: 20px;
}

/* HERO */
.hero-section {
  height: calc(100vh + 30px);
  width: 100%;
  background-image: url('./images/optimized/hero-small-493w.jpg');
  background-color: #1e1e1e;
  background-repeat: no-repeat;
  grid-column: 1/-1;
  background-size: cover;
  background-position-x: 70%;
  margin-bottom: 2rem;
}

.hero-max-width-wrap {
  max-width: 400px;
  margin: 0 auto;
}

.hero-main-component {
  margin-top: 16rem;
  margin-left: 20px;
  width: 250px;
  height: 150px;
}

.hero-header,
.hero-subheader {
  color: white;
}

.hero-header {
  /* margin-bottom: 0.5rem; */
}
.hero-subheader {
  /* margin-bottom: 1.5rem; */
  margin-bottom: 1rem;
  font-family: 'Montserrat', sans-serif;
}

.book-btn-mobile,
.book-btn-large {
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: white;
  background: var(--primary-button);
  width: 129px;
  height: 41px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  letter-spacing: 1px;
}

.book-btn-mobile:hover,
.book-btn-large:hover {
  background: var(--primary-button-hover);
}

.book-btn-mobile:active,
.book-btn-large:active {
  background: var(--primary-button-active);
}

/* SERVICES SECTION */
.services-cards-wrap {
  margin: 0 auto;
}
.services-section {
  grid-column: 1 / -1;
  margin: -30px auto 0;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  max-width: 600px;
  /* PADDING TO CENTER CARDS */
  padding-right: 1rem;
}

.services-header {
  text-align: center;
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.services-card {
  position: relative;
  margin: 0 auto 3.5rem;

  /* margin: 0 0 0 3.5rem; */
  /* margin-bottom: 3.5rem; */
  height: 288px;
}

.services-card-header {
  font-size: 18px;
  color: var(--off-white);
}

.services-card-layer {
  margin: 0 auto;
  height: 275px;
  width: 325px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
}
.services-card-upper-layer {
  position: relative;
  background: white;
  margin-left: 30px;
  border: 1px solid hsla(221, 95%, 24%, 0.54);
  box-shadow: -4px 4px 10px rgba(3, 40, 120, 0.49);
  -webkit-box-shadow: -4px 4px 10px rgba(3, 40, 120, 0.49);
  -moz-box-shadow: -4px 4px 10px rgba(3, 40, 120, 0.49);
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.services-card-1 {
  background: url('./images/services-section/haircut-service.jpg') no-repeat;
}

.services-card-2 {
  background: url('./images/services-section/beard-service.jpg') no-repeat;
}

.services-card-3 {
  background: url('./images/services-section/design-service.jpg') no-repeat;
}

.services-card-lower-layer {
  position: absolute;
  top: 10px;
  left: 15px;
  z-index: 1;
  background: var(--primary-transparent);
  box-shadow: -4px 4px 4px rgba(0, 0, 0, 0.25);
  -webkit-box-shadow: -4px 4px 4px rgba(0, 0, 0, 0.25);
  -moz-box-shadow: -4px 4px 4px rgba(0, 0, 0, 0.25);
}

.services-card-p {
  padding-top: 0.5rem;
  margin: 0 1rem;
}

.services-card-icon {
  display: block;
  margin: 0 auto;
}

.scissors-icon {
  width: 70px;
  height: 70px;
}

.moustache-icon {
  height: 22px;
  width: 84px;
  margin: 1rem auto;
}

.electric-razor-icon {
  width: 30px;
  height: 68px;
}

.blue-razor-face {
  position: relative;
  z-index: 1;
  margin-left: auto;
  margin-top: 1rem;
  margin-bottom: -50px;
}

.red-comb {
  width: 177px;
  height: 148px;
  margin-top: -50px;
  margin-bottom: 2rem;
}

/* About SECTION */
.about-container {
  grid-column: 1 / -1;
  position: relative;
  min-height: 500px;
  background-image: url('./images/optimized/about-834w.jpg');
  background-position-x: -100px;
  background-size: cover;
  background-repeat: no-repeat;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-bottom: 12rem;
}

#about-section-linked {
  position: relative;
  top: -200px;
}

#contact-section-linked {
  position: relative;
  top: -100px;
}

.about-header,
.about-p {
  min-width: 275px;
  max-width: 640px;
  margin: 0 auto;
  font-weight: 400;
}

.about-header {
  padding-top: 2rem;
  font-size: 30px;
}

.about-p {
  text-align: left;
  padding: 0.5rem 2rem 2rem;
}

/* CUSTOMER REVIEWS */

.review-section {
  grid-column: 1 / -1;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  /* ADDING RADIUS FOR MOBILE TESTING. BORDER RADIUS IS TOGGLING ON CAROUSEL MOVEMENT */
  border-radius: 5px;
  -webkit-border-radius: 5px;
}

.blue-razor-review {
  position: absolute;
  display: block;
  top: -160px;
  right: 15px;
}

.customer-review-section-carousel-wrap {
  grid-column: 1 / -1;
  width: 365px;
  height: 783px;
  background: white;
  margin: 0 auto;
  max-width: 600px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  /* filter: drop-shadow(-2px 4px 4px rgba(0, 0, 0, 0.25)); */
  box-shadow: -2px 4px 4px rgba(0, 0, 0, 0.25);
  -webkit-box-shadow: -2px 4px 4px rgba(0, 0, 0, 0.25);
  -moz-box-shadow: -2px 4px 4px rgba(0, 0, 0, 0.25);
  /* overflow-x: hidden; */
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.customer-review-section-header {
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
  -webkit-transform: translate(-50%, 0);
  margin: 0 auto;
  padding-top: 2rem;
  text-align: center;
  z-index: 1;
  width: 100%;
}

.customer-review-card {
  width: 273px;
  height: 170px;
  background: var(--off-white);
  margin: 0 auto 2rem;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  text-align: center;
  padding: 0 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: -2px 4px 4px rgba(0, 0, 0, 0.25);
  -moz-box-shadow: -2px 4px 4px rgba(0, 0, 0, 0.25);
  -webkit-box-shadow: -2px 4px 4px rgba(0, 0, 0, 0.25);
}
.customer-review-stars {
  margin-bottom: 0.2rem;
}

.customer-review-p {
  font-size: 14px;
  padding: 0.5rem;
}

.customer-review-name {
  font-size: 12px;
  font-weight: 600;
}

/* CAROUSEL STYLES */
/* I THINK THIS CODE IS REDUNDANT */
/* .carousel__wrap {
  width: 365px;
  height: 710px;
  margin: 10rem auto;
  overflow-x: hidden;
  border-radius: 5px;
} */

.carousel {
  position: relative;
  min-width: 365px;
  width: 100%;
  /* height: 710px; */
  /* height: 100%; */
  margin: 0 auto;
  /* ADDING RADIUS FOR MOBILE TESTING. BORDER RADIUS IS TOGGLING ON CAROUSEL MOVEMENT */
  border-radius: 5px;
  -webkit-border-radius: 5px;
  height: 97%;
  /* border: 2px solid blue; */
}

.carousel__track {
  position: relative;
  height: 100%;
  list-style-type: none;
  /* ADDING RADIUS FOR MOBILE TESTING. BORDER RADIUS IS TOGGLING ON CAROUSEL MOVEMENT */
  border-radius: 5px;
  -webkit-border-radius: 5px;
}

.carousel__page {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  /* display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center; */
  height: 100%;
  width: 100%;
  background: white;
  padding-top: 5rem;
  /* ADDING RADIUS FOR MOBILE TESTING. BORDER RADIUS IS TOGGLING ON CAROUSEL MOVEMENT */
  border-radius: 5px;
  -webkit-border-radius: 5px;
}

/* THIS IS NOT BEING USED */
/* .carousel-card-1 {
  background: rgba(255, 192, 203, 0.795);
}
.carousel-card-2 {
  background: rgba(85, 85, 223, 0.822);
}
.carousel-card-3 {
  background: rgba(69, 212, 69, 0.897);
}
.carousel-card-4 {
  background: rgba(223, 98, 98, 0.829);
} */
/* END NOT BEING USED */

.carousel__btn {
  position: absolute;
  width: 35px;
  height: 35px;
  cursor: pointer;
  border: none;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  font-size: 1rem;
  background: transparent;
  color: var(--off-black);
}

.carousel__btn-left {
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  left: -0.7%;
}
.carousel__btn-right {
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  right: -0.7%;
}

.carousel__btn:hover {
  color: rgb(190, 190, 190);
  cursor: pointer;
}

.review-btn {
  background-color: var(--primary-transparent);
  width: 175px;
  padding: 0.5rem;
  height: 50px;
  margin: 1rem auto;
  text-align: center;
}

.review-btn:hover {
  background-color: white;
  color: var(--primary-transparent);
  border: 3px solid #febb10;
}

@media (pointer: none), (pointer: coarse) {
  .carousel__btn:hover {
    color: var(--off-black);
    cursor: none;
  }
}

.carousel__track-review-card {
  width: 273px;
  height: 170px;
  background: #eeebf3;
  margin: 0 auto 2rem;
  text-align: center;
  box-shadow: -2px 4px 4px rgb(0 0 0 / 25%);
  -webkit-box-shadow: -2px 4px 4px rgb(0 0 0 / 25%);
  -moz-box-shadow: -2px 4px 4px rgb(0 0 0 / 25%);

  border-radius: 5px;
  -webkit-border-radius: 5px;

  padding: 2rem 1rem;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
}

.carousel__track-review-card:last-of-type {
  margin-bottom: 0;
}

.google-review-msg {
  margin: 0 auto 0.8rem;
  font-size: 0.8rem;
}

/* END CAROUSEL STYLES */

.red-brush {
  margin-left: 2.5rem;
}

/* contact section */
.contact-section-wrap {
  grid-column: 1 / -1;
}
.contact-section {
  /* padding-top: 2rem; */
  padding: 1.5rem;
  grid-column: 1 / -1;
  background-image: url('./images/optimized/contact-375w.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
}

.details-header,
.location,
.address,
.phone,
.hours-title,
.hours {
  font-weight: 700;
  text-align: left;
  width: 85%;
  max-width: 500px;
  margin: 0 auto;
  font-style: normal;
}
.details-header,
.location,
.phone .phone-text {
  text-decoration: underline;
}

.details-header {
  margin-top: 1rem;
}

.address,
.phone {
  margin-bottom: 1rem;
}

.hours-table {
  margin: 0 auto;
  table-layout: fixed;
  /* width: 70%; */
  width: 85%;
  max-width: 500px;
}

.hours-table-header {
  text-align: left;
  text-decoration: underline;
}

.hours-table-data {
  font-weight: 700;
  margin-left: 50%;
  /* width: 100px; */
}

.btn-contact {
  margin: 2rem 0 2.5rem 15%;
}

.details {
  /* font-size: 0.8rem; */
  /* margin: 0 0 0 7.5%; */
  margin: 0 auto;
  font-weight: bold;
  width: 85%;
}

.hr {
  width: 65%;
  margin: 1rem 0 0 15%;
}

/* map */

.map {
  width: 100%;
  grid-column: 1 / -1;
  min-height: 225px;
}

/* FOOTER */

.footer {
  grid-column: 1 / -1;
  background: var(--primary-transparent);
  height: 95px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-ul {
  width: 100%;
  max-width: 600px;
  color: white;
  display: flex;
  justify-content: space-around;
}

.footer-li {
  font-size: 16px;
  font-weight: 600;
  padding: 1rem;
}

/* modal privacy */

.privacy-and-terms-card {
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
  -webkit-transform: translate(-50%, 0);
  width: 312px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  background: white;
  margin-top: 5rem;
  padding: 4rem 2rem 1rem;
}

.privacy-and-terms-header {
  font-size: 20px;
  font-weight: bold;
  margin: 1rem auto;
}

.privacy-and-terms-last-update {
  margin-bottom: 0.5rem;
}

.privacy-and-terms-sub-header {
  font-size: 16px;
  font-weight: 700;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
    Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  margin: 0.5rem auto;
}

.privacy-and-terms-p {
  font-size: 14px;
  font-weight: 500;
}

.list-privacy-p {
  font-size: 14px;
}

.definitions-li:before {
  content: '•';
  font-size: 80%;
  font-weight: bold;
  display: inline-block;
  vertical-align: middle;
  margin-bottom: 0.1rem;
}

.definitions-li span {
  /* display: inline-block; */
  vertical-align: middle;
}

.defitions-li-text {
  font-size: 14px;
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(27, 27, 27, 0.808);
  z-index: 4;
  overflow: scroll;
}

.modal-closing-btn-icon {
  position: absolute;
  top: 0.5rem;
  right: 1rem;
  margin: 0.25rem;
  width: 33px;
  height: 33px;
  cursor: pointer;
}

.close-modal {
  background-color: var(--primary);
  margin: 2rem auto;
  cursor: pointer;
}

.close-modal:hover {
  background-color: var(--primary-transparent);
}

.close-modal:active {
  background-color: hsla(221, 95%, 24%, 1);
}

/* modal nav */

.modal-nav {
  width: 85%;
  padding: 0;
  margin: 8rem auto;
}

.nav-mobile {
  background-color: var(--primary);
  width: 95%;
  margin: 0 auto;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  position: relative;
  max-width: 600px;
}

.nav-mobile ul {
  text-align: center;
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.nav-mobile ul li {
  padding-bottom: 4rem;
}

.nav-mobile ul li a {
  font-size: 20px;
  font-weight: 500;
  font-family: 'Montserrat', sans-serif;
  margin: 0 auto;
  display: inline-block;
}

.nav-mobile ul li:last-child {
  padding-bottom: 0;
}

.mobile-nav-li .nav-modal-booking-btn {
  padding-bottom: 0;
  width: 185px;
  height: 59px;
  display: flex;
}

/* gallery */

.gallery-wrapper {
  display: grid;
  grid-column: 1 / -1;
  margin-top: 8.5rem;
}

h1.gallery-header {
  margin: 0 auto 2rem;
  text-align: center;
  border-bottom: 2px solid var(--off-black);
  width: 8rem;
  line-height: 1.2;
}

.gallery-img {
  grid-column: 1 / -1;
  margin: 0 auto 1rem;
  border: 1px solid rgba(3, 40, 120, 0.67);
  border-radius: 5px;
  box-shadow: -2px 4px 4px rgba(0, 0, 0, 0.25);
}
.gallery-img:last-of-type {
  margin: 0 auto 3rem;
}

/* MEDIA QUERIES */
@media (min-width: 514px) {
  .about-container {
    background-position-x: 0;
  }
}

@media (min-width: 555px) {
  h1 {
    font-size: 64px;
  }

  .gallery-header {
    font-size: 32px;
  }
  .hero-max-width-wrap {
    max-width: 750px;
    margin: 0 auto;
  }

  .hero-main-component {
    /* margin-top: 20rem;
    margin-left: 20px; */
    margin-left: 0;
    width: 525px;
    height: 196px;
  }

  .hero-subheader {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 1.5rem;
  }
  .hero-section {
    padding-left: 2rem;
    background-image: url('./images/optimized/hero-medium-834w.jpg');
  }

  .book-btn-mobile {
    font-size: 20px;
    width: 185px;
    height: 59px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
  }
}

/* 745 */
@media (min-width: 825px) {
  .hero-main-component {
    height: 250px;
  }

  /* .book-btn-mobile {
    font-size: 20px;
    width: 185px;
    height: 59px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
  } */

  .blue-razor-face {
    margin-top: 2rem;
    margin-bottom: -100px;
  }

  .about-header,
  h2 {
    font-size: 36px;
  }

  .customer-review-section-header {
    padding-top: 1rem;
  }

  .customer-review-section-carousel-wrap {
    width: 80%;
    height: 1030px;
  }

  .carousel__track-review-card {
    width: 350px;
    height: 250px;
  }

  .carousel__page {
    padding-top: 5.5rem;
  }

  .yellow-stars-5 {
    width: 250px;
    height: 38px;
  }

  .customer-review-p {
    font-size: 18px;
  }

  .customer-review-name {
    font-size: 16px;
  }

  .contact-text-container {
    font-size: 22px;
    font-weight: 700;
  }

  .hours-table {
    max-width: 600px;
  }

  .details {
    margin-left: 8%;
  }
}

@media (min-width: 865px) {
  .navbar {
    height: 100px;
    /* height: 124px; */
  }

  .nav-list li {
    margin-left: 3rem;
  }

  .hero-section {
    background-image: url('./images/optimized/hero-medium-1440w.jpg');
  }

  .contact-section {
    background-image: url('./images/optimized/contact-834w.jpg');
  }

  .privacy-and-terms-card {
    width: 715px;
  }
}

@media (min-width: 975px) {
  .hamburger-btn {
    display: none;
  }

  .nav-list {
    font-size: 20px;
  }

  .nav-list {
    min-width: 400px;
    margin-right: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: white;
    font-family: 'Montserrat', sans-serif;
  }

  .nav-list li {
    margin-left: 2.5rem;
  }

  .navbar {
    height: 100px;
  }
  .hero-max-width-wrap {
    max-width: 100%;
  }
  .hero-section {
    padding-left: 145px;
  }

  .gallery-wrapper {
    grid-template-rows: 75px 1fr;
    grid-template-columns: 1fr 1fr;
    grid-gap: 40px;
    row-gap: 40px;
    max-width: 1200px;
    margin: 10rem auto 2rem;
  }

  .gallery-header {
    grid-row: 1/2;
    grid-column: 1/-1;
  }

  .gallery-img {
    grid-column: auto;
    margin: 0 auto;
  }
}
/* DESKTOP */
@media (min-width: 1200px) {
  .gallery-wrapper {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .nav-list li {
    margin-left: 6rem;
  }
  .hero-section {
    background-image: url('./images/optimized/hero-large-2002w.jpg');
    background-position-y: 0px;
  }

  .hero-main-component {
    margin-left: 10%;
    /* margin-top: 1rem; */
  }

  .about-container {
    margin-bottom: 16rem;
  }
  .about-p {
    font-size: 20px;
    max-width: 750px;
  }

  .review-section {
    max-width: 1175px;
  }
  /* .carousel {
    display: flex;
  } */
  .customer-review-section-carousel-wrap {
    width: 1150px;
    max-width: 1150px;
    /* /////////TESTING/////////// */
    /* below line is production code before carousel installation */
    /* height: auto; */
    /* below line is for testing */
    height: 475px;
    /* padding-bottom: 1.25rem; */
  }

  .carousel__page {
    display: flex;
  }
  .customer-review-card {
    margin: none;
  }
  .services-section {
    max-width: 1440px;
  }
  .services-cards-wrap {
    display: flex;
  }

  .services-card {
    margin-left: 20px;
  }

  .blue-razor-face {
    width: 175px;
    height: 224px;
    margin-bottom: -50px;
  }

  .red-comb {
    width: 260px;
    height: 283px;
    margin-bottom: 0;
  }

  .red-brush {
    width: 90px;
    height: 217px;
  }

  .about-container {
    background-image: url('./images/optimized/about-1440w.jpg');
  }

  .customer-review-section-carousel-wrap {
    max-width: 1500px;
    width: 100%;
    justify-content: space-around;
  }

  .blue-razor-review {
    width: 144px;
    height: 235px;
    width: 137px;
    height: 224px;
    top: -260px;
    /* margin: 5rem; */
  }

  .contact-section-wrap {
    display: flex;
    flex-direction: row-reverse;
    grid-column: 1 / -1;
  }

  .map {
    width: 50%;
    height: 100%;
  }

  .contact-section {
    width: 50%;
  }

  .footer {
    height: 100px;
  }

  .footer-li {
    font-size: 20px;
  }
}

@media (min-width: 1235px) {
  .carousel__btn-left {
    left: 0;
  }
  .carousel__btn-right {
    right: 0;
  }

  .review-section {
    max-width: 1440px;
  }
}

@media (min-width: 1285px) {
  .details {
    margin-left: 8%;
  }
}

@media (min-width: 1360px) {
  .blue-razor-face {
    margin-bottom: -100px;
    margin-right: -25px;
  }
  .red-comb {
    margin-top: -100px;
    margin-left: -25px;
    margin-bottom: 0;
  }
}
