/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v8.4.14,
* Autoprefixer: v10.4.7
* Browsers: last 4 version
*/

/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v8.4.14,
* Autoprefixer: v10.4.7
* Browsers: last 4 version
*/

/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v8.4.14,
* Autoprefixer: v10.4.7
* Browsers: last 4 version
*/
:root {
  --text: #000000;
  --background: #ffffff;
  --grey: #f9f9f9;
  --primary: #00bfff;
  --secondary: #cce7f0;
  --accent: #3699ba;
  --title: "Satoshi", sans-serif;
  --sub: "General Sans", sans-serif;
}

::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  background: var(--background);
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: var(--primary);
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background-color: var(--text);
}

* {
  padding: 0;
  margin: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  line-height: 1.5;
}

html {
  scroll-padding-top: 5vh;
  scroll-behavior: smooth;
}

body {
  position: relative;
  overflow-x: clip;
}

#background {
  z-index: 1900;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.7);
}

.display-none {
  display: none;
}

.catch {
  position: relative;
  text-align: center;
  font-weight: 300;
  font-size: calc(1rem + 0.15vw);
  font-family: var(--sub);
  background-color: var(--text);
  color: var(--background);
  padding: 0.5em;

  .catch-links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: calc(1.5rem + 1vw);
    gap: 1em;
    position: absolute;
    top: calc(100vh - 2em);
    top: calc(100svh - 2em);
    left: 1em;
    text-decoration: inherit;
    color: inherit;
  }

  & a {
    text-shadow: 0 0 2vw black;
    white-space: nowrap;
    text-decoration: inherit;
    color: inherit;
  }

  & iconify-icon {
    margin-right: 0.3em;
  }
}

