/* HERO */
.hh-container-mod {
  background-image: url(/content/new/images/home-hero-cruise.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.hh-content-mod {
  padding: 48px 32px 32px 32px;
  gap: 42px;
}

.hh-h1 {
  max-width: 640px;
  color: var(--light-10);
}

.hh-essential-card {
  max-width: 584px;
  background-color: var(--light-00);
  border-radius: 8px;
  overflow: hidden;
  gap: 16px;
}

.hh-essential-card div, .hh-essential-card main {
  display: flex;
}

.hh-essential-card div {
  justify-content: center;
  align-items: center;
  padding: 16px 0 16px 16px;
}

.hh-essential-card main {
  align-items: flex-start;
  justify-content: flex-start;
  padding: 16px 0;
  gap: 4px;
}

.hh-essential-card span {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--blue-80);
  padding: 8px;
}

.hh-essential-card h5 {
  color: var(--blue-80);
}

.hh-essential-card p {
  color: var(--dark-30);
}

.hh-finder {
  display: flex;
  flex-direction: row;
  width: 100%;
  gap: 16px;
}

.hh-card-find {
  display: flex;
  flex-direction: column;
  background-color: var(--light-00);
  border-radius: 8px;
  overflow: hidden;
  width: 100%;
}

.hh-card-find header {
  background-color: var(--blue-80);
  padding: 12px 24px;
}

.hh-card-find header h3, .hh-card-find header p {
  color: var(--light-00);
}

.hh-card-find main {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 16px 24px;
  gap: 8px;
}

.hh-card-find footer {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  padding: 16px 24px;
  gap: 8px;
}

/* GUARANTEE */
.hg-container-mod {
  background-color: var(--blue-80);
}

.hg-content-mod {
  flex-direction: row;
  padding: 14px 32px;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.hg-item {
  background-image: url('/content/new/icons/check.svg');
  background-position: 0 50%;
  background-repeat: no-repeat;
  background-size: 48px;
  display: flex;
  flex-direction: row;
  padding: 0 0 0 64px;
}

.hg-item p {
 color: var(--light-00);
}

/* BENEFITS */

.hb-container-mod {
  background-color: var(--light-00);
}

.hb-content-mod {
  flex-direction: row;
  padding: 32px;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
}

.hb-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.hb-item div {
  display: flex;
  background-color: var(--blue-05);
  padding: 24px;
  border-radius: 64px;
  margin-bottom: 16px;
}

.hb-item .hb-wave-mod {
  padding: 0;
  background-color: transparent;
}

.hb-item h5, .hb-item p {
  text-align: center;
}

.hb-item h5 {
  padding-bottom: 8px;
}

.hb-item p {
  font-weight: 300;
}

@media screen and (max-width: 964px) {
  .hh-content-mod {
    align-items: center;
  }

  .hh-finder {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .hh-essential-card {
    max-width: var(--sm);
  }

  .hh-essential-card span {
    padding: 0;
  }

  .hh-card-find {
    max-width: var(--sm);
    height: 63px;
    transition: all 0.3s;
  }

  .hh-card-find header {
    position: relative;
    height: 64px;
  }

  .hh-card-find header::before {
    content: "";
    background-image: url('/content/new/icons/chevron-bottom.svg');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 32px;
    position: absolute;
    width: 32px;
    height: 32px;
    right: 16px;
    top: 16px;
    transition: all 0.3s;
  }

  .hh-card-find footer {
    flex-direction: column-reverse;
  }

  .mob-hh-card-find-open {
    height: 320px;
  }

  .mob-hh-card-find-open header::before {
    transform: rotate(180deg);
    opacity: 0.2;
  }

  .hg-item {
    width: calc(50% - 8px);
  }

  .hb-content-mod {
    flex-wrap: wrap;
    flex-direction: row;
  }

  .hb-item {
    max-width: calc(50% - 8px);
  }
}

@media screen and (max-width: 640px) {
  .hh-essential-card span {
    display: none;
  }
  .hh-essential-card main {
    padding-right: 16px;
  }

  .hg-item {
    width: 100%;
    background-size: 24px;
    padding: 0 0 0 42px;
  }

  .hg-item br{
    display: none;
  }

  .hb-content-mod {
    flex-direction: column;
  }

  .hb-item {
    max-width: 100%;
  }
}