* {
  box-sizing: border-box;
}

body {
  background-color: #fff2e0;
  margin: 0;
  padding: 0;
  font-family: "Roboto", sans-serif;
}

@font-face {
  font-family: "PPNeueCorp";
  font-style: normal;
  font-weight: 500;
  src: url("/assets/fonts/PPNeueCorp/PPNeueCorp-CompactMedium.woff2")
    format("woff2");
  font-display: swap;
}

@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 100;
  src: url(/assets/fonts/Roboto/Roboto-ExtraLight.ttf) format("truetype");
  font-display: swap;
}

@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 200;
  src: url(/assets/fonts/Roboto/Roboto-Light.ttf) format("truetype");
  font-display: swap;
}

@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 300;
  src: url(/assets/fonts/Roboto/Roboto-Regular.ttf) format("truetype");
  font-display: swap;
}

.header-desktop {
  position: fixed;
  top: 0;
  left: 0;
  padding: 0.8rem 2.2rem 0.8rem 2.2rem;
  width: 100%;
  z-index: 1000;
  border-bottom: 1px solid #fff2e080;
  transition: top 0.4s ease, background-color 0.3s ease;
}

.header-desktop.scrolled {
  background: linear-gradient(
    0deg,
    rgba(29, 29, 29, 0) 0%,
    rgba(29, 29, 29, 0.8) 100%
  );
}

.header-desktop nav {
  display: flex;
  justify-content: space-between;
}

.header-desktop .nav-links {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 1.2rem;
}

.header-desktop .nav-link {
  font-size: 1.1rem;
  font-weight: 100;
  color: #fff2e0;
  text-decoration: none;
}

.nav-btn {
  background-color: #34656d;
  display: flex;
  align-items: center;
  gap: 4px;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  padding: 0.8rem 1.4rem;
  font-family: "Roboto", sans-serif !important;
  color: #fff2e0;
  font-size: 1rem;
  font-weight: 100 !important;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
}

.nav-btn img {
  margin-top: 2px;
  width: 10px;
  height: auto;
}

.mobile-header {
  display: none;
  justify-content: space-between;
  width: 100%;
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  padding: 15px;
  transition: all 0.3s ease-in-out;
  background: linear-gradient(
    0deg,
    rgba(29, 29, 29, 0) 0%,
    rgba(29, 29, 29, 0.8) 100%
  );
}

.mobile-header nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.nav-menu {
  background: transparent;
  border: none;
}

.line {
  background-color: #fff2e0;
  width: 25px;
  height: 1px;
  margin-bottom: 5px;
}

.line-small {
  background-color: #fff2e0;
  width: 20px;
  height: 1px;
  margin-bottom: 5px;
  float: right;
}

.menu-mobile {
  display: none;
  background-color: #fff2e0;
  clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
  display: flex;
  height: 100%;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 10000;
}

.menu-close {
  height: 20px;
  position: relative;
  width: 20px;
}

.menu-closing {
  position: absolute;
  right: 1.4rem;
  top: 1.8rem;
}

.menu-links {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 15%;
  left: 1.4rem;
}

.menu-links a {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 1.7rem;
  font-weight: 200;
  text-decoration: none;
  padding: 0.4rem 0;
  color: #1a1a1d;
}

.menu-bottom {
  position: absolute;
  bottom: 2rem;
  left: 4%;
}

.vertical-bar {
  color: #1a1a1d;
}

main {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  overflow: hidden;
  width: 100%;
}

main .hero {
  position: relative;
  width: 100%;
  height: 100%;
}

main .img-container {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.scroll-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 80% 20%;
  filter: brightness(40%);
}

.header-img {
  filter: brightness(45%) !important;
}

.hero-text {
  position: absolute;
  bottom: 20%;
  left: 6rem;
  right: 6rem;
  z-index: 2;
  padding: 5% 0 5% 0;
}

h1 {
  font-family: "PPNeueCorp", sans-serif;
  color: #fff2e0;
  font-weight: 500;
  font-size: 3.8rem;
  line-height: 3.8rem;
  margin-top: 0;
  margin-bottom: 0;
  width: 40%;
}

.hero-text p {
  color: #fff2e0;
  font-weight: 100;
  font-size: 1.2rem;
  width: 45%;
  margin-top: 0.8rem;
}

.hero-btn-layout {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-top: 1.8rem;
}

.hero-btn {
  background-color: #34656d;
  display: flex;
  align-items: center;
  gap: 4px;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  padding: 0.8rem 1.4rem;
  font-family: "Roboto", sans-serif !important;
  color: #fff2e0;
  font-size: 1rem;
  font-weight: 100 !important;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  transition: background-color 0.2s cubic-bezier(0.445, 0.05, 0.55, 0.95),
    color 0.2s ease;
}

