/* @import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap"); */

/************************************/
/* GLOBAL */
/************************************/
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

form {
  width: 100%;
  max-width: 350px;
  min-width: 300px;
  align-items: center;
}

form div, form div input, form div textarea {
  width: 100%;
}

section {
    width: 100%;
    margin: 0 auto;
    overflow: hidden !important;
}

.margin-bottom-10px {
  margin-bottom: 10px;
}

.margin-bottom-20px {
  margin-bottom: 20px;
}

.margin-auto {
  margin: 30px auto !important;
}

.margin-t-b-20px {
  margin: 20px 0 20px;
}

.margin-top-200px {
  margin-top: 200px !important;
}

/* label {
  line-height: 2;
} */

h1 {
    font-family: var(--font-tertiary);
}

.header-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
}

/************************************/
/* INPUT BOXES */
/************************************/

.update-logo-images-form-container {
  z-index: 3;
  width: min-content;
  border-radius: .5em;
  line-height: 2.5;
  color: #fff;
  position: absolute;
  left: 20px;
  top: 120px;
}

/*********** POLAROID IMAGES *************/

#polaroid-container {
  display:flex;
  gap: 1rem;
  height:100%;
}

.update-polaroid-images-form-container,
.update-technician-images-form-container {
  width: min-content;
  border-radius: .5em;
  line-height: 2.5;
  color: #fff;
}

.update-logo-images-form-container form,
.update-text-container form,
.update-polaroid-images-form-container form,
.update-technician-images-form-container form {
  background-color: #3e73ef;
  display: flex;
  flex-direction: column;
  padding: 20px;
  border-radius: .5em;
}

.update-logo-images-form-container form div label ,
.update-logo-images-form-container form div small,
.update-text-container form div label,
.update-polaroid-images-form-container form div label,
.update-technician-images-form-container form div label {
  font-size: 1.5em;
}

.update-logo-images-form-container form div small {
  font-size: 1em;
}

.update-logo-images-form-container form button,
.update-text-container form button,
.update-polaroid-images-form-container form button,
.update-technician-images-form-container form button {
  padding: 6px 10px;
  font-size: 1em;
  background-color: #000000;
  color: #fff;
  border-radius: 0.5em;
  transition: all 0.3s ease;
  width: 50%;
  margin: 0 auto;
}

.update-logo-images-form-container form button:hover,
.update-text-container form button:hover,
.update-polaroid-images-form-container form button:hover,
.update-technician-images-form-container form button:hover {
  cursor: pointer;
  background-color: #fff;
  color: #000;
  transition: 0.3s;
  transform: scale(1.04);
}

#polaroid-img-1,
#polaroid-img-2,
#polaroid-img-3 {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  height:fit-content;
  position:relative;
  display:flex;
  flex-direction:column;
  align-items:center;
  border-top:15px solid #fff;
  border-left:15px solid #fff;
  border-right:15px solid #fff;
  border-bottom: 60px solid #fff;
  color:white;
}

#polaroid-img-1 {
    transform: translateY(20px) rotate(16deg);
    z-index: 2;
    left:7%;
    top:30px;
}

#polaroid-img-2 {
    transform: rotate(14deg);
    left:38%;
    top:40px;
}

#polaroid-img-3 {
    transform: rotate(-12deg);
    right: 15%;
    top: 40px;
}

#polaroid-img-1 img,
#polaroid-img-2 img,
#polaroid-img-3 img {
  width:20vw;
  text-align:center;
}

#index-page-razor {
  position:absolute;
  height:200px;
  left:0;
}

#index-page-neck-brush-white {
  position:absolute;
  height:180px;
  bottom:-100px;
  right:10%;
}

#index-page-razor {
  -webkit-transform: rotate(340deg);
  transform: rotate(340deg);
}

#index-page-neck-brush-white {
  -webkit-transform: rotate(-40deg);
  transform: rotate(-40deg);
}


.update-text-container {
  z-index: 3;
  border-radius: .5em;
  line-height: 2.5;
  color: #fff;
  margin:50px 0px;
  width: 100%;
  max-width: 400px;
  /* max-width: 500px;
  min-width: 310px; */
}

.update-text-container form div {
  display: flex;
  flex-direction: column;
}

.update-text-container form div input {
  margin-bottom: 20px;
  padding: 10px;
  border-radius: 10px;
}


