/***************** hero ****************/

.hero {
  margin-top: 58px;
  padding: 0 16px;
  position: relative;
}

.hero-container {
  position: relative;
  max-width: 1220px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 28px;
}

.hero::after {
  content: "";
  background: url(../images/decor_long.svg) repeat-x;
  position: absolute;
  height: 48px;
  width: 100%;
  left: 4px;
  bottom: 106px;
  z-index: -1;
}

.hero-description {
  max-width: 492px;
  position: relative;
}

.description-title {
  text-transform: uppercase;
  font-weight: 600;
  font-size: 62px;
  color: #2c332f;
  font-family: Oswald;
}

.description-title-accent {
  color: #3596ed;
}

.description-text {
  max-width: 439px;
  margin-top: 40px;
  font-weight: 400;
  line-height: 130%;
  font-family: Ubuntu;
  color: #535755;
}

.description-link {
  position: absolute;
  left: 0;
  bottom: 0;
  text-decoration: none;
  text-transform: uppercase;
  font-family: Ubuntu;
  font-weight: 500;
  line-height: 130%;
  font-size: 15px;
  letter-spacing: 0.02em;
  color: #fff;
  background-color: #3596ed;
  max-height: 57px;
  max-width: 270px;
  padding: 19px 32px;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}

.description-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(44, 51, 47, 0.18);
  background: linear-gradient(135deg, #49a9ff, #fc7cd9);
}

.description-link:active {
  transform: translateY(0);
}

.description-link:focus-visible {
  outline: 2px solid rgba(252, 124, 217, 0.55);
  background: linear-gradient(135deg, #49a9ff, #fc7cd9);
  outline-offset: 4px;
}

.hero-images-badge {
  position: absolute;
  max-width: 160px;
  max-height: 86px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid #535755;
  line-height: 130%;
  font-family: Ubuntu;
  font-weight: 400;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  text-align: center;
}

.hero-images {
  display: flex;
  position: relative;
}
