body {
  font-family: "Zalando Sans SemiExpanded", sans-serif;
}
body.freeze {
  overflow: hidden;
}

* {
  box-sizing: border-box;
}

.content {
  max-width: 1540px;
  padding: 0 1rem;
  margin: 0 auto;
}

@keyframes zoom {
  from {
    background-size: 100%;
  }
  to {
    background-size: 120%;
  }
}

#toTop {
    position: fixed;
    bottom: 1rem;
    right: 1rem;
    width: 60px;
    height: 60px;
    z-index: 3;
    cursor: pointer;
    opacity: 0;
    transition: 0.3s ease all;
    -webkit-tap-highlight-color: transparent;
}

#toTop svg {
  fill: var(--accent);
  width: 12px;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}
#toTop.show {
  display: flex;
  opacity: 1;
}

.card {
  position: relative;
  width: 300px;
  height: 200px;
  background-color: var(--textBlack);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  perspective: 1000px;
  box-shadow: 0 0 0 2px rgba(199, 185, 141, 0.5);
  transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.card img {
  border-radius: 10px;
  transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@media (min-width: 769px) and (hover: hover) {
  .card:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(199, 185, 141, 0.2);
  }
}
.cardContent {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 20px;
  box-sizing: border-box;
  background-color: var(--textBlack);
  transform: rotateX(-90deg);
  transform-origin: bottom;
  transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 769px) and (hover: hover) {
  .card:hover .cardContent {
    transform: rotateX(0deg);
  }
}
.cardDescription {
  margin: 0;
  color: var(--textLight);
  font-size: 0.9rem;
  text-align: center;
}

.card:hover svg {
  scale: 0;
}

.viewMore {
  background: var(--orange);
  color: var(--textLight);
  padding: 0.5rem 1rem;
  text-transform: uppercase;
  border-radius: 14px;
  outline: none;
  border: none;
  transition: 0.3s ease all;
  cursor: pointer;
  font-weight: bold;
}
@media (min-width: 769px) and (hover: hover) {
  .viewMore:hover {
    background: var(--accent);
    color: var(--textBlack);
  }
}

#heroWrapper #hero.subPage {
  height: 50vh;
  justify-content: flex-end;
  padding-bottom: 6rem;
}
#heroWrapper #hero.subPage h1 {
  font-size: 2rem;
  text-align: center;
}
#heroWrapper #hero.subPage .breadcrumbs {
  display: flex;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--textLight);
  margin-top: 1rem;
  z-index: 4;
}
@media (hover: hover) {
  #heroWrapper #hero.subPage .breadcrumbs a {
    transition: 0.3s ease all;
  }
  #heroWrapper #hero.subPage .breadcrumbs a:hover {
    color: var(--accent);
  }
}
#heroWrapper #hero.subPage .breadcrumbs a, #heroWrapper #hero.subPage .breadcrumbs span {
  background: none;
  padding: 0;
  font-size: 1rem;
  text-transform: uppercase;
}

#heroWrapper.subPageHeroWrapper {
  height: 50vh;
}

.subPageContent {
  background: var(--textLight);
}

.drawBorder {
  box-shadow: inset 0 0 0 3px var(--textBlack);
  color: var(--textBlack);
  transition: color 0.25s 0.0833333333s;
  position: relative;
  border-radius: 7px;
}
.drawBorder.active {
  color: var(--orange);
}
.drawBorder.active .drawBorder::before {
  border-bottom-width: 3px;
  border-left-width: 3px;
  border-radius: 7px;
}
.drawBorder.active .drawBorder::after {
  border-top-width: 3px;
  border-right-width: 3px;
  border-radius: 7px;
}
.drawBorder.active:before {
  border-color: var(--orange);
  transition: border-color 0s, width 0.25s, height 0.25s;
  width: 100%;
  height: 100%;
}
.drawBorder.active:after {
  border-color: var(--orange);
  transition: border-color 0s, width 0.25s, height 0.25s;
  width: 100%;
  height: 100%;
}