.hero-btn:hover {
  background-color: #fff2e0;
  color: #1a1a1d;
  font-weight: 200;
}

.hero-btn:hover img {
  filter: invert(80%);
}

.hero-btn img {
  margin-top: 2px;
  width: 10px;
  height: auto;
  transition: filter 0.25s ease;
}

.hero-btn-layout a {
  color: #fff2e0;
  font-weight: 100;
  text-decoration: 1px underline;
  text-underline-offset: 3px;
}

.hero-btn-layout a img {
  width: 10px;
  height: auto;
  transition: transform 0.3s cubic-bezier(0.47, 0, 0.745, 0.715);
}

.hero-btn-layout a:hover {
  text-decoration: none;
}

.hero-btn-layout a:hover img {
  transform: rotate(225deg);
}

.scroll-disc {
  position: absolute;
  bottom: 0;
  right: 6rem;
  z-index: 2;
  overflow: hidden !important;
  display: flex;
  gap: 2px;
}

.scroll-disc p {
  color: #fff2e0;
  font-weight: 100;
  font-size: 0.9rem;
}

.scroll-disc img {
  width: 10px;
  height: auto;
}

.intro-section {
  margin: 6rem;
}

.line-top {
  width: 100%;
  height: 1px;
  background-color: #1a1a1d;
  margin-bottom: 1.8rem;
}

.intro-header {
  display: flex;
  justify-content: space-between;
}

.intro-header h2 {
  color: #1a1a1d;
  font-weight: 500;
  font-size: 2.2rem;
  line-height: 2.2rem;
  width: 70%;
  margin-top: 0;
  font-family: "PPNeueCorp", sans-serif;
  margin-bottom: 0;
}

.shuffle {
  font-size: 0.9rem;
  font-weight: 200;
  color: #1a1a1d;
}

.shuffle-text.typing {
  animation: blinkCursor 0.8s steps(2, start) infinite;
}

@keyframes blinkCursor {
  0%,
  100% {
    border-color: transparent;
  }
  50% {
    border-color: #fff2e0;
  }
}

.intro-text p {
  font-size: 1.2rem;
  font-weight: 100;
  color: #1a1a1d;
  width: 70%;
}

.intro-btn-layout {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-top: 2rem;
}

.intro-btn {
  background-color: #34656d;
  display: flex;
  align-items: center;
  gap: 4px;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  padding: 0.8rem 1.4rem;
  font-family: "Roboto", sans-serif !important;
  color: #fff2e0;
  font-size: 1rem;
  font-weight: 100 !important;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  transition: background-color 0.2s cubic-bezier(0.445, 0.05, 0.55, 0.95),
    color 0.2s ease;
}

.intro-btn:hover {
  background-color: #1a1a1d;
  color: #fff2e0;
  font-weight: 200;
}

.intro-btn img {
  margin-top: 2px;
  width: 10px;
  height: auto;
}

.intro-btn-layout a {
  color: #1a1a1d;
  font-weight: 100;
  text-decoration: 1px underline;
  text-underline-offset: 3px;
}

.intro-btn-layout a:hover {
  text-decoration: none;
}

.intro-btn-layout a img {
  width: 10px;
  height: auto;
  transition: transform 0.3s cubic-bezier(0.47, 0, 0.745, 0.715);
}

.intro-btn-layout a:hover img {
  transform: rotate(225deg);
}

.services-section {
  margin: 6rem 0 0 0;
  background-color: #2f5755;
  padding: 4rem 6rem;
  border-radius: 45px 45px 0 0;
}

.services-intro h2 {
  color: #fff2e0;
  font-weight: 500;
  font-size: 2.2rem;
  line-height: 2.2rem;
  margin: 0;
  font-family: "PPNeueCorp", sans-serif;
}

.services-intro p {
  color: #fff2e0;
  font-weight: 100;
  font-size: 1.2rem;
}

.services-block {
  margin-top: 3rem;
}

.services-laoyut {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 0;
}

.services-block h3 {
  color: #fff2e0;
  font-weight: 500;
  font-size: 1.8rem;
  margin: 0;
  font-family: "PPNeueCorp", sans-serif;
}

.service-item h4 {
  color: #fff2e0;
  font-weight: 300;
  font-size: 1.3rem;
  margin-bottom: 0;
  margin-top: 1.4rem;
}

.service-item p {
  color: #fff2e0;
  font-size: 1rem;
  font-weight: 100;
  width: 90%;
  margin-bottom: 0;
}

.service-item a {
  color: #fff2e0;
  font-size: 1rem;
  font-weight: 100;
  text-decoration: underline;
  text-underline-offset: 3px;
  display: inline-flex;
  align-items: center;
  gap: 2px;
  margin-top: 8px;
}

.services-btn-layout {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  margin-top: 4rem;
}