#brand {
  font-weight: bold;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#brand a {
  color: var(--font-color-1);
  font-family: var(--font-primary);
}

/************************************/
/* NAVBAR */
/************************************/
header a {
  text-decoration: none;
}

header {
  width: 100vw;
  padding: 0 50px;
  font-family: var(--font-secondary);
  background: var(--accent-color);
  color: var(--font-color-2);
  height: 80px;
  display: flex;
  justify-content: space-between;
  position: fixed;
  z-index: 4;
  top:0;
}

.btn {
    background: #FFF;
    padding: 6px 10px;
    border-radius: .5em;
    font-weight: bold;
    color: #000;
    transition: all 0.3s ease;
}

.btn:hover {
    background: #000;
    border: 2px solid #fff;
    color: #fff;
    cursor: pointer;
    transform: scale(1.08);
}

ul {
  list-style: none;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-around;
}

ul a {
  color: var(--font-color-2);
  
  
}

ul li {
  padding: 5px;
  margin-left: 20px;
}

ul li a {
    font-family: var(--font-secondary);
}

ul li:hover {
  transform: scale(1.1);
  transition: 0.3s;
}

#login,
#signup {
  border-radius: 5px;
  padding: 5px 8px;
}

#login {
  border: 1px solid #498afb;
}

#signup {
  border: 1px solid #ff3860;
}

#signup, #login {
  width: fit-content;
}

#signup a {
  color: #ff3860;
}

#login a {
  color: #498afb;
}



#hamburger-icon {
  margin: auto 0;
  display: none;
  cursor: pointer;
  position: relative;
}

#hamburger-icon div {
  width: 35px;
  height: 3px;
  background-color: white;
  margin: 6px 0;
  transition: 0.4s;
}

.open .bar1 {
  -webkit-transform: rotate(-45deg) translate(-6px, 6px);
  transform: rotate(-45deg) translate(-6px, 6px);
}

.open .bar2 {
  opacity: 0;
}

.open .bar3 {
  -webkit-transform: rotate(45deg) translate(-6px, -8px);
  transform: rotate(45deg) translate(-6px, -8px);
}

.open .mobile-menu {
  display: flex;
  flex-direction: column;
  /* align-items: center; */
  align-items: flex-start;
  justify-content: flex-start;
}

.mobile-menu {
  display: none;
  position: absolute;
  top: 50px;
  /* left: 0; */
  height: calc(100vh - 50px);
}

.mobile-menu {
  display: none;
  position: absolute;
  top: 50px;
  right: 0;
  background-color: var(--accent-color)
}

.mobile-menu-width {
  width: fit-content;
  min-width: 160px;
}

.mobile-menu span {
  right: 0px;
  top: -40px;
  position: absolute;
}

.mobile-menu li {
  width: 100%;
  margin-bottom: 10px;
  /* margin-right: 60px; */
}

.mobile-menu a {
  display: block;
  width: 100%;
  text-align: left;
}

/* FONT PICKER */

.font-picker {
    position: relative;
    margin-bottom: 20px;
    max-width: 600px;
}

.font-picker label {
  display: block;
}

.font-search, .color-control input, #tenant_state {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 6px;
    margin-right: 1em;
}

.font-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #ddd;

    max-height: 300px;
    overflow-y: auto;
    overflow-x: hidden;

    display: none;
    z-index: 999;
}

.font-dropdown.open {
    display: block;
}

.font-item {
    padding: 10px;
    cursor: pointer;
    transition: background 0.15s ease;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.font-item:hover {
    background: #f5f5f5;
}

.font-item:hover {
    background: #f3f3f3;
}

/* optional: nicer scrollbar (modern browsers) */
.font-dropdown::-webkit-scrollbar {
    width: 8px;
}

.font-dropdown::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.font-dropdown::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 4px;
}

.font-dropdown::-webkit-scrollbar-thumb:hover {
    background: #aaa;
}

@media only screen and (max-width: 600px) {
  header nav {
    display: none;
  }

  #hamburger-icon {
    display: block;
  }
}

/************************************/
/* DASHBOARD FONTS AND COLORS */
/************************************/

.display-grid-3-sections {
  margin: 0px auto 20px;
  width: min(1100px, 95%);
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1em;
}

.display-grid-3-sections .display-flex-col-align-center {
    padding: 20px;
    border-radius: .5em;
    border: 5px solid var(--accent-color);
    display: flex;
    flex-direction: column;
}

