@import url("https://fonts.googleapis.com/css2?family=Instrument+Sans:ital,wght@0,400..700;1,400..700&family=Instrument+Serif:ital@0;1&display=swap");
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-decoration: none;
  font-family: "Instrument Sans", sans-serif;
  scroll-behavior: smooth;
}

html {
  font-size: 10px;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: #000;
  font-family: "Instrument Sans", sans-serif;
}

h1, h2, h3 {
  font-family: "Instrument Serif", serif;
}

.row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

body {
  background: #F3F0ED;
}

#cover {
  width: 100%;
  height: 100dvh;
  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: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
}
#cover .cover-txt {
  color: #F3F0ED;
}
#cover .cover-txt h1 {
  font-size: 6rem;
  opacity: 0;
  -webkit-animation: fadeInUp 1s ease-out forwards;
          animation: fadeInUp 1s ease-out forwards;
}
#cover .cover-txt h2 {
  font-size: 4rem;
  opacity: 0;
  -webkit-animation: fadeInUp 1s ease-out 0.5s forwards;
          animation: fadeInUp 1s ease-out 0.5s forwards;
}
#cover .arrow {
  position: absolute;
  bottom: 5rem;
  left: 20rem;
  width: 5rem;
  height: 5rem;
  opacity: 0;
  -webkit-animation: fadeInUp 1s ease-out 1s forwards;
          animation: fadeInUp 1s ease-out 1s forwards;
}
#cover .arrow img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-animation: bounce 2s ease-in-out 1.5s infinite;
          animation: bounce 2s ease-in-out 1.5s infinite;
}

@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes bounce {
  0%, 100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(12px);
            transform: translateY(12px);
  }
}
@keyframes bounce {
  0%, 100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(12px);
            transform: translateY(12px);
  }
}
section {
  padding: 10rem 15rem;
}

.text-section {
  width: 100%;
  min-height: 100dvh;
  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: start;
      -ms-flex-align: start;
          align-items: start;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.text-section .text-content {
  max-width: 75rem;
}
.text-section .text-content h2 {
  font-size: 4rem;
  margin-bottom: 2rem;
  color: #675F5C;
}
.text-section .text-content p {
  font-size: 2rem;
  color: #675F5C;
}

#main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #F3F0ED;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 2rem 5rem;
  z-index: 100;
  -webkit-transition: opacity 0.4s ease, -webkit-transform 0.4s ease;
  transition: opacity 0.4s ease, -webkit-transform 0.4s ease;
  transition: transform 0.4s ease, opacity 0.4s ease;
  transition: transform 0.4s ease, opacity 0.4s ease, -webkit-transform 0.4s ease;
  -webkit-box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
          box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}
#main-header.hidden {
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}
#main-header .logo a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#main-header .logo a img {
  height: 6rem;
  width: 6rem;
  -o-object-fit: contain;
     object-fit: contain;
}
#main-header .header-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 3rem;
}
#main-header .header-right .lang-switch {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.5rem;
}
#main-header .header-right .lang-switch a {
  font-size: 1.6rem;
  color: #675F5C;
  font-weight: 600;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
#main-header .header-right .lang-switch a:hover {
  color: #000000;
}
#main-header .header-right .menu-icon {
  cursor: pointer;
  color: #000000;
  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;
  -webkit-transition: color 0.3s ease, -webkit-transform 0.3s ease;
  transition: color 0.3s ease, -webkit-transform 0.3s ease;
  transition: transform 0.3s ease, color 0.3s ease;
  transition: transform 0.3s ease, color 0.3s ease, -webkit-transform 0.3s ease;
}
#main-header .header-right .menu-icon img {
  width: 3.5rem;
  height: 3.5rem;
  -o-object-fit: contain;
     object-fit: contain;
}
#main-header .header-right .menu-icon:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  color: #675F5C;
}

#sidebar-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 37rem;
  height: 100dvh;
  background: #F3F0ED;
  z-index: 200;
  -webkit-box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
          box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
  -webkit-transition: right 0.4s ease-in-out;
  transition: right 0.4s ease-in-out;
  padding: 4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