.drawBorder::before, .drawBorder::after {
  border: 0 solid transparent;
  box-sizing: border-box;
  content: "";
  pointer-events: none;
  position: absolute;
  width: 0;
  height: 0;
  bottom: 0;
  right: 0;
}

.drawBorder::before {
  border-bottom-width: 3px;
  border-left-width: 3px;
  border-radius: 7px;
}

.drawBorder::after {
  border-top-width: 3px;
  border-right-width: 3px;
  border-radius: 7px;
}

.drawBorder:hover {
  color: var(--orange);
}

.drawBorder:hover::before, .drawBorder:hover::after {
  border-color: var(--orange);
  transition: border-color 0s, width 0.25s, height 0.25s;
  width: 100%;
  height: 100%;
}

.drawBorder:hover::before {
  transition-delay: 0s, 0s, 0.25s;
}

.drawBorder:hover::after {
  transition-delay: 0s, 0.25s, 0s;
}

.hoverableBtn {
  background: none;
  border: none;
  cursor: pointer;
  line-height: 1.5;
  font: 700 1.2rem "Roboto Slab", sans-serif;
  padding: 1em 2em;
  letter-spacing: 0.05rem;
}

.hoverableBtn:focus {
  outline: 2px dotted var(--textBlack);
}

#notFound {
  background: var(--textLight);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 1rem;
  color: var(--textBlack);
  padding: 2rem 0;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
:root {
  --accent:#c7b98d;
  --text:#eeeee5;
  --textLight:#eeeee5;
  --textBlack:#1a1c1e;
  --orange:#b34325;
}

*, *::before, *::after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

img {
  height: auto;
}

/* 8. Avoid text overflows */
p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

a {
  text-decoration: none;
  color: inherit;
}

ul, ol {
  list-style: none;
}

svg {
  pointer-events: none;
}

a,
button,
[role=button] {
  -webkit-tap-highlight-color: transparent;
}

#heroWrapper {
  position: relative;
  height: 100dvh;
}
#heroWrapper #headerWrapper {
  transition: 0.3s ease all;
  position: fixed;
  top: 0;
  z-index: 4;
  width: 100%;
}
#heroWrapper #headerWrapper.sticky {
  background-color: rgba(26, 28, 30, 0.99);
}
#heroWrapper #headerWrapper.sticky #mainHeader #logoHeader img {
  width: 70px;
}
#heroWrapper #headerWrapper #mainHeader {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  padding-top: 1rem;
  padding-bottom: 1rem;
  position: relative;
  z-index: 2;
}
@media (max-width: 768px) {
  #heroWrapper #headerWrapper #mainHeader {
    padding-top: 0;
    padding-bottom: 0;
  }
}
#heroWrapper #headerWrapper #mainHeader #hamburger {
  justify-self: left;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (min-width: 1401px) {
  #heroWrapper #headerWrapper #mainHeader #hamburger {
    display: none;
  }
}
#heroWrapper #headerWrapper #mainHeader #hamburger svg {
  fill: var(--textLight);
  width: 36px;
  height: 36px;
}
#heroWrapper #headerWrapper #mainHeader #desktopNav {
  justify-self: left;
  display: flex;
}
@media (max-width: 1400px) {
  #heroWrapper #headerWrapper #mainHeader #desktopNav {
    display: none;
  }
}
#heroWrapper #headerWrapper #mainHeader #desktopNav > ul {
  display: flex;
  align-items: center;
  gap: 2rem;
}
@media (hover: hover) {
  #heroWrapper #headerWrapper #mainHeader #desktopNav > ul > li:hover::before {
    content: "";
    position: absolute;
    top: 10px;
    left: 0;
    width: 100%;
    height: 100%;
  }
  #heroWrapper #headerWrapper #mainHeader #desktopNav > ul > li:hover > a {
    opacity: 0.5;
  }
  #heroWrapper #headerWrapper #mainHeader #desktopNav > ul > li:hover > span {
    opacity: 0.5;
  }
  #heroWrapper #headerWrapper #mainHeader #desktopNav > ul > li:hover .subMenu {
    opacity: 1;
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;
    transition: transform 0.3s ease, opacity 0.3s ease, visibility 0s;
  }
  #heroWrapper #headerWrapper #mainHeader #desktopNav > ul > li:hover .subMenu li.active > a {
    background: var(--accent);
    opacity: 1;
  }
}
@media (hover: hover) and (hover: hover) {
  #heroWrapper #headerWrapper #mainHeader #desktopNav > ul > li:hover .subMenu li:hover > a {
    background: var(--accent);
    opacity: 1;
  }
}
#heroWrapper #headerWrapper #mainHeader #desktopNav > ul li {
  position: relative;
}
#heroWrapper #headerWrapper #mainHeader #desktopNav > ul li .subMenu {
  display: flex;
  flex-direction: column;
  background: var(--textLight);
  border-radius: 14px;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  position: absolute;
  width: max-content;
  top: 25px;
  opacity: 0;
  transform: translateX(-20px);
  visibility: hidden;
  pointer-events: none;
  transition: transform 0.3s ease, opacity 0.3s ease, visibility 0s linear 0.3s;
}
#heroWrapper #headerWrapper #mainHeader #desktopNav > ul li .subMenu li a {
  color: var(--textBlack);
  padding: 0.5rem 1rem;
  border-radius: 14px;
  font-size: 0.8rem;
  font-weight: 300;
  text-transform: unset;
  transition: 0.3s ease background-color;
}
#heroWrapper #headerWrapper #mainHeader #desktopNav > ul li > a {
  color: var(--text);
  transition: 0.3s ease all;
  font-weight: 300;
  text-transform: uppercase;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
