.ec-container-mod {
  background-image: linear-gradient(90deg, #030D23 0%, rgba(5, 12, 29, 0) 100%), url(/content/new/images/essential-excursion-hero.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.ec-main-article {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 32px;
}

.ec-why-section {
    display: flex;
    flex-direction: row;
    gap: 32px;
    align-items: center;
}

.ec-blue-section {
    background-color: var(--blue-70);
    padding: 16px;
    display: flex;
    justify-content: space-between;
}

.ec-blue-section-left {
    align-items:flex-end;
    padding: 32px 0px;
}

.ec-img-cta {
    border: 1px solid #ffffff;
}

.ec-explore-tour-title {
    display: flex;
    justify-content: center;
    padding-top: 32px;
}

.checklist {
    list-style: none;
}

.checklist > li:before {
    content: '\2713\0020';
}

.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);
}

@media screen and (max-width: 964px) {
    .ec-blue-section {
        flex-direction: column;
        gap: 16px;
    }

    .ec-blue-section-left {
        align-items: stretch;
        gap: 16px;
        padding: 0px;
    }

    .ec-why-section {
        flex-direction: column;
    }

    .ec-explore-tour-title h1 {
        text-align:center;
    }

    .mob-ec-tours {
        max-width: none !important;
        width: inherit !important;
    }
}