#sidebar-menu.active {
  right: 0;
}
#sidebar-menu .close-btn {
  -ms-flex-item-align: end;
      align-self: flex-end;
  cursor: pointer;
  color: #675F5C;
  margin-bottom: 5rem;
  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;
  -webkit-transition: color 0.3s ease, -webkit-transform 0.3s ease;
  transition: color 0.3s ease, -webkit-transform 0.3s ease;
  transition: transform 0.3s ease, color 0.3s ease;
  transition: transform 0.3s ease, color 0.3s ease, -webkit-transform 0.3s ease;
}
#sidebar-menu .close-btn:hover {
  color: #000000;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
#sidebar-menu .menu-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.5rem;
}
#sidebar-menu .menu-links a {
  font-family: "Instrument Serif", serif;
  font-size: 3rem;
  color: #675F5C;
  -webkit-transition: color 0.3s ease, padding-left 0.3s ease;
  transition: color 0.3s ease, padding-left 0.3s ease;
  display: inline-block;
}
#sidebar-menu .menu-links a:hover {
  color: #000000;
  padding-left: 1rem;
}

.text-img-section {
  width: 100%;
  min-height: 100dvh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 15rem;
}
.text-img-section .txt {
  -ms-flex-preferred-size: 60%;
      flex-basis: 60%;
}
.text-img-section .txt h2 {
  font-size: 4rem;
  margin-bottom: 2rem;
  color: #675F5C;
  max-width: 75rem;
}
.text-img-section .txt p {
  font-size: 2rem;
  color: #675F5C;
  max-width: 75rem;
}
.text-img-section .img {
  -ms-flex-preferred-size: 50%;
      flex-basis: 50%;
}
.text-img-section .img img {
  display: block;
  width: 70%;
  aspect-ratio: 3/4;
  -o-object-fit: contain;
     object-fit: contain;
  margin: 0 auto;
}

.active-lang {
  color: #000000 !important;
  font-weight: bold !important;
}

#services {
  width: 100%;
  min-height: 100dvh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background: #E3E0DD;
}
#services .services-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 5rem;
}
#services .services-wrapper .service {
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  cursor: pointer;
}
#services .services-wrapper .service:hover p {
  opacity: 1;
}
#services .services-wrapper .service img {
  width: 12rem;
  height: 12rem;
  -o-object-fit: contain;
     object-fit: contain;
  margin-bottom: 2rem;
}
#services .services-wrapper .service h2, #services .services-wrapper .service h3 {
  font-size: 3rem;
  color: #675F5C;
}
#services .services-wrapper .service h3 {
  margin-bottom: 2rem;
}
#services .services-wrapper .service p {
  font-size: 2rem;
  opacity: 0.3;
  -webkit-transition: ease 0.3s all;
  transition: ease 0.3s all;
}

#cases {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10rem;
}
#cases .cases-img {
  -ms-flex-preferred-size: 45%;
      flex-basis: 45%;
}
#cases .cases-img img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
#cases .cases-list {
  -ms-flex-preferred-size: 55%;
      flex-basis: 55%;
  padding-top: 2rem;
}
#cases .cases-list h2 {
  font-size: 4rem;
  color: #675F5C;
  margin-bottom: 2rem;
}
#cases .cases-list .accordion {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
#cases .cases-list .accordion .accordion-item {
  border-bottom: 1px solid rgba(103, 95, 92, 0.2);
}
#cases .cases-list .accordion .accordion-item .accordion-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 1.5rem 0;
  cursor: pointer;
}
#cases .cases-list .accordion .accordion-item .accordion-header .text-group h4 {
  font-family: "Instrument Serif", serif;
  font-size: 2.5rem;
  color: #675F5C;
}
#cases .cases-list .accordion .accordion-item .accordion-header .text-group .subtitle {
  font-size: 2rem;
  color: #675F5C;
  font-style: italic;
  opacity: 0.6;
  margin-top: 0.5rem;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
#cases .cases-list .accordion .accordion-item .accordion-header .arrow-icon {
  font-size: 2.4rem;
  color: #675F5C;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
