@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

html {
    scroll-behavior: smooth;
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #888;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.grad_btn {
    background-image: linear-gradient(to right, #0d873e, #144bff);
}

/* ============================================================================ */

#particles-bg {
    position: absolute;
    top: 0;
    left: 0;
    
    z-index: 1;
    width: 100%;
    height: 100%;
    /* background-color: red; */
}
.review{
    z-index: 2;
}
/* ============================================================================ */
/* Header section */
/* header{ */
/* .navbar {
    width: 100%;
    position: fixed;
    top: 0px;
    left: 0px;
    z-index: 1000;
    padding: 30px 0px;
    transition: all 0.3s ease;
}

.navbar.sticky_nav {
    background-color: #273c75;
    padding: 20px 0px;
} */
.navbar {
    padding: 25px 0px;
    position: fixed;
    width: 100%;
    transition: all 0.3s ease;
    z-index: 999;
    /* background-color: red; */
}

/* .max_width {
    max-width: 1300px;
    margin: auto;
    padding: 0px 80px;
} */

.navbar .max_width {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar.sticky {
    position: fixed;
    padding: 10px;
    /* background-image: linear-gradient(to left, #3264f5, #4a54e8, #5b42db, #682ccb, #7202bb); */
    background-image: linear-gradient(to right, #5409DA, #4E71FF);
}
.navbar.sticky li a{
    color: white;
}
.navbar.sticky .logo{
    color: white;
}

.logo {
    display: flex;
    align-items: center;
    /* color: rgb(255, 255, 255); */
    font-size: 33px;
    /* line-height: 90px; */
    font-family: 'Ubuntu', sans-serif;
    font-weight: 600;
}

.logo img {
    width: 32px;
    height: 32px;
    object-fit: cover;
    object-position: center;
    margin-right: 10px;
}

.logo span {
    color: #f4a460;
}

.menu {
    display: flex;
    justify-content: center;
    align-items: center;
    /* color: white; */
}

.menu li {
    list-style: none;
    margin-right: 25px;
}

.menu li a, .menu li button {
    /* color: white; */
    font-family: 'Ubuntu', sans-serif;
}

/* .menu_link_icon .fa {} */

.menu_btn {
    color: white;
    display: none;
}

/* Header section */



/* carousel */

.carousel {
    width: 100vw;
    height: 100vh;
    /* margin-top: -50px; */
    overflow: hidden;
    position: relative;
}

.carousel .list .item {
    width: 180px;
    height: 250px;
    position: absolute;
    top: 80%;
    transform: translateY(-70%);
    left: 70%;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    background-position: 50% 50%;
    background-size: cover;
    z-index: 100;
    transition: 1s;
}

.carousel .list .item:nth-child(1),
.carousel .list .item:nth-child(2) {
    top: 0;
    left: 0;
    transform: translate(0, 0);
    border-radius: 0;
    width: 100%;
    height: 100%;
}

.carousel .list .item:nth-child(3) {
    left: 67%;
}

.carousel .list .item:nth-child(4) {
    left: calc(67% + 200px);
}

.carousel .list .item:nth-child(5) {
    left: calc(67% + 400px);
}

.carousel .list .item:nth-child(6) {
    left: calc(67% + 600px);
}

.carousel .list .item:nth-child(n+7) {
    left: calc(67% + 800px);
    opacity: 0;
}





.list .item .content {
    /* background-color: red; */
    position: absolute;
    top: 50%;
    left: 100px;
    transform: translateY(-50%);
    width: 400px;
    text-align: left;
    color: #fff;
    display: none;
}

.list .item:nth-child(2) .content {
    display: block;
}

.content .title {
    font-size: 70px;
    text-transform: uppercase;
    color: #14ff72cb;
    font-weight: bold;
    line-height: 1;

    opacity: 0;
    animation: animate 1s ease-in-out 0.3s 1 forwards;
}

.content .name {
    font-size: 70px;
    text-transform: uppercase;
    font-weight: bold;
    line-height: 1;
    /* text-shadow: 3px 4px 4px rgba(255, 255, 255, 0.8);

    opacity: 0; */
    animation: animate 1s ease-in-out 0.6s 1 forwards;
}

.content .des {
    margin-top: 10px;
    margin-bottom: 20px;
    font-size: 18px;
    margin-left: 5px;

    opacity: 0;
    animation: animate 1s ease-in-out 0.9s 1 forwards;
}

.content .btn {
    margin-left: 5px;

    opacity: 0;
    animation: animate 1s ease-in-out 1.2s 1 forwards;
}

.content .btn button {
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    border: 2px solid #fff;
}

.content .btn button:nth-child(1) {
    margin-right: 15px;
    border-radius: 4px;
}

.content .btn button:nth-child(2) {
    background: transparent;
    color: #14ff72cb;
    border: 2px solid #14ff72cb;
    border-radius: 4px;
    transition: 0.3s;
}

.content .btn button:nth-child(2):hover {
    background-color: #14ff72cb;
    color: #fff;
    border-color: #14ff72cb;
}

/* SEARCH */
.search_dream_place {
    z-index: 100;
}

/* REVIEW */
.item {
    /* width: calc(50% - 10px);
    border: 2px solid black; */
    /* width: 400px;
     */
    padding: 18px;
    border-radius: 10px;
}
/* OWL CAROUSEL */

.owl-dots {
    text-align: center;
    margin-top: 20px;
    margin-bottom: 0px;
    z-index: 3;
}

.owl-dot {
    width: 13px;
    height: 13px;
    outline: none !important;
    margin: 0px 5px;
    border-radius: 50%;
    border: 2px solid #4338CA !important;
    transition: all 0.3s ease;
}
.review .owl-dot {
    width: 13px;
    height: 13px;
    outline: none !important;
    margin: 0px 5px;
    border-radius: 50%;
    border: 2px solid #ffffff !important;
    transition: all 0.3s ease;
}

.owl-dot.active {
    width: 35px;
    border-radius: 14px;
}

.owl-dot.active,
.owl-dot:hover {
    background-color: #4338CA !important;
}
.review .owl-dot.active,
.review .owl-dot:hover {
    background-color: #ffffff !important;
}

/* FOOTER */
footer {
    /* background-image: linear-gradient(to right bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.9)), url('https://images.pexels.com/photos/25841505/pexels-photo-25841505/free-photo-of-people-on-horses-near-mountain-in-india.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=2'); */
    background-image: linear-gradient(to right bottom, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.8)), url('../image/parrot2.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.contact_option {
    background: #2c2929;
    transition: 0.2s all;
}

.contact_option:hover {
    background: #3d3b3b;
    border: 1px solid rgba(255, 255, 255, 0.5);
}


@keyframes animate {

    from {
        opacity: 0;
        transform: translate(0, 100px);
        filter: blur(33px);
    }

    to {
        opacity: 1;
        transform: translate(0);
        filter: blur(0);
    }
}

/* Carousel */






/* next prev arrows */

.arrows {
    position: absolute;
    top: 80%;
    right: 52%;
    z-index: 100;
    width: 300px;
    max-width: 30%;
    display: flex;
    gap: 10px;
    align-items: center;
}

.arrows button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #14ff72cb;
    color: #fff;
    border: none;
    outline: none;
    font-size: 16px;
    font-family: monospace;
    font-weight: bold;
    transition: .5s;
    cursor: pointer;
}

.arrows button:hover {
    background: #fff;
    color: #000;
}


/* time running */
.carousel .timeRunning {
    position: absolute;
    z-index: 1000;
    width: 0%;
    height: 4px;
    background-color: #14ff72cb;
    left: 0;
    top: 0;
    animation: runningTime 7s linear 1 forwards;
}

/* EVENT ADS */
.event_ads {
    background-image: linear-gradient(rgba(), rgba()), url("");
}

@keyframes runningTime {

    from {
        width: 0%;
    }

    to {
        width: 100%;
    }

}

/* ========================================================================== */
/* EVENT DETAIL ======== */
/* ========================================================================== */
/* TAB */
.tab_btn {
    color: black;
}

.tab_btn.active {
    color: #3561cf;
}


/* Responsive Design */

@media screen and (max-width: 999px) {

    .menu_btn {
        display: block;
        z-index: 999;
    }

    .menu_btn i.active::before {
        content: "\f00d";
    }

    .navbar .menu {
        position: fixed;
        background-color: #111;
        height: 100vh;
        width: 100%;
        top: 0px;
        left: -100%;
        /* padding-top: 80px; */
        text-align: center;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }

    .navbar .menu.active {
        left: 0px;
    }

    .navbar .menu li {
        display: block;
    }

    .navbar .menu li a {
        display: inline-block;
        margin: 20px 0px;
        font-size: 25px;
    }

    .list .item .content {
        left: 50px;
    }

    .content .title,
    .content .name {
        font-size: 70px;
    }

    .content .des {
        font-size: 16px;
    }

}

@media screen and (max-width: 690px) {

    /* header nav a{
        font-size: 14px;
        margin-right: 0;
    } */
    .logo {
        font-size: 24px;
    }

    .logo img {
        width: 28px;
        height: 28px;
    }

    .list .item .content {
        top: 40%;
        width: 350px;
    }

    .list .item .content {
        left: 20px;
    }

    .content .title,
    .content .name {
        font-size: 45px;
    }

    .content .btn button {
        padding: 10px 15px;
        font-size: 14px;
    }
}