/* font-family: 'Hind', sans-serif;
font-family: 'Hind', sans-serif; */

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

.cursive-font {
    font-family: 'Hind', sans-serif;
}

.Hind-font {
    font-family: 'Hind', sans-serif;
}


/*< ----------------navbar---------------------> */
/* .fixed-top {
    position: static;
} */
.scrolled-down {
    transform: translateY(-100%);
    transition: all 0.3s ease-in-out;
}

.scrolled-up {
    transform: translateY(0);
    transition: all 0.3s ease-in-out;
}

.menu-navbar .navbar-brand img {
    height: 80px;
}

.navbar-collapse {
    transition: all 0.5s;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.contact-item {
    font-size: 13px;
    font-family: 'Hind', sans-serif;
}

.menu-item a {
    font-size: 14.2px;
    font-weight: 900;
    font-family: 'Hind', sans-serif;
    text-transform: uppercase;
    color: black;
}

.menu-navbar {
    background-color: #FFFFFF;
}



/* <-------------------------carousel-banner----------------------------> */
.carousel-caption h1 {
    font-size: 54px;
}

.carousel-caption {
    top: 30%;
    left: 17%;
}

.carousel-item img {
    height: 100vh !important;
    object-fit: cover;
}

.banner-btn {
    background-color: #F9728A !important;
}


/*<------------------------------ Event-flip-card -------------------------->*/
.event-title {
    font-size: 32px;
    font-family: 'Hind', sans-serif;
    font-weight: 400;
    text-align: center;
}

.event-text {
    font-size: 16px;
    font-family: 'Hind', sans-serif;
    text-align: center;
}

.flip-card {
    background-color: transparent;
    width: 420px;
    height: 430px;
    border: none !important;
    perspective: 1000px;
    margin: auto;
}

/* This container is needed to position the front and back side */
.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
    border-radius: 10% !important;
}

.flip-card-back img {
    object-fit: contain;
    /* width: 420px; */
    /* height: 430px; */
}

/* Do an horizontal flip when you move the mouse over the flip box container */
.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
    transition: all 1s;
}

/* Position the front and back side */
.flip-card-front,
.flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    /* Safari */
    backface-visibility: hidden;
    margin: auto;
    /* firefox */
    transform: rotateX(0deg)
}

/* Style the front side (fallback if image is missing) */
.flip-card-front {
    background-color: #F6F6F6;
    color: black;
}

.flip-card-front h1 {
    font-family: 'Hind', sans-serif;
    font-size: 42px;
    text-align: center;
}

.flip-card-front p {
    font-family: 'Hind', sans-serif;
    font-weight: 300;
}

/* Style the back side */
.flip-card-back {
    color: white;
    transform: rotateY(180deg);
}


/*<---------------------------- parallax-section---------------------------> */
.parallax-section {
    background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url('../images/testimonials-bg.jpg');
    height: 700px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    background-attachment: fixed;
}

.hero-text {
    text-align: center;
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
}

.parallax-card p {
    font-size: 20px !important;
}

.parallax-card img {
    height: 170px !important;
    width: 220px !important;
}


/* <----------------------featured-event---------------> */
.featured-event-title {
    font-size: 42px;
    font-weight: 400;
}

.featured-event-card img {
    width: 95% !important;
    /* height: 500px; */
    margin: auto;
    object-fit: contain;
}

.featured-event-card-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    text-align: center;
    visibility: hidden;
    color: #FFFFFF;
    font-family: 'Hind', sans-serif;
    cursor: pointer;
}

.featured-event-card:hover .featured-event-card-text {
    visibility: visible;
}


/*<--------------------- our-team--------------> */
.team-section {
    background-color: #F6F6F6;
}

.team-title {
    font-size: 42px;
    font-weight: 300;
}

.team-card img{
    width: 210px !important;
    height: 210px;
    object-fit: contain !important;
}


/* <---------------------latest-event----------------------> */

.latest-event-card img {
    width: 95% !important;
    margin: auto;
    /* height: 480px; */
    object-fit: contain;
}

.latest-event-title {
    font-size: 42px;
}


/* <---------------------we-are-listed-section--------------> */
.we-are-listed-section {
    background-color: #F6F6F6;
}