#cases .cases-list .accordion .accordion-item .accordion-header:hover .text-group .subtitle {
  opacity: 1;
}
#cases .cases-list .accordion .accordion-item .accordion-header:hover .arrow-icon {
  -webkit-transform: translateX(8px);
          transform: translateX(8px);
}
#cases .cases-list .accordion .accordion-item .accordion-content {
  display: grid;
  grid-template-rows: 0fr;
  -webkit-transition: grid-template-rows 0.4s ease-in-out;
  transition: grid-template-rows 0.4s ease-in-out;
  transition: grid-template-rows 0.4s ease-in-out, -ms-grid-rows 0.4s ease-in-out;
}
#cases .cases-list .accordion .accordion-item .accordion-content .content-inner {
  overflow: hidden;
}
#cases .cases-list .accordion .accordion-item .accordion-content .content-inner p {
  font-size: 1.6rem;
  color: #675F5C;
  line-height: 1.5;
  margin-bottom: 0.5rem;
}
#cases .cases-list .accordion .accordion-item .accordion-content .content-inner p strong {
  font-weight: 600;
}
#cases .cases-list .accordion .accordion-item .accordion-content .content-inner .more-link {
  font-size: 1.6rem;
  color: #675F5C;
  font-style: italic;
  display: inline-block;
  margin-bottom: 1.5rem;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
#cases .cases-list .accordion .accordion-item .accordion-content .content-inner .more-link:hover {
  opacity: 0.7;
}
#cases .cases-list .accordion .accordion-item.active .accordion-content {
  grid-template-rows: 1fr;
  padding-bottom: 2rem;
}
#cases .cases-list .accordion .accordion-item.active .accordion-header .text-group .subtitle {
  opacity: 1;
}
#cases .cases-list .accordion .accordion-item.active .accordion-header .arrow-icon {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

#paths {
  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;
  width: 100%;
}
#paths h2 {
  font-size: 4rem;
  color: #675F5C;
  margin-bottom: 2rem;
  text-align: center;
}
#paths .paths-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem;
  width: 100%;
  max-width: 110rem;
  margin-top: 2rem;
}
#paths .paths-grid .path-card {
  background: #E3E0DD;
  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-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
          box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  -webkit-transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
}
#paths .paths-grid .path-card:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  -webkit-box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
          box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}
#paths .paths-grid .path-card .card-img {
  width: 100%;
  aspect-ratio: 2/1;
  overflow: hidden;
}
#paths .paths-grid .path-card .card-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
#paths .paths-grid .path-card .card-content {
  padding: 3rem 2rem;
  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;
  text-align: center;
}
#paths .paths-grid .path-card .card-content h3 {
  font-family: "Instrument Serif", serif;
  font-size: 2.5rem;
  color: #675F5C;
  margin-bottom: 0.5rem;
}
#paths .paths-grid .path-card .card-content .subtitle {
  font-size: 1.6rem;
  color: #675F5C;
  font-style: italic;
  opacity: 0.7;
  margin-bottom: 1rem;
}
#paths .paths-grid .path-card .card-content p {
  font-size: 1.6rem;
  color: #675F5C;
  line-height: 1.4;
  margin-bottom: 2.5rem;
}
#paths .paths-grid .path-card .card-content a {
  font-size: 1.66rem;
  color: #675F5C;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  text-decoration: underline;
  text-underline-offset: 0.5rem;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
#paths .paths-grid .path-card .card-content a:hover {
  color: #000000;
}