nav {
  z-index: 999;
  -webkit-box-shadow: 0 0 0.5em rgba(0, 0, 0, 0.5);
  box-shadow: 0 0 0.5em rgba(0, 0, 0, 0.5);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  background: var(--primary);
  font-family: var(--title);
  position: sticky;
  top: 0;
  font-size: calc(1rem + 0.3vw);

  .estimate {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0 4em 0 2em;
    background-color: var(--text);
    color: var(--primary);
    -webkit-clip-path: polygon(0% 0%, 100.1% 0%, 75.1% 100.3%, 0% 100%);
    clip-path: polygon(0% 0%, 100.1% 0%, 75.1% 100.3%, 0% 100%);
  }

  .estimate a {
    text-decoration: none;
    color: var(--background);
    font-weight: 700;
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
  }

  .estimate a:hover {
    color: var(--primary);
  }

  & ul {
    margin: 1em;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  & li {
    list-style-type: none;
  }

  & ul a,
  button {
    font-size: calc(1rem + 0.3vw);
    background-color: var(--primary);
    border: none;
    padding: 1em;
    text-decoration: none;
    color: var(--background);
    font-weight: 700;
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
  }

  & ul a:hover,
  button:hover {
    background-color: var(--background);
    color: var(--primary);
  }

  & button {
    padding: 1em 2em;
    display: none;
  }
}

.nav-open {
  -webkit-animation: menu 0.5s forwards;
  animation: menu 0.5s forwards;
}

@-webkit-keyframes menu {
  100% {
    translate: 0 0;
  }
}

@keyframes menu {
  100% {
    translate: 0 0;
  }
}

@media (width < 1200px) {
  nav {
    & ul {
      z-index: 1000;
      translate: -100vw 0;
      padding: 0;
      margin: 0;
      background-color: var(--background);
      width: 100vw;
      height: 100vh;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column;
      -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
      justify-content: space-evenly;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      position: fixed;
      top: 0;
      right: 0;
    }

    & li {
      text-align: center;
    }

    & ul a {
      display: inline-block;
      width: 50vw;
      color: var(--primary);
      background-color: var(--background);
      border: 0.1em solid var(--primary);
    }

    & ul a:hover {
      color: var(--background);
      background-color: var(--primary);
    }

    & button {
      display: block;
    }
  }
}

header {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  text-align: center;
  height: 100vh;
  height: 100lvh;
  background-image: -o-linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url(hero.avif);
  background-image: -webkit-gradient(
      linear,
      left top,
      left bottom,
      from(rgba(0, 0, 0, 0.5)),
      to(rgba(0, 0, 0, 0.5))
    ),
    url(hero.avif);
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url(hero.avif);
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 10vh 15vw 30vh 15vw;

  & h1 {
    text-shadow: 0 0 2vw black;
    font-size: calc(1rem + 3vw);
    font-weight: 1000;
    font-family: var(--title);
    color: var(--background);
    text-transform: uppercase;
  }

  & h1 span {
    font-size: calc(1rem + 5vw);
  }

  & p,
  a {
    margin-top: 1em;
    text-shadow: 0 0 1vw black;
    font-size: calc(1rem + 1vw);
    font-weight: 300;
    font-family: var(--sub);
    color: var(--background);
  }

  & a {
    font-size: calc(1rem + 0.75vw);
    text-transform: uppercase;
    margin-top: 2em;
    padding: 0.25em 0.5em;
    font-family: var(--title);
    text-decoration: none;
    font-weight: 800;
    border: 0.1em solid var(--background);
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
  }

  & a:hover {
    translate: 0 -0.2em;
  }
}

.about {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 10vh 10vw 3vh 10vw;

  .cards {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 8vw;
  }

  .card::before {
    z-index: -1;
    content: "";
    position: absolute;
    bottom: -1em;
    left: 25%;
    width: 50%;
    height: 2em;
    background-color: var(--primary);
    border-radius: 1em;
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
  }

  & iconify-icon {
    font-size: calc(2rem + 4vw);
    color: var(--primary);
  }
}

.card {
  margin-bottom: 20vh;
  margin-top: -15vh;
  background-color: var(--background);
  position: relative;
  border-radius: 3%;
  border: 2px solid black;
  padding: 1.5em 1em 2em 1em;
  text-align: center;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.card:hover::before,
.card:active::before {
  width: 80%;
  left: 10%;
}

.card h2 {
  margin-top: 0.5em;
  font-size: calc(1rem + 1vw);
  font-weight: 1000;
  font-family: var(--title);
  color: var(--text);
  text-transform: uppercase;
}

.card p {
  margin-top: 0.5em;
  font-size: calc(1rem + 0.2vw);
  font-weight: 400;
  font-family: var(--sub);
  color: var(--text);
}

@media (width< 1200px) {
  .about .cards {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

footer {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;

  & img {
    -o-object-fit: contain;
    object-fit: contain;
    width: max(10vw, 15vh);
  }

  .footer-top {
    padding: 0 5vw;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
  }

  .footer-icons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: calc(1rem + 2vw);
  }

  & iconify-icon {
    font-size: calc(2rem + 1vw);
    color: var(--text);
  }

  & .hours {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
  }

  & .hours p {
    padding: 0.2em 0.4em;
    font-size: calc(1rem + 0.5vw);
    font-weight: 800;
    font-family: var(--title);
    border: 0.1em solid black;
  }

  & ul {
    white-space: nowrap;
    padding: 1em;
    list-style: none;
    font-size: calc(0.5rem + 1vw);
    font-weight: 200;
    font-family: var(--title);
  }

  .footer-footer {
    font-size: calc(0.5rem + 0.5vw);
    padding: 1em;
    font-family: var(--sub);
    background-color: var(--text);
    color: var(--background);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }

  .footer-footer a {
    color: inherit;
  }
}

#about {
  position: relative;
  padding-bottom: 10vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-box-pack: space-evenly;
  -ms-flex-pack: space-evenly;
  justify-content: space-evenly;
  font-size: calc(1rem + 0.2vw);
  font-weight: 400;
  font-family: var(--sub);
  color: var(--text);

  #about-tag {
    position: absolute;
    margin-top: -15vh;
    top: 0;
  }

  .bio {
    max-width: 60ch;
  }

  & h3 {
    text-transform: uppercase;
    margin-left: -1em;
    font-size: calc(1rem + 1vw);
    font-weight: 800;
    font-family: var(--title);
    color: var(--text);
  }

  & p {
    text-align: justify;
    opacity: 0.8;
    padding: 1em;
  }

  .certifications {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 2em;
  }

  & a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: max(10vw, 10vh);
  }

  & img {
    -o-object-fit: contain;
    object-fit: contain;
    width: max(10vw, 10vh);
  }
  .areas {
    gap: 1em;
    margin-top: 5em;
    display: flex;
    flex-flow: row wrap;
    font-size: calc(1rem + 0.5vw);
    font-weight: 1000;
    font-family: var(--title);
    justify-content: center;
    align-items: center;
  }
  .areas p {
    transition: 0.3s;
    text-align: center;
    width: 12ch;
    border: 2px solid var(--text);
    opacity: 1;

    border-radius: 2em;
    box-shadow: 3px 3px black;
  }
  .areas p:hover {
    box-shadow: 0 0 black;
  }
}

