/* ===== Banner ===== */
#banner {
  position: relative;
  height: 800px;
  overflow: hidden;
  background: var(--color-black);
  color: var(--color-white);

  @media (max-width: 1200px) {
    height: 624px;
  }

  @media (max-width: 767px) {
    height: auto;
    min-height: 450px;
  }
}

#banner .container {
  height: 100%;
}

#banner .hero__bg-img {
  @media (max-width: 1200px) {
    object-position: 86% 0%;
    transform: scale(1);
  }
}

#banner .hero__content {
  justify-content: flex-start;
}

#banner .hero__bg {
  &::before,
  &::after {
    content: none;
  }
}

.banner__title {
  max-width: 1200px;
}

.banner__breadcrumbs {
  display: flex;
  align-items: center;
  gap: 4px;
  height: 24px;
  margin-bottom: 24px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  line-height: 14px;

  a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;

    &:hover {
      color: var(--color-orange);
    }
  }

  span {
    color: var(--color-white);
  }

  .container-card__breadcrumb-sep {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    padding: 6px;
    flex-shrink: 0;

    img {
      width: 16px;
      height: 16px;
    }
  }

  @media (max-width: 767px) {
    margin-bottom: 12px;
  }
}

.banner__actions {
  display: flex;
  align-items: center;
  margin-top: 40px;

  @media (max-width: 767px) {
    margin-top: 0;
  }
}

.banner__btn {
  font-size: 22px;
  font-weight: 600;

  @media (max-width: 768px) {
    font-size: 15px;
  }
}

.banner__subtitle {
  max-width: 655px;
  margin-top: 24px;

  @media (max-width: 768px) {
    font-weight: 400;
  }

  @media (max-width: 767px) {
    margin-top: 0px;
  }
}
