.hero {
  background: #26231f;
  position: relative;
  overflow: hidden;
}

.hero-slider {
  width: 100%;
}

.hero-slider,
.hero-slider .swiper-wrapper,
.hero-slider .swiper-slide {
  height: calc(100vh - 118px);
  min-height: 640px;
}

.hero .swiper-slide {
  background: #26231f;
}

.hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-nav {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, .56);
  border-radius: 50%;
  background: rgba(0, 0, 0, .28);
  color: #fff;
  display: inline-grid;
  place-items: center;
  transform: translateY(-50%);
  transition: background .25s ease, border-color .25s ease;
}

.hero-nav:hover {
  background: var(--brown);
  border-color: var(--brown);
}

.hero-nav--prev {
  left: 34px;
}

.hero-nav--next {
  right: 34px;
}

.hero-pagination {
  bottom: 22px !important;
}

.hero-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  border: 1px solid #fff;
  background: transparent;
  opacity: 1;
}

.hero-pagination .swiper-pagination-bullet-active {
  background: #fff;
}

.about__grid {
  position: relative;
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 72px;
  align-items: center;
}

.section-word {
  position: absolute;
  left: -24px;
  top: 32px;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  color: #eeeae5;
  font-size: 74px;
  font-weight: 800;
  letter-spacing: 8px;
  z-index: -1;
}

.about__image {
  padding-left: 70px;
}

.about__image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.about__content p {
  max-width: 670px;
}

.about__content
.about__details {
  display: grid;
  gap: 34px;
  align-items: start;
}

.about__details img {
  aspect-ratio: 1 / .86;
  object-fit: cover;
}

.about__btn {
  margin-top: 22px;
}

.check-list {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
}

.check-list li {
  margin: 10px 0;
  color: #48443f;
  font-weight: 600;
}

.check-list li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: var(--brown);
  margin-right: 10px;
}

.products-section {
  background: #f4f4f2;
  padding: 72px 0 88px;
}

.products-head {
  text-align: center;
  margin-bottom: 48px;
}

.products-head span {
  display: inline-block;
  color: var(--brown);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
}

.products-head h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 800;
  line-height: 1.12;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
}

.product-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .8);
  border-radius: 18px;
  background: rgba(255, 252, 247, .78);
  box-shadow: 0 16px 34px rgba(83, 61, 39, .08);
  transition: transform .35s ease, box-shadow .35s ease;
}

.product-card:hover {
  box-shadow: inset 0 1px rgba(255, 255, 255, .62), 0 26px 62px rgba(28, 25, 23, .13);
  transform: translateY(-6px);
}

.product-media {
  border-radius: 16px 16px 0 0;
  overflow: hidden;
  position: relative;
}

.product-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(28, 25, 23, 0);
  pointer-events: none;
  transition: background .45s ease;
}

.product-card:hover .product-media::after {
  background: rgba(28, 25, 23, .14);
}

.product-media img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  transition: transform .55s ease;
}

.product-card:hover .product-media img {
  transform: scale(1.035);
}

.product-sheen {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(110deg, transparent 18%, rgba(255, 255, 255, .38) 46%, transparent 72%);
  opacity: 0;
  pointer-events: none;
  transform: translateX(-110%);
}

.product-card:hover .product-sheen {
  animation: product-sheen .82s ease .05s forwards;
}

.product-card__body {
  padding: 22px 20px 20px;
}

.product-card h3 {
  min-height: 32px;
  margin-bottom: 28px;
  color: #15120f;
  font-size: 21px;
  line-height: 1.25;
}

.product-card__category {
  color: var(--brown);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .02em;
  margin-bottom: 22px;
}

.product-card__foot {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
}

.product-card__foot a,
.product-card__foot span {
  min-width: 118px;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #050505;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
}

.product-card__foot a:hover,
.product-card:hover .product-card__foot span {
  background: var(--brown);
}

@keyframes product-sheen {
  0% {
    opacity: 0;
    transform: translateX(-110%);
  }

  30% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translateX(110%);
  }
}

.team-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
}



.advantages {
  background: #fff;
}

.advantage-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.advantage-card {
  min-height: 285px;
  text-align: center;
  border: 1px solid #ded8d1;
  background: #fff;
  padding: 46px 30px 34px;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease, background .3s ease, color .3s ease;
}

.advantage-card:hover {
  background: var(--brown);
  border-color: var(--brown);
  color: #fff;
  box-shadow: 0 24px 54px rgba(83, 61, 39, .12);
  transform: translateY(-6px);
}