.services-btn {
  background-color: #fff2e0;
  display: flex;
  align-items: center;
  gap: 4px;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  padding: 0.8rem 1.4rem;
  font-family: "Roboto", sans-serif !important;
  color: #1a1a1d;
  font-size: 1rem;
  font-weight: 200 !important;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  transition: background-color 0.2s cubic-bezier(0.445, 0.05, 0.55, 0.95),
    color 0.2s ease;
}

.services-btn:hover {
  background-color: #1a1a1d;
  color: #fff2e0;
  font-weight: 200;
}

.services-btn img {
  margin-top: 2px;
  width: 10px;
  height: auto;
  transition: filter 0.25s ease;
}

.services-btn:hover img {
  filter: invert(80%);
}

.services-btn-layout a:hover {
  text-decoration: none;
}

.services-btn-layout a img {
  width: 10px;
  height: auto;
  transition: transform 0.3s cubic-bezier(0.47, 0, 0.745, 0.715);
}

.services-btn-layout a:hover img {
  transform: rotate(225deg);
}

.services-btn-layout img {
  width: 10px;
  height: auto;
  transition: transform 0.3s cubic-bezier(0.47, 0, 0.745, 0.715);
}

.services-btn-layout a {
  color: #fff2e0;
  font-weight: 100;
  text-decoration: 1px underline;
  text-underline-offset: 3px;
}

.img-section {
  display: flex;
  align-items: center;
  justify-content: center;
  height: calc(100vh + 6rem);
  overflow: hidden;
  width: 100%;
}

.img-section .middle-img {
  position: relative;
  top: -6rem;
  width: 100%;
  height: 100%;
}

.img-section .img-container {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.scroll-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  filter: brightness(50%);
}

.middle-text {
  position: absolute;
  bottom: 4rem;
  left: 6rem;
  right: 6rem;
  z-index: 2;
  padding: 5% 0 5% 0;
}

.middle-text h2 {
  color: #fff2e0;
  font-weight: 500;
  font-size: 2.2rem;
  line-height: 2.2rem;
  margin: 0;
  font-family: "PPNeueCorp", sans-serif;
}

.middle-text p {
  color: #fff2e0;
  font-weight: 100;
  font-size: 1.2rem;
  width: 45%;
  margin-top: 0.8rem;
}

.middle-btn-layout {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-top: 1.8rem;
}

.middle-btn-layout a {
  color: #fff2e0;
  font-weight: 100;
  text-decoration: 1px underline;
  text-underline-offset: 3px;
}

.middle-btn-layout a img {
  width: 10px;
  height: auto;
  transition: transform 0.3s cubic-bezier(0.47, 0, 0.745, 0.715);
}

.middle-btn-layout a:hover {
  text-decoration: none;
}

.middle-btn-layout a:hover img {
  transform: rotate(225deg);
}

.review-section {
  margin: 0 6rem 6rem 6rem;
}

.review-header h2 {
  color: #1a1a1d;
  font-weight: 500;
  font-size: 2.2rem;
  line-height: 2.2rem;
  margin: 0;
  width: 70%;
  font-family: "PPNeueCorp", sans-serif;
}

.review-header p {
  font-size: 1.2rem;
  font-weight: 100;
  color: #1a1a1d;
  width: 70%;
}

.review-stars {
  display: flex;
  align-items: center;
  gap: 2px;
}

.stars {
  display: flex;
  gap: 1px;
}

.stars img {
  width: 20px;
}

.review-stars p {
  margin: 0;
  font-size: 1rem;
}

.reviews-layout {
  display: flex;
  gap: 1.2rem;
  margin-top: 2rem;
  align-items: flex-start;
  overflow-x: auto;
  overflow-y: visible;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  overscroll-behavior-x: contain;
  touch-action: auto;
  padding-bottom: 45px;
}