.we-are-listed-card img {
    background-color: #F6F6F6 !important;
    height: 160px;
    object-fit: contain;
    margin: auto;
}

/* <---------------footer--------------> */
.footer {
    background-color: #262626;
}

.footer-latext-event-img {
    width: 90px;
    height: 90px;
    object-fit: contain;
}



/*<======================= mobile-responsive=====================> */

@media (max-width: 480px) {

    /* <-------navbar-------> */
    .menu-navbar .navbar-brand img {
        height: 70px;
    }

    /* .fixed-top {
        position: fixed;
    } */

    /* .contact-nav {
        position: fixed;
        top: 0;
    } */

    .navbar-collapse {
        background-color: black;
        width: 100%;
    }

    .menu-item {
        border-bottom: 1px solid white;
    }

    .menu-item a {
        color: #FFFFFF;
        padding-left: 10px;
    }

    /* <-------------carousel-banner-----------> */
    .banner-carousel {
        margin-top: 90px;
    }

    .carousel-item img {
        height: 100vw !important;
        object-fit: cover;
    }


    /*<----------- Event-flip-card---------> */
    .event-title {
        font-size: 42px !important;
        font-family: 'Hind', sans-serif;
        font-weight: 400;
        text-align: center;
    }

    .event-text {
        font-size: 16px;
        font-family: 'Hind', sans-serif;
        text-align: center;
    }

    .flip-card {
        background-color: transparent;
        width: 100%;
        height: 100%;
        /* border: 1px solid #f1f1f1; */
        perspective: 1000px;
        margin: auto;
    }

    /* This container is needed to position the front and back side */
    .flip-card-inner {
        position: relative;
        width: 100%;
        height: 100vw;
        text-align: center;
        transition: transform 0.8s;
        transform-style: preserve-3d;
        border-radius: 10% !important;
    }

    .flip-card-back img {
        object-fit: cover;
        width: 100%;
        height: 100vw;
    }

    /* Do an horizontal flip when you move the mouse over the flip box container */
    .flip-card:hover .flip-card-inner {
        transform: rotateY(180deg);
        transition: all 1s;
        border: none !important;
    }

    /* Position the front and back side */
    .flip-card-front,
    .flip-card-back {
        position: absolute;
        width: 100%;
        height: 100vw;
        -webkit-backface-visibility: hidden;
        /* Safari */
        backface-visibility: hidden;
        /* firefox */
        transform: rotateX(0deg);
        margin: auto;
    }

    /* Style the front side (fallback if image is missing) */
    .flip-card-front {
        background-color: #F6F6F6;
        color: black;
    }

    .flip-card-front h1 {
        font-family: 'Hind', sans-serif;
        font-size: 32px;
    }

    .flip-card-front p {
        font-family: 'Hind', sans-serif;
        font-family: 'Hind', sans-serif;
        font-weight: 300;
    }

    /* Style the back side */
    .flip-card-back {
        color: white;
        transform: rotateY(180deg);
    }


    /* <------------parallax-section----------> */
    .parallax-section {
        background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url('../images/testimonials-bg.jpg');
        height: 650px;
        background-position: center;
        background-color: red;
        background-repeat: no-repeat;
        background-size: cover;
        position: relative;
        background-attachment: fixed;
    }

    .hero-text {
        text-align: center;
        position: absolute;
        top: 55%;
        left: 50%;
        transform: translate(-50%, -50%);
        color: white;
    }

    .parallax-card p {
        font-size: 24px !important;
    }

    .parallax-card img {
        height: 150px !important;
        width: 200px !important;
    }


    /* <----------------------featured-event---------------> */
    .featured-event-title {
        font-size: 42px;
        font-weight: 400;
    }

    .featured-event-card img {
        width: 95% !important;
        margin: auto;
        object-fit: fill;
    }

    .featured-event-card-text {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 100%;
        text-align: center;
        visibility: hidden;
        color: #FFFFFF;
        font-family: 'Hind', sans-serif;
        cursor: pointer;
    }

    .featured-event-card:hover .featured-event-card-text {
        visibility: visible;
    }


    /* <----------------our-team-----------------> */
    .team-title {
        font-size: 52px;
        font-weight: 300;
    }


    /* <---------------latest-event------------------> */
    .latest-event-title {
        font-size: 52px;
    }
}




/* <=================tab responsive=======================>*/

