.hero-section {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 275px;
    height: auto;
    display: flex;
    padding: 0 5%;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-section::before {
    background-color: #000;
    opacity: 0.2;
	content: "";
	min-height: 275px;
    height: auto;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
	z-index: 1;
}

.hero-section__content {
   /* margin-bottom:8vh; */
   z-index: 2;
}

.hero-section__content h5 {
    font-size: 20px;
    color: #A7CADA;
    font-weight: normal;
    margin:0 0 -5px 0;

}

.hero-section__content h1 {
    font-size: 64px;
    font-weight: 400;
    color:#FFF;
    line-height: 100%;
    text-align: center;
    margin: 0;
    letter-spacing: 2px;
    font-family: "Jost";
}

.attraction__content {
    padding: 70px 10%;

}

.image-grid {
    --gap: 10px;
    --num-cols: 4;
    --row-height: 250px;
    box-sizing: border-box;
    display: grid; 
    grid-template-columns: repeat(var(--num-cols), 1fr);
    grid-auto-rows: var(--row-height);
    gap: var(--gap);
    margin-top: 50px;
}

/* .image-grid a {
    display: block;
} */

.image-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.image-grid-col-2 {
    grid-column: span 2;
}

.image-grid-row-2 {
    grid-row: span 2;
}

.image-grid a:nth-child(10n + 1), .image-grid a:nth-child(10n + 8) {
    grid-column: span 2;
    grid-row: span 2; 
}

.more-images {
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: fit-content;
    margin: 50px auto 40px;
}
.more-images p {
    font-family: "Jost";
    font-weight: 400;
    font-size: 32px;
    letter-spacing: 2px;
    margin: 0 0 15px 0;
    text-transform: uppercase;
    color: var(--primary-color);
}

.review-slider {
    margin: 50px 0;
    position: relative;
}
.review {
    padding: 40px 50px;
}
.review img + img {
    margin-left: 15px; 
}
.review * {
    text-align: center;
    color: var(--primary-color);
}
.review h3 {
    font-family: "Jost";
    font-weight: 400;
    font-size: 32px;
    line-height: 100%;
    letter-spacing: 2px;
}
.review p {
    letter-spacing: 1px;
}
.review h4 {
    font-weight: 700;
    font-size: 16px;
    line-height: 180%;
    letter-spacing: 1px;

}
.review h4:first-of-type {
    margin-bottom: 0; 
}
.review h4:last-of-type {
    margin: 0;
}
.reviewSwiper {
    background-color: #fff;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.08);
    width: 80%;
    max-width: 970px;
}
.review-next, .review-prev, .news-details-next, .news-details-prev {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background-color: rgba(9, 23, 51, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 5;
}
.review-next {
    right: 0;
}

@media only screen and (max-width: 1399px) {
.hero-section__content h1 {
    font-size: 52px;
}
}

@media only screen and (max-width: 768px) {
    .review {
        padding: 40px 20px;
    }
    .review-next, .review-prev, .news-details-next, .news-details-prev  {
        width: 44px;
        height: 44px;
        /* top: unset;
        bottom: 0;
        transform: none; */
        z-index: 3;
    }
    .review-next {
        right: -22px;
    }
    .review-prev {
        left: -22px;
    }
    .reviewSwiper {
        width: 100%;
    }
    .review h3 {
        font-size: 26px;
    }
    .review p {
        font-size: 16px;
        letter-spacing: 0.5px;
    }
    .review-slider {
        margin-bottom: 0;
    }
    /* .review-slider {
        padding-bottom: 50px;
    } */
    .attraction__content {
        padding: 50px 5%;
    }

  .hero-section {
    height: 275px;
    margin-top: 0px;
    padding-left: 5%;
    background-position: center;
  }

  .hero-section::before {
	min-height: 275px;
}

.image-grid {
    --num-cols: 2; 
    --row-height: 100px; 
    --gap: 5px;
}

.image-grid > img {
    height: 150px;
}

.image-grid-col-2 {
    grid-column: span 2;
}

.image-grid-row-2 {
    grid-row: auto; 
}

.hero-section__content h5 {
    font-size: 16px;

}

.hero-section__content h1 {
    font-size: 40px;
}
.more-images p {
    font-size: 18px;
    letter-spacing: 1px;
    margin: 0 0 5px 0;
}

}
