/* HERO SECTION */
.hero-section {
  background-color: var(--color-primary);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  height: auto;
  max-height: 800px;
  overflow: hidden;
}

.layer-top {
  z-index: 1;
}

.hero-section__video {
  position: absolute;
  width: 65%;
  right: 0px;
  top: 0px;
  height: 100%;
  object-fit: cover;
}

.hero-section__content {
  padding: 72px 0px 72px 120px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 45%;
  background: linear-gradient(
    270deg,
    rgba(7, 24, 45, 0) 4.85%,
    rgba(7, 24, 45, 0.6) 15.78%
  );
}

.hero-section__title {
  font-size: 74px;
  font-weight: 100;
  line-height: 80px;
}

.hero-section__location {
  font-size: 24px;
  font-weight: 250;
  line-height: 29px;
}

.hero-section__description {
  font-size: 20px;
  line-height: 32px;
  font-weight: 400;
  /* padding-right: 60px;  */
  padding-right: 70px;
}

.hero-section__cta {
  border: 1px solid var(--color-white);
  border-radius: 30px;
  padding: 16px 24px;
  background-color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: 41px;
}

.hero-section__cta-button {
  text-decoration: none;
  font-size: 14px;
  color: var(--color-text);
  margin-top: 24px;
  font-weight: 700;
}

.hero-section__cta-icon {
  width: 20px;
  height: 20px;
}
