.inner-hero {
  background-color: var(--blue-bg);
  position: relative;
  overflow: hidden;
}
.inner-hero .decorative-vector {
  position: absolute;
  left: -10%;
}
.inner-hero__wrapper {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  min-height: 710px;
  position: relative;
  z-index: 1;
}
.inner-hero__wrapper .inner-hero__content {
  color: #FFF;
  padding: 80px 48px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: absolute;
  max-width: 970px;
  z-index: 3;
}
.inner-hero__wrapper .inner-hero__content h1 {
  font-family: var(--font-header);
  font-size: 100px;
  font-weight: 700;
  line-height: 113%;
  letter-spacing: -5px;
  text-transform: uppercase;
}
.inner-hero__wrapper .inner-hero__content h1 span {
  color: var(--color-yellow);
  display: block;
  font-family: var(--font-body);
  font-size: 27px;
  letter-spacing: 2.3px;
  line-height: 100%;
}
.inner-hero__wrapper .inner-hero__content p {
  font-family: var(--font-body-regular);
  font-size: 29.694px;
  font-weight: 400;
  line-height: 100%;
  margin: 45px 0;
}
.inner-hero__wrapper .inner-hero__content .primary-btn {
  display: inline-block;
  background: var(--gold-gradient, linear-gradient(90deg, #DAB128 9.62%, #FDE8A4 56.25%, #DAB128 100%));
  border-radius: 83px;
  box-shadow: 6.667px 6.667px 10.933px 0 rgba(0, 0, 0, 0.1);
  color: var(--color-dark-blue);
  font-size: 25px;
  max-width: 440px;
  padding: 16px;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.3s ease;
}
.inner-hero__wrapper .inner-hero__content .primary-btn:hover {
  background: #FFF;
}
.inner-hero__wrapper .inner-hero__media {
  position: relative;
  width: 100%;
  height: 100%;
}
.inner-hero__wrapper .inner-hero__media img {
  width: 100%;
  height: 100%;
  opacity: 0.7;
  object-fit: cover;
}
.inner-hero__wrapper .inner-hero__media::before {
  content: "";
  background-color: var(--blue-bg);
  opacity: 0.1;
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
}
.inner-hero__wrapper .inner-hero__media::after {
  content: "";
  background: #1B1A38;
  background: linear-gradient(90deg, var(--blue-bg) 0%, var(--blue-bg) 20%, rgba(255, 255, 255, 0) 100%);
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
}

.awards-section {
  border-bottom: 1px solid var(--color-yellow);
  background-color: #FFF;
}
.awards-section .awards-slider {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 36px;
}

@media screen and (min-width: 2000px) {
  .inner-hero__wrapper {
    max-height: 770px;
  }
  .inner-hero__wrapper .inner-hero__content{
    max-width: 1100px;
  }
  .inner-hero__wrapper .inner-hero__content h1 {
    font-size: 100px;
  }
}
@media screen and (max-width: 1440px) {
  .inner-hero__wrapper {
    min-height: 750px;
  }
  .inner-hero__wrapper .inner-hero__content {
    max-width: 945px;
  }
}
@media screen and (max-width: 1440px) {
  .inner-hero__wrapper .inner-hero__content {
    max-width: 865px;
  }
  .inner-hero__wrapper .inner-hero__content h1 {
    font-size: 80px;
  }
  .inner-hero__wrapper .inner-hero__content p {
    font-size: 26.694px;
  }
}
@media screen and (max-width: 1110px) {

  .inner-hero__wrapper .inner-hero__content h1 {
    font-size: 60px;
    letter-spacing: -3px;
  }

}
@media screen and (max-width: 880px) {
  .inner-hero__wrapper .inner-hero__content p {
    font-size: 20px;
  }
  .awards-section {
    max-width: 100vw;
    overflow-x: scroll;
  }
  .awards-section::-webkit-scrollbar {
    display: none;
  }
}
@media screen and (max-width: 600px) {
  .inner-hero .decorative-vector {
    max-width: 300px;
    top: -5%;
  }
  .inner-hero__wrapper {
    grid-template-columns: 1fr;
  }
  .inner-hero__wrapper .inner-hero__content {
    position: static;
    width: 100%;
    text-align: center;
    padding: 50px 30px 0;
  }
  .inner-hero__wrapper .inner-hero__content h1 {
    font-size: 45px;
    width: 90%;
    margin: 0 auto;
    letter-spacing: 0;
  }
  .inner-hero__wrapper .inner-hero__content h1 span {
    font-size: 24px;
  }
  .inner-hero__wrapper .inner-hero__content p {
    font-size: 20px;
  }
  .inner-hero__wrapper .inner-hero__content .primary-btn {
    font-size: 16px;
    padding: 6px 0;
  }
  .inner-hero__wrapper .inner-hero__media::after {
    background: linear-gradient(180deg, var(--blue-bg) 0%, var(--blue-bg) 20%, rgba(255, 255, 255, 0) 100%);
  }
}

@media (max-width: 400px) {
  .inner-hero .decorative-vector {
    max-width: 250px;
    top: -5%;
  }
  .inner-hero__wrapper .inner-hero__content {
    padding: 50px 20px 0;
  }
  .inner-hero__wrapper .inner-hero__content h1{
    font-size: 35px;
  }
}