#testimonials {
  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: 100%;
}
#testimonials .testimonials-wrapper {
  width: 100%;
  max-width: 110rem;
  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;
  text-align: center;
}
#testimonials .testimonials-wrapper h2 {
  font-size: 4rem;
  color: #675F5C;
  margin-bottom: 2rem;
}
#testimonials .testimonials-wrapper .slider-container {
  position: relative;
  width: 100%;
  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;
}
#testimonials .testimonials-wrapper .testimonial-swiper {
  width: 100%;
  max-width: 85rem;
  overflow: hidden;
  padding: 2rem 0;
}
#testimonials .testimonials-wrapper .swiper-slide {
  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;
  opacity: 0.3;
  -webkit-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
}
#testimonials .testimonials-wrapper .swiper-slide.swiper-slide-active {
  opacity: 1;
}
#testimonials .testimonials-wrapper .swiper-slide .quote {
  font-size: 2rem;
  line-height: 1.6;
  color: #675F5C;
  margin-bottom: 4rem;
  text-align: center;
}
#testimonials .testimonials-wrapper .swiper-slide .author {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2rem;
}
#testimonials .testimonials-wrapper .swiper-slide .author img {
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}
#testimonials .testimonials-wrapper .swiper-slide .author .name {
  font-size: 1.8rem;
  color: #675F5C;
}
#testimonials .testimonials-wrapper .swiper-button-prev-custom,
#testimonials .testimonials-wrapper .swiper-button-next-custom {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  cursor: pointer;
  color: #675F5C;
  z-index: 10;
  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;
  -webkit-transition: color 0.3s ease, -webkit-transform 0.3s ease;
  transition: color 0.3s ease, -webkit-transform 0.3s ease;
  transition: color 0.3s ease, transform 0.3s ease;
  transition: color 0.3s ease, transform 0.3s ease, -webkit-transform 0.3s ease;
}
#testimonials .testimonials-wrapper .swiper-button-prev-custom svg,
#testimonials .testimonials-wrapper .swiper-button-next-custom svg {
  width: 1.5rem;
  height: auto;
}
#testimonials .testimonials-wrapper .swiper-button-prev-custom:hover,
#testimonials .testimonials-wrapper .swiper-button-next-custom:hover {
  color: #000000;
}
#testimonials .testimonials-wrapper .swiper-button-prev-custom {
  left: 0;
}
#testimonials .testimonials-wrapper .swiper-button-prev-custom:hover {
  -webkit-transform: translateY(-50%) translateX(-5px);
          transform: translateY(-50%) translateX(-5px);
}
#testimonials .testimonials-wrapper .swiper-button-next-custom {
  right: 0;
}
#testimonials .testimonials-wrapper .swiper-button-next-custom:hover {
  -webkit-transform: translateY(-50%) translateX(5px);
          transform: translateY(-50%) translateX(5px);
}

#contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 10rem;
}
#contact .contact-txt {
  -ms-flex-preferred-size: 50%;
      flex-basis: 50%;
}
#contact .contact-txt h2 {
  font-size: 4rem;
  color: #675F5C;
  margin-bottom: 2rem;
}
#contact .contact-txt p {
  font-size: 2rem;
  color: #675F5C;
  margin-bottom: 3rem;
}
#contact .contact-txt p.contact-details {
  margin-bottom: 2rem;
}
#contact .contact-txt p.contact-methods {
  margin-bottom: 3rem;
}
#contact .contact-txt p strong {
  font-weight: 600;
}
#contact .contact-txt p a {
  color: #675F5C;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
#contact .contact-txt p a:hover {
  color: #000000;
}
#contact .contact-txt .socials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.5rem;
}
#contact .contact-txt .socials .social-icon {
  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;
  width: 5rem;
  height: 5rem;
  background: #E3E0DD;
  border-radius: 25px;
  color: #675F5C;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
#contact .contact-txt .socials .social-icon svg {
  width: 2.2rem;
  height: 2.2rem;
}
#contact .contact-txt .socials .social-icon:hover {
  background: #675F5C;
  color: #F3F0ED;
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
}
#contact .contact-img {
  -ms-flex-preferred-size: 50%;
      flex-basis: 50%;
}
#contact .contact-img img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