@media (width< 1000px) {
  #about {
    min-height: 100vh;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;

    .certifications {
      margin-top: 1em;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
      -ms-flex-direction: row;
      flex-direction: row;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center;
    }

    & h3 {
      text-align: center;
    }
  }
}

#services {
  padding-top: 10vh;
  min-height: 100vh;
  background-color: var(--grey);

  & h4 {
    text-align: center;
    text-transform: uppercase;
    font-size: calc(1rem + 2vw);
    font-weight: 1000;
    font-family: var(--title);
  }

  & p {
    margin: 1em 1em 0 1em;
    text-align: center;
    font-size: calc(1rem + 0.2vw);
    font-weight: 400;
    font-family: var(--sub);
  }

  .service-boxes {
    padding: 5vw;
    gap: 5vw;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 5vw 1fr 5vw 1fr;
    grid-template-columns: 1fr 1fr 1fr;
  }

  .service-boxes div {
    max-width: 90vw;
    aspect-ratio: 16 / 9;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    overflow: clip;
    text-decoration: none;
    background-size: cover;
    background-position: center;
  }

  .service-boxes div p {
    width: 100%;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    position: absolute;
    margin: 0;
    padding: 1em;
    text-shadow: 0 0 2vw black;
    font-size: calc(1rem + 1vw);
    font-weight: 800;
    font-family: var(--title);
    color: var(--background);
    text-transform: uppercase;
  }

  .service-boxes div p:nth-of-type(2) {
    font-size: calc(1rem + 0.5vw);
    font-weight: 300;
    font-family: var(--sub);
    text-transform: unset;
    translate: 100%;
  }

  .service-boxes div:hover p:nth-of-type(1),
  .service-boxes div:active p:nth-of-type(1) {
    translate: -100%;
  }

  .service-boxes div:hover p:nth-of-type(2),
  .service-boxes div:active p:nth-of-type(2) {
    translate: 0;
  }

  & .service-boxes div:nth-of-type(1) {
    background-image: -o-linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
      url("services-imgs/kitchen3.avif");
    background-image: -webkit-gradient(
        linear,
        left top,
        left bottom,
        from(rgba(0, 0, 0, 0.5)),
        to(rgba(0, 0, 0, 0.5))
      ),
      url("services-imgs/kitchen3.avif");
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
      url("services-imgs/kitchen3.avif");
  }

  & .service-boxes div:nth-of-type(2) {
    background-image: -o-linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
      url("services-imgs/kitchen8.avif");
    background-image: -webkit-gradient(
        linear,
        left top,
        left bottom,
        from(rgba(0, 0, 0, 0.5)),
        to(rgba(0, 0, 0, 0.5))
      ),
      url("services-imgs/kitchen8.avif");
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
      url("services-imgs/kitchen8.avif");
  }

  & .service-boxes div:nth-of-type(3) {
    background-image: -o-linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
      url("services-imgs/kitchen2.avif");
    background-image: -webkit-gradient(
        linear,
        left top,
        left bottom,
        from(rgba(0, 0, 0, 0.5)),
        to(rgba(0, 0, 0, 0.5))
      ),
      url("services-imgs/kitchen2.avif");
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
      url("services-imgs/kitchen2.avif");
  }

  & .service-boxes div:nth-of-type(4) {
    background-image: -o-linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
      url("services-imgs/kitchen5.avif");
    background-image: -webkit-gradient(
        linear,
        left top,
        left bottom,
        from(rgba(0, 0, 0, 0.5)),
        to(rgba(0, 0, 0, 0.5))
      ),
      url("services-imgs/kitchen5.avif");
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
      url("services-imgs/kitchen5.avif");
  }

  & .service-boxes div:nth-of-type(5) {
    background-image: -o-linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
      url("services-imgs/kitchen6.avif");
    background-image: -webkit-gradient(
        linear,
        left top,
        left bottom,
        from(rgba(0, 0, 0, 0.5)),
        to(rgba(0, 0, 0, 0.5))
      ),
      url("services-imgs/kitchen6.avif");
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
      url("services-imgs/kitchen6.avif");
  }

  & .service-boxes div:nth-of-type(6) {
    background-image: -o-linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
      url("services-imgs/kitchen7.avif");
    background-image: -webkit-gradient(
        linear,
        left top,
        left bottom,
        from(rgba(0, 0, 0, 0.5)),
        to(rgba(0, 0, 0, 0.5))
      ),
      url("services-imgs/kitchen7.avif");
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
      url("services-imgs/kitchen7.avif");
  }
}

