* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Roboto", sans-serif;
  background-color: #fbfbfb;
  overflow-x: hidden;
}

@font-face {
  font-family: "PPNeueCorp";
  font-style: normal;
  font-weight: 100;
  src: url(/assets/fonts/PPNeueCorp/PPNeueCorp-CompactUltralight.woff2)
    format("woff2");
  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: 100;
  src: url(/assets/fonts/Roboto/Roboto-ExtraLight.ttf) format("truetype");
}

@font-face {
  font-family: "Roboto";
  font-style: italic;
  font-weight: 200;
  src: url(/assets/fonts/Roboto/Roboto-LightItalic.ttf) format("truetype");
  font-display: swap;
}

@font-face {
  font-family: "Roboto";
  font-style: italic;
  font-weight: 100;
  src: url(/assets/fonts/Roboto/Roboto-ExtraLightItalic.ttf) format("truetype");
}

.header-desktop {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  padding: 1.8rem 2.4rem;
  z-index: 100;
  transition: all 0.3s ease-in-out;
}

header.scrolled {
  background-color: #fbfbfb;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

header.scrolled .nav-links a {
  color: #1e201e;
}

.header-desktop nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.logo {
  width: 170px;
  height: auto;
}

.nav-links a {
  color: #f6f0f0;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 100;
}

.lang-menu {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav-btn {
  padding: 14px 34px;
  cursor: pointer;
  font-family: "Roboto", sans-serif;
  font-size: 1.2rem;
  font-weight: 100;
  color: #f6f0f0;
  background-color: #255f38;
  border: none;
}

.mobile-header {
  display: none;
  width: 100%;
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  padding: 15px;
  transition: all 0.4s ease-in-out;
}

.mobile-header nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.nav-menu {
  background: transparent;
  border: none;
}

.line-menu {
  background-color: #fcf7eb;
  width: 25px;
  height: 1px;
  margin-bottom: 5px;
}

.line-small {
  background-color: #fcf7eb;
  width: 20px;
  height: 1px;
  margin-bottom: 5px;
  float: right;
}

.menu-mobile {
  display: none;
  background-color: #fbfbfb;
  clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
  height: 100%;
  height: 100dvh;
  width: 100%;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 100;
}

.logo-mobile {
  width: 160px;
  height: auto;
}

.menu-mobile-inner {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.menu-close {
  height: 20px;
  position: relative;
  width: 20px;
}

.menu-closing {
  position: absolute;
  right: 1rem;
  top: 1.8rem;
}

.menu-links {
  display: flex;
  flex-direction: column;
  top: 20%;
  left: 1rem;
  padding: 30% 2rem 2rem 2rem;
}

.menu-mobile-bottom {
  padding-bottom: 1rem;
}

.menu-links a {
  text-decoration: none;
  padding: 0.7rem 0;
  color: #1e201e;
  font-weight: 100;
  font-size: 2rem;
  line-height: 2rem;
}

.menu-divider {
  display: block;
  margin: 0 1rem;
  width: calc(100% - 2rem);
  height: 2px;
}

.menu-divider line {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
}

.language-switch {
  display: flex;
  color: #1e201e;
  font-weight: 100;
  font-size: 1.5rem;
  line-height: 2rem;
  padding: 0.8rem 0 0 1.5rem;
}

.language-switch a {
  text-decoration: none;
  color: #1e201e;
  margin: 0 0.5rem;
}

main {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.hero-content {
  position: relative;
  height: 100vh;
}

.hero-img {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: -1;
}

.hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(60%);
}

.hero-text {
  position: fixed;
  bottom: 2rem;
  left: 6rem;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  width: calc(100% - 12rem);
}

h1 {
  font-family: "PPNeueCorp", sans-serif;
  font-size: 4rem;
  line-height: 4.2rem;
  color: #f6f0f0;
  font-weight: 100;
  max-width: 100%;
  margin-top: 1rem;
}

.video-player {
  position: relative;
  width: 30%;
  height: 240px;
}

.video-player video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 5px;
}

.play-button,
.pause-button {
  position: absolute;
  bottom: 10px;
  left: 10px;
  width: 50px;
  height: 50px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: opacity 0.3s ease-in-out;
}

.play-button {
  opacity: 1;
  pointer-events: auto;
}

.video-player.video-is-playing .play-button {
  opacity: 0;
  pointer-events: none;
}

.pause-button {
  opacity: 0;
  pointer-events: none;
}

.video-player.video-is-playing:hover .pause-button {
  opacity: 1;
  pointer-events: auto;
}

.fullscreen-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.4s ease-in-out;
  mix-blend-mode: difference;
}

.video-player:hover .fullscreen-btn {
  opacity: 1;
}

.close-fullscreen {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 9999;
  background: none;
  border: none;
  cursor: pointer;
  display: none;
  transition: all 0.4s ease-in-out;
  mix-blend-mode: difference;
}

.video-player.is-fullscreen .close-fullscreen {
  display: block;
}

.video-player.is-fullscreen .fullscreen-btn {
  display: none;
}

.intro-section {
  position: relative;
  background-color: #fbfbfb;
  z-index: 2;
  padding: 6rem 8rem;
}

.intro-layout {
  display: flex;
  justify-content: center;
  text-align: center;
}

.intro-wrapper {
  width: 60%;
}

.intro-section h2 {
  font-family: "PPNeueCorp", sans-serif;
  color: #1e201e;
  font-weight: 100;
  font-size: 3rem;
}

.intro-wrapper p {
  color: #1e201e;
  font-weight: 100;
  font-size: 1.3rem;
}

.images-container {
  align-items: center;
  display: flex;
  justify-content: center;
  height: 85vh;
  width: calc(100vw - 16rem);
  overflow: hidden;
  position: relative;
  margin-top: 2rem;
  border-radius: 5px;
}

.wrapper {
  height: 85vh;
  width: calc(100vw - 16rem);
  overflow: hidden;
  position: relative;
  display: flex;
  border-radius: 5px;
}

.carousel {
  display: flex;
  width: 100%;
  height: 85vh;
}

.box {
  width: calc(100vw - 16rem);
  height: 85vh;
  flex: none;
}

.row-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 5px;
}

