.hero-section {
  position: relative;
  overflow: hidden;
}
.hero-section img {
  width: 100%;
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
}
.hero-section .inner {
  position: absolute;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: end;
  gap: 20px;
  flex-wrap: wrap;
  padding-bottom: 2rem;
}
.hero-section .inner h1 {
  font-size: 35px;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 0;
}
.hero-section .inner p {
  margin-bottom: 25px;
}
.hero-section .inner .buttons {
  display: flex;
  gap: 10px;
}

.home-categories {
  padding-top: 3rem;
}
.home-categories .tns-outer {
  position: relative;
}
.home-categories .tns-controls {
  position: absolute;
  bottom: -50px;
  right: 0;
  display: flex;
  gap: 10px;
}
.home-categories .tns-controls button {
  background: #beb4a1;
  color: #fff;
  border-radius: 4px;
}
.home-categories .tns-controls button[disabled] {
  background: #f5f2ed;
  color: #000;
  opacity: 0.3;
  pointer-events: none;
}
.home-categories .section-heading {
  display: flex;
  align-items: center;
  gap: 15px;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}
.home-categories .section-heading h2 {
  font-size: 12px;
  margin-bottom: 0;
  font-weight: 400;
}
.home-categories .section-heading a {
  font-size: 12px;
  text-decoration: underline !important;
}
.home-categories .category-item {
  padding: 0;
  padding-right: 10px;
}
.home-categories .category-item img {
  aspect-ratio: 1/1.2;
  -o-object-fit: cover;
     object-fit: cover;
}
.home-categories .category-item h2 {
  padding-top: 10px;
  font-size: 17px;
  margin-bottom: 0;
  font-weight: 400;
}
.home-categories .category-item .images {
  display: none;
}

.home-proionta .tns-outer {
  position: relative;
}
.home-proionta .tns-controls {
  position: absolute;
  bottom: -50px;
  right: 0;
  display: flex;
  gap: 10px;
}
.home-proionta .tns-controls button {
  background: #beb4a1;
  color: #fff;
  border-radius: 4px;
}
.home-proionta .tns-controls button[disabled] {
  background: #f5f2ed;
  color: #000;
  opacity: 0.3;
  pointer-events: none;
}
.home-proionta .section-heading {
  display: flex;
  align-items: center;
  gap: 15px;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}
.home-proionta .section-heading h2 {
  font-size: 12px;
  margin-bottom: 0;
  font-weight: 400;
}
.home-proionta .section-heading a {
  font-size: 12px;
  text-decoration: underline !important;
}
.home-proionta .post {
  padding-right: 10px;
}

@keyframes zoomImg {
  to {
    transform: scale(1);
  }
}
.wide-section .scale {
  transform: scale(0.6, 1);
  animation: zoomImg;
  animation-timeline: view();
}
.wide-section img {
  height: 40vh;
  -o-object-fit: cover;
     object-fit: cover;
}
.wide-section .content {
  height: auto;
  max-width: 785px;
  margin: 0 auto;
}

@media (max-width: 992px) {
  .wide-section {
    padding-top: 0;
  }
}