.advantage-card i {
  width: 82px;
  height: 82px;
  display: inline-grid;
  place-items: center;
  border: 1px solid #e5ded6;
  border-radius: 50%;
  background: #fff;
  color: var(--brown);
  font-size: 30px;
  margin-bottom: 30px;
  box-shadow: 0 8px 18px rgba(36, 31, 26, .06);
  transition: color .3s ease, border-color .3s ease, box-shadow .3s ease;
}

.advantage-card:hover i {
  border-color: #fff;
  color: var(--brown);
  box-shadow: 0 10px 22px rgba(36, 31, 26, .16);
}

.advantage-card h3 {
  margin-bottom: 14px;
  font-size: 23px;
  line-height: 1.2;
}

.advantage-card p {
  max-width: 250px;
  margin: 0 auto;
  color: #6f6a64;
  font-size: 15px;
  line-height: 1.65;
  transition: color .3s ease;
}

.advantage-card:hover p {
  color: #fff;
}

.projects {
  position: relative;
  display: grid;
  grid-template-columns: 350px minmax(0, 1fr);
  gap: 70px;
  align-items: stretch;
  background: #f4f4f2;
  padding: 84px 0 78px max(28px, calc((100vw - 1280px) / 2));
  overflow: hidden;
}

.projects::after {
  content: "Wood Panels";
  position: absolute;
  right: 12px;
  bottom: -8px;
  color: rgba(255, 255, 255, .74);
  font-size: clamp(74px, 12vw, 170px);
  font-weight: 800;
  line-height: .8;
  pointer-events: none;
  z-index: 0;
}

.projects__content,
.projects__slider {
  position: relative;
  z-index: 1;
}

.projects__content {
  min-height: 470px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.projects__eyebrow {
  display: block;
  color: #c7441f;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .02em;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.projects__content h2 {
  color: #080808;
  font-size: clamp(32px, 3.7vw, 42px);
  font-weight: 700;
  line-height: 1.26;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.projects__content p {
  color: #626262;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 22px;
}

.projects__content img {
  width: 100%;
  height: 155px;
  border-radius: 8px;
  object-fit: cover;
  margin-bottom: 22px;
}

.projects__btn {
  min-width: 150px;
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #111;
  border-radius: 999px;
  color: #111;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  transition: background .25s ease, color .25s ease;
}

.projects__btn:hover {
  background: #111;
  color: #fff;
}

.projects__slider {
  width: 100%;
  min-width: 0;
  padding-bottom: 38px;
}

.projects__slider .swiper-slide {
  height: auto;
}

.project-card {
  position: relative;
  height: 470px;
  color: #fff;
  overflow: hidden;
  border-radius: 10px;
}

.member::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(0,0,0,.82));
}

.project-card img,
.member img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-card img {
  transition: transform .55s ease;
}

.project-card:hover img {
  transform: scale(1.08);
}

.member div {
  position: absolute;
  z-index: 1;
  left: 32px;
}

.projects__pagination {
  bottom: 0 !important;
}

.projects__pagination .swiper-pagination-bullet {
  width: 9px;
  height: 9px;
  background: transparent;
  border: 1px solid var(--brown);
  opacity: 1;
}

.projects__pagination .swiper-pagination-bullet-active {
  background: var(--brown);
}

.featured-projects {
  background: #fff;
  padding: 86px 0 96px;
}

.featured-projects__head {
  text-align: center;
  margin-bottom: 48px;
}

.featured-projects__head span {
  display: inline-block;
  color: var(--brown);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
}

.featured-projects__head h2 {
  color: var(--ink);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 800;
  line-height: 1.12;
  margin: 0;
  text-align: center;
  text-transform: none;
}

.featured-projects__head a {
  display: none;
}

.featured-projects__grid {
  display: grid;
  grid-template-columns: 1.65fr .8fr .8fr;
  gap: 20px;
  align-items: stretch;
}

.featured-project,
.featured-projects__stack {
  min-width: 0;
}

.featured-project {
  position: relative;
  overflow: hidden;
  border-radius: 9px;
  background: #ddd;
}

.featured-project img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s ease;
}

.featured-project:hover img {
  transform: scale(1.06);
}

.featured-project--large,
.featured-project--tall {
  height: 460px;
}

.featured-project::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 34%, rgba(0,0,0,.72));
  opacity: 0;
  transition: opacity .35s ease;
}

.featured-project--large::after,
.featured-project:hover::after {
  opacity: 1;
}