.control-buttons-wrapper {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  display: flex;
  gap: 1rem;
  mix-blend-mode: difference;
}

.next,
.prev {
  background: transparent;
  border: 1px solid #f6f0f0;
  border-radius: 2px;
  cursor: pointer;
  height: 48px;
  width: 80px;
}

.next img,
.prev img {
  width: 20px;
}

.products-section {
  position: relative;
  background-color: #fbfbfb;
  z-index: 2;
  padding: 6rem 8rem;
}

.slider-section {
  display: none;
}

.products-slider {
  display: flex;
  justify-content: space-between;
  gap: 2.5rem;
}

.products-section h2 {
  font-family: "PPNeueCorp", sans-serif;
  color: #1e201e;
  font-weight: 100;
  font-size: 3rem;
  margin-top: 0;
}

.product-img {
  width: 100%;
  height: 550px;
}

.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-text h3 {
  margin-top: 7px;
  font-family: "PPNeueCorp", sans-serif;
  font-weight: 100;
  font-size: 1.7rem;
  color: #1e201e;
}

.product-btns {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 1rem;
}

.product-btns button {
  background-color: #255f38;
  border: none;
  padding: 12px 22px;
  cursor: pointer;
  font-family: "Roboto", sans-serif;
  font-size: 1.2rem;
  font-weight: 100;
  color: #f6f0f0;
}

.product-btns a {
  color: #1e201e;
  font-size: 1.2rem;
  font-weight: 100;
  text-decoration: none;
}

.divider-line {
  width: 100%;
  height: 1px;
  margin-top: 6rem;
  background-color: #eae4dd;
}

.slider-section {
  display: none;
  position: relative;
  background-color: #fbfbfb;
  z-index: 2;
  padding: 4rem 8rem;
}

.slider-section h2 {
  font-family: "PPNeueCorp", sans-serif;
  color: #1e201e;
  font-weight: 100;
  font-size: 3rem;
}

.slider-layout {
  display: flex;
  flex-wrap: nowrap;
  gap: 2rem;
  overflow-x: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
  scroll-snap-type: x mandatory;
}
.slider-layout::-webkit-scrollbar {
  display: none;
}

.slider-item {
  flex: 0 0 300px;
  scroll-snap-align: start;
}

.slider-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  width: 100%;
  margin-top: 4rem;
}