.review-item {
  position: relative;
  background: #fdebd0;
  box-shadow: 0 77px 22px 0 rgba(0, 0, 0, 0), 0 50px 20px 0 rgba(0, 0, 0, 0.01),
    0 28px 17px 0 rgba(0, 0, 0, 0.05), 0 12px 12px 0 rgba(0, 0, 0, 0.09),
    0 3px 7px 0 rgba(0, 0, 0, 0.1);
  padding: 2rem 1.3rem 1.5rem 1.3rem;
  width: 330px;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  flex: 0 0 auto;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.quote-icon {
  position: absolute;
  top: 1rem;
  left: 1.3rem;
}

.review-count {
  position: absolute;
  top: 1rem;
  right: 1.3rem;
  display: flex;
  align-items: center;
  gap: 1px;
}

.review-count img {
  width: 19px;
  height: auto;
}

.review-text {
  margin-top: 2rem;
}

.review-text p {
  font-size: 1.1rem;
  font-weight: 200;
  color: #1a1a1d;
}

.author {
  display: flex;
  align-items: center;
  gap: 6px;
}

.author p {
  margin: 0;
  color: #1a1a1d;
  font-weight: 300;
}

.author img {
  width: 40px;
}

.author-disclaimer {
  color: #65625e !important;
  font-weight: 200;
}

.slider-buttons-wrapper {
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
  margin-top: calc(2rem - 45px);
}

.reviews-layout::-webkit-scrollbar {
  display: none;
}
.reviews-layout {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.reviews-layout.is-dragging {
  scroll-snap-type: none;
  scroll-behavior: auto;
}

/* Mobile: softer snapping to reduce axis lock conflicts */
@media (max-width: 768px) {
  .reviews-layout {
    scroll-snap-type: x proximity;
  }
}

.next-slider,
.prev-slider {
  background: transparent;
  border: 1px solid #1e201e;
  border-radius: 2px;
  cursor: pointer;
  height: 44px;
  width: 74px;
}

.next-slider img,
.prev-slider img {
  width: 20px;
}

.gallery-section {
  margin: 4rem 6rem 6rem 6rem;
}

.gallery-section h2 {
  color: #1a1a1d;
  font-weight: 500;
  font-size: 2.2rem;
  line-height: 2.2rem;
  margin: 0;
  width: 70%;
  font-family: "PPNeueCorp", sans-serif;
}

.gallery-section p {
  font-size: 1.2rem;
  font-weight: 100;
  color: #1a1a1d;
  width: 70%;
}

.gallery-layout {
  display: flex;
  justify-content: space-between;
  gap: 1.2rem;
}

.img-large {
  width: 50%;
  height: 800px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
}

.img-large img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.img-small {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  width: 50%;
}

.img-small-item {
  width: 100%;
  height: calc(400px - 0.6rem);
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
}

.img-small-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nails-img {
  object-position: 50% 94%;
}

.gallery-btn-layout {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  margin-top: 4rem;
}

.gallery-btn {
  background-color: #34656d;
  display: flex;
  align-items: center;
  gap: 4px;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  padding: 0.8rem 1.4rem;
  font-family: "Roboto", sans-serif !important;
  color: #fff2e0;
  font-size: 1rem;
  font-weight: 200 !important;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  transition: background-color 0.2s cubic-bezier(0.445, 0.05, 0.55, 0.95),
    color 0.2s ease;
}

.gallery-btn:hover {
  background-color: #1a1a1d;
  color: #fff2e0;
  font-weight: 200;
}

.gallery-btn img {
  width: 10px;
  height: auto;
  transition: filter 0.25s ease;
}

.gallery-btn-layout a {
  color: #1a1a1d;
  font-weight: 100;
  text-decoration: 1px underline;
  text-underline-offset: 3px;
}

.gallery-btn-layout a img {
  width: 10px;
  height: auto;
  transition: transform 0.3s cubic-bezier(0.47, 0, 0.745, 0.715);
}

.gallery-btn-layout a:hover {
  text-decoration: none;
}

.gallery-btn-layout a:hover img {
  transform: rotate(225deg);
}

.faq-section {
  margin: 6rem;
}

.faq-section h2 {
  color: #1a1a1d;
  font-weight: 500;
  font-size: 2.2rem;
  line-height: 2.2rem;
  margin: 0;
  width: 70%;
  font-family: "PPNeueCorp", sans-serif;
}

.faq-section p {
  font-size: 1.2rem;
  font-weight: 100;
  color: #1a1a1d;
  width: 70%;
  margin-bottom: 0;
}

.faq-item {
  border-bottom: 1px solid #1a1a1d;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: #1a1a1d;
  font-size: 1.1rem;
  text-align: left;
  padding: 20px 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: color 0.3s ease;
}

.faq-icon {
  width: 20px;
  height: 20px;
  fill: #1a1a1d;
  transition: transform 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.faq-item h4 {
  color: #1a1a1d;
  font-family: "Roboto", sans-serif !important;
  font-weight: 200;
  font-size: 1.3rem;
  margin: 1rem 0 0.5rem 0;
}

.faq-answer p {
  color: #1a1a1d;
  font-weight: 100;
  font-size: 1.2rem;
  padding: 0 0 20px;
  margin-top: 0;
}

.faq-item a {
  color: #34656d;
  text-underline-offset: 3px;
  text-decoration: 1px solid underline;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.215, 0.61, 0.355, 1),
    opacity 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
  opacity: 0;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  opacity: 1;
}

.faq-item.open .faq-icon {
  transform: rotate(180deg);
}

.faq-btn-layout {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  margin-top: 4rem;
}

.faq-btn-layout a {
  color: #1a1a1d;
  font-weight: 100;
  text-decoration: 1px underline;
  text-underline-offset: 3px;
}

.faq-btn-layout a img {
  width: 10px;
  height: auto;
  transition: transform 0.3s cubic-bezier(0.47, 0, 0.745, 0.715);
}

.faq-btn-layout a:hover {
  text-decoration: none;
}

.faq-btn-layout a:hover img {
  transform: rotate(225deg);
}

.blog-section {
  margin: 6rem;
}

.blog-intro h2 {
  color: #1a1a1d;
  font-weight: 500;
  font-size: 2.2rem;
  line-height: 2.2rem;
  margin: 0;
  width: 70%;
  font-family: "PPNeueCorp", sans-serif;
}

.blog-intro p {
  font-size: 1.2rem;
  font-weight: 100;
  color: #1a1a1d;
  width: 70%;
  margin-bottom: 0;
}

.blog-layout {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.2rem;
  margin-top: 2rem;
}

.blog-item {
  width: 100%;
  height: 560px;
  position: relative;
  cursor: pointer;
  overflow: hidden;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
}

.blog-item:hover .blog-img img {
  transform: scale(1.09);
}

.blog-img {
  width: 100%;
  height: 100%;
}

.blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(70%);
  transition: all 0.3s ease-in-out;
}

.blog-text {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  left: 1rem;
}

.blog-text h3 {
  color: #fff2e0;
  font-family: "PPNeueCorp", sans-serif;
  font-weight: 500;
  font-size: 1.7rem;
  line-height: 1.7rem;
  margin-bottom: 1rem;
  word-break: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}

.blog-text p {
  color: #fff2e0 !important;
  width: 100%;
  font-weight: 200;
  font-size: 1.1rem;
  margin-top: 0;
}

.contact-section {
  margin: 6rem;
}

.contact-section h2 {
  color: #1a1a1d;
  font-weight: 500;
  font-size: 2.2rem;
  line-height: 2.2rem;
  margin: 0;
  width: 70%;
  font-family: "PPNeueCorp", sans-serif;
}

.contact-layout {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
}

.contact-layout p {
  font-size: 1.2rem;
  font-weight: 100;
  color: #1a1a1d;
  width: 70%;
  margin-bottom: 0;
}

.map-wrapper {
  width: 100%;
  height: 450px;
  position: relative;
  margin-top: 19.2px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
}

#map {
  width: 100%;
  height: 100%;
}

