.main {
  height: 100vh;

  display: flex;
  align-items: flex-end;

  background-image: url(../images/home-main-background-desktop.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.main .container {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding-bottom: 80px;
}
.main__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.main__title {
  text-align: center;
  color: var(--white-1000);
}

.about {
  padding-top: 24px;
  padding-bottom: 115px;
  overflow-x: hidden;
}
.home-video {
  padding: 120px 0px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.home-video__decor {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.home-video__decor:first-child {
  right: 40%;
}
.home-video__decor:last-child {
  left: 40%;
}
.home-video-control {
  width: 100%;
  max-width: 690px;
  max-height: 435px;
  aspect-ratio: 690 / 435;

  position: relative;
  z-index: 1;

  -webkit-mask: url(../images/home-video-image.png) no-repeat center;
  -webkit-mask-size: 100%;
  mask: url(../images/home-video-image.png) no-repeat center;
  mask-size: 100%;

  overflow: hidden;
}
.home-video-control__image {
  display: block;
  max-width: 100%;
}
.home-video-control.started .home-video-control__image {
  display: none;
}
.home-video-control__video {
  display: block;
  width: 100%;
}
.home-video-control:not(.started) .home-video-control__video {
  display: none;
}
.home-video-control__button {
  --size: 50px;

  width: var(--size);
  height: var(--size);
  border-radius: var(--size);

  background-color: var(--sky-color);

  display: flex;
  align-items: center;
  justify-content: center;

  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);

  cursor: pointer;
  user-select: none;
}
.home-video-control.started:not(.paused) .home-video-control__button {
  display: none;
}
.about__grid {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 48px;
  row-gap: 30px;
}
.about-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.about-card.about-button-read-more {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px;
  
  background-color: var(--sky-color);
  color: var(--dark-900);

  font-family: 'Dela Gothic One', sans-serif;
  font-size: 12px;
  border-radius: 10px;
}
.about-button-read-more .about-button-read-more__icon {
  width: 100%;
  display: flex;
  justify-content: end;
}
@media (max-width: 992px) {
  .about {
    padding-top: 70px;
    padding-bottom: 40px;
  }
  .about .container {
    position: relative;
  }
  .about__title {
    position: absolute;
    z-index: 2;
    top: -40px;
  }
  .home-video {
    padding: 0;
  }
  .about__grid {
    grid-template-columns: 1fr;
  }
  .about-card-adaptive {
    padding-left: 90px;
  }
}

.products {
  padding: 10px 0px;
}
.products__header {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.products__title {
  grid-column: 2 / 3;
}
.products .slider-header-navigation {
  display: none;
}
.products__body {
  margin-top: 30px;
}
/* .product-card {} */
.product-card__image {
  -webkit-mask: var(--mask) no-repeat center;
  -webkit-mask-size: 100%;
  mask: var(--mask) no-repeat center;
  mask-size: 100%;
}
.product-card__image img {
  display: block;
  width: 100%;
}
.product-card__body {
  margin-top: 20px;
}
/* .product-card__type {} */
.product-card__title {
  margin-top: 20px;
  font-family: 'Dela Gothic One', sans-serif;
}
.product-card__text {
  margin-top: 20px;
}
.product-card__footer {
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 30px;
}
.product-card__price {
  flex: 1 1 auto;
  font-family: 'Dela Gothic One', sans-serif;
  font-size: 12px;
  color: var(--white-1000);
  text-transform: uppercase;
}
.product-card__info {
  flex: 1 1 auto;
  color: var(--dark-500);
}
.product-card__buy {
  margin-top: 20px;
}
.product-card__details {
  margin-top: 10px;
}
@media (max-width: 992px) {
  .products__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .products .slider-header-navigation {
    display: flex;
  }
  .products .swiper {
    overflow: visible;
    overflow: hidden;
  }
}
