.main-intro {
    background-color: #0a6f79;
    box-sizing: border-box;
    margin-top: -3rem;
    margin-left: -1rem;
    margin-left: -1rem;
    padding: 190px;
    width: calc(100% + 2rem);

    display: flex;
    justify-content: center;
    justify-items: center;
}

.main-intro-text {
    color: white;
    flex: 1 1 400px;
}

ul.custom-check li {
    list-style: none;
    position: relative;
    padding-left: 3rem;
}

ul.custom-check li::before {
    content: "✓";
    display: inline-block;
    width: 1.2rem;
    height: 1.2rem;
    border: 2px solid #28630d;
    text-align: center;
    line-height: 1.1rem;
    position: absolute;
    left: 0;
    top: 0;
    border-radius: 0.2rem;
    font-weight: bold;
    transform: translateY(50%);
}
.sub-li {
    color: var(--text-secondary-color);
    padding: 1rem;
}

.main-intro-image {
    display: block;
    max-width: 100%;
    height: auto;
}

.main-authentic {
    display: flex;
    flex-direction: row;
    justify-content: center;
    justify-items: center;
    padding: 20px;
}

.main-authentic-image img {
    width: 100%;
    max-width: 650px;
}

.main-authentic-text {
    margin: 50px;
    max-width: 772px;
}

.main-text {
    color: var(--text-secondary-color2);
}

.redirect-but {
    max-width: 190px;
    padding: 1em;
    border-radius: 14px;
    background: #067031;
    color: white;
    text-decoration: none;

    display: flex;
    align-items: center;
    justify-content: center;
}
.redirect-but:hover {
    color: white;
    background: #3f7555;
}


.reason-top {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.reason-top-title-text {
    font-size: 12px;
    border-radius: 30px;
    font-weight: 700;
    padding: 8px 20px;
    color: #067031;
    background: #eafff8;
}

.reason-title-text {
    font-size: 18px;
}
.reason-title-text-2 {
    font-size: larger;
}

.reason-main-padder {
    padding-left: 1rem;
    padding-right: 1rem;
}

.reasons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    gap: 20px;
    margin-top: 40px;
    margin-bottom: 40px;
}

.reason {
    padding: 1rem;
    margin: 1rem;
    max-width: 420px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    background: #fafafa;
    background-color: var(--bck-surface-color2);
}

.reason-circle {
    height: 88px;
    width: 88px;
    line-height: 88px; 
    text-align: center;
    border-radius: 50%;
    display: inline-block;
    font-size: 36px;
    font-weight: 300;
    background: #eafff8;
    color: #067031;
}

.reason-sub-title-text {
    font-size: 24px;
    font-weight: 200;
    text-align: center;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.uppercase {
    text-transform: uppercase;
}

.home-recommendations {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 5rem;
    margin-bottom: 5rem;
}

.recommended-roundtrips,
.recommended-hotels,
.recommended-others {
    display: flex;
    flex-direction: column;
    gap: 5rem;
    margin-bottom: 5rem;
    margin-left: 1rem;
    margin-right: 1rem;
}

.rec-headers {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;

  @media (max-width: 768px) {
    flex-direction: column;
    align-items: stretch;

    .rec-header {
      margin: 0.25rem 0;
      text-align: center;
    }
  }
}

.rec-header {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0.5rem 1rem;
    margin: 0.5rem;
    border-radius: 12px;
    transition: opacity 0.15s ease, background-color 0.15s ease;
    color: var(--text-primary-color);


    &:hover {
        opacity: 1;
        background-color: var(--sub-color);
        color: var(--text-primary-inverted-color);
    }

    &.is-active {
        opacity: 1;
        background-color: var(--sub-color);
        color: var(--text-primary-inverted-color);
    }
}
.rec-header h3 {
    margin: 0.4rem;
}

.is-hidden {
    display: none;
}

.article-home {
	padding: 1rem;
	margin: 1rem;
	max-width: 480px;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
	background: #fafafa;
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    background-color: var(--bck-surface-color2);
}

.rec-headers {
    display: flex;
    justify-content: center;
}

.reccom-title {
    text-align: center;
}

@media(max-width: 772px) {
    .main-intro {
        padding: 80px;
    }
    .recommended-roundtrips,
    .recommended-hotels,
    .recommended-others {
        margin-left: 0;
        margin-right: 0;
    }
    .article-home {
        margin-left: 0rem;
        margin-right: 0rem;
    }
}
@media (max-width: 1150px) {
    .main-intro-image {
        display: none;
    }
    .main-authentic {
        flex-direction: column-reverse;
    }
    .article-home {
        padding: 1rem;
        margin: 1rem;
        max-width: 380px;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        background: #fafafa;
        box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
        background-color: var(--bck-surface-color2);
    }
}
@media(max-width: 1600px) {
    .main-intro-image img {
        width: 100%;
        height: auto;
        max-width: 600px;
    }
}
@media(min-width: 1300px) {
    .main-authentic {
        padding: 120px;
    }
}
