/************************************************************
*************************************************************
Theme Name: Main Mastershop Theme
Description: This is the main master theme
Author: fourplex
Author URI:   https://fourplex.de
Version: 1.0
*************************************************************
************************************************************/

@font-face {
  font-family: "Asap Condensed";
  src: url("./assets/fonts/AsapCondensed-Regular.eot");
  src: url("./assets/fonts/AsapCondensed-Regular.eot?#iefix")
      format("embedded-opentype"),
    url("./assets/fonts/AsapCondensed-Regular.woff2") format("woff2"),
    url("./assets/fonts/AsapCondensed-Regular.woff") format("woff"),
    url("./assets/fonts/AsapCondensed-Regular.ttf") format("truetype"),
    url("./assets/fonts/AsapCondensed-Regular.svg#AsapCondensed-Regular")
      format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Asap Condensed Bold";
  src: url("./assets/fonts/AsapCondensed-Bold.eot");
  src: url("./assets/fonts/AsapCondensed-Bold.eot?#iefix")
      format("embedded-opentype"),
    url("./assets/fonts/AsapCondensed-Bold.woff2") format("woff2"),
    url("./assets/fonts/AsapCondensed-Bold.woff") format("woff"),
    url("./assets/fonts/AsapCondensed-Bold.ttf") format("truetype"),
    url("./assets/fonts/AsapCondensed-Bold.svg#AsapCondensed-Bold")
      format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
  font-family: "Asap Condensed" !important;
}

:root {
  --color1: #575656 !important;
  --color2: #eceded !important;
  --color3: #f5f5f5 !important;
  --color4: #ffffff !important;
  --color5: #bd251a !important;
  /* --color5: #d60b0c !important; */
}

h1 {
  font-size: 70px !important;
  font-family: "Asap Condensed Bold" !important;
  color: var(--color5);
  text-transform: uppercase;
}
h2 {
  font-size: 40px !important;
  color: var(--color5);
  font-family: "Asap Condensed Bold" !important;
  text-transform: uppercase;
}
h3 {
  font-size: 35px !important;
  line-height: 30px !important;
}
h4 {
  font-size: 25px !important;
  line-height: 30px !important;
}

p {
  font-size: 20px !important;
  color: var(--color1);
  line-height: 30px !important;
  font-family: "Asap Condensed" !important;
}

i {
  font-family: "Font Awesome 6 Pro" !important;
}

.fa-brands {
  font-family: "Font Awesome 6 Brands" !important;
}

.bold {
  font-family: "Asap Condensed Bold" !important;
}

.container {
  padding: 10rem !important;
}
.container-flat {
  padding: 3.5rem 10rem !important;
}

.boxed {
  max-width: 70vw !important;
  margin: 0 auto;
  padding: 3.5rem;
}

button {
  background: var(--color5);
  text-transform: uppercase;
  color: var(--color4);
  font-size: 25px !important;
  text-align: center;
  padding: 0.5rem 2.5rem;
  border: none;
  outline: none;
  border-radius: 10px;
  font-family: "Asap Condensed" !important;
}
button.inverted {
  background: var(--color4);
  color: var(--color5);
}

.unscrollable {
  overflow: hidden;
}

/* NAVIGATION */
.burger {
  height: 3px;
  width: 50px;
  margin: 2.5px 0;
}

/* .nav-drawer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
}
.nav-drawer.show {
  max-height: 500px;
} */

.nav-drawer {
  height: calc(100vh - 150px);
  width: 100%;
  position: absolute;
  top: 150px;
  left: 0;
  opacity: 0;
  pointer-events: none;
  transition: all 0.35s ease-in-out;
}
.nav-drawer.show {
  opacity: 1;
  pointer-events: all;
}

#nav-drawer ul {
  list-style: none !important;
  padding-inline-start: 0 !important;
  transform: translateX(100%);
  transition: all 0.35s ease-in-out 0.25s;
}
#nav-drawer ul.slideIn {
  transform: translateX(0%);
}

#nav-drawer ul li a h4 {
  text-transform: uppercase;
  color: var(--color5);
}

/* HERO */
#hero {
  height: calc(100vh - 150px);
}

/* BENEFITS */
.benefit-card {
  padding: 2rem;
  border: 1px solid #808080;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
}

/* IMAGE INTERSECTION */
#image-intersection img {
  height: 100%;
  object-fit: cover;
}