#contact-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;
  width: 100%;
  background: #B8B2AE;
}
#contact-form h2 {
  font-size: 4rem;
  color: #675F5C;
  margin-bottom: 2rem;
  text-align: center;
}
#contact-form .form-wrapper {
  width: 100%;
  max-width: 110rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2rem;
}
#contact-form .form-wrapper .form-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2rem;
  width: 100%;
}
#contact-form .form-wrapper .input-group {
  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;
}
#contact-form .form-wrapper .input-group input, #contact-form .form-wrapper .input-group textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(103, 95, 92, 0.4);
  padding: 1.5rem 0;
  font-family: "Instrument Sans", sans-serif;
  font-size: 1.8rem;
  color: #675F5C;
  -webkit-transition: border-color 0.3s ease;
  transition: border-color 0.3s ease;
}
#contact-form .form-wrapper .input-group input:focus, #contact-form .form-wrapper .input-group textarea:focus {
  outline: none;
  border-bottom-color: #675F5C;
}
#contact-form .form-wrapper .input-group textarea {
  resize: vertical;
  border: 1px solid rgba(103, 95, 92, 0.4);
  padding: 1.5rem;
  margin-top: 1.5rem;
}
#contact-form .form-wrapper .input-group textarea:focus {
  border-color: #675F5C;
}
#contact-form .form-wrapper .checkbox-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.5rem;
  margin-top: 1rem;
}
#contact-form .form-wrapper .checkbox-group input[type=checkbox] {
  width: 2rem;
  height: 2rem;
  cursor: pointer;
  accent-color: #675F5C;
}
#contact-form .form-wrapper .checkbox-group label {
  font-family: "Instrument Sans", sans-serif;
  font-size: 1.6rem;
  color: #675F5C;
  cursor: pointer;
  line-height: 1.4;
}
#contact-form .form-wrapper .checkbox-group label a {
  color: #675F5C;
  text-decoration: underline;
  text-underline-offset: 0.3rem;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
#contact-form .form-wrapper .checkbox-group label a:hover {
  color: #000000;
}
#contact-form .form-wrapper .submit-btn {
  -ms-flex-item-align: center;
      align-self: center;
  margin-top: 4rem;
  background: #675F5C;
  color: #F3F0ED;
  border: none;
  padding: 1.5rem 6rem;
  font-family: "Instrument Sans", sans-serif;
  font-size: 1.6rem;
  letter-spacing: 0.1rem;
  cursor: pointer;
  -webkit-transition: background 0.3s ease, -webkit-transform 0.3s ease;
  transition: background 0.3s ease, -webkit-transform 0.3s ease;
  transition: background 0.3s ease, transform 0.3s ease;
  transition: background 0.3s ease, transform 0.3s ease, -webkit-transform 0.3s ease;
  text-transform: uppercase;
}
#contact-form .form-wrapper .submit-btn:hover {
  background: #000000;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}

#main-footer {
  width: 100%;
  background: #E3E0DD;
  padding: 1.5rem 15rem;
}
#main-footer .footer-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  max-width: 120rem;
  margin: 0 auto;
}
#main-footer .footer-content .footer-item {
  font-size: 2rem;
  color: #675F5C;
  font-family: "Instrument Sans", sans-serif;
  /* Hover efekt pouze pro odkazy, ne pro copyright */
}
#main-footer .footer-content .footer-item[href] {
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
#main-footer .footer-content .footer-item[href]:hover {
  color: #000000;
}

.cookies {
  position: fixed;
  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;
  justify-self: center;
  bottom: 0;
  right: 0;
  background: rgba(243, 240, 237, 0.8);
  padding: 2rem;
  padding-bottom: 0;
  width: 42.5rem;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  z-index: 6;
}
.cookies p {
  font-size: 1.8rem;
}
.cookies a {
  color: #675F5C;
  font-weight: bold;
}
.cookies .row {
  width: 50%;
  margin: 2rem;
}
.cookies .row .btn-g {
  font-size: 1.8rem;
  margin: 0rem 2rem;
  color: #F3F0ED;
  background: #675F5C;
  padding: 0.5rem 2.5rem;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  font-weight: 500;
  -webkit-transition: ease 0.3s all;
  transition: ease 0.3s all;
  border: 2px solid #675F5C;
  cursor: pointer;
}
.cookies .row .btn-g:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.cookies .row .btn-b {
  font-size: 1.8rem;
  margin: 0rem 2rem;
  color: #000000;
  background: transparent;
  padding: 0.5rem 2.5rem;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  font-weight: 500;
  border: 2px solid #000000;
  -webkit-transition: ease 0.3s all;
  transition: ease 0.3s all;
  cursor: pointer;
}
.cookies .row .btn-b:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