.display-flex-col-align-center {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.dashboad-btns {
  padding: .5em 1.5em;
  border-radius: 10px;
  display: inline;
  margin: 10px 0px;
}

.display-flex-col-align-center form {
  width: 100%;
}

.dashboad-btns:hover {
  cursor: pointer;
}

.color-picker {
  width: 100px !important;
  padding: 0 !important;
  display: block;
}

@media (max-width: 1024px) {
    .display-grid-3-sections {
        grid-template-columns: repeat(2, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .display-grid-3-sections {
        grid-template-columns: 1fr;
    }

    #business-info-form .theme-field {
      width: 100%;
    }
}

@media (max-width: 500px) {
  /* Styles the parent (div) only if child (.theme-field) is a direct, immediate child */
div:has(> .theme-field) {
  flex-direction: column !important;
}
}


/* VIDEO/IMAGE HEADER */

.hero-video {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: block;
}

.hero-video img {
  width: 100%;
  height: 100%;
  display: block;
}

.background-video {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;
}

.overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    padding: 2rem;
    height: 100vh;
    width: 100%;
    /* width: 100vw; */
    /* max-width: 800px; */
}

.hero-content .hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.hero-content h1 {
    font-size: clamp(2rem, 5vw, 5rem);
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: clamp(1rem, 2vw, 1.5rem);
}

.hero,
.hero-video {
    min-height: 100dvh;
}

.hero-image {
    min-height: 100dvh;
}

.hero-image {
    position: relative;
    width: 100%;
    min-height: 100dvh;
    overflow: hidden;
}

.hero-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

/* LOCATION HOURS & PHONE NUMBER */

/* .phone-location-hours-desktop {
  display:block;
} */

.phone-location-hours-mobile {
  display: none;
}

.phone-location-hours-desktop {
  background-color: #000000;
  position: absolute;
  bottom: 0;
  display: flex;
  /* justify-content: space-evenly; */
  left: 0;
  /* background: #fff; */
  /* width: 55vw; */
  padding: 20px;
  border-top-right-radius: 25px;
}

.phone-location-hours-desktop span {
  background: #fff;
  border-radius: 15px;
  display:flex;
}

.phone-location-hours-desktop div {
  display: flex;
  /* flex-direction: column; */
  align-items: self-start;
  gap: 10px;
  line-height: .75;
  font-size: 14px;
  padding:10px;
}

.phone-location-hours-desktop div a {
  text-decoration: none;
}

.address-hours-container {
  display:flex;
  justify-content: space-between;
}

.address-hours-container div {
  display: flex;
  flex-direction:column;
}

.address-hours-container div svg {
  width:20px;
}

/************ PHONES SECTION ***********/

.phone-container {
  position: relative;
}

.phone-span-container {
  position: relative;
  /* width: 300px; */
  height: 350px;
  display: flex;
  justify-content: center;
  /* margin: 10px auto 0px; */
}

#phone-1,
#phone-2,
#phone-3 {
  position: absolute;
  left: 50%;
  bottom: 10%;
  width: 100px;
  height: 225px;
  border: 2px solid #fff;
  border-radius: 30px;
  transform-origin: bottom center;

  transition:
    transform 0.8s cubic-bezier(.22,.61,.36,1),
    opacity 0.8s ease;
}

/* STACKED STATE */
#phone-1 {
  background: #962fbf;
  z-index: 1;
  transform: translateX(-50%) rotate(0deg);
}

#phone-2 {
  background: #000;
  z-index: 3;
  transform: translateX(-50%) rotate(0deg);
}

#phone-3 {
  background: blue;
  z-index: 2;
  transform: translateX(-50%) rotate(0deg);
}

/* FAN STATE */
.phone-span-container.fanned #phone-1 {
  transform: translateX(-80%) rotate(-25deg);
}

.phone-span-container.fanned #phone-2 {
  transform: translateX(-50%) rotate(0deg);
}

.phone-span-container.fanned #phone-3 {
  transform: translateX(-20%) rotate(25deg);
}

/******* FADE IN AND OUT GALLERY IMAGES ********/

.gallery-form {
  align-items: center;
}