/* BRANCHES */
#branch .swiper {
  width: 100%;
  height: 100%;
  margin: 3.5rem 0;
}

/* APPOINTMENT */
#appointment h1 {
  font-size: 17.5vw !important;
  max-width: 50%;
  margin-top: -20vh;
  margin-left: -5vw;
  line-height: 30vh;
}

#appointment article {
  width: 23vw;
}

/* REFERENCES */
#references .swiper-slide {
  transform: scale(0.6);
  transition: all 0.5s ease-in-out;
}

#references .swiper-slide img {
  height: 30rem;
  object-fit: cover;
  object-position: 25%;
  filter: blur(5px);
}
#references .swiper-slide img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(2px);
}

#references .swiper-slide *:not(img) {
  display: none;
}

#references .swiper-slide.swiper-slide-active * {
  display: block;
  filter: blur(0px);
}

#references .swiper-slide-prev,
#references .swiper-slide-next {
  transform: scale(0.8);
}

#references .swiper-slide.swiper-slide-active {
  transform: scale(1);
}

/* CONTACT SUBPAGE */
#contact-form form div {
  margin: 2rem 0;
}

#contact-form form span {
  height: 5rem;
}

#contact-form form span input,
#contact-form form textarea {
  height: 100%;
  width: 100%;
  padding: 0 10px;
  border: none;
  outline: none;
  border-radius: 10px;
  background: var(--color3);
  font-size: 20px;
  font-family: "Asap Condensed";
}
#contact-form form textarea {
  height: 25vh;
  width: 100%;
  padding: 10px;
  resize: none;
}
#contact-form form input[type="file"] {
  height: 100%;
  width: auto;
  padding: 0 10px;
  border: none;
  outline: none;
  font-size: 20px;
  font-family: "Asap Condensed";
}

/* BLOG SUBPAGE */
.blog-card {
  padding: 2rem;
  transition: box-shadow 0.35s ease-in-out;
}
.blog-card:hover {
  box-shadow: 0px 0px 100px #57565627;
}

#popup-container {
  display: none;
}
#popup-container.show {
  display: block !important;
}

#popup-container ul {
  margin: 1rem 0;
  font-size: 20px;
  font-family: "Asap Condensed";
  color: var(--color1);
  line-height: 30px !important;
}

/* FOOTER */
footer * {
  color: var(--color4);
}

footer i {
  font-size: 40px;
}

/* RESPONSIVENESS *********************/
@media screen and (max-width: 1024px) {
  .container {
    padding: 50px !important;
  }
  .container-flat {
    padding: 1.5rem 50px !important;
  }

  h1 {
    font-size: 40px !important;
  }
  h2 {
    font-size: 30px !important;
  }
  h3 {
    font-size: 25px !important;
    line-height: 25px !important;
  }
  h4 {
    font-size: 20px !important;
    line-height: 20px !important;
  }

  p {
    font-size: 15px !important;
    line-height: 20px !important;
  }

  button {
    font-size: 20px !important;
  }

  /* NAVIGATION */
  nav.flex {
    height: auto !important;
    flex-direction: row !important;
  }

  nav img {
    width: 35% !important;
  }
  nav i {
    font-size: 25px !important;
  }

  #nav-drawer ul {
    padding: 25vh 0 !important;
  }
  #nav-drawer ul h3 {
    font-size: 2rem !important;
  }

  .nav-drawer {
    top: 87.5px;
    height: calc(100vh - 85px);
  }

  /* HERO */
  #hero video {
    height: 85vh !important;
  }

  #hero div.absolute {
    height: auto !important;
    width: 100% !important;
    padding: 50px !important;
    border-radius: 25px 25px 0 0 !important;
  }

  #hero .hand {
    top: 10% !important;
    width: 100% !important;
  }

  /* ABOUT */
  #about img {
    width: 60% !important;
    transform: translateX(-5%) !important;
    margin-top: -10vh !important;
  }

  #wasching-maschine {
    width: 100% !important;
  }

  article.container-flat {
    padding: 2rem 0 !important;
  }

  /* BENEFTS */
  #benefits img.absolute {
    bottom: 6.5% !important;
  }

  /* TUTORIAL */
  #tutorial div.align-center {
    align-items: flex-start !important;
  }

  #tutorial div.align-center p {
    padding-right: 0 !important;
  }

  #tutorial a {
    margin-top: 1.5rem;
  }

  /* QUALITY */
  #quality {
    gap: 50px !important;
  }
  #quality img {
    width: 100% !important;
  }

  /* BRANCHES */
  #branch .swiper-slide div {
    min-height: 30rem !important;
  }

  /* #branch .swiper-button-prev {
    left: 3rem !important;
  }
  #branch .swiper-button-next {
    right: 3rem !important;
  } */

  #branch .swiper-pagination-bullets {
    bottom: 3rem;
  }
  .swiper-pagination-bullet {
    background: transparent !important;
    border: 1px solid var(--color5) !important;
    opacity: 0.75 !important;
  }
  .swiper-pagination-bullet-active {
    background: var(--color5) !important;
    border: 1px solid var(--color5) !important;
    opacity: 1 !important;
  }

  /* APPOINTMENT */
  #appointment {
    height: auto !important;
    overflow: hidden !important;
  }

  #appointment h1 {
    font-size: 30vw !important;
    margin-top: 0 !important;
    width: auto !important;
    max-width: 90%;
    line-height: 10vh;
    margin-left: -12vw;
  }

  #appointment article {
    width: 80vw;
  }

  #appointment article button {
    position: relative;
    z-index: 2;
  }

  #appointment article img {
    width: 75% !important;
    bottom: -1rem !important;
    right: 5% !important;
  }

  /* BLOG HERO */
  #hero .megaphone {
    bottom: 40% !important;
    right: -10% !important;
    width: 100% !important;
  }

  .blog-card img {
    width: 50vw !important;
  }
  .blog-card h2 {
    width: 60vw !important;
    word-break: break-all;
    hyphens: auto;
  }

  #popup {
    width: 85% !important;
  }

  /* FOOTER */
  footer span.flex {
    flex-direction: row !important;
  }
}