.slider-line {
  width: 100%;
  height: 1px;
  background-color: #1e201e;
}

.slider-buttons-wrapper {
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
}

.next-slider,
.prev-slider {
  background: transparent;
  border: 1px solid #1e201e;
  border-radius: 2px;
  cursor: pointer;
  height: 48px;
  width: 80px;
}

.next-slider img,
.prev-slider img {
  width: 20px;
}

.partners-section {
  position: relative;
  background-color: #fbfbfb;
  z-index: 2;
  padding: 4rem 8rem;
}

.partners-intro h2 {
  font-family: "PPNeueCorp", sans-serif;
  color: #1e201e;
  font-weight: 100;
  font-size: 3rem;
  line-height: 3.4rem;
  margin-top: 0;
}

.partners-intro p {
  color: #1e201e;
  font-size: 1.3rem;
  font-weight: 100;
}

.highlight-name {
  font-style: italic;
}

.partners-intro p {
  color: #1e201e;
  font-size: 1.3rem;
  font-weight: 100;
}

.highlight-name {
  font-style: italic;
}

.partners-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  margin-top: 4rem;
}

.partners-text-layout {
  display: flex;
  flex-direction: column;
}

.partners-item {
  border-bottom: 1px solid #eae4dd;
  width: 80%;
  cursor: pointer;
}

.partners-item h3 {
  font-family: "PPNeueCorp", sans-serif;
  font-weight: 100;
  font-size: 1.7rem;
  color: #1e201e;
  margin-top: 0;
}

.partners-item p {
  color: #1e201e;
  font-size: 1.3rem;
  font-weight: 100;
}

.partners-images {
  width: 50%;
}

.partners-images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.custom-products {
  position: relative;
  z-index: 2;
  padding: 6rem 0 0 0;
  background-color: #fbfbfb;
}

.custom-prodcuts-wrapper {
  position: relative;
}

.custom-products-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(60%);
  display: block;
}

.custom-products-text {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  text-align: center;
}

.custom-products-text h2 {
  font-family: "PPNeueCorp", sans-serif;
  color: #f6f0f0;
  font-weight: 100;
  font-size: 3rem;
}

.custom-products-btns {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

.custom-products-btns button {
  background-color: #255f38;
  border: none;
  padding: 14px 18px;
  cursor: pointer;
  font-family: "Roboto", sans-serif;
  font-size: 1.2rem;
  font-weight: 100;
  color: #f6f0f0;
}

.custom-products-btns a {
  color: #f6f0f0;
  font-size: 1.2rem;
  font-weight: 100;
  text-decoration: none;
}

.custom-products-gradient {
  position: absolute;
  bottom: 0;
  background: linear-gradient(
    180deg,
    rgba(217, 217, 217, 0.02) 3.08%,
    rgba(217, 217, 217, 0.15) 37.23%,
    #eff3ea 98.94%
  );
  height: 110px;
  width: 100%;
}

footer {
  background-color: #eff3ea;
  position: relative;
  z-index: 2;
  padding: 4rem 8rem 1rem 8rem;
}

.footer-layout {
  display: flex;
  justify-content: space-between;
  position: relative;
}

.footer-layout-inner {
  display: flex;
  justify-content: space-between;
  position: relative;
}

.footer-item {
  width: 50%;
}

.footer-card {
  position: relative;
}

.card-item {
  position: absolute;
  top: -100%;
  background-color: #fbfbfb;
  padding: 1rem;
  box-shadow: 0px 256px 72px 0px rgba(0, 0, 0, 0),
    0px 164px 66px 0px rgba(0, 0, 0, 0.01),
    0px 92px 55px 0px rgba(0, 0, 0, 0.05), 0px 41px 41px 0px rgba(0, 0, 0, 0.09),
    0px 10px 23px 0px rgba(0, 0, 0, 0.1);
}

.card-img {
  width: 300px;
  height: auto;
}

.card-img img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.footer-card-text h3 {
  font-family: "PPNeueCorp", sans-serif;
  color: #1e201e;
  font-size: 1.6rem;
  line-height: 1.8rem;
  font-weight: 100;
  margin-top: 10px;
  margin-bottom: 8px;
}

.footer-card-text p {
  color: #1e201e;
  font-size: 1.2rem;
  font-weight: 100;
  margin-top: 10px;
}

.footer-card-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 25px;
}