.featured-project--large::after {
  background: linear-gradient(90deg, rgba(0,0,0,.72), rgba(0,0,0,.28) 55%, rgba(0,0,0,.08));
}

.featured-project__overlay {
  position: absolute;
  inset: auto 28px 28px;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px 24px;
  color: #fff;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .35s ease, transform .35s ease;
}

.featured-project--large .featured-project__overlay,
.featured-project:hover .featured-project__overlay {
  opacity: 1;
  transform: translateY(0);
}

.featured-project__overlay > span {
  grid-column: 1;
  align-self: end;
  font-size: 15px;
}

.featured-project__overlay h3 {
  grid-column: 1;
  margin: 0;
  font-size: 25px;
  line-height: 1.15;
}

.featured-projects__stack {
  display: grid;
  gap: 18px;
}

.featured-projects__stack .featured-project {
  height: 221px;
}

.team-row {
  gap: 18px;
}

.factory-carousel {
  position: relative;
  padding: 0 58px 58px;
  overflow: visible;
}

.factory-slider {
  overflow: hidden;
}

.factory-card {
  position: relative;
  height: 280px;
  overflow: hidden;
  background: #ddd;
}

.factory-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(0,0,0,.68));
}

.factory-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s ease;
}

.factory-card:hover img {
  transform: scale(1.06);
}

.factory-card span {
  position: absolute;
  left: 28px;
  bottom: 26px;
  z-index: 1;
  color: #fff;
  font-size: 22px;
  font-weight: 800;
}

.factory-nav {
  position: absolute;
  top: calc(50% - 22px);
  z-index: 3;
  width: 38px;
  height: 38px;
  border: 1px solid #cbb9a6;
  border-radius: 50%;
  background: #fff;
  color: var(--brown);
  display: inline-grid;
  place-items: center;
}

.factory-nav--prev {
  left: 6px;
}

.factory-nav--next {
  right: 6px;
}

.factory-pagination {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -34px !important;
}

.factory-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  border: 1px solid var(--brown);
  background: transparent;
  opacity: 1;
}

.factory-pagination .swiper-pagination-bullet-active {
  background: var(--brown);
}

.member {
  position: relative;
  width: 315px;
  height: 370px;
  overflow: hidden;
  filter: grayscale(1);
}

.member div {
  bottom: 28px;
  color: #fff;
}

.member h3 {
  margin: 0;
}

.member span {
  font-size: 13px;
}

.testimonial {
  position: relative;
  min-height: 500px;
  background: url("https://images.unsplash.com/photo-1600210491892-03d54c0aaf87?auto=format&fit=crop&w=1600&q=88") center/cover;
  overflow: hidden;
}

.testimonial::before {
  content: "";
  position: absolute;
  inset: 0 50% 0 0;
  background: rgba(0, 0, 0, .78);
}

.testimonial__heading {
  position: relative;
  z-index: 2;
  width: 50%;
  padding: 66px 40px 0 max(42px, calc((100vw - 1280px) / 2 + 145px));
  color: #fff;
}

.testimonial__heading span {
  display: block;
  color: var(--brown);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
}

.testimonial__heading h2 {
  max-width: 510px;
  margin: 0;
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1.25;
}

.testimonial__panel {
  position: relative;
  z-index: 3;
  width: min(940px, calc(100% - 64px));
  min-height: 230px;
  margin: 40px 0 44px;
  margin-left: max(0px, calc((100vw - 1280px) / 2));
  background: var(--brown);
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr) 86px;
  align-items: center;
}

.testimonial__slider {
  width: 100%;
  min-width: 0;
  height: 230px;
}

.testimonial__slider .swiper-wrapper,
.testimonial__slider .swiper-slide {
  height: 230px;
}

.testimonial__slider .swiper-slide {
  display: flex;
  align-items: center;
}

.quote {
  margin: 0;
  max-width: none;
  background: transparent;
  padding: 34px 38px 30px 0;
  width: 100%;
}

.quote p {
  color: #fff;
  font-weight: 500;
  max-width: 650px;
  margin-bottom: 22px;
}

.quote__person {
  display: flex;
  align-items: center;
  gap: 14px;
}

.quote__person img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
}
.quote__person b{
  color: #fff;
}
.quote__person small {
  display: block;
  color: #efe4dc;
}

.testimonial__mark {
  color: rgba(255,255,255,.36);
  font-size: 48px;
  justify-self: center;
}

.testimonial__dots {
  position: static;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  transform: none;
}