@media (width < 1200px) {
  .service-boxes {
    -ms-grid-columns: 1fr 1fr !important;
    grid-template-columns: 1fr 1fr !important;
  }
}

@media (width < 800px) {
  header {
    background-attachment: scroll !important;
  }

  .service-boxes {
    -ms-grid-columns: 1fr !important;
    grid-template-columns: 1fr !important;
  }
}

#portfolio {
  overflow: clip;
  position: relative;
  padding-top: 10vh;
  padding-bottom: 5vw;

  & h5 {
    text-align: center;
    text-transform: uppercase;
    font-size: calc(1rem + 2vw);
    font-weight: 1000;
    font-family: var(--title);
  }

  & p {
    margin: 1em 1em 0 1em;
    text-align: center;
    font-size: calc(1rem + 0.2vw);
    font-weight: 400;
    font-family: var(--sub);
  }
  #slideshow-container {
    position: relative;
    width: min(90vw, 600px);
    margin: 3em auto 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  #slidesContainer {
    position: relative;
    min-height: 50vh;
  }

  & img {
    background-color: var(--background);
    height: 50vh;
    border: 2px solid black;
    -webkit-box-shadow: 5px 5px black;
    box-shadow: 5px 5px black;
    max-width: 90vw;
    object-fit: cover;
  }
  & img:nth-of-type(1) {
    -o-object-fit: cover;
    object-fit: cover;
    aspect-ratio: 16/9;
    position: absolute;
    left: 0;
    translate: -50%;
    scale: 60%;
    z-index: -1;
  }
  & img:nth-of-type(2) {
    aspect-ratio: 16/9;
    -o-object-fit: cover;
    object-fit: cover;
    position: absolute;
    right: 0;
    translate: 50%;
    scale: 60%;
    z-index: -1;
  }

  #prevBtn,
  #nextBtn {
    background-color: var(--background);
    border: 2px solid black;
    aspect-ratio: 1;
    width: calc(2rem + 3vw);
    position: absolute;
    top: 50%;
    translate: 0 -50%;
    font-weight: bold;
    font-size: 3vw;
    -webkit-transition: 0.3s ease;
    -o-transition: 0.3s ease;
    transition: 0.3s ease;
    border-radius: 50%;

    overflow: visible;
    -webkit-box-shadow: 3px 3px black;
    box-shadow: 3px 3px black;
  }

  #prevBtn {
    right: calc(65% + 15vw);
  }
  #nextBtn {
    left: calc(65% + 15vw);
  }

  #prevBtn:hover,
  #nextBtn:hover {
    -webkit-box-shadow: 0 0 black;
    box-shadow: 0 0 black;
  }

  .button-container {
    text-align: center;
    margin: 1em 1em 1em;
  }

  .category-btn {
    -webkit-box-shadow: 2px 2px black;
    box-shadow: 2px 2px black;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    background-color: var(--background);
    font-family: var(--title);
    text-transform: uppercase;
    font-size: calc(0.5rem + 1vw);
    font-weight: 1000;
    padding: 0.25em 0.5em;
    margin: 0 10px;
  }

  .category-btn:nth-of-type(1) {
    -webkit-box-shadow: 0 0 black;
    box-shadow: 0 0 black;
  }
  .category-btn:hover {
    -webkit-box-shadow: 0 0 black;
    box-shadow: 0 0 black;
  }
  .modul {
    z-index: 2000 !important;
    position: fixed !important;

    top: 50% !important;
    left: 50% !important;
    -webkit-transform: translate(-50%, -50%) !important;
    -ms-transform: translate(-50%, -50%) !important;
    transform: translate(-50%, -50%) !important;
  }
  .tall {
    height: 90vh !important;
    width: auto !important;
  }
  .wide {
    width: 90vw !important;
    height: auto !important;
  }
}

