.hero-trip {
  position: relative;
  max-width: 1420px;
  width: 100%;
  margin: 32px auto 100px auto;
  overflow: hidden;
  z-index: 1;
}
.hero-trip picture {
  width: 100%;
  height: 100%;
  border: 2px solid #fff;
  border-radius: 20px;
  aspect-ratio: 192/65;
  display: flex;
  overflow: hidden;
}
.hero-trip picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-trip-inner {
  position: absolute;
  top: 50%;
  left: 50px;
  z-index: 2;
  transform: translateY(-50%);
  max-width: 615px;
}

.hero-trip-title {
  text-transform: uppercase;
  color: #1f2a36;
}

.hero-trip-text {
  margin: 24px 0;
}

.hero-trip-btn {
  max-width: 280px;
}

@media (max-width: 1300px) {
  .hero-trip-inner {
    max-width: 50vw;
  }
}
@media (max-width: 1200px) {
  .hero-trip-inner {
    top: unset;
    bottom: 16px;
    transform: translateY(0);
  }
  .hero-trip-title {
    font-size: 30px;
  }
}
@media (max-width: 1000px) {
  .hero-trip picture {
    aspect-ratio: 400/300;
  }
  .hero-trip::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: linear-gradient(180deg, rgba(243, 249, 251, 0) 60%, rgba(243, 249, 251, 0.8) 90%);
    z-index: 1;
  }
}
@media (max-width: 768px) {
  .hero-trip {
    margin: 0 auto 56px auto;
  }
  .hero-trip picture {
    border-radius: 0;
    aspect-ratio: 375/520;
  }
  .hero-trip picture img {
    object-position: 70% 50%;
  }
  .hero-trip::before {
    background: linear-gradient(180deg, rgba(243, 249, 251, 0) 50%, rgba(243, 249, 251, 0.8) 90%);
  }
  .hero-trip-inner {
    max-width: calc(100% - 32px);
    left: 16px;
  }
  .hero-trip-inner .hero-trip-title {
    font-family: Geologica !important;
  }
  .hero-trip-text {
    margin: 12px 0;
  }
}