@media (min-width: 768px) and (max-width: 1024px) {

    /* <--------------navbar--------------> */
    .menu-navbar {
        /* margin-top: 44px; */
    }

    .navbar-collapse {
        background-color: black;
        width: 100%;
    }

    .menu-item {
        border-bottom: 1px solid white;
    }

    .menu-item a {
        color: #FFFFFF;
        padding-left: 10px;
    }


    /*<-------------- carousel-banner-----------> */
    .banner-carousel {
        margin-top: 100px;
    }

    .carousel-item img {
        height: 70vw !important;
        object-fit: cover;
    }


    /* <------------Event-flip-card------------> */
    .event-title {
        font-size: 52px;
        font-family: 'Hind', sans-serif;
        font-weight: 400;
        text-align: center;
    }

    .event-text {
        font-size: 24px;
        font-family: 'Hind', sans-serif;
        text-align: center;
    }

    .flip-card {
        background-color: transparent;
        width: 100%;
        height: 100%;
        border: 1px solid #f1f1f1;
        perspective: 1000px;
        margin: auto;
    }


    /* This container is needed to position the front and back side */
    .flip-card-inner {
        position: relative;
        width: 100%;
        height: 65vw;
        text-align: center;
        transition: transform 0.8s;
        transform-style: preserve-3d;
        border-radius: 10% !important;
    }

    .flip-card-back img {
        object-fit: cover;
        width: 100%;
        height: 100%;
    }

    /* Do an horizontal flip when you move the mouse over the flip box container */
    .flip-card:hover .flip-card-inner {
        transform: rotateY(180deg);
        transition: all 1s;
    }

    /* Position the front and back side */
    .flip-card-front,
    .flip-card-back {
        position: absolute;
        width: 100%;
        height: 65vw;
        -webkit-backface-visibility: hidden;
        /* Safari */
        backface-visibility: hidden;
        margin: auto;
    }

    /* Style the front side (fallback if image is missing) */
    .flip-card-front {
        background-color: #F6F6F6;
        color: black;
    }

    .flip-card-front h1 {
        font-family: 'Hind', sans-serif;
        font-size: 52px;
    }

    .flip-card-front p {
        font-family: 'Hind', sans-serif;
        font-family: 'Hind', sans-serif;
        font-weight: 300;
        font-size: 22px;

    }

    /* Style the back side */
    .flip-card-back {
        color: white;
        transform: rotateY(180deg);
    }


    /* <-----------------parallax-section---------------> */
    .parallax-section {
        background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url("../images/testimonials-bg.jpg");
        height: 650px;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        position: relative;
        background-attachment: fixed;
    }

    .hero-text {
        text-align: center;
        position: absolute;
        top: 55%;
        left: 50%;
        transform: translate(-50%, -50%);
        color: white;
    }

    .parallax-card p {
        font-size: 38px !important;
    }

    .parallax-card img {
        height: 150px !important;
        width: 200px !important;
    }

    /* <-------------featured-event----------> */
    .featured-event-title {
        font-size: 62px;
        font-weight: 400;
    }
}





/* <===============Style Prev Next Arrows in owl-carousel==============> */

/* .carousel-wrapper {
    width: 1200px;
    margin: auto;
    position: relative;
    text-align: center;
    font-family: sans-serif;
} */

.owl-carousel .owl-nav {
    overflow: hidden;
    /* height: 0px; */
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    /* background: #5110e9 !important; */
}

.owl-carousel .item {
    text-align: center;
}

.owl-carousel .nav-button {
    height: 50px;
    width: 35px;
    font-size: 60px;
    cursor: pointer;
    position: absolute;
    top: 30% !important;
}

.owl-carousel .owl-prev.disabled,
.owl-carousel .owl-next.disabled {
    pointer-events: none;
    opacity: 1;
}

.owl-carousel .owl-prev {
    left: -50px;
}

.owl-carousel .owl-next {
    right: -50px;
}

/* .owl-theme .owl-nav [class*=owl-] {
    color: #830101;
    font-size: 39px;
    background: #8f0c0c;
    border-radius: 3px;
} */

.owl-carousel .prev-carousel:hover {
    background-position: 0px -53px;
}

.owl-carousel .next-carousel:hover {
    background-position: -24px -53px;
}