.footer-card-link a {
  color: #1e201e;
  font-weight: 100;
  font-size: 1.2rem;
  text-decoration: none;
  margin-bottom: 0px;
}

.footer-card-link img {
  transition: transform 0.3s ease-in-out;
}

.footer-card-link:hover img {
  transform: rotate(-415deg);
}

.footer-links {
  display: flex;
  flex-direction: column;
}

.footer-links h3 {
  font-family: "PPNeueCorp", sans-serif;
  color: #1e201e;
  font-size: 1.7rem;
  font-weight: 100;
  margin-bottom: 10px;
}

.footer-links a {
  color: #1e201e;
  font-weight: 100;
  font-size: 1.3rem;
  text-decoration: none;
  line-height: 1.8rem;
}

.text {
  height: 1.8rem;
  line-height: 1.8rem;
  overflow: hidden !important;
  position: relative;
  display: inline-block;
}

.footer-contact {
  display: flex;
  justify-content: flex-end;
}

.mail-wrapper {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.envelope-wrapper {
  height: 65px;
  width: 65px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100%;
  border: 1px solid #1e201e;
  cursor: pointer;
}

.footer-contact a {
  font-size: 1.5rem;
  font-weight: 100;
  color: #1e201e;
  text-decoration: none;
}

.footer-settings {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  gap: 1rem;
  margin-top: 6rem;
}

.settings-item {
  display: flex;
  align-items: center;
  gap: 4px;
}

.scroll-btn {
  background: transparent;
  border: none;
  cursor: pointer;
  color: #1e201e;
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
  font-weight: 100;
  text-decoration: none;
}

.settings-item a {
  color: #1e201e;
  font-size: 1rem;
  font-weight: 100;
  text-decoration: none;
}

.footer-line {
  width: 100%;
  height: 1px;
  background-color: #bab5ae;
  margin: 15px 0;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  margin: 0;
  font-size: 1rem;
  font-weight: 100;
  color: #1e201e;
}

.footer-allspark {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.footer-logo {
  width: 150px;
  height: auto;
}

.footer-allspark a {
  color: #1e201e;
  font-size: 1rem;
  font-weight: 100;
  text-decoration: none;
}

.footer-credits a {
  color: #1e201e;
  font-size: 1rem;
  font-weight: 100;
  text-decoration: none;
}

.text.play .letter {
  transform: translateY(-100%);
}

.text .letter {
  display: inline-block;
  transition: transform 0.6s cubic-bezier(0.76, 0, 0.024, 1);
  position: relative;
}

.letter:nth-child(1) {
  transition-delay: 0s;
}
.letter:nth-child(2) {
  transition-delay: 0.015s;
}
.letter:nth-child(3) {
  transition-delay: 0.03s;
}
.letter:nth-child(4) {
  transition-delay: 0.045s;
}
.letter:nth-child(5) {
  transition-delay: 0.06s;
}
.letter:nth-child(6) {
  transition-delay: 0.075s;
}
.letter:nth-child(7) {
  transition-delay: 0.09s;
}
.letter:nth-child(8) {
  transition-delay: 0.105s;
}
.letter:nth-child(9) {
  transition-delay: 0.12s;
}
.letter:nth-child(10) {
  transition-delay: 0.135s;
}
.letter:nth-child(11) {
  transition-delay: 0.15s;
}
.letter:nth-child(12) {
  transition-delay: 0.165s;
}
.letter:nth-child(13) {
  transition-delay: 0.18s;
}
.letter:nth-child(14) {
  transition-delay: 0.195s;
}
.letter:nth-child(15) {
  transition-delay: 0.21s;
}
.letter:nth-child(16) {
  transition-delay: 0.225s;
}
.letter:nth-child(17) {
  transition-delay: 0.24s;
}
.letter:nth-child(18) {
  transition-delay: 0.255s;
}
.letter:nth-child(19) {
  transition-delay: 0.27s;
}
.letter:nth-child(20) {
  transition-delay: 0.285s;
}
.letter:nth-child(21) {
  transition-delay: 0.3s;
}
.letter:nth-child(22) {
  transition-delay: 0.315s;
}
.letter:nth-child(23) {
  transition-delay: 0.33s;
}
.letter:nth-child(24) {
  transition-delay: 0.345s;
}
.letter:nth-child(25) {
  transition-delay: 0.36s;
}
.letter:nth-child(26) {
  transition-delay: 0.375s;
}
.letter:nth-child(27) {
  transition-delay: 0.39s;
}
.letter:nth-child(28) {
  transition-delay: 0.405s;
}

@media (max-width: 768px) {
  .header-desktop {
    display: none;
  }
  .mobile-header {
    display: flex;
  }
  .hero-text {
    flex-direction: column;
    left: 1rem;
    width: calc(100% - 2rem);
  }

  h1 {
    font-size: 2.4rem;
    line-height: 2.5rem;
  }

  .break-desktop {
    display: none !important;
  }

  .video-player {
    width: 100%;
    height: 200px;
  }

  .intro-section {
    padding: 6rem 1rem 2rem 1rem;
  }

  .intro-wrapper {
    width: 100%;
  }

  .intro-section h2 {
    font-size: 2.2rem;
    line-height: 2.3rem;
  }

  .images-container {
    width: 100%;
    height: 70vh;
  }

  .wrapper {
    width: 100%;
  }

  .box {
    width: 100%;
  }

  .slider-3 {
    object-position: 90%;
  }

  .slider-4 {
    object-position: 70% 70%;
  }

  .control-buttons-wrapper {
    left: 1rem;
    bottom: 1rem;
  }

  .next,
  .prev {
    background: transparent;
    border: 1px solid #f6f0f0;
    border-radius: 2px;
    cursor: pointer;
    height: 42px;
    width: 60px;
  }

  .products-section {
    display: none;
  }

  .slider-section {
    display: block;
    padding: 2rem 1rem;
  }

  .slider-section h2 {
    font-size: 2.2rem;
    line-height: 2.3rem;
    word-break: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
  }

  .slider-item {
    flex: 0 0 100%;
  }
  .slider-img img {
    width: 100%;
    height: auto;
    object-fit: contain;
  }

  .next-slider,
  .prev-slider {
    background: transparent;
    border: 1px solid #1e201e;
    border-radius: 2px;
    cursor: pointer;
    height: 42px;
    width: 60px;
  }

  .slider-bottom {
    gap: 1rem;
  }

  .partners-section {
    padding: 2rem 1rem;
  }

  .partners-section h2 {
    font-size: 2.2rem;
    line-height: 2.3rem;
  }

  .partners-wrapper {
    flex-direction: column;
  }

  .partners-images {
    width: 100%;
    margin-top: 2rem;
  }

  .partners-item {
    width: 100%;
  }

  .custom-products {
    padding: 0;
    height: 80vh;
  }

  .custom-products-text {
    top: 28%;
    width: 100%;
  }

  .custom-products-text h2 {
    font-size: 2.2rem;
    line-height: 2.3rem;
  }

  .partners-images img {
    height: 400px;
  }

  .custom-products {
    height: 80vh;
  }

  .custom-products-img img {
    height: 80vh;
  }

  footer {
    padding: 4rem 1rem 1rem 1rem;
  }

  .footer-layout {
    flex-direction: column;
  }
  .footer-card {
    display: none;
  }
  .footer-contact {
    justify-content: flex-start;
    margin-top: 2rem;
  }
  .footer-item {
    width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
    justify-content: flex-start;
    align-items: start;
    gap: 1rem;
  }
  .footer-bottom p {
    font-size: 0.9rem;
  }
  .footer-credits a {
    font-size: 0.9rem;
  }
  .footer-logo {
    display: none;
  }

  .footer-settings {
    justify-content: flex-start;
    margin-top: 4rem;
    gap: 0.5rem;
  }

  .envelope-wrapper {
    width: 60px;
    height: 60px;
  }

  .mail-wrapper {
    gap: 0.5rem;
  }

  .footer-allspark {
    gap: 0.4rem;
  }

  .footer-contact a {
    font-size: 1.4rem;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .header-desktop {
    display: none;
  }
  .mobile-header {
    display: flex;
    padding: 2rem;
  }
  .logo-mobile {
    width: 180px;
    height: auto;
  }
  .hero-text {
    flex-direction: column;
    left: 2rem;
    right: 2rem;
    width: calc(100% - 4rem);
  }

  h1 {
    font-size: 3.5rem;
    line-height: 3.5rem;
  }

  .break-desktop {
    display: none !important;
  }

  .video-player {
    width: 100%;
    height: 270px;
  }

  .intro-section {
    padding: 6rem 2rem 6rem 2rem;
  }

  .intro-wrapper {
    width: 100%;
  }

  .intro-section h2 {
    font-size: 2.6rem;
    line-height: 2.6rem;
  }

  .images-container {
    width: 100%;
    height: 70vh;
  }

  .wrapper {
    width: 100%;
  }

  .box {
    width: 100%;
  }

  .slider-3 {
    object-position: 90%;
  }

  .slider-4 {
    object-position: 70% 70%;
  }

  .control-buttons-wrapper {
    left: 2rem;
    bottom: 2rem;
  }

  .products-section {
    display: none;
  }

  .slider-section {
    display: block;
    padding: 2rem 2rem;
  }

  .slider-section h2 {
    font-size: 2.6rem;
    line-height: 2.6rem;
    word-break: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
  }

  .slider-item {
    flex: 0 0 65%;
  }
  .slider-img img {
    width: 100%;
    height: auto;
    object-fit: contain;
  }

  .slider-bottom {
    gap: 1rem;
  }

  .partners-section {
    padding: 4rem 2rem;
  }

  .partners-section h2 {
    font-size: 2.6rem;
    line-height: 2.6rem;
  }

  .partners-wrapper {
    flex-direction: column;
  }

  .partners-images {
    width: 100%;
    margin-top: 2rem;
  }

  .partners-item {
    width: 100%;
  }

  .custom-products {
    padding: 0;
  }

  .custom-products-text {
    top: 28%;
    width: 100%;
  }

  .custom-products-text h2 {
    font-size: 2.6rem;
    line-height: 2.6rem;
  }

  .partners-images img {
    height: 400px;
  }

  .custom-products {
    height: 100vh;
  }

  .custom-products-img img {
    height: 100vh;
  }

  footer {
    padding: 4rem 2rem 1rem 2rem;
  }

  .footer-layout {
    flex-direction: column;
  }
  .footer-card {
    display: none;
  }
  .footer-contact {
    justify-content: flex-start;
    margin-top: 2rem;
  }
  .footer-item {
    width: 100%;
  }
  .footer-settings {
    justify-content: flex-start;
    margin-top: 4rem;
  }
  .footer-bottom {
    flex-direction: column;
    justify-content: flex-start;
    align-items: start;
    gap: 1rem;
  }
  .footer-bottom p {
    font-size: 0.9rem;
  }
  .footer-credits a {
    font-size: 0.9rem;
  }
  .footer-logo {
    display: none;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1200px) and (orientation: landscape) {
  .menu-links {
    padding-top: 7%;
  }
  h1 {
    font-size: 3rem;
  }
  .intro-section h2,
  .slider-section h2,
  .partners-intro h2,
  .custom-products-text h2 {
    font-size: 2.6rem;
    line-height: 2.6rem;
  }
  .video-player {
    display: none;
  }
  .images-container {
    height: 85vh;
  }
  .slider-item {
    flex: 0 0 55%;
  }
  .custom-products-text {
    top: 20%;
  }
}

@media only screen and (min-width: 1024px) and (max-width: 1520px) {
  .products-section {
    display: none;
  }
  .slider-section {
    display: block;
    padding: 4rem 5rem;
  }
  .slider-section h2 {
    margin-top: 0;
  }
  h1 {
    font-size: 3.8rem;
    line-height: 4rem;
  }
  .hero-text {
    left: 5rem;
    right: 5rem;
    width: calc(100% - 10rem);
  }

  .intro-section {
    padding: 6rem 5rem;
  }
  .intro-section h2 {
    line-height: 3.1rem;
  }
  .partners-section {
    padding: 4rem 5rem;
  }
  .partners-intro h2 {
    margin-top: 0;
  }
  .custom-products-text {
    top: 20%;
  }
  .custom-products-text h2 {
    font-size: 2.6rem;
    line-height: 2.7rem;
  }
  footer {
    padding: 4rem 5rem 1rem 5rem;
  }
}