#heroWrapper #headerWrapper #mainHeader #desktopNav > ul li > a span svg {
  fill: var(--accent);
  width: 6px;
}
#heroWrapper #headerWrapper #mainHeader #desktopNav > ul li.active > a {
  color: var(--accent);
}
#heroWrapper #headerWrapper #mainHeader #logoHeader {
  justify-self: center;
}
#heroWrapper #headerWrapper #mainHeader #logoHeader img {
  width: 150px;
  transition: 0.3s ease all;
}
@media (max-width: 768px) {
  #heroWrapper #headerWrapper #mainHeader #logoHeader img {
    width: 100px;
  }
}
#heroWrapper #headerWrapper #mainHeader #socials {
  justify-self: right;
  display: flex;
  align-items: center;
  gap: 1rem;
}
@media (max-width: 768px) {
  #heroWrapper #headerWrapper #mainHeader #socials {
    display: none;
  }
}
#heroWrapper #headerWrapper #mainHeader #socials a {
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  transition: 0.3s ease all;
}
@media (hover: hover) {
  #heroWrapper #headerWrapper #mainHeader #socials a:hover {
    opacity: 0.5;
  }
}
@media (max-width: 970px) {
  #heroWrapper #headerWrapper #mainHeader #socials a span {
    display: none;
  }
}
#heroWrapper #headerWrapper #mainHeader #socials a svg {
  fill: var(--accent);
  width: 14px;
}
#heroWrapper #hero {
  background-image: url("../images/hero.webp");
  height: 100dvh;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  position: absolute;
  top: 0;
  z-index: 1;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem;
}
@media (max-width: 1200px) {
  #heroWrapper #hero {
    background-image: url("../images/hero_1200.webp");
  }
}
@supports (-webkit-overflow-scrolling: touch) {
  #heroWrapper #hero {
    background-attachment: scroll;
  }
}
#heroWrapper #hero::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  background-color: #1a1c1e;
  opacity: 0.5;
  pointer-events: none;
}
#heroWrapper #hero h1 {
  font-size: 1rem;
  text-transform: uppercase;
  color: var(--text);
  z-index: 4;
}
@media (max-width: 1024px) {
  #heroWrapper #hero h1 {
    font-size: 0.9rem;
  }
}
@media (max-width: 768px) {
  #heroWrapper #hero h1 {
    font-size: 0.8rem;
  }
}
@media (max-width: 420px) {
  #heroWrapper #hero h1 {
    font-size: 0.7rem;
  }
}
#heroWrapper #hero h2 {
  font-size: 4.5rem;
  color: var(--text);
  text-transform: uppercase;
  z-index: 4;
  text-align: center;
}
@media (max-width: 1024px) {
  #heroWrapper #hero h2 {
    font-size: 3rem;
  }
}
@media (max-width: 768px) {
  #heroWrapper #hero h2 {
    font-size: 2rem;
  }
}
@media (max-width: 420px) {
  #heroWrapper #hero h2 {
    font-size: 1.5rem;
  }
}
#heroWrapper #hero a {
  padding: 1rem 2rem;
  border-radius: 30px;
  background: var(--orange);
  z-index: 4;
  color: var(--text);
  transition: 0.3s ease all;
  text-transform: uppercase;
}
@media (hover: hover) {
  #heroWrapper #hero a:hover {
    background: var(--accent);
    color: var(--textBlack);
  }
}

