@import url('https://fonts.googleapis.com/css2?family=Playwrite+GB+J:ital,wght@0,100..400;1,100..400&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Gilda+Display&display=swap');

.banner-section {
    position: relative;
    overflow: hidden;
}

.banner-section .container-fluid {
    padding: 0;
}

.banner-section-img {
    position: relative;
    height: 100vh;
}

.banner-section-img video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-section::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9;
    background: #0000009c;
    content: "";
}

.banner-section-information {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    text-align: center;
    z-index: 9;
}

.banner-section-information h1 {
    font-size: 55px;
    font-family: "Gilda Display", serif;
}

.btn {
    margin-top: 20px;
    background: #e44f73;
    font-family: "Montserrat", sans-serif;
    color: #fff;
    border-radius: 20px;
    font-size: 15px;
    padding: 8px 35px;
}

.padding-space-extra {
    padding: 50px 0;
}

.trip-inn {
    text-align: center;
}

.bg-color {
    background: antiquewhite;
    text-align: center;
}

.section-title h2 {
    font-family: "Gilda Display", serif;
    font-size: 35px;
}

.special-info-img {
    position: relative;
    overflow: hidden;
    height: 60vh;
}

.special-info-img::before {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    z-index: 9;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, #000000, transparent, transparent);
    border-radius: 20px;
}

.special-info-img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: top;
    border-radius: 20px;
}

.special-informtion {
    position: relative;
    overflow: hidden;
}

.special-informtion::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: 0.4s ease;
    z-index: 1;
    background: linear-gradient(0deg, black, transparent, black);
    border-radius: 20px;
}

.special-informtion .btn {
    position: absolute;
    bottom: 15%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9;
    transition: 0.4s ease;
}

.special-informtion h3 {
    position: absolute;
    top: 9%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9;
    transition: 0.4s ease;
    font-family: "Gilda Display", serif;
    color: #fff;
    font-size: 25px;
    width: 100%;
}

.fecilities {
    position: absolute;
    bottom: 4%;
    left: 50%;
    z-index: 999;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translate(-50%);
}

.flights {
    background: #e1ed91;
    padding: 5px 10px;
    border-radius: 5px;
    margin-right: 10px;
    color: #000000;
}

.flights p {
    margin-bottom: 0;
}

.flights:hover {
    transform: rotate(180deg);
    animation: bounce 1.5s infinite;
    cursor: pointer
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-20px);
    }

    60% {
        transform: translateY(-10px);
    }
}

.swiper-button-next,
.swiper-button-prev {
    background: #124175;
    padding: 5px;
    width: 40px;
    height: 40px;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 23px;
    color: #ffffff;
}

.section-title {
    margin-bottom: 30px;
}

.top-choice-section {
    text-align: center;
}

@media only screen and (max-width: 1295px) {
    .banner-section-information {
        width: 100%;
    }

    .banner-section-information h1 {
        font-size: 42px;
    }
}

@media only screen and (max-width: 991px) {
    .section-title h2 {
        font-size: 30px;
    }

    .special-informtion h3 {
        font-size: 22px;
    }

    .banner-section-img {
        height: 85vh;
    }
}

@media only screen and (max-width: 767px) {
    .banner-section-information h1 {
        font-size: 35px;
    }

    .padding-space-extra {
        padding: 35px 0;
    }
}

@media only screen and (max-width: 575px) {
    .banner-section-information h1 {
        font-size: 28px;
        margin-bottom:0;
    }

    .section-title h2 {
        font-size: 23px;
    }

    .trip-inn .btn {
        padding: 6px 17px;
    }

    .btn {
        font-size: 13px;
    }

}