#reviews {
  padding-top: 10vh;
  padding-bottom: 5vw;
  background-color: var(--grey);

  & h6 {
    text-align: center;
    text-transform: uppercase;
    font-size: calc(1rem + 2vw);
    font-weight: 1000;
    font-family: var(--title);
  }

  & p {
    margin: 1em 1em 0 1em;
    text-align: center;
    font-size: calc(1rem + 0.2vw);
    font-weight: 400;
    font-family: var(--sub);
  }

  .review {
    position: relative;
    width: 80%;
    padding: 1em;
    border-radius: 1em;
  }

  .review::before {
    z-index: 10;
    content: "``";
    font-size: calc(3rem + 10vw);
    font-weight: 1000;
    font-family: var(--sub);
    color: var(--primary);
    position: absolute;
    letter-spacing: -0.2em;
    top: -0.2em;
  }

  .review:nth-of-type(odd)::before {
    right: 1em;
  }

  .review:nth-of-type(even)::before {
    left: 1em;
  }

  .review:nth-of-type(odd) {
    margin: 5vw 5vw 0 auto;
  }

  .review:nth-of-type(even) {
    margin: 5vw auto 0 5vw;
  }

  .review:nth-of-type(odd) .person {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
  }

  .review:nth-of-type(even) .person {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }

  .name {
    font-size: calc(1rem + 0.3vw);
    font-weight: 1000;
    font-family: var(--title);
    color: var(--text);
  }

  & iconify-icon {
    font-size: 5em;
    margin: 0 0.1em;
    z-index: 10;
  }

  .review p {
    text-align: justify;
    opacity: 0.8;
    font-size: calc(1rem + 0.2vw);
    font-weight: 400;
    font-family: var(--sub);
    color: var(--text);
  }

  .review:hover::before {
    -webkit-animation: jump 3s infinite;
    animation: jump 3s infinite;
  }

  .person {
    margin: 0 10vw;
  }
}

@-webkit-keyframes jump {
  0%,
  40%,
  60%,
  80% {
    translate: 0;
  }

  50%,
  70% {
    translate: 0 -0.08em;
  }
}

@keyframes jump {
  0%,
  40%,
  60%,
  80% {
    translate: 0;
  }

  50%,
  70% {
    translate: 0 -0.08em;
  }
}

@media (width < 800px) {
  .review {
    width: 100% !important;
    margin: 5vw 0 0 0 !important;

    & p {
      margin: 0;
    }
  }
}

#contact {
  padding-top: 10vh;
  padding-bottom: 5vw;

  & form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: calc(1rem + 1vw);
    gap: 0.3em;
    color: var(--background);
  }

  & input,
  textarea {
    font-size: calc(1rem + 0.5vw);
    font-family: var(--sub);
    padding: 0.75em 0.5em;
  }

  & form .input-container,
  form .textarea-container {
    position: relative;
    border-radius: 0.5em 0 0 0.5em;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: var(--primary);
    border: solid 0.1em var(--primary);
  }

  & input:focus ~ label,
  textarea:focus ~ label {
    translate: 0 -0.2em;
  }

  & label {
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 0.5em;
    text-align: center;
  }

  & input,
  textarea {
    border: none;
    background-color: var(--grey);
    width: 30ch;
  }

  & button {
    background-color: var(--primary);
    color: var(--background);
    font-family: var(--title);
    border: none;
    font-weight: 1000;
    padding: 0.25em 0.5em;
    font-size: calc(1rem + 1vw);
    position: absolute;
    bottom: 0;
    left: calc(100% + 1em);
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
  }

  & button:hover {
    scale: 0.9;
  }

  & h6 {
    text-align: center;
    text-transform: uppercase;
    font-size: calc(1rem + 2vw);
    font-weight: 1000;
    font-family: var(--title);
  }

  & p {
    margin: 1em 1em 0 1em;
    text-align: center;
    font-size: calc(1rem + 0.2vw);
    font-weight: 400;
    font-family: var(--sub);
  }

  .contact-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }

  .contact-info {
    padding: 5vw;
    text-align: left;
    opacity: 0.8;
  }

  & lead {
    text-transform: uppercase;
    font-size: calc(1rem + 0.5vw);
    font-weight: 1000;
    font-family: var(--title);
  }

  & ul {
    margin: 1em;
    list-style-type: none;
    text-decoration: none;
    font-size: calc(1rem + 0.2vw);
    font-weight: 400;
    font-family: var(--sub);
  }

  & ul:nth-of-type(1) {
    margin-bottom: 2em;
  }

  & li {
    padding: 0.5em;
  }
}

@media (width < 1200px) {
  #contact {
    & button {
      left: initial;
      bottom: initial;
      top: calc(100% + 1em);
      right: 0;
    }

    & input,
    textarea {
      width: 70vw;
    }

    & form {
      padding-bottom: 4em;
      padding-top: 5vw;
    }
  }
}