#mobileNav {
  position: fixed;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100dvh;
  background: var(--textLight);
  transition: 0.3s ease left;
  background: var(--textBlack);
  z-index: 5;
  overflow-y: auto;
}
@media (min-width: 1401px) {
  #mobileNav {
    display: none;
  }
}
#mobileNav.active {
  left: 0;
}
#mobileNav .toggleSubmenu {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}
#mobileNav #closeMobileNav {
  position: absolute;
  top: 1rem;
  right: 1rem;
}
#mobileNav #closeMobileNav svg {
  fill: var(--textLight);
  width: 24px;
  height: 24px;
}
#mobileNav > ul {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 7rem 1rem 1rem 1rem;
}
#mobileNav > ul li {
  font-weight: bold;
}
#mobileNav > ul li a {
  color: var(--textLight);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.4rem;
}
#mobileNav > ul li a svg {
  fill: var(--textLight);
  width: 14px;
}
#mobileNav > ul li.active > a {
  color: var(--accent);
}
#mobileNav > ul .subMenu {
  transform: scaleY(0);
  transform-origin: top left;
  transition: 0.3s ease all;
  overflow: hidden;
  position: absolute;
  padding-left: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
}
#mobileNav > ul .subMenu li a {
  font-size: 1rem;
  font-weight: normal;
  justify-content: flex-start;
}
#mobileNav > ul .subMenu.expanded {
  transform: scaleY(1);
  position: relative;
}
#mobileNav #mobileLogo {
  position: absolute;
  top: 1rem;
  left: 1rem;
}
#mobileNav #mobileLogo img {
  width: 60px;
}

#categoriesContent {
  background-image: url("../images/pattern.png");
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  position: relative;
  padding-top: 6rem;
  padding-bottom: 10rem;
}
@media (max-width: 440px) {
  #categoriesContent {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
}
#categoriesContent h2 {
  color: var(--orange);
  margin: 1rem auto 1rem auto;
  text-align: center;
  z-index: 1;
  position: relative;
  font-size: 2rem;
  text-transform: uppercase;
}
@media (max-width: 440px) {
  #categoriesContent h2 {
    font-size: 1.5rem;
  }
}
#categoriesContent h3 {
  color: var(--textLight);
  z-index: 1;
  position: relative;
  text-align: center;
}
@media (max-width: 440px) {
  #categoriesContent h3 {
    font-size: 0.9rem;
  }
}
#categoriesContent .categoriesDescription {
  color: var(--textLight);
  z-index: 1;
  position: relative;
  text-align: center;
  margin: 1rem 0 4rem 0;
  font-weight: bold;
}
@media (max-width: 440px) {
  #categoriesContent .categoriesDescription {
    font-size: 0.9rem;
  }
}
#categoriesContent #categoriesOverlay {
  width: 100%;
  height: 100%;
  background-color: rgba(26, 28, 30, 0.991);
  position: absolute;
  top: 0;
  z-index: 1;
}
#categoriesContent #categories {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  grid-gap: 2rem;
  justify-items: center;
}
#categoriesContent #categories .category {
  height: 400px;
}
@media (max-width: 768px) {
  #categoriesContent #categories .category {
    height: 300px;
  }
}
#categoriesContent #categories .category img {
  width: 300px;
  height: 400px;
  object-fit: cover;
}
@media (max-width: 768px) {
  #categoriesContent #categories .category img {
    height: 300px;
  }
}
#categoriesContent #categories .category span {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(26, 28, 30, 0.6);
  color: var(--textLight);
  font-size: 1.2rem;
  text-transform: uppercase;
  padding: 0.5rem;
  text-align: center;
  font-weight: bold;
}

