.hero {
  max-height: 100%;
}

.hero__container {
  display: flex;
  gap: 30px;
}

.hero__content {
  position: relative;

  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex-basis: 50%;
}

.hero__title {
  margin-top: 0;
  margin-bottom: 32px;

  text-transform: uppercase;
}
.hero__description {
  margin-top: 0;
  margin-bottom: 32px;

  text-transform: uppercase;
}

.hero__link-btn {
  color: var(--color-light-xl);

  transition: all 0.3s ease-in-out;
}

.hero__link-btn:hover {
  background-color: var(--color-primary);
  border: 1px solid var(--color-primary);
}

.hero__image-wrapper {
  display: flex;
  justify-content: center;
  flex-basis: 50%;
}

.hero__image {
  max-width: 100%;
  border-radius: 5px;
}

.hero__list {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
}

.hero__item {
  display: flex;
  align-items: center;
}

.hero__link > svg {
  display: flex;

  width: 36px;
  height: 36px;

  transition: all 0.3s ease-in-out;
}

.hero__link > svg:hover {
  fill: var(--color-primary-light);
}

/* MEDIA */

@media (max-width: 1240px) {


  .hero__container {
    gap: 25px;
  }
}

@media (max-width: 1024px) {
  .hero__container {
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .hero__container {
    flex-direction: column;
    gap: 15px;
  }

  .hero__content {
    flex-direction: column;
    align-items: center;
  }

  .hero__image {
    max-width: 50%;
    border-radius: 5px;
  }

  .hero__list {
    flex-direction: row;
  }
}

@media (max-width: 425px){
  .hero__image {
    max-width: 80%;
    border-radius: 5px;
  }

  .hero__title, .hero__description {
    text-align: center;
  }
}