.testimonial__dots .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  margin: 0 !important;
  border: 1px solid rgba(255,255,255,.55);
  background: transparent;
  opacity: 1;
}

.testimonial__dots .swiper-pagination-bullet-active {
  border-color: #fff;
  background: #fff;
}

.team {
  background: #f4f4f2;
}

.blog {
  background: #fff;
  padding: 78px 0 96px;
}

.blog-head {
  text-align: center;
  margin-bottom: 48px;
}

.blog-head span {
  display: inline-block;
  color: var(--brown);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
}

.blog-head h2 {
  color: var(--ink);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 800;
  line-height: 1.12;
  margin: 0;
  text-align: center;
  text-transform: none;
}

.blog-head a {
  display: none;
}

.decor-grid {
  display: flex;
  gap: 14px;
}

.decor-card {
  position: relative;
  flex: .82 1 0;
  height: 460px;
  overflow: hidden;
  border-radius: 9px;
  background: #ddd;
  transition: flex .45s ease;
}

.decor-card--feature {
  flex: 1.9 1 0;
}

.decor-grid:hover .decor-card {
  flex: .82 1 0;
}

.decor-grid .decor-card:hover {
  flex: 1.9 1 0;
}

.decor-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s ease;
}

.decor-card:hover img {
  transform: scale(1.06);
}

.decor-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.12), rgba(0,0,0,.72));
  opacity: 0;
  transition: opacity .35s ease;
}

.decor-card--feature::after,
.decor-card:hover::after {
  opacity: 1;
}

.decor-grid:hover .decor-card--feature:not(:hover)::after {
  opacity: 0;
}

.decor-card time {
  position: absolute;
  top: 22px;
  left: 24px;
  z-index: 1;
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border: 1px solid rgba(255,255,255,.72);
  border-radius: 999px;
  color: #fff;
  font-size: 13px;
  opacity: 0;
  transition: opacity .35s ease;
}

.decor-card__content {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 1;
  color: #fff;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .35s ease, transform .35s ease;
}

.decor-card--feature time,
.decor-card--feature .decor-card__content,
.decor-card:hover time,
.decor-card:hover .decor-card__content {
  opacity: 1;
  transform: translateY(0);
}

.decor-grid:hover .decor-card--feature:not(:hover) time,
.decor-grid:hover .decor-card--feature:not(:hover) .decor-card__content {
  opacity: 0;
  transform: translateY(12px);
}

.decor-card__content h3 {
  display: inline-block;
  margin: 0 18px 14px 0;
  font-size: 24px;
  line-height: 1.15;
  text-transform: uppercase;
  white-space: nowrap;
}

.decor-card__content i {
  font-size: 28px;
  vertical-align: middle;
}

.decor-card__content p {
  max-width: 360px;
  color: #fff;
  margin: 0;
}


