/* Banner */
.bg-video video {
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.banner-section .inner-column:before {
    display: none;
}

.banner-section .inner-column:after {
    display: none;
}

/* Call to action */
.sec-title .sub-title {
    font-size: 2rem;
    padding-bottom: 30px;
}

.sec-title h2 {
    font-size: 2.2rem;
    padding: 0 50px;
    text-align: center;
}

.contact-mila {
    margin-top: 30px;
}

/* Banners */
.sec-title-baner {
    margin-bottom: 65px !important;
}

/* Destinations */

.icon-wheel-compass-3 {
    z-index: 999;
}

@keyframes pulseScale {

    0%,
    100% {
        transform: scale(1);
        /* Original size */
    }

    50% {
        transform: scale(1.3);
        /* Scale up to 1.2 times */
    }
}

.destination-pointer {
    display: inline-block;
    /* or 'block' depending on your layout needs */
    animation: pulseScale 2s infinite ease-in-out;
    /* Adjust timing as necessary */

}


/* Amenities */
.container-amenities {
    max-width: 1500px;
    margin: auto;
    padding-left: 20px;
    padding-right: 20px;
}

.amenities {
    display: flex;
    flex-direction: row;
    gap: 30px;
    padding: 50px;
}

.amenities-items {
    padding: 15px;
}

.item-amenities {
    display: flex;
    flex-direction: row;
    gap: 15px;
}

.amenities-text h5 {
    color: var(--primary-color);
}

.item-icon img {
    width: 70px !important;
    max-width: 70px !important;
}

.amenities-images {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px !important;
    margin: auto;
    /* align-self: center; */
}

.amenities-images a {
    width: 270px;
    height: 270px;
    border-radius: 8px;
}

.amenities-images a img {
    width: 100%;
    height: 100%;
}

/* Team */
.team-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.team-block {
    width: 100%;
}

.inner-box {
    margin: auto !important;
}

.team-member {
    min-width: 150px;
    min-height: 150px;
}

.btn-style-one {
    background-color: #bfa888 !important;
}




@media (max-width: 1100px) {
    .sticky-header .main-menu .navigation>li {
        margin-left: 40px;
    }
}

@media screen and (max-width: 1500px) {
    .amenities-images a {
        width: 250px;
        height: 250px;
        border-radius: 8px;
    }
}

@media screen and (max-width: 1250px) {
    .amenities-container {
        width: auto;
        margin: auto;
    }

    .amenities-images a {
        width: 200px;
        height: 200px;
        border-radius: 8px;
    }

    /* Banner */
    .sec-title .sub-title {
        font-size: 2rem !important;
    }

    .sec-title h2 {
        font-size: 1.5rem !important;
    }
}

@media screen and (max-width: 991px) {
    .amenities {
        flex-direction: column;
        padding: 60px 0;
    }

    .amenities-images a {
        width: 290px;
        height: 290px;
        border-radius: 8px;
    }

    .team-container {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .amenities-images a {
        width: 250px;
        height: 250px;
        border-radius: 8px;
    }
}

@media screen and (max-width: 550px) {
    .amenities-images a {
        width: 200px;
        height: 200px;
        border-radius: 8px;
    }
}

@media screen and (max-width: 450px) {
    .amenities-items {
        padding: 0;
    }

    .amenities-images {
        grid-template-columns: repeat(1, 1fr);
    }

    .amenities-images a {
        width: 300px;
        height: 300px;
        border-radius: 8px;
    }

    .team-container {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
    }

    /* Banner */
    .sec-title .sub-title {
        font-size: 1.2rem !important;
    }

    .sec-title h2 {
        font-size: 1.2rem !important;
    }
}

@media screen and (max-width: 340px) {
    .amenities-images a {
        width: 260px;
        height: 260px;
    }

}