.gallery-slider {
    position: relative;
    width: 420px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.gallery-image {
    height: 60vh;
    border-radius: 15px;
    display: block;
    opacity: 1;
    transition: opacity .9s ease-in-out;
}

.gallery-image.fade-out {
    opacity: 0;
}

.gallery-controls {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
}

.gallery-controls button {
    padding: 10px 20px;
    cursor: pointer;
    border-radius:10px;
    color: #000;
    width: 90px;
    background-color: #fff;
}


/* CLIPPERS */

.index-page-clippers {
  -webkit-transform: rotate(-40deg);
  transform: rotate(-40deg);
  height: 100%;
  position:relative;
  left: 100%;
  transform: translateX(-50%);
  z-index:1;
  opacity:.5;
}

.index-page-clippers img {
  /* height: 100%; */
  width: 40%;
  margin: 0 auto;
}


/* GRID GALLERY */

.grid-gallery-container-mobile {
  display: none;
}

.grid-gallery-container {
    background-color: #000;
    /* padding: 10px; */
    width: 90vw;
    max-width: 1440px;
    margin: 50px auto;
}

.grid-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-auto-rows: 200px;
    gap: 10px;
    grid-auto-flow: dense;
    overflow: hidden;
}

.grid-wrapper > div {
    display: flex;
    justify-content: center;
    align-items: center;
}

.grid-wrapper > div > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
}

/* Classes for different sizes */
.grid-wrapper .wide {
    grid-column: span 2;
}

.grid-wrapper .tall {
    grid-row: span 2;
}

.grid-wrapper .big {
    grid-column: span 2;
    grid-row: span 2;
}

/* GRID GALLERY ANIMATION */
/* GRID GALLERY */

.grid-gallery-container {
    background-color: #000;
    padding-bottom: 50px;
    width: 90vw;
    max-width: 1440px;
    margin: 0px auto;
}

.grid-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-auto-rows: 200px;
    gap: 10px;
    grid-auto-flow: dense;
    overflow: hidden;
}

.grid-wrapper > div {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;

    opacity: 0;

    /* transition:
        transform 1.2s cubic-bezier(.22, 1, .36, 1),
        opacity 1s ease; */

    transition:
        transform .75s cubic-bezier(.22, 1, .36, 1),
        opacity 1s ease;
}

/* Initial positions */

.grid-wrapper > div:nth-child(odd) {
    transform: translateX(-150px) scale(1.15);
}

.grid-wrapper > div:nth-child(even) {
    transform: translateX(150px) scale(1.15);
}

/* Hero image */

.grid-wrapper > div.big {
    transform: scale(1.3);
    z-index: 2;
}

/* Active state */

.grid-gallery-container.active .grid-wrapper > div {
    opacity: 1;
}

.grid-gallery-container.active .grid-wrapper > div:not(.big) {
    transform: translateX(0) scale(1);
}

.grid-gallery-container.active .grid-wrapper > div.big {
    transform: scale(1);
}

/* Images */

.grid-wrapper > div > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
}

/* Grid sizing */

.grid-wrapper .wide {
    grid-column: span 2;
}

.grid-wrapper .tall {
    grid-row: span 2;
}

.grid-wrapper .big {
    grid-column: span 2;
    grid-row: span 2;
}

/* Mobile */

@media (max-width: 768px) {

    .grid-wrapper > div:nth-child(odd) {
        transform: translateX(-80px) scale(1.1);
    }

    .grid-wrapper > div:nth-child(even) {
        transform: translateX(80px) scale(1.1);
    }

    .grid-wrapper > div.big {
        transform: scale(1.15);
    }
}


#reviews-item-container {
  display: grid;
  grid-template-columns:1fr 1fr 1fr;
  width:90vw;
  justify-content:center;
}

/* FADE TEXT ON INDEX PAGE IN AND UP */

.scroll-text {
    --progress: 0;

    width: 90vw;
    margin: 0 auto;

    display: block;

    contain: layout paint;
}

/* RESET */
.scroll-text h3,
.scroll-text p {
    margin: 0;
    padding: 0;
    color: #fff;

    will-change: transform, opacity;
}

/* =========================
   DESKTOP ANIMATION
   ========================= */

.scroll-text h3 {
    font-size: 2rem;

    opacity: calc(clamp(0, var(--progress) * 1.2, 1));

    transform: translateY(
        calc((1 - clamp(0, var(--progress) * 1.2, 1)) * 40px)
    );
}