@media (max-width: 1080px) {
  .hero-slider,
  .hero-slider .swiper-wrapper,
  .hero-slider .swiper-slide {
    height: calc(100vh - 76px);
    min-height: 640px;
  }

  .about__grid,
  .skills {
    grid-template-columns: 1fr;
  }

  .about__image {
    padding-left: 0;
  }

  .about__image img {
    height: 430px;
  }

  .advantage-grid,
  .decor-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .blog-head {
    text-align: center;
  }

  .blog-head span {
    grid-column: auto;
  }

  .blog-head h2 {
    text-align: center;
  }

  .decor-card--feature {
    grid-column: 1 / -1;
  }

  .projects {
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 62px 24px 70px;
    background: #f4f4f4;
  }

  .projects__content {
    max-width: 520px;
    min-height: auto;
  }

  .projects__slider {
    padding-right: 0;
  }

  .project-card {
    height: 390px;
  }

  .featured-projects__head {
    text-align: center;
  }

  .featured-projects__head span {
    grid-column: auto;
  }

  .featured-projects__head h2 {
    text-align: center;
  }

  .featured-projects__grid {
    grid-template-columns: 1fr 1fr;
  }

  .featured-project--large {
    grid-column: 1 / -1;
  }

  .testimonial {
    min-height: 510px;
  }

  .testimonial__heading {
    width: 58%;
    padding-left: 48px;
  }

  .testimonial__panel {
    width: min(760px, calc(100% - 48px));
    grid-template-columns: 70px minmax(0, 1fr) 64px;
    margin-left: 24px;
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .team-row {
    flex-wrap: wrap;
  }

  .factory-carousel {
    padding-inline: 44px;
  }
}

@media (max-width: 720px) {
  .hero-slider,
  .hero-slider .swiper-wrapper,
  .hero-slider .swiper-slide {
    height: auto;
    min-height: 0;
    aspect-ratio: 16 / 9;
  }

  .hero img {
    height: 100%;
    min-height: 0;
  }

  .hero-nav {
    width: 38px;
    height: 38px;
  }

  .hero-nav--prev {
    left: 14px;
  }

  .hero-nav--next {
    right: 14px;
  }

  .hero-pagination {
    bottom: 16px !important;
  }

  .about__details,
  .advantage-grid,
  .decor-grid,
  .gallery {
    display: grid;
    grid-template-columns: 1fr;
  }

  .projects {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 54px 16px 62px;
  }

  .section-word {
    display: none;
  }

  .tabs {
    gap: 16px;
    overflow-x: auto;
  }

  .about__image img {
    height: 300px;
    border-radius: 8px;
  }

  .about__grid {
    gap: 30px;
  }

  .about__content p {
    font-size: 15px;
    line-height: 1.7;
  }

  .products-section {
    padding: 56px 0 62px;
  }

  .products-head,
  .center-head,
  .featured-projects__head,
  .blog-head {
    margin-bottom: 30px;
  }

  .product-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .product-media img {
    height: 245px;
  }

  .product-card__body {
    padding: 18px 18px 20px;
  }

  .product-card h3 {
    min-height: auto;
    margin-bottom: 10px;
    font-size: 20px;
  }

  .product-card__category {
    margin-bottom: 18px;
  }

  .advantage-card {
    min-height: auto;
    padding: 32px 22px 28px;
  }

  .project-card,
  .member {
    width: 100%;
    min-height: 300px;
  }

  .project-card {
    height: 310px;
  }

  .projects__content h2 {
    font-size: 32px;
  }

  .projects__content p {
    font-size: 15px;
  }

  .projects__content img {
    height: 135px;
  }

  .featured-projects {
    padding: 58px 0 66px;
  }

  .featured-projects__grid {
    grid-template-columns: 1fr;
  }

  .featured-projects__head {
    margin-bottom: 34px;
  }

  .featured-project--large,
  .featured-project--tall {
    height: 320px;
  }

  .featured-project__overlay {
    inset: auto 18px 20px;
    grid-template-columns: 1fr;
  }

  .featured-projects__stack .featured-project {
    height: 220px;
  }

  .blog {
    padding: 58px 0 66px;
  }

  .blog-head {
    margin-bottom: 34px;
  }

  .decor-card {
    height: 300px;
    border-radius: 8px;
  }

  .decor-card--feature,
  .decor-grid:hover .decor-card,
  .decor-grid .decor-card:hover {
    grid-column: auto;
    flex: none;
  }

  .decor-card time,
  .decor-card__content,
  .decor-card--feature time,
  .decor-card--feature .decor-card__content,
  .decor-card:hover time,
  .decor-card:hover .decor-card__content,
  .decor-grid:hover .decor-card--feature:not(:hover) time,
  .decor-grid:hover .decor-card--feature:not(:hover) .decor-card__content {
    opacity: 1;
    transform: translateY(0);
  }

  .decor-card__content {
    left: 18px;
    right: 18px;
    bottom: 20px;
  }

  .decor-card__content h3 {
    margin-right: 8px;
    font-size: 20px;
    white-space: normal;
  }

  .decor-card__content i {
    font-size: 20px;
  }

  .decor-card__content p {
    font-size: 14px;
  }

  .factory-carousel {
    padding: 0 0 56px;
  }

  .factory-card {
    height: 220px;
  }

  .factory-nav {
    display: none;
  }

  .testimonial {
    min-height: auto;
    padding: 0 0 34px;
  }

  .testimonial::before {
    inset: 0;
  }

  .testimonial__heading {
    width: 100%;
    padding: 44px 24px 22px;
  }

  .testimonial__panel {
    width: calc(100% - 28px);
    min-height: auto;
    margin: -34px auto 0;
    grid-template-columns: 1fr;
    padding: 22px 0 24px;
  }

  .testimonial__dots {
    order: 2;
    flex-direction: row;
    justify-content: center;
    margin-top: 18px;
  }

  .testimonial__slider {
    order: 1;
    height: auto;
  }

  .testimonial__slider .swiper-wrapper,
  .testimonial__slider .swiper-slide {
    height: auto;
  }

  .testimonial__mark {
    display: none;
  }

  .quote {
    padding: 24px 22px;
  }
}
