:root {
  --gradient-hero: linear-gradient(0deg, rgba(20, 20, 20, 1) 0%, rgba(20, 20, 20, .8) 20%, rgba(20, 20, 20, 0) 100%);
}

.hero {
  position: relative;
  padding: 50px 0 130px;
  clip-path: polygon(0 0, 100% 0%, 100% calc(100% - 120px), 50% 100%, 0 calc(100% - 120px));
  overflow: hidden;
}

.hero::before,
.hero::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: '';
}

.hero::before {
  z-index: -2;
  background-color: var(--color-bg-dark2);
  background-image: url('../img/hero/bg-banner-gray.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  mix-blend-mode: luminosity;
  opacity: .2;
}

.hero::after {
  z-index: -1;
  background-image: var(--gradient-hero);
  opacity: .8;
}

.hero__description {
  position: relative;
  z-index: 1;
  margin-top: 100px;
  margin-bottom: 100px;
}

.hero__img {
  position: relative;
  min-height: 0;
}

.hero__img img {
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  max-width: 560px;
  transform: translateY(-16%);
}

.hero .hero__heading {
  font-size: 48px;
  margin-bottom: 20px;
  word-break: normal;
}

.hero__text {
  font-size: 28px;
}

.hero__btn {
  margin-top: 40px;
}

.hero__btn:first-of-type {
  margin-right: 38px;
}

@media (max-width: 1199px) {
  .hero {
    padding-bottom: 100px;
    clip-path: polygon(0 0, 100% 0%, 100% calc(100% - 90px), 50% 100%, 0 calc(100% - 90px));
  }
}

@media (max-width: 991px) {
  .hero .hero__heading {
    font-size: 44px;
  }

  .hero__description {
    margin-top: 60px;
    margin-bottom: 80px;
  }

  .hero__img img {
    max-width: 480px;
    transform: translateY(-16%) translateX(-40px);
  }

  .hero__text {
    font-size: 24px;
  }
}

@media (max-width: 767px) {
  .hero {
    padding-bottom: 60px;
    clip-path: polygon(0 0, 100% 0%, 100% calc(100% - 50px), 50% 100%, 0 calc(100% - 50px));
  }

  .hero .hero__heading {
    font-size: 38px;
  }

  .hero__description {
    margin-top: 20px;
    margin-bottom: 60px;
  }

  .hero__img img {
    max-width: 350px;
    transform: translateY(-12%) translateX(50vw);
  }

  .hero__text {
    font-size: 20px;
  }

  .hero__btn {
    display: block !important;
  }

  .col-xs-0 {
    width: 0;
    padding: 0;
  }
}

@media (max-width: 512px) {

  .hero .hero__heading {
    font-size: 7vmin;
    width: 110%;
  }

}

@media (max-width: 479px) {
  .hero {
    padding-top: 30px;
  }

  .hero__content {
    min-height: 200px !important;
  }

  .hero__description {
    margin-top: 0;
    margin-bottom: 40px;
  }

  .hero__img img {
    max-width: 260px;
    min-width: 220px;
    width: 60vw;
    transform: translateY(-16%) translateX(50vw);
  }

  .hero__text {
    font-size: 18px;
  }
}

@media (max-width: 375px) {
  .hero .hero__heading {
    font-size: 24px;
    width: 120%;
  }
}