.overlay-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.overlay-img img {
  filter: brightness(50%);
  object-fit: cover;
  object-position: 100% 20%;
  width: 100%;
  height: 450px;
}

#map-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: #fff2e0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 10;
}

#map-overlay p {
  font-size: 1.1rem;
  font-weight: 100;
  margin-bottom: 20px;
  padding: 0 20px;
  color: #fff2e0;
}

#map-overlay a {
  font-size: 1rem;
  font-weight: 100;
  color: #fff2e0;
  text-decoration: underline;
  text-underline-offset: 2px;
}

#accept-map {
  width: 140px;
  height: 45px;
  font-size: 1rem;
  font-weight: 200;
  font-family: "Inter", sans-serif !important;
  background-color: #fff2e0;
  color: #080808;
  border: none;
  cursor: pointer;
  margin-top: 1rem;
}

.contact-info {
  margin-top: 2rem;
  width: 80%;
}

.contact-info ul {
  padding: 0;
}

.contact-info ul li {
  list-style: none;
  display: flex;
  align-items: center;
  line-height: 2rem;
  gap: 7px;
}

.contact-info ul li a {
  font-weight: 100;
  color: #1a1a1d;
  font-size: 1.2rem;
  text-decoration: none;
}

.contact-info ul li img {
  width: 16px;
  height: auto;
}

.contact-line {
  width: 80%;
  background-color: #1a1a1d80;
  height: 0.5px;
}

.adress-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 1rem;
  padding-bottom: 1rem;
  width: 80%;
}

.adress-item {
  display: flex;
  align-items: flex-start;
  gap: 7px;
}

.adress-item img {
  margin-top: 2px;
}

.adress-item p {
  margin-top: 0 !important;
  width: 100%;
}

.adress-item a {
  font-weight: 100;
  color: #1a1a1d;
  font-size: 1.2rem;
  text-decoration: none;
}

.opening-hours {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 2rem;
}

footer {
  background-color: #1a1a1d;
  position: relative;
  padding: 2rem 6rem 0 6rem;
  overflow: hidden;
}

footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("/assets/icons/logo-footer.svg") no-repeat;
  background-size: min(85vmin, 900px);
  z-index: 0;
  pointer-events: none;
}

.footer-layout {
  position: relative;
  z-index: 1;
  width: 80%;
  display: flex;
  justify-content: space-between;
}