.scroll-text p {
    padding-top: 20px;

    opacity: calc(clamp(0, (var(--progress) - 0.25) * 1.33, 1));

    transform: translateY(
        calc((1 - clamp(0, (var(--progress) - 0.25) * 1.33, 1)) * 40px)
    );
}

/* =========================
   MOBILE ADJUSTMENTS
   ========================= */

@media (max-width: 768px) {

    .scroll-text {
        width: 92vw;
    }

    .scroll-text h3 {
        font-size: 1.5rem;
        transform: translateY(
            calc((1 - clamp(0, var(--progress) * 1.2, 1)) * 25px)
        );
    }

    .scroll-text p {
        font-size: 0.95rem;
        padding-top: 14px;

        transform: translateY(
            calc((1 - clamp(0, (var(--progress) - 0.25) * 1.33, 1)) * 25px)
        );
    }
}

/* UNDER FOLD (INDEX PAGE) */
/* Image */
#welcome-page .welcome-image {
    opacity: 0;
    transition: opacity 1s ease;
}

#welcome-page .animate-item {
    opacity: 0;
    transform: translateX(100px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

/* FINAL STATE */
#welcome-page.in-view .welcome-image {
    opacity: 1;
}

#welcome-page.in-view .animate-item {
    opacity: 1;
    transform: translateX(0);
}

/* V.I.P. PACKAGE */

#vip-package {
  display:flex;
  margin: 50px auto;
  width: 90vw;
  justify-content: space-between;
  align-items: center;
}

/********* REVIEWS *********/

#barber-pole-img-container {
  display: flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  margin-bottom: 30px;
}

#barber-pole-img-container img {
  height: 140px;
}

#reviews-container {
  background-color: #ffffff;
}

#reviews-container > div {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 50px 0;
    gap: 1rem;
}

#reviews-container div h3 {
  color: #000000;
  font-size: 2.5em;
}

.reviews-item {
  background: #fff;
  padding:10px;
  border-radius:10px;
  border: 1px solid #000;
  margin:0 20px;
}

.stars {
  color: #944324;
}

/*********** FOOTER ***************/

#contact-form {
  padding: 10px;
  border: 2px solid #fff;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#contact-form input {
  width: 100%;
  padding:5px 0px;
}

#contact-form input,
#contact-form textarea {
  border-radius: 5px;
}

#contact-form button {
  padding: 10px 25px;
  text-align: center;
  color: #fff;
  background:#000000;
  margin-top:20px;
  border-radius: 25px;
  font-size: 1em;
  border:none;
}

#contact-form button:hover {
  cursor: pointer;
}

#footer-nav ul li a,
#footer-addresses div p a {
  font-size:1.25em;
}

#footer-nav ul li {
  margin: 0px;
}

#footer-nav ul {
  align-items: flex-start;
}

#footer-container {
  background-color: #944324;
  width:100vw;
  padding:50px 0px;
}

.footer-header {
  text-align: center;
  font-size: 1.5em;
  margin-bottom:20px;
  text-decoration:underline;
}

#footer-container-div {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    margin: 0 auto;
    /* width: 90%; */
    color: #fff;
    padding-left: 20px;
}

#desktop-footer-addresses {
  display: block;
  padding-bottom: 50px;
}

.mobile-footer-addresses {
  display: none;
}

.site-map {
  font-size: 1.5em;
  padding-bottom: 20px;
  text-decoration: underline;
  text-align: center;
}

/* ABOUT PAGE */

.about-page-scissors {
  display: block;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
  opacity: .5;
  position:absolute;
  left:0;
  top: -70px;
  /* height: 40vh; */
}

.about-page-scissors img {
  display: block;
  width: 65%;
  height: auto;
  position:relative;
  top: -110px;
  /* right: 80px; */
}

#owner-container {
  position:relative;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  align-items: center;
  color: #fff;
}

.about-page-owner img {
  position: relative;
  z-index: 2;
  border-radius:10px;
  margin-bottom: 20px;
}

.about-page-clippers {
  -webkit-transform: rotate(140deg);
  transform: rotate(140deg);
}

#our-story-container {
  display: flex;
  justify-content:space-between;
  align-items:center;
  height:100%;
  gap:1rem;
}

#our-story-container div {
  color: #fff;
  line-height:1.5;
  position:relative;
  display:flex;
  /* width:60%; */
  gap: 1rem;
  flex-direction:column;
  justify-content: center;
  align-items: center;
}

#our-technicians {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  justify-items: center;
}