#reviews {
  background: white;
  padding: 6rem 0;
}
@media (max-width: 440px) {
  #reviews {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
}
#reviews h2 {
  font-size: 0.9rem;
  font-weight: normal;
  color: var(--orange);
  text-align: center;
  margin-bottom: 1rem;
  text-transform: uppercase;
}
#reviews h3 {
  color: var(--textBlack);
  font-size: 2rem;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 4rem;
}
@media (max-width: 440px) {
  #reviews h3 {
    margin-bottom: 2rem;
    font-size: 1.5rem;
  }
}
#reviews .splide__slide {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  border-radius: 14px;
}
#reviews .splide__slide p {
  color: var(--textBlack);
  font-style: italic;
  text-align: center;
  font-size: 1.2rem;
  opacity: 0.75;
  margin-top: 2rem;
  margin-bottom: 2rem;
  max-width: 70%;
  margin-bottom: auto;
}
@media (max-width: 440px) {
  #reviews .splide__slide p {
    max-width: 100%;
  }
}
#reviews .splide__slide span {
  margin-top: 0.5rem;
}
#reviews .splide__slide:nth-of-type(even) {
  background: var(--textLight);
}
#reviews .splide__slide .quote {
  width: 64px;
  fill: var(--orange);
  margin-bottom: auto;
}
#reviews .splide__slide .profile {
  width: 32px;
  fill: var(--orange);
}
#reviews #customPagination {
  text-align: center;
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin: 2rem auto;
  align-items: center;
}
#reviews #customPagination > div {
  width: 48px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
#reviews #customPagination button {
  background: var(--textBlack);
  border: none;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin: 0 5px;
  cursor: pointer;
  transition: 0.3s ease all;
}
@media (hover: hover) {
  #reviews #customPagination button:hover {
    background: var(--accent);
  }
}
#reviews #customPagination button.is-active {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: transparent;
  border: 2px solid var(--accent);
  cursor: pointer;
  position: relative;
  padding: 0;
}
#reviews #customPagination button.is-active:after {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#footerWrapper {
  background-image: url(../images/pattern.png);
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  position: relative;
  padding-top: 6rem;
}
@media (max-width: 768px) {
  #footerWrapper {
    padding-top: 2rem;
  }
}
#footerWrapper #footerOverlay {
  width: 100%;
  height: 100%;
  background-color: rgba(26, 28, 30, 0.991);
  position: absolute;
  top: 0;
  z-index: 1;
}
#footerWrapper .content {
  display: flex;
  position: relative;
  z-index: 2;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  #footerWrapper .content {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}
#footerWrapper .content .left {
  display: flex;
  flex-direction: column;
}
#footerWrapper .content .left img {
  width: 150px;
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  #footerWrapper .content .left img {
    margin-left: auto;
    margin-right: auto;
  }
}
#footerWrapper .content .left h2 {
  color: var(--textLight);
}
@media (max-width: 768px) {
  #footerWrapper .content .left h2 {
    text-align: center;
  }
}
#footerWrapper .content .left h3 {
  margin-top: 0.5rem;
  color: var(--textLight);
  opacity: 0.75;
}
@media (max-width: 768px) {
  #footerWrapper .content .left h3 {
    text-align: center;
    margin-bottom: 1rem;
  }
}
#footerWrapper .content .left .instagram, #footerWrapper .content .left .footerContact {
  margin-top: 1rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