#rules {
  width: 100%;
  min-height: 100dvh;
  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: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding-top: 16rem;
}
#rules .rules-content {
  width: 80%;
  margin: 0 auto;
}
#rules .rules-content h1 {
  font-size: 6rem;
  text-transform: uppercase;
  font-weight: 800;
  margin-bottom: 4rem;
  text-align: center;
  color: #675F5C;
}
#rules .rules-content h2 {
  font-size: 4rem;
  text-transform: uppercase;
  margin-bottom: 2rem;
  color: #675F5C;
}
#rules .rules-content p {
  font-size: 2rem;
  margin-bottom: 3rem;
  color: #675F5C;
}

@media (min-width: 2560px) {
  html {
    font-size: 14px;
  }
}
@media (max-width: 1440px) {
  html {
    font-size: 9px;
  }
  section {
    padding: 5rem 10rem;
  }
  #main-footer {
    padding: 1.5rem 10rem;
  }
  #rules .rules-content {
    width: 85%;
    margin: 0 auto;
  }
}
@media (max-width: 1336px) {
  html {
    font-size: 8.5px;
  }
  section {
    padding: 4rem 8rem;
  }
  #main-footer {
    padding: 1.5rem 8rem;
  }
}
@media (max-width: 1024px) {
  html {
    font-size: 8px;
  }
  section {
    padding: 4rem 6rem;
  }
  #main-header {
    padding: 2rem 4rem;
  }
  #services .services-wrapper {
    grid-template-columns: repeat(3, 1fr);
  }
  #cases {
    gap: 5rem;
  }
  #paths .paths-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  #testimonials .testimonials-wrapper .slider-container {
    max-width: 90%;
  }
  #contact {
    gap: 5rem;
  }
  #main-footer {
    padding: 1.5rem 6rem;
  }
  #rules .rules-content {
    width: 100%;
  }
}
@media (max-width: 768px) {
  section {
    padding: 4rem;
  }
  #main-header .header-right {
    gap: 2rem;
  }
  .text-section {
    min-height: auto;
  }
  .text-img-section {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    gap: 5rem;
    min-height: auto;
  }
  .text-img-section .img img {
    margin: unset;
  }
  #services .services-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
  #cases {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 4rem;
  }
  #cases .cases-img, #cases .cases-list {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    width: 100%;
  }
  #cases .cases-list h2 {
    font-size: 4rem;
    margin-bottom: 2rem;
  }
  #paths .paths-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
  #testimonials .testimonials-wrapper .testimonial-swiper {
    max-width: 80%;
  }
  #contact {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 5rem;
  }
  #contact .contact-txt, #contact .contact-img {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    width: 100%;
  }
  #contact-form .form-wrapper .form-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.5rem;
  }
  #main-footer {
    padding: 3rem 4rem;
  }
  #main-footer .footer-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}
@media (max-width: 425px) {
  #cover .arrow {
    left: 4rem;
  }
  #main-header {
    padding: 1.5rem 4rem;
  }
  #sidebar-menu {
    padding-top: 1.5rem !important;
    width: 70%;
    padding: 4rem;
  }
  #services .services-wrapper {
    grid-template-columns: repeat(1, 1fr);
  }
  #cases .cases-list .accordion .accordion-item .accordion-header {
    padding: 2rem 0;
  }
  #cases .cases-list .accordion .accordion-item .accordion-header .arrow-icon {
    font-size: 2rem;
  }
  #paths .paths-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  #testimonials .testimonials-wrapper .testimonial-swiper {
    max-width: 100%;
  }
  #testimonials .testimonials-wrapper .swiper-button-prev-custom,
  #testimonials .testimonials-wrapper .swiper-button-next-custom {
    display: none;
  }
  #contact {
    gap: 3rem;
  }
  #contact .contact-txt .socials .social-icon {
    width: 4.5rem;
    height: 4.5rem;
  }
  .cookies {
    width: 100%;
  }
  #rules .rules-content h1 {
    font-size: 4rem;
  }
}