.hero {
  padding-top: 120px;
  padding-bottom: 50px
}

.hero__top {
  display: flex;
  flex-direction: column-reverse;
  gap: 20px;
}


.hero__top-subtitle,
.hero__top-title {
  margin-bottom: 10px
}

.hero__top-description {
  margin-bottom: 30px
}

.hero__top-box-btns {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px
}

/* .hero__btn-mail {
  display: none
} */

.hero__top-img {
  width: 100%;
  aspect-ratio: 3/2.5;
  object-fit: cover;
  object-position: center;

}

.hero__bottom-title {
  font-size: 16px;
  font-family: var(--semibold);
  margin-bottom: 30px
}

.hero__bottom-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px
}

.hero-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 15px
}

.hero__top-box-img {
  position: relative;
  border-radius: 15px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  -o-border-radius: 15px;
  overflow: hidden;

}

.hero__top-box-img::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.2);
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
  border-radius: 15px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  -o-border-radius: 15px;
}

.hero__top-play {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 120px;
  pointer-events: none;
}

.hero__top-play {
	animation: playPulse 2.8s ease-in-out infinite;
	transform-origin: center;
	will-change: scale, filter;
}

@keyframes playPulse {
	0%,
	100% {
		scale: 1;
		filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.18));
	}

	50% {
		scale: 1.1;
		filter: drop-shadow(0 14px 28px rgba(0, 0, 0, 0.28));
	}
}

.hero__top-play img {
  display: block;
  width: 120px;
  height: 120px;
}

.hero__top-description .text span {
  font-family: var(--semibold);
  font-size: 20px;
}

@media (max-width:768px) {
  .hero__bottom {
    display: none;
  }
}

@media (min-width:768px) {
  .hero__top {
    display: grid;
    grid-template-columns: 790fr 592fr;
    gap: 30px;
    align-items: center;
    margin-bottom: 50px;
  }

  .hero__bottom-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px
  }
}

@media (min-width:1200px) {
  .hero__soc {
    display: none
  }

  .hero__btn-mail {
    display: inline-block
  }

  .hero__top-box-img,
  .hero__top-box-img::before {

    border-radius: 30px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;

  }
}

@media (min-width:1350px) {
  .hero__bottom-cards {
    gap: 30px
  }
}