@media (max-width: 768px) {
  #footerWrapper .content .left .instagram, #footerWrapper .content .left .footerContact {
    justify-content: center;
  }
}
#footerWrapper .content .left .instagram svg, #footerWrapper .content .left .footerContact svg {
  width: 14px;
  fill: var(--accent);
}
#footerWrapper .content .left .instagram span, #footerWrapper .content .left .footerContact span {
  color: var(--accent);
  font-size: 0.9rem;
}
#footerWrapper .content .left #cities {
  margin-top: 1rem;
  margin-bottom: 1rem;
  display: flex;
  gap: 0.5rem;
  align-items: center;
  color: var(--accent);
}
@media (max-width: 768px) {
  #footerWrapper .content .left #cities {
    flex-direction: column;
  }
}
#footerWrapper .content .left #cities .separator {
  width: 1px;
  height: 100%;
  background: var(--accent);
}
@media (max-width: 768px) {
  #footerWrapper .content .left #cities .separator {
    display: none;
  }
}
#footerWrapper .content .right {
  margin-left: auto;
}
@media (max-width: 768px) {
  #footerWrapper .content .right {
    margin-right: auto;
    margin-top: 2rem;
  }
}
#footerWrapper .content .right nav ul {
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 0.5rem;
}
@media (max-width: 768px) {
  #footerWrapper .content .right nav ul {
    flex-direction: column;
    border-bottom: none;
  }
}
#footerWrapper .content .right nav ul li a {
  color: var(--accent);
}
#footerWrapper .content .copyright {
  flex-basis: 100%;
  padding: 2rem 0;
  text-align: center;
  color: var(--textLight);
  opacity: 0.75;
  font-size: 0.9rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 1rem;
}

#heroWrapper #hero.subPage.galleryHero {
  background-image: url("../images/woodHero.jpg");
}
@supports (-webkit-overflow-scrolling: touch) {
  #heroWrapper #hero.subPage.galleryHero {
    background-attachment: scroll;
  }
}

.galleryContent {
  padding: 2rem 1rem;
  position: relative;
}
.galleryContent ul {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 1rem 0;
}
.galleryContent ul li {
  position: relative;
  display: inline-block;
  text-decoration: none;
  cursor: pointer;
  padding: 0.5rem 1rem;
  transition: 0.3s ease all;
  font-size: 0.8rem;
  text-transform: uppercase;
  -webkit-tap-highlight-color: transparent;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  justify-content: center;
  gap: 1rem;
  margin: 1rem 0;
  justify-items: center;
  min-height: 100px;
}
.gallery #loaderOverlay {
  display: none;
}
.gallery #loaderOverlay.active {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  position: absolute;
  width: 100%;
  height: 100%;
  background: var(--textLight);
}
.gallery #loaderOverlay.active img {
  animation: spin 6s linear infinite;
  width: 60px;
  height: 60px;
}
.gallery a {
  transition: 0.3s ease all;
}
.gallery img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.3s;
}
@media (max-width: 500px) {
  .gallery img {
    width: 100%;
    height: auto;
  }
}
@media (hover: hover) {
  .gallery img:hover {
    transform: scale(1.05);
  }
}

#heroWrapper #hero.subPage.kitchenHero {
  background-image: url("../images/kitchen.jpg");
}
#heroWrapper #hero.subPage.contactHero {
  background-image: url("../images/contact.jpg");
}

