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


/* <--------------hero-banner------------> */
.hero-image {
    background-image: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)), url("../images/breadcrumbs.jpg");
    height: 230px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

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







/*<------------------------------ Event-flip-card -------------------------->*/
.event-title {
    font-size: 42px;
    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: 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: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
    border-radius: 10% !important;
}

.flip-card-back img {
    object-fit: cover;
    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;
}

/* 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;
}

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










/*<==================================Mobile-Responsive============================>*/
@media (max-width:480px) {

    /* <----------------hero-banner---------------------> */
    .hero-image {
        background-image: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)), url("../images/breadcrumbs.jpg");
        height: 300px;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        position: relative;
        margin-top: 100px;
    }





    /*<----------- Event-flip-card---------> */
    .event-title {
        font-size: 42px;
        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;
    }

    .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;
    }

    .flip-card:hover .flip-card-inner {
        transform: rotateY(180deg);
        transition: all 1s;
    }

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

    .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;
    }

    .flip-card-back {
        color: white;
        transform: rotateY(180deg);
    }
}





/*<==================================Tab-Responsive============================>*/
@media (min-width: 768px) and (max-width: 1024px) {

        /* <----------------hero-banner---------------------> */
        .hero-image {
            background-image: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)),
                url("../images/breadcrumbs.jpg");
            height: 200px;
            background-position: center;
            background-repeat: no-repeat;
            background-size: cover;
            position: relative;
            margin-top: 100px !important;
        }

    /* <------------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;
    }


    .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%;
    }


    .flip-card:hover .flip-card-inner {
        transform: rotateY(180deg);
        transition: all 1s;
    }


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

    .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;
    }


    .flip-card-back {
        color: white;
        transform: rotateY(180deg);
    }




}