.our-technicians-image-container img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  /* max-width: 250px; */
  /* max-height: 190px; */
  border-radius: 10px;
  overflow: hidden;
}

.our-technicians-image-container {
  text-align: center;
  color: #000;
  background: #fff;
  padding:10px;border-radius: 10px;
  /* width:max-content; */
  width: 100%;
}

/**************************/
/* MOBILE STYLES */
/*************************/

@media (max-width: 1285px) {
  #index-page-neck-brush-white {
    bottom: -190px;
  }
}

@media (max-width: 1145px) {
  #welcome-page div {
    flex-direction: column-reverse;
  }

  .grid-gallery-container {
    display: none;
  }

  .grid-gallery-container-mobile {
    display: block;
  }

  .grid-wrapper-mobile{
    margin: 0 auto 20px;
    width: min(1145px, 90%);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1em;
}

.grid-wrapper-mobile img,
#reviews-container > div {
    width: 100%;
    height: 550px;
    object-fit: cover;
    display: block;
}

#reviews-container > div {
  height: auto;
}

#reviews-item-container {
      grid-template-columns: 1fr 1fr;
      gap: 2rem;
      margin: 0 auto;
}

#reviews-container div h3 {
  text-align: center;
}

  #vip-package {
    flex-direction: column;
  }

  .gallery-image {
    padding-top: 100px;
    width: auto;
    /* height: 85vh; */
    border-radius: 15px;
  }
}

@media (max-width: 1000px) {
  .about-page-scissors, .about-page-scissors img {
    display: none;
  }
  #footer-container-div {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5rem;
    padding-left: 0px;
  }

   #footer-addresses {
    display: flex;
    gap: 30px;
  }

  #second-location {
    padding: 0;
    margin-top: 50px;
  }

#our-story-container {
  gap: 5rem;
  flex-direction: column;
  width: 100%;
  }

  #our-story-container div {
    width: 100%;
  }
}

@media (max-width: 820px) {
  #index-page-razor {
  top: 170px;
  height:125px;
  }
}

@media (max-width: 720px) {
  .phone-location-hours-desktop {
    display: none !important;
  }

  .phone-location-hours-mobile {
    display: block;
  }

  .phone-location-hours-mobile {
  background-color: #000000;
  bottom: 0;
  display: flex;
  left: 0;
  padding: 20px;
}

  .phone-location-hours-mobile span {
  background: #fff;
  border-radius: 15px;
  display:flex;
}

.phone-location-hours-mobile  div {
  display: flex;
  /* flex-direction: column; */
  align-items: self-start;
  gap: 10px;
  line-height: .75;
  font-size: 14px;
  padding:10px;
}

.phone-location-hours-mobile div a {
  text-decoration: none;
}

  #reviews-item-container {
      grid-template-columns: 1fr;
  }
  .reviews-item {
    margin: 0px;
  }
}

@media (max-width: 685px) {
  #footer-addresses {
    gap: 15px;
  }
}

@media (max-width: 615px) {

.phone-location-hours-mobile span {
  flex-direction: column;
}

.address-hours-container div svg {
  display: none;
}

#polaroid-container {
      gap: 40px;
  }

#polaroid-img-1 img,
#polaroid-img-2 img,
#polaroid-img-3 img {
  width:85vw;
  gap: 20px;
}

  .grid-wrapper-mobile img {
    height: auto;
  }

  #polaroid-container {
    flex-direction: column;
  }

  #polaroid-img-1,
  #polaroid-img-2,
  #polaroid-img-3 {
    transform: translateY(0px) rotate(0deg);
    top: 150px;
  }

  #polaroid-img-1,
  #polaroid-img-2 {
    left:0;
}

#polaroid-img-3 {
    right: 0;
  }

#index-page-razor {
    position: absolute;
    height: 125px;
    left: 30%;
}

#index-page-neck-brush-white {
  height: 150px;
  bottom: -190px;
    }
}

@media (max-width: 577px) {
  .our-technicians-image-container {
    width: 100%;
  }

  .our-technicians-image-container img {
    max-width: 100%;
  }
}

@media (max-width: 520px) {
  #contact-form {
    margin: 0 20px;
  }
}

@media (max-width: 485px) {
  #footer-addresses {
    flex-direction: column;
  }

  #second-location {
    margin-top: 0px;
  }

  .about-page-owner img {
    width: 100%;
  }
}