.footer-layout h4 {
  font-family: "PPNeueCorp", sans-serif;
  color: #585861;
  font-weight: 500;
  font-size: 1.6rem;
  margin: 0;
}

.footer-layout ul {
  padding: 0;
  margin: 0;
}

.footer-layout ul li {
  list-style: none;
  line-height: 1.3rem;
}

.footer-layout ul li a {
  color: #fff2e0;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 100;
}

.footer-bottom {
  position: relative;
  z-index: 1;
  margin-top: 4rem;
}

.social-link {
  margin-bottom: 0.5rem;
}

.footer-bottom-layout {
  position: relative;
  z-index: 1;
  border-top: 1px solid #fff2e0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  color: #fff2e0;
  font-weight: 100;
  font-size: 0.9rem;
  margin: 0.8rem 0;
}

.footer-bottom a {
  color: #fff2e0;
  font-weight: 100;
  font-size: 0.9rem;
  margin: 0.8rem 0;
  text-decoration: none;
}

@media (max-width: 768px) {
  .header-desktop {
    display: none;
  }
  .mobile-header {
    display: flex;
  }
  .hero-text {
    left: 1rem;
    right: 1rem;
    bottom: 15%;
    padding: 0;
  }
  h1 {
    font-size: 2rem;
    line-height: 2rem;
    width: 100%;
  }
  .hero-text p {
    width: 100%;
    font-size: 1.1rem;
  }
  .rmv-mobile {
    display: none;
  }
  .hero-btn {
    font-size: 1rem;
    gap: 2px;
    padding: 0.7rem 1.1rem;
  }
  .hero-btn img {
    width: 9px;
    height: auto;
  }
  .hero-btn-layout a {
    font-size: 1rem;
  }
  .hero-btn-layout a img {
    width: 9px;
    height: auto;
  }
  .scroll-disc {
    right: 1rem;
  }
  .intro-section {
    margin: 6rem 1rem 2rem 1rem;
  }
  .shuffle {
    display: none;
  }
  .intro-header h2 {
    width: 100%;
    font-size: 1.8rem;
    line-height: 1.8rem;
  }
  .intro-text p {
    width: 100%;
    font-size: 1.1rem;
  }
  .intro-btn {
    font-size: 1rem;
    gap: 2px;
    padding: 0.7rem 1.1rem;
  }
  .intro-btn img {
    width: 9px;
    height: auto;
  }
  .intro-btn-layout a {
    font-size: 1rem;
  }
  .intro-btn-layout a img {
    width: 9px;
    height: auto;
  }
  .services-section {
    margin: 4rem 0 0 0;
    padding: 4rem 1rem;
    border-radius: 15px 15px 0 0;
  }
  .services-intro h2 {
    width: 100%;
    font-size: 1.8rem;
    line-height: 1.8rem;
  }
  .services-intro p {
    font-size: 1.1rem;
  }
  .services-block h3 {
    font-size: 1.6rem;
  }
  .services-laoyut {
    grid-template-columns: 1fr;
  }
  .service-item h4 {
    font-size: 1.2rem;
  }
  .services-btn {
    font-size: 1rem;
    gap: 2px;
    padding: 0.7rem 1.1rem;
  }
  .services-btn img {
    width: 9px;
    height: auto;
  }
  .services-btn-layout a {
    font-size: 1rem;
  }
  .services-btn-layout a img {
    width: 9px;
    height: auto;
  }
  .img-section {
    height: 100vh;
  }
  .img-section .middle-img {
    top: 0;
  }
  .middle-text {
    left: 1rem;
    right: 1rem;
  }
  .middle-text h2 {
    width: 100%;
    font-size: 1.8rem;
    line-height: 1.8rem;
  }
  .middle-text p {
    width: 100%;
    font-size: 1.1rem;
  }
  .middle-btn-layout a {
    font-size: 1rem;
  }
  .middle-btn-layout a img {
    width: 9px;
    height: auto;
  }
  .review-section {
    margin: 6rem 1rem;
  }
  .review-header h2 {
    width: 100%;
    font-size: 1.8rem;
    line-height: 1.8rem;
  }
  .review-header p {
    width: 100%;
    font-size: 1.1rem;
  }
  .next-slider,
  .prev-slider {
    height: 40px;
    width: 68px;
  }
  .gallery-section {
    margin: 6rem 1rem;
  }
  .gallery-section h2 {
    width: 100%;
    font-size: 1.8rem;
    line-height: 1.8rem;
  }
  .gallery-section p {
    width: 100%;
    font-size: 1.1rem;
  }
  .gallery-layout {
    flex-direction: column-reverse;
  }
  .img-large {
    width: 100%;
    height: 400px;
  }
  .img-small {
    width: 100%;
    flex-direction: column-reverse;
  }
  .img-small-item {
    height: 400px;
  }
  .gallery-btn {
    font-size: 1rem;
    gap: 2px;
    padding: 0.7rem 1.1rem;
  }
  .gallery-btn img {
    width: 9px;
    height: auto;
  }
  .gallery-btn-layout a {
    font-size: 1rem;
  }
  .gallery-btn-layout a img {
    width: 9px;
    height: auto;
  }
  .faq-section {
    margin: 6rem 1rem;
  }
  .faq-section h2 {
    width: 100%;
    font-size: 1.8rem;
    line-height: 1.8rem;
  }
  .faq-section p {
    width: 100%;
    font-size: 1.1rem;
  }
  .faq-item h4 {
    font-size: 1.1rem;
  }
  .faq-btn-layout {
    margin-top: 2rem;
  }
  .gallery-btn {
    font-size: 1rem;
    gap: 2px;
    padding: 0.7rem 1.1rem;
  }
  .gallery-btn img {
    width: 9px;
    height: auto;
  }
  .faq-btn-layout a {
    font-size: 1rem;
  }
  .faq-btn-layout a img {
    width: 9px;
    height: auto;
  }
  .blog-section {
    margin: 6rem 1rem;
  }
  .blog-intro h2 {
    width: 100%;
    font-size: 1.8rem;
    line-height: 1.8rem;
  }
  .blog-intro p {
    width: 100%;
    font-size: 1.1rem;
  }
  .blog-layout {
    grid-template-columns: 1fr;
  }
  .contact-section {
    margin: 6rem 1rem;
  }
  .contact-section h2 {
    width: 100%;
    font-size: 1.8rem;
    line-height: 1.8rem;
  }
  .contact-section p {
    width: 100%;
    font-size: 1.1rem;
  }
  .contact-layout {
    flex-direction: column;
    gap: 0;
  }
  .adress-info,
  .contact-info {
    width: 100%;
  }
  .contact-line {
    width: 100%;
  }
  .opening-hours {
    gap: 0.5rem 1rem;
  }
  footer {
    padding: 2rem 1rem 1rem 1rem;
  }
  .footer-layout {
    flex-direction: column;
    gap: 2rem;
  }
  .footer-bottom-layout {
    flex-direction: column;
    padding-top: 1rem;
  }
  .footer-bottom p {
    margin: 0;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .header-desktop {
    display: none;
  }
  .mobile-header {
    display: flex;
  }
  .hero-text {
    left: 1rem;
    right: 1rem;
    bottom: 15%;
    padding: 0;
  }
  h1 {
    font-size: 2rem;
    line-height: 2rem;
    width: 100%;
  }
  .hero-text p {
    width: 100%;
    font-size: 1.1rem;
  }
  .rmv-mobile {
    display: none;
  }
  .hero-btn {
    font-size: 1rem;
    gap: 2px;
    padding: 0.7rem 1.1rem;
  }
  .hero-btn img {
    width: 9px;
    height: auto;
  }
  .hero-btn-layout a {
    font-size: 1rem;
  }
  .hero-btn-layout a img {
    width: 9px;
    height: auto;
  }
  .scroll-disc {
    right: 1rem;
  }
  .intro-section {
    margin: 6rem 1rem 2rem 1rem;
  }
  .shuffle {
    display: none;
  }
  .intro-header h2 {
    width: 100%;
    font-size: 1.8rem;
    line-height: 1.8rem;
  }
  .intro-text p {
    width: 100%;
    font-size: 1.1rem;
  }
  .intro-btn {
    font-size: 1rem;
    gap: 2px;
    padding: 0.7rem 1.1rem;
  }
  .intro-btn img {
    width: 9px;
    height: auto;
  }
  .intro-btn-layout a {
    font-size: 1rem;
  }
  .intro-btn-layout a img {
    width: 9px;
    height: auto;
  }
  .services-section {
    margin: 4rem 0 0 0;
    padding: 4rem 1rem;
    border-radius: 15px 15px 0 0;
  }
  .services-intro h2 {
    width: 100%;
    font-size: 1.8rem;
    line-height: 1.8rem;
  }
  .services-intro p {
    font-size: 1.1rem;
  }
  .services-block h3 {
    font-size: 1.6rem;
  }
  .services-laoyut {
    grid-template-columns: 1fr 1fr;
  }
  .service-item h4 {
    font-size: 1.2rem;
  }
  .services-btn {
    font-size: 1rem;
    gap: 2px;
    padding: 0.7rem 1.1rem;
  }
  .services-btn img {
    width: 9px;
    height: auto;
  }
  .services-btn-layout a {
    font-size: 1rem;
  }
  .services-btn-layout a img {
    width: 9px;
    height: auto;
  }
  .img-section {
    height: 100vh;
  }
  .img-section .middle-img {
    top: 0;
  }
  .middle-text {
    left: 1rem;
    right: 1rem;
  }
  .middle-text h2 {
    width: 100%;
    font-size: 1.8rem;
    line-height: 1.8rem;
  }
  .middle-text p {
    width: 100%;
    font-size: 1.1rem;
  }
  .middle-btn-layout a {
    font-size: 1rem;
  }
  .middle-btn-layout a img {
    width: 9px;
    height: auto;
  }
  .review-section {
    margin: 6rem 1rem;
  }
  .review-header h2 {
    width: 100%;
    font-size: 1.8rem;
    line-height: 1.8rem;
  }
  .review-header p {
    width: 100%;
    font-size: 1.1rem;
  }
  .gallery-section {
    margin: 6rem 1rem;
  }
  .gallery-section h2 {
    width: 100%;
    font-size: 1.8rem;
    line-height: 1.8rem;
  }
  .gallery-section p {
    width: 100%;
    font-size: 1.1rem;
  }
  .gallery-layout {
    flex-direction: column-reverse;
  }
  .img-large {
    width: 100%;
    height: 400px;
  }
  .img-small {
    width: 100%;
    flex-direction: column-reverse;
  }
  .img-small-item {
    height: 400px;
  }
  .gallery-btn {
    font-size: 1rem;
    gap: 2px;
    padding: 0.7rem 1.1rem;
  }
  .gallery-btn img {
    width: 9px;
    height: auto;
  }
  .gallery-btn-layout a {
    font-size: 1rem;
  }
  .gallery-btn-layout a img {
    width: 9px;
    height: auto;
  }
  .faq-section {
    margin: 6rem 1rem;
  }
  .faq-section h2 {
    width: 100%;
    font-size: 1.8rem;
    line-height: 1.8rem;
  }
  .faq-section p {
    width: 100%;
    font-size: 1.1rem;
  }
  .faq-item h4 {
    font-size: 1.1rem;
  }
  .faq-btn-layout {
    margin-top: 2rem;
  }
  .gallery-btn {
    font-size: 1rem;
    gap: 2px;
    padding: 0.7rem 1.1rem;
  }
  .gallery-btn img {
    width: 9px;
    height: auto;
  }
  .faq-btn-layout a {
    font-size: 1rem;
  }
  .faq-btn-layout a img {
    width: 9px;
    height: auto;
  }
  .blog-section {
    margin: 6rem 1rem;
  }
  .blog-intro h2 {
    width: 100%;
    font-size: 1.8rem;
    line-height: 1.8rem;
  }
  .blog-intro p {
    width: 100%;
    font-size: 1.1rem;
  }
  .blog-layout {
    grid-template-columns: 1fr 1fr;
  }
  .contact-section {
    margin: 6rem 1rem;
  }
  .contact-section h2 {
    width: 100%;
    font-size: 1.8rem;
    line-height: 1.8rem;
  }
  .contact-section p {
    width: 100%;
    font-size: 1.1rem;
  }
  .contact-layout {
    flex-direction: column;
    gap: 0;
  }
  .adress-info,
  .contact-info {
    width: 100%;
  }
  .contact-line {
    width: 100%;
  }
  .opening-hours {
    gap: 0.5rem 1rem;
  }
  footer {
    padding: 2rem 1rem 1rem 1rem;
  }
  .footer-layout {
    flex-direction: column;
    gap: 2rem;
  }
  .footer-bottom-layout {
    flex-direction: column;
    padding-top: 1rem;
  }
  .footer-bottom p {
    margin: 0;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1200px) and (orientation: landscape) {
  .desktop-header {
    display: none;
  }
  .mobile-header {
    display: flex;
  }
  .mobile-header nav {
    width: 100%;
  }
}

@media only screen and (min-width: 1024px) and (max-width: 1520px) {
  .hero-text {
    left: 5rem;
    right: 5rem;
    bottom: 16%;
  }
  h1 {
    font-size: 3.4rem;
    line-height: 3.4rem;
    width: 50%;
  }
  .hero-text p {
    width: 50%;
    margin-top: 1rem;
  }
  .rmv-mobile {
    display: none;
  }
  .scroll-disc {
    right: 5rem;
  }
  .intro-section {
    margin: 6rem 5rem;
  }
  .services-section {
    padding: 4rem 5rem;
    border-radius: 35px 35px 0 0;
  }
  .middle-text {
    left: 5rem;
    right: 5rem;
  }
  .review-section {
    margin: 6rem 5rem;
  }
  .gallery-section {
    margin: 0 5rem 6rem 5rem;
  }
  .faq-section {
    margin: 6rem 5rem;
  }
  .blog-section {
    margin: 6rem 5rem;
  }
  .contact-section {
    margin: 6rem 5rem;
  }
  footer {
    padding: 2rem 5rem 0 5rem;
  }
}