.serviceContent {
  max-width: 1000px;
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.serviceContent p {
  margin-bottom: 30px;
  line-height: 1.7em;
  font-weight: 300;
}
.serviceContent .separator {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.subPageContent.contactSubPageContent {
  background: white;
}

.contactContent .phone, .contactContent .email {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 1rem;
  color: var(--orange);
}
.contactContent .phone > div, .contactContent .email > div {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}
.contactContent .phone .titleInPhone, .contactContent .email .titleInPhone {
  color: var(--textBlack);
  font-weight: bold;
}
.contactContent .phone svg, .contactContent .email svg {
  fill: var(--orange);
  width: 16px;
}
.contactContent .email {
  margin-top: 1rem;
}
.contactContent #contactForm {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 1rem;
  margin: 2rem 0;
  background: var(--textLight);
  padding: 1rem 4rem;
  border-radius: 14px;
}
@media (max-width: 768px) {
  .contactContent #contactForm {
    grid-template-columns: 1fr;
    padding: 1rem;
  }
}
.contactContent #contactForm .inputWrapper {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.contactContent #contactForm .inputWrapper.fullWidth {
  grid-column: 1/-1;
}
.contactContent #contactForm .inputWrapper svg {
  width: 16px;
  fill: var(--textBlack);
  opacity: 0.75;
}
.contactContent #contactForm .inputWrapper input, .contactContent #contactForm .inputWrapper textarea {
  border: none;
  outline: none;
  padding: 0.5rem 1rem;
  background: transparent;
  font-size: 1.2rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  font-family: inherit;
  resize: none;
  width: 100%;
}
.contactContent #contactForm button {
  grid-column: 1/-1;
  background: var(--orange);
  width: max-content;
  padding: 0.5rem 1rem;
  border-radius: 14px;
  color: var(--textLight);
  outline: none;
  border: none;
  cursor: pointer;
  transition: 0.3s ease all;
  font-size: 1rem;
  margin: 0 auto;
}
@media (hover: hover) {
  .contactContent #contactForm button:hover {
    background: var(--accent);
    color: var(--textBlack);
  }
}
.contactContent #contactForm h2 {
  margin: 1rem 0;
  font-size: 1.2rem;
  text-align: center;
  grid-column: 1/-1;
}
@media (max-width: 500px) {
  .contactContent #contactForm h2 {
    font-size: 1rem;
  }
}

#counters {
  display: flex;
  flex-direction: column;
  gap: 5rem;
  background: var(--textLight);
  padding-top: 6rem;
  padding-bottom: 6rem;
}
@media (max-width: 768px) {
  #counters {
    padding-top: 2rem;
    padding-bottom: 2rem;
    gap: 3rem;
  }
}
#counters #counterSegments {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6rem;
}
@media (max-width: 930px) {
  #counters #counterSegments {
    gap: 2rem;
  }
}
@media (max-width: 768px) {
  #counters #counterSegments {
    flex-direction: column;
  }
}
#counters #counterSegments .counterSegment {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
@media (hover: hover) {
  #counters #counterSegments .counterSegment:hover .counterSegmentTop svg {
    transform: scale(1.1);
  }
  #counters #counterSegments .counterSegment:hover > span {
    color: var(--orange);
    opacity: 1;
  }
}
#counters #counterSegments .counterSegment .counterSegmentTop {
  display: flex;
  align-items: center;
}
#counters #counterSegments .counterSegment .counterSegmentTop span {
  font-size: 1.2rem;
  width: 73px;
}
#counters #counterSegments .counterSegment svg {
  fill: var(--orange);
  width: 90px;
  height: 90px;
  transition: 0.3s ease all;
}
@media (max-width: 1070px) {
  #counters #counterSegments .counterSegment svg {
    width: 70px;
    height: 70px;
  }
}
@media (max-width: 930px) {
  #counters #counterSegments .counterSegment svg {
    width: 50px;
    height: 50px;
  }
}
@media (max-width: 768px) {
  #counters #counterSegments .counterSegment svg {
    width: 70px;
    height: 70px;
  }
}
#counters #counterSegments .counterSegment span {
  text-transform: uppercase;
  font-weight: bold;
  text-align: center;
  letter-spacing: 2px;
  opacity: 0.75;
}
#counters #counterSegments .counterSegment > span {
  border-bottom: 1px solid var(--textBlack);
  transition: 0.3s ease all;
}
@media (max-width: 1070px) {
  #counters #counterSegments .counterSegment > span {
    font-size: 0.8rem;
  }
}
#counters #countersText {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
#counters #countersText p {
  font-size: 1.2rem;
  text-align: center;
  opacity: 0.75;
}
@media (max-width: 768px) {
  #counters #countersText p {
    font-size: 1rem;
  }
}
#counters #countersText p span {
  color: var(--orange);
  opacity: 1;
  font-weight: bold;
}

/*# sourceMappingURL=style.css.map */