.flex {
    display: flex !important;
}
.grid {
    display: grid !important;
}

.space-between {
    justify-content: space-between !important;
}
.space-around {
    justify-content: space-around !important;
}
.space-evenly {
    justify-content: space-evenly !important;
}

.align-center {
    align-items: center !important;
}
.align-start {
    align-items: flex-start !important;
}
.align-end {
    align-items: flex-end !important;
}

.ta-center {
    text-align: center !important;
}

.gap {
    gap: 1.5rem !important;
}

.grid-3 {
    grid-template-columns: repeat(3, 1fr) !important;
}
.grid-2 {
    grid-template-columns: repeat(2, 1fr) !important;
}
.grid-4 {
    grid-template-columns: repeat(4, 1fr) !important;
}
.is-3 {
    width: 25% !important;
}
.is-6 {
    width: 50% !important;
}
.is-9 {
    width: 75% !important;
}
.color-1 { color: var(--color1) !important; }
.color-2 { color: var(--color2) !important; }
.color-3 { color: var(--color3) !important; }
.color-4 { color: var(--color4) !important; }
.color-5 { color: var(--color5) !important; }

.background-1 { background: var(--color1) !important; }
.background-2 { background: var(--color2) !important; }
.background-3 { background: var(--color3) !important; }
.background-4 { background: var(--color4) !important; }
.background-5 { background: var(--color5) !important; }

.relative {
    position: relative !important;
}
.absolute {
    position: absolute !important;
}
.z-index {
    z-index: 10 !important;
}

.overflow-hidden {
    overflow: hidden !important;
}
.overflow-xhidden {
    overflow-x: hidden !important;
}
.relative {
    position: relative !important;
}
.absolute {
    position: absolute !important;
}
.z-index {
    z-index: 10 !important;
}

.overflow-hidden {
    overflow: hidden !important;
}
.overflow-xhidden {
    overflow-x: hidden !important;
}
.element {
    height: 10px;
    width: 100px;
    background: var(--color5);
    margin: 1.5rem 0;
}
.not-mobile {
    display: block;
}
.not-desktop {
    display: none;
}

@media (max-width: 1024px) {
    .not-mobile {
        display: none !important;
    }
    .not-desktop {
        display: block !important;
    }

    .is-3, .is-6, .is-9 {
        width: 100% !important;
    }

    .grid-3, .grid-2, .grid-4 {
        grid-template-columns: 1fr !important;
    }
}
.swiper-button-next,
.swiper-button-prev {
    z-index: 20 !important;
}
img {
    max-width: 100%;
    height: auto;
}
ul {
    list-style: none;
}
a {
    text-decoration: none;
}