.hero {
  padding-top: 90px;
}
.hero__container-m {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 135px;
}
.hero__title {
  flex: 1 48%;
}
.hero__base {
  flex: 1 48%;
  display: flex;
  flex-direction: column;
}
.hero__buttons {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 20px;
}
.hero__img {
  display: flex;
  width: 100%;
  max-height: 456px;
  overflow: hidden;
  align-items: center;
  justify-content: center;
}
.hero__img picture {
  display: flex;
  width: 100%;
  height: 100%;
}
.hero__img picture img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.hero__img .hero__video {
  display: flex;
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(#fff, #fff);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: cover;
  mask-image: linear-gradient(#fff, #fff);
  mask-repeat: no-repeat;
  mask-size: cover;
}
.hero__img .hero__video video {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  overflow: hidden;
}
@media screen and (max-width: 1440px) {
  .hero__container-m {
    margin-bottom: 80px;
  }
}