@import url('https://fonts.googleapis.com/css2?family=Merriweather:ital,wght@0,300;0,400;0,700;0,900;1,300;1,400;1,700;1,900&display=swap');

body {
    margin: 0;
    padding: 0;
    font-family: "Merriweather", system-ui;
    overflow-x: hidden;
}

.new-loader {
    font-size: 24px;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #fff;
    /* Full viewport height to center vertically */
}

@keyframes upDown {

    0%,
    100% {
        transform: translateY(0);
        /* Start at original position */
    }

    50% {
        transform: translateY(-10px);
        /* Move 20px up */
    }
}

.zoom-animation {
    animation: upDown 1.5s ease-in-out infinite;
    /* Apply animation */
}

.content {}

.scroll-container {
    width: 100vw;
    height: 70px;
    /* Adjust height as needed */
    overflow: hidden;
    position: relative;
    background-color: #972D2D;
    display: flex;
    justify-content: center;
    align-items: center;
    /* Background color for better visibility */
}

.count-container {
    width: 100vw;
    height: auto;
    /* Adjust height as needed */
    overflow: hidden;
    position: relative;
    background-color: #972D2D;
    display: flex;
    justify-content: center;
    align-items: center;
    /* Background color for better visibility */
}

.main-image {
    display: flex;
    width: 100%;
    height: 100vh;
    background-image: url(../assets/BannerImages/homedesktop.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    justify-content: center;
    align-items: end;
    animation: fadeInDown 1.5s ease-in-out;
}




.zoom-in-image {
    animation: zoomIn 1.5s ease-in-out;

}


@keyframes zoomIn {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}


/* -webkit-backface-visibility: hidden;
backface-visibility: hidden;
transition: transform .6s ease-in-out; */



.mobile-main-image {
    display: none;
}

.main-header {
    display: block;
    width: 100%;
    background-color: #FFF3D3;
    /* padding-left: 50px;
    padding-right: 50px; */

}

.mobile-header {
    display: none;
}

.main-footer {
    display: block;
}

.mobile-footer {
    display: none;
}

@media (max-width:786px) {
    .main-image {
        display: none;
    }

    .mobile-main-image {
        display: flex;
        height: 500px;
        width: 100%;
        background: url(../assets/BannerImages/homemobile.png);
        background-size: cover;
        background-position: top;
        background-repeat: no-repeat;
        justify-content: center;
        align-items: end;
        background-blend-mode: multiply;
    }

    .main-header {
        display: none;
    }

    .mobile-header {
        display: block;
        background-color: #FFF3D3;
    }

    .main-footer {
        display: none;
    }

    .mobile-footer {
        display: block;
    }
}

.scroll-text {
    position: absolute;
    white-space: nowrap;
    font-size: 18px;
    font-weight: 700;
    color: #FFF;
    animation: scroll-left 35s linear infinite;
    animation-play-state: running;
}

.scroll-text:hover {
    /* animation-play-state: paused; */
    cursor: pointer;
}

.scroll-container:hover .scroll-text {
    animation-play-state: paused;
}


@keyframes scroll-left {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(-100%);
    }
}

.short-about-content {
    padding-left: 12rem;
}

.short-about-image {
    padding-right: 10rem;
}

@media (max-width:1500px) {
    .short-about-content {
        padding-left: 4rem;
    }

    .short-about-image {
        padding-right: 1rem;
    }
}

@media (max-width:1400px) {
    .short-about-content {
        padding-left: 4rem;
    }

    .short-about-image {
        padding-right: 1rem;
    }
}

@media (max-width:1300px) {
    .short-about-content {
        padding-left: 1rem;
    }

    .short-about-image {
        padding-right: 1rem;
    }
}

@media (max-width:1200px) {
    .short-about-content {
        padding-left: 4rem;
    }

    .short-about-image {
        padding-right: 1rem;
    }
}

/* Animation class for sliding image from the right */
.animated-flip-right {
    animation: slideToPosition 1.5s ease-in-out forwards;
}

/* Keyframes for sliding the image from the right */
@keyframes slideToPosition {
    0% {
        transform: translateX(50%);
        /* Start completely off-screen to the right */
        opacity: 0;
        /* Start invisible */
    }

    100% {
        transform: translateX(0);
        /* Move to its final position */
        opacity: 1;
        /* Fully visible */
    }
}


.animated-flip-left {
    animation: slideFromLeft 1.5s ease-in-out forwards;
}

/* Keyframes for sliding the image from the left */
@keyframes slideFromLeft {
    0% {
        transform: translateX(-30%);
        /* Start off-screen to the left */
        opacity: 0;
        /* Start invisible */
    }

    100% {
        transform: translateX(0);
        /* Move to its final position */
        opacity: 1;
        /* Fully visible */
    }
}

/* section2 */

.section-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px;
    position: relative;
    background-color: #f4e9d4;
    gap: 20px;

}


.text-section .logo {
    width: 200px;
}

.text-section h1 {

    margin: 20px 0;
    font-family: Merriweather;
    font-size: 40px;
    font-weight: 700;
    /* line-height: 42px; */
    line-height: 50px;
    text-align: left;
}

.text-section p {
    font-size: 16px;
    margin-bottom: 15px;
    /* line-height: 30.91px; */
    line-height: 32px;
    text-align: left;
}

.text-copyright {
    font-size: 12px;
}

.know-more-view {
    display: flex;
    justify-content: left;
}

.inner-view {
    border: 1px solid #B04727;
    border-radius: 50px;
    padding: 3px;
    margin-top: 30px;
    margin-bottom: 40px;
}

.know-more-btn {
    display: flex;
    background-color: #ad4b2a;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    padding-left: 40px;
    padding-right: 10px;
}

.btn-text {
    margin-top: 12px;
    margin-right: 10px;
}

.image-section {
    max-width: 50%;
    position: relative;
}

.image-section .image-one {
    width: 60%;
    border-radius: 12px;
    margin-bottom: 10px;
}


.trishul {
    position: absolute;
    right: 0px;
    top: 20;
    height: 600px;

}


@media (max-width: 1220px) {

    .image-section .image-one {
        width: 100%;
        border-radius: 12px;
        margin-bottom: 10px;
    }

}

@media (max-width: 768px) {
    .section-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .image-section .image-one {
        width: 140%;
        margin-left: 80px;
    }

    .trishul {
        display: none;
    }

    .know-more-view {
        display: flex;
        justify-content: center;
        align-items: end;
    }
}

.desktop-Short-About {
    display: block;
}

.mobile-Short-About {
    display: none;
}

@media (max-width:512px) {
    .desktop-Short-About {
        display: none;
    }

    .mobile-Short-About {
        display: block;
    }

    .inner-view {
        border: 1px solid #B04727;
        border-radius: 50px;
        padding: 3px;
        margin-top: 18px;
        margin-bottom: 15px;
    }

    .know-more-btn {
        display: flex;
        background-color: #ad4b2a;
        color: white;
        text-decoration: none;
        border-radius: 50px;
        font-weight: bold;
        padding-left: 40px;
        padding-right: 10px;
        padding-top: 5px;
        padding-bottom: 5px;
    }

    .btn-text {
        margin-top: 8px;
        margin-right: 10px;
    }

    .text-section h1 {
        margin: 20px 0;
        font-family: Merriweather;
        font-size: 30px;
        font-weight: 700;
        line-height: 42px;
        text-align: center;
    }

    .text-section p {
        font-size: 16px;
        margin-bottom: 15px;
        line-height: 30.91px;
        text-align: center;
    }

}

/* abount-sec */
.abount-sec {
    background-image: url(../assets/aboutbg.png);
    width: 100vw;
    height: auto;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.about-sec-view {}



.news-div {
    display: flex;
    position: relative;
}

.title-news {
    position: absolute;
    background-color: #FFF;
    padding: 10px;
    margin: 10px;
}

.latest-video-bg {
    background-image: url(../assets/latestvideobg.png);
    width: 100vw;
    height: auto;
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
}

.testimonial-bg {
    background-image: url(../assets/testimonialsbg.png);
    width: 100vw;
    height: auto;
    background-size: 100% 80%;
    /* Scales the image to  the container */
    background-position: top;
    background-repeat: no-repeat;
    background-blend-mode: multiply;
}

@media (max-width:1400px) {
    .testimonial-bg {
        background-image: url(../assets/testimonila-bg.png);
        width: 100vw;
        height: auto;
        background-size: 100% 65%;
        /* Scales the image to  the container */
        background-position: top;
        background-repeat: no-repeat;
        background-blend-mode: multiply;
    }

}

@media (max-width:512px) {
    .latest-video-bg {
        background-image: url(../assets/mobile-latest-videos.png);
        width: 100vw;
        height: auto;
        background-size: 100% 100%;
        background-position: top;
        background-repeat: no-repeat;
    }

    .testimonial-bg {
        background-image: url(../assets/Mobile-Testimonial.png);
        width: 100vw;
        height: auto;
        background-size: 100% 80%;
        /* Scales the image to  the container */
        background-position: top;
        background-repeat: no-repeat;
    }
}

.latest-news {
    background-image: url(../assets/latestnewsbg.png);
    width: 100vw;
    height: auto;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.contact-us {
    background-image: url(../assets/contactusbg.png);
    width: 100vw;
    height: auto;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.footer-bg {
    background-image: url(../assets/Footer-img-new.png);
    width: 100vw;
    height: auto;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.blog-screen {
    background-image: url(../assets/blogscreen.png);
    width: 100vw;
    height: auto;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

@media (max-width:786px) {
    .blog-screen {
        background-image: url(../assets/mobileblogscreen.png);
        width: 100vw;
        height: auto;
        background-size: cover;
        background-position: top;
        background-repeat: no-repeat;
    }
}

.blog-detail-img {
    width: 100%;
}

#map {
    height: 500px;
    /* You can adjust the height based on your design */
    width: 100%;
    /* Set the width to 100% */
}

.contact-us-view {
    background-image: url(../assets/contact-us-img.png);
    width: 100vw;
    height: auto;
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
}

.map-view {
    border-radius: 20px;
}

.loader {
    border: 4px solid #f3f3f3;
    /* Light grey */
    border-top: 4px solid #3498db;
    /* Blue */
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* About US Page  */

.about-section {
    display: flex;
    width: 100%;
    height: 570px;
    background-image: url(../assets/BannerImages/aboutdesktop.png);
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
    justify-content: center;
    background-blend-mode: multiply;
    /* align-items: end; */
    animation: fadeInDown 1.5s ease-in-out;
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translateY(-50px);
    }

    100% {
        opacity: 1;
        transform: translateY(0px);
    }
}

.animated-slide-right {
    animation: slideToPosition 1.5s ease-in-out forwards;
}



@keyframes fadeInRight {
    0% {
        opacity: 0;
        transform: translateY(-50px);
    }

    100% {
        opacity: 1;
        transform: translateY(0px);
    }
}

@media (max-width:1024px) {
    .about-section {
        display: flex;
        width: 100%;
        height: 400px;
        background-image: url(../assets/about-page.png);
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        justify-content: center;
        /* align-items: end; */
    }
}

@media (max-width:786px) {
    .about-section {
        display: flex;
        width: 100%;
        height: 350px;
        background-image: url(../assets/BannerImages/aboutmobile.png);
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        justify-content: center;
        /* align-items: end; */
    }
}



.about-second-view {
    background-image: url(../assets/aboutsecondbg.png);
    width: 100vw;
    height: auto;
    background-size: cover;
    background-repeat: no-repeat;
    background-image: hidden;
}

.about-detail-view {
    background-image: url(../assets/darbarbg.png);
    /* Remove background image on mobile */
    width: 100vw;
    height: auto;
    background-size: cover;
    background-repeat: no-repeat;
}



.about-method-view {
    background-image: url(../assets/about-method-view2.png);
    width: 100%;
    height: auto;
    background-size: cover;
    /* background-position: 100% 100% 100% 100%; */
    background-repeat: no-repeat;
}

.about-repo-view {
    background-image: url(../assets/contactusbg.png);
    width: 100vw;
    height: auto;
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
}

@media (max-width:512px) {
    .about-section {
        display: flex;
        width: 100%;
        height: 350px;
        background-image: url(../assets/about-page-mobile.png);
        background-size: 100% 100%;
        background-position: center;
        background-repeat: no-repeat;
        justify-content: center;
        /* align-items: end;    */
    }

    .about-second-view {
        /* background-image: url(../assets/about-first-view-mobile.png); */
        background-image: none;
        width: 100vw;
        background-color: #ffff;
        /* Set the desired background color */
        height: auto;
        background-size: 100% 100%;
        background-position: top;
        background-repeat: no-repeat;
    }

    .about-detail-view {
        /* background-image: url(../assets/about-detail-mobile.png); */
        background-image: none;
        background-color: #FAE1AE;
        /* Remove background image on mobile */
        width: 100vw;
        height: auto;
        background-size: cover;
        background-position: 100%;
        background-repeat: no-repeat;
    }

    .about-method-view {
        /* background-image: url(../assets/about-method-view1-mobile.png);  */
        background-image: none;
        background-color: #FAE1AE;
        width: 100vw;
        height: auto;
        background-size: cover;
        background-position: top;
        background-repeat: no-repeat;
    }

    .about-repo-view {
        background-image: url(../assets/contactusbg.png);
        width: 100vw;
        height: auto;
        background-size: cover;
        background-position: 100%;
        background-repeat: no-repeat;
    }




}

.purpose-view {
    /* display: flex; */
    width: 100%;
    height: 330px;
    background-image: url(../assets/purpose.png);
    /* background-size: 100% 100%; */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 20px;
    padding: 40px;
}


.darbar-view {
    width: 100%;
    height: 330px;
    background-image: url(../assets/program.png);
    /* background-size: 100% 100%; */
    /* background-position: top; */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 20px;
    padding: 40px;
}

@media (max-width:1340px) {
    .purpose-view {
        /* display: flex; */
        width: 100%;
        height: 330px;
        background-image: url(../assets/purpose.png);
        background-size: cover;
        background-position: center;
        /* background-position:  */
        background-repeat: no-repeat;
        border-radius: 20px;
        padding: 40px;
    }

    .darbar-view {
        width: 100%;
        height: 330px;
        background-image: url(../assets/program.png);
        background-size: cover;
        background-position: center;
        /* background-position: top; */
        background-repeat: no-repeat;
        border-radius: 20px;
        padding: 40px;
    }
}

@media (max-width:1290px) {
    .purpose-view {
        /* display: flex; */
        width: 100%;
        height: 380px;
        background-image: url(../assets/purpose.png);
        background-size: cover;
        background-position: center;
        /* background-position:  */
        background-repeat: no-repeat;
        border-radius: 20px;
        padding: 40px;
    }

    .darbar-view {
        width: 100%;
        height: 380px;
        background-image: url(../assets/program.png);
        background-size: cover;
        background-position: center;
        /* background-position: top; */
        background-repeat: no-repeat;
        border-radius: 20px;
        padding: 40px;
    }
}

@media (max-width:1048px) {
    .purpose-view {
        /* display: flex; */
        width: 100%;
        height: 210px;
        background-image: url(../assets/purpose.png);
        background-size: cover;
        background-position: center;
        /* background-position:  */
        background-repeat: no-repeat;
        border-radius: 20px;
        padding: 40px;
    }

    .darbar-view {
        width: 100%;
        height: 210px;
        background-image: url(../assets/program.png);
        background-size: cover;
        background-position: center;
        /* background-position: top; */
        background-repeat: no-repeat;
        border-radius: 20px;
        padding: 40px;
    }
}


@media (max-width:512px) {

    .purpose-view {
        /* display: flex; */
        width: 100%;
        height: 325px;
        background-image: url(../assets/purpose-view.png);
        /* background-size: 100% 100%; */
        /* background-position: */
        background-repeat: no-repeat;
        border-radius: 20px;
        padding: 20px;
    }

    .darbar-view {
        width: 100%;
        height: 325px;
        background-image: url(../assets/darbar-view.png);
        /* background-size: 100% 50%; */
        /* background-position: top; */
        background-repeat: no-repeat;
        padding: 20px;
    }
}


@media (max-width: 768px) {
    .grid {
        grid-template-columns: 1fr;
    }
}


/* Mission  */

.mission-main-image {
    display: flex;
    width: 100%;
    height: 100vh;
    background: url(../assets/Missionpage/Mission-min.png), linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.8));
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    justify-content: center;
    align-items: end;
    background-blend-mode: multiply;
    animation: fadeInDown 1.5s ease-in-out;
}

.mission-seocnd-view {
    display: flex;
    width: 100%;
    height: auto;
    background-image: url(../assets/Missionpage/mission-second-view-bg.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-blend-mode: multiply;
}

.mission-seocnd-view-new {
    display: flex;
    width: 100%;
    height: 100vh;
    background-image: url(../assets/mission-second-section.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-blend-mode: multiply;
}

.mission-history-view {
    display: flex;
    width: 100%;
    height: auto;
    background-image: url(../assets/Missionpage//history-bg.png);
    background-size: 100% 100%;
    /* background-position: top; */
    background-repeat: no-repeat;
    background-blend-mode: multiply;
}

@media (max-width:786px) {
    .mission-main-image {
        display: flex;
        width: 100%;
        height: 400px;
        background: url(../assets/Missionpage/mission-mobile-bg.png), linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.8));
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        justify-content: center;
        align-items: end;
        background-blend-mode: multiply;
    }

    .mission-seocnd-view {
        display: flex;
        width: 100%;
        height: 100%;
        background-image: url(../assets/mission-second-view-mobile.png);
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        justify-content: center;
        align-items: end;
        background-blend-mode: multiply;
    }

    .mission-seocnd-view-new {
        display: flex;
        width: 100%;
        height: 25vh;
        background-image: url(../assets/mission-second-section-mobile.png);
        background-size: cover;
        /* background-position: center;
            background-repeat: no-repeat; */
        justify-content: center;
        align-items: end;
        background-blend-mode: multiply;
    }

    .mission-history-view {
        display: flex;
        width: 100%;
        height: 100%;
        background-image: none;
        background-color: #FAE1AE;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        justify-content: center;
        align-items: end;
        background-blend-mode: multiply;
    }
}

/*Dhyan Sadhna */

.dhyansadhna-main-image {
    display: flex;
    width: 100%;
    height: 100vh;
    background-image: url(../assets/DhyansadhnaPage/Dhyan\ Sadhna-min.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    justify-content: center;
    align-items: end;
    background-blend-mode: multiply;
    animation: fadeInDown 1.5s ease-in-out;
}

.dhaynsadhna-seocnd-view {
    display: flex;
    width: 100%;
    height: auto;
    background-image: url(../assets/DhyansadhnaPage/dhyansadhna-second-view.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-blend-mode: multiply;
}

.dhyan-techniques-view {
    display: flex;
    width: 100%;
    height: auto;
    background-image: url(../assets/DhyansadhnaPage/Dhyantechniques-view.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-blend-mode: multiply;
}

.wisdom-view {
    display: flex;
    width: 100%;
    height: auto;
    background-image: url(../assets/DhyansadhnaPage/wisdom-view.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-blend-mode: multiply;

}

@media (max-width:786px) {
    .dhyansadhna-main-image {
        display: flex;
        width: 100vw;
        height: 400px;
        background: url(../assets/DhyansadhnaPage/dhaynsadhna-mobile-slider.png), linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.4));
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        justify-content: center;
        align-items: end;
        background-blend-mode: multiply;
    }

    .dhaynsadhna-seocnd-view {
        display: flex;
        width: 100%;
        height: 100%;
        background-image: url(../assets/DhyansadhnaPage/dhyansadhna-second-view-mobile.png);
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        justify-content: center;
        align-items: end;
        background-blend-mode: multiply;
    }

    .dhyan-techniques-view {
        display: flex;
        width: 100%;
        height: 100%;
        background-image: url(../assets/DhyansadhnaPage//Dhyantechniquesmobile-view.png);
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        justify-content: center;
        align-items: end;
        background-blend-mode: multiply;
    }

    .wisdom-view {
        display: flex;
        width: 100%;
        height: 100%;
        background-image: url(../assets/DhyansadhnaPage/wisdom-mobile-view.png);
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        justify-content: center;
        align-items: end;
        background-blend-mode: multiply;
    }
}



/* Faq */

.faq-view {
    display: flex;
    width: 100%;
    height: auto;
    background-image: url(../assets/faq-view.png);
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-blend-mode: multiply;
}

@media (max-width:786px) {
    .faq-view {
        display: flex;
        width: 100%;
        height: auto;
        background-image: url(../assets/faq-mobile-view.png);
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        justify-content: center;
        align-items: end;
        background-blend-mode: multiply;
    }
}

.faq-item {
    background-color: #FFF;
    border-radius: 20px;
    padding: 50px 80px 50px 50px;
    border-left: 4px solid #972D2D;
}

@media (max-width:512px) {
    .faq-item {
        background-color: #FFF;
        border-radius: 20px;
        padding: 20px 20px 20px 20px;
        border-left: 4px solid #972D2D;
    }
}

.active-question {
    color: #972D2D;
    font-weight: 700;
    cursor: pointer;
}

.inactive-question {
    color: #000;
    font-weight: 400;
    cursor: pointer;
}

/* Live Havan  */
.live-hawan-bg {
    display: flex;
    width: 100%;
    height: 100vh;
    background-image: url(../assets/Banner/One\ day\ Live\ Hawan-min.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    justify-content: center;
    align-items: end;
    background-blend-mode: multiply;
    animation: fadeInDown 1.5s ease-in-out;
}

@media (max-width:786px) {
    .live-hawan-bg {
        display: flex;
        width: 100vw;
        height: 400px;
        background-image: url(../assets/Banner/OnedayLive-mobile.png);
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        justify-content: center;
        align-items: end;
        background-blend-mode: multiply;
    }
}

.live-video-detail {
    width: 100%;
    height: 100vh;
}

@media (max-width:512px) {
    .live-video-detail {
        width: 100%;
        height: 400px;
    }
}

.live-video {
    width: 100%;
    height: 30vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    justify-content: center;
    align-items: end;
    background-blend-mode: multiply;

}

@media (max-width:512px) {
    .live-video {
        width: 100%;
        height: 30vh;
    }
}

/* Publication */

.publication-view {
    display: flex;
    width: 100%;
    height: 60vh;
    background: url(../assets/Banner/Publications.png), linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.9));
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
    justify-content: center;
    align-items: end;
    background-blend-mode: multiply;
    animation: fadeInDown 1.5s ease-in-out;
}

.publication-detail-view {
    display: block;
    width: 100%;
    height: auto;
    background-image: url(../assets/publication-detail-view.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    justify-content: center;
    align-items: end;
    background-blend-mode: multiply;
}

.publication-mobile-detail-view {
    display: none;
}


.publication-article-view {
    display: flex;
    width: 100%;
    height: auto;
    background-image: url(../assets/publication-artical.png);
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
    justify-content: center;
    align-items: end;
    background-blend-mode: multiply;
}

.publication-blog-view {
    display: flex;
    width: 100%;
    height: 100%;
    background-image: url(../assets/publication-blog-mobile-view.png);
    background-size: 100% 100%;
    background-position: top;
    background-repeat: no-repeat;
    justify-content: center;
    align-items: end;
    background-blend-mode: multiply;
}

@media (max-width:512px) {
    .publication-view {
        display: flex;
        height: 600px;
        width: 100%;
        background: url(../assets/publication-main-image-mobile.png), linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 1));
        background-size: cover;
        background-position: top;
        background-repeat: no-repeat;
        justify-content: center;
        align-items: end;
        background-blend-mode: multiply;
    }

    .publication-article-view {
        display: flex;
        width: 100%;
        height: 100%;
        background-image: url(../assets/publication-artical-mobile.png);
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        justify-content: center;
        align-items: end;
        background-blend-mode: multiply;
    }

    .publication-mobile-detail-view {
        display: block;
        width: 100%;
        height: 100%;
        background-image: url(../assets/publication-detail-mobile.png);
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        justify-content: center;
        align-items: end;
        background-blend-mode: multiply;
    }

    .publication-blog-view {
        display: flex;
        width: 100%;
        height: 100%;
        background-image: url(../assets/publication-blog-mobile-view.png);
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        justify-content: center;
        align-items: end;
        background-blend-mode: multiply;
    }
}

/* Auth Screens */
.auth-background-view {
    display: flex;
    width: 100%;
    height: auto;
    background-image: url(../assets/auth-background.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-blend-mode: multiply;
}

#dropdownMenu {
    display: none;
    position: absolute;
    right: 0;
    margin-top: 10px;
    width: 150px;
    background: white;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 10;
    /* Ensures dropdown is above other elements */
}

#dropdownMenu.show {
    display: flex;
    /* Show when active */
}

.dropdown-item {
    padding: 10px;
    text-decoration: none;
    color: #333;
    display: block;
}

.dropdown-item:hover {
    background-color: #f0f0f0;
    /* Hover effect */
}

.logout-menu {
    position: absolute;
    z-index: 9999;
}

.otp-input {
    width: 60px;
    height: 60px;
    font-size: 20px;
}

@media (max-width:512px) {
    .otp-input {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
}

.Profile-bg-view {
    display: flex;
    width: 100%;
    height: 60vh;
    background: url(../assets/publication-main-image.png), linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.9));
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
    align-items: end;
    background-blend-mode: multiply;
}

@media (max-width:512px) {
    .Profile-bg-view {
        display: flex;
        height: 300px;
        width: 100%;
        background: url(../assets/publication-main-image-mobile.png), linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 1));
        background-size: cover;
        background-position: top;
        background-repeat: no-repeat;
        justify-content: center;
        align-items: end;
        background-blend-mode: multiply;
    }

}



/* ----------------------------------------------------*/

.modal-content {
    position: relative;
    margin: auto;
    padding: 18px;
    width: 40%;
    height: 70%;
    margin-top: -500px;
    z-index: 9999;
}

.modal-content .close-model {
    position: absolute;
    right: 12px;
    top: 2px;
    color: black;
    font-size: 30px;
    font-weight: 700;
    cursor: pointer !important;
}

.modal .modal-content video {
    width: 100%;
    height: 100%;
}

.menu-icons {
    display: block;
}

@media (max-width: 1199px) {
    .modal-content {
        /* margin: 10% auto; */
        width: 50%;
    }

    .close-model {
        right: 20px;
        top: 2px;
    }
}

@media (max-width: 991px) {
    .modal-content {
        margin: 10% auto;
    }

    .close-model {
        right: 14px;
        top: 0px;
    }
}

@media (max-width: 767px) {
    .modal-content {
        margin: 14% auto;
    }

    .close-model {
        right: 5px;
        top: -9px;
    }
}

@media (max-width: 640px) {
    .modal-content {
        /* margin: 10% auto; */
        width: 57%;
    }


    .modal .modal-content video {}
}


@media (max-width: 525px) {
    .modal-content {
        /* margin: 8% auto; */
        width: 60%;
        margin: 18% auto;

    }


    .modal .modal-content video {}
}

@media (max-width: 425px) {
    .modal-content {
        width: 80%;
        position: relative;
        margin: auto;
        padding: 18px;
        width: 100%;
        height: 100%;
        z-index: 9999;
        margin-top: -180px;
    }

    .close-model {
        /* right: 5px;
        top: -9px; */
    }

}

.testimonial-box {
    display: flex;
    flex-direction: column;
    height: 500px;
    /* Adjust height as needed */
    /* overflow: hidden; */
}

@media (max-width:1224px) {
    .testimonial-box {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        height: 600px;
        /* Adjust height as needed */
        /* overflow: hidden; */
    }
}

@media (max-width:1024px) {
    .testimonial-box {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        height: 600px;
        /* Adjust height as needed */
        /* overflow: hidden; */
    }
}

.testimonial-box p {
    /* text-overflow: ellipsis; */
    /* overflow: hidden; */
    /* display: -webkit-box; */
    /* -webkit-line-clamp: 6; */
    /* Limits text to a specific number of lines */
    /* -webkit-box-orient: vertical; */
}

/* .owl-carousel .testimonial-box {
    max-height: 600px;
}

*/
/* 
.latestvideo-box {
    display: flex;
    flex-direction: column;
    min-height: 383px;
}

@media (max-width:1600px) {
    .latestvideo-box {
        display: flex;
        flex-direction: column;
        min-height: 330px;
    }
}


@media (max-width:1500px) {
    .latestvideo-box {
        display: flex;
        flex-direction: column;
        min-height: 330px;
    }
}

@media (max-width:1420px) {
    .latestvideo-box {
        display: flex;
        flex-direction: column;
        height: 270px;
    }
}

@media (max-width:1300px) {
    .latestvideo-box {
        display: flex;
        flex-direction: column;
        min-height: 327px;
    }
}

@media (max-width:1200px) {
    .latestvideo-box {
        display: flex;
        flex-direction: column;
        min-height: 278px;
    }
}

@media (max-width:1024px) {
    .latestvideo-box {
        display: flex;
        flex-direction: column;
        min-height: 300px;
    }
}

@media (max-width:786px) {
    .latestvideo-box {
        display: flex;
        flex-direction: column;
        min-height: 270px;
    }
}

@media (max-width:512px) {
    .latestvideo-box {
        display: flex;
        flex-direction: column;
        min-height: 290px;
    }
} */

.profile-screen {
    background-image: url(../assets/blogscreen.png);
    width: 100vw;
    height: auto;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* .methodimagesec {
    margin-top: 0px;
}

@media (max-width:1480px) {
    .methodimagesec {
        margin-top: 30px;
    }
} */
.methosImges {
    background-image: url(/assets/method1.jpg);
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
    width: auto;
    height: 200px;
}

@media (min-width: 1024px) {
    .methosImges {
        background-image: url(/assets/method1.jpg);
        display: flex;
        flex-direction: column;
        min-height: 370px;
    }
}

@media (min-width: 1280px) {
    .methosImges {
        background-image: url(/assets/method1.jpg);
        display: flex;
        flex-direction: column;
        min-height: 300px;
    }
}

@media (min-width: 1536px) {
    .methosImges {
        background-image: url(/assets/method1.jpg);
        display: flex;
        flex-direction: column;
        min-height: 250px;
    }
}

.methodimage2 {
    background-image: url(/assets/method2.jpg);
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
    width: auto;
    height: 200px;
}

@media (min-width: 1024px) {
    .methodimage2 {
        background-image: url(/assets/method2.jpg);
        display: flex;
        flex-direction: column;
        min-height: 450px;
        background-size: cover;
        background-position: left;
        background-repeat: no-repeat;

    }
}

@media (min-width: 1280px) {
    .methodimage2 {
        background-image: url(/assets/method2.jpg);
        display: flex;
        flex-direction: column;
        min-height: 400px;
        background-size: cover;
        background-position: left;
        background-repeat: no-repeat;

    }
}

@media (min-width: 1536px) {
    .methodimage2 {
        background-image: url(/assets/method2.jpg);
        display: flex;
        flex-direction: column;
        background-size: cover;
        background-position: top;
        background-repeat: no-repeat;
        min-height: 300px;
    }
}

.lord-shiva-image {
    background-image: url(/assets/DhyansadhnaPage/sadhna-lord.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: auto;
    height: 400px;
}

@media (min-width: 1024px) {
    .lord-shiva-image {
        background-image: url(/assets/DhyansadhnaPage/sadhna-lord.jpg);
        display: flex;
        flex-direction: column;
        height: 565px;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;

    }
}

@media (min-width: 1280px) {
    .lord-shiva-image {
        background-image: url(/assets/DhyansadhnaPage/sadhna-lord.jpg);
        display: flex;
        flex-direction: column;
        height: 445px;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;

    }
}

@media (min-width: 1536px) {
    .lord-shiva-image {
        background-image: url(/assets/DhyansadhnaPage/sadhna-lord.jpg);
        display: flex;
        flex-direction: column;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        height: 400px;
    }
}



.loader {
    border: 8px solid #f3f3f3;
    border-top: 8px solid #3498db;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.eshop-bg {
    background-image: url(../assets/Banner/Daily\ Puja\ Samagri-min.png);
    width: 100vw;
    height: 80vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: end;
    justify-content: center;
    animation: fadeInDown 1.5s ease-in-out;

}

.wishList-bg {
    background-image: url(../assets/Banner/Daily\ Puja\ Samagri-min.png);
    width: 100vw;
    height: 80vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: end;
    justify-content: center;
    animation: fadeInDown 1.5s ease-in-out;

}

.image-list img {
    transition: border 0.3s ease;
}

.image-list img:hover {
    border-color: #FFA500;
    /* Change the border color on hover */
}

#carousel-images {
    height: 185px;
    overflow-y: scroll;
}

@media (max-width: 512px) {
    #carousel-images {
        height: 185px;
        overflow-y: scroll;
    }
}

@media (max-width: 640px) {
    #carousel-images {
        height: 185px;
        overflow-y: scroll;
    }
}

@media (min-width: 768px) {
    #carousel-images {
        height: 200px;
        overflow-y: scroll;
    }
}

@media (min-width: 1024px) {
    #carousel-images {
        height: 400px;
        overflow-y: scroll;
    }
}

@media (min-width: 1280px) {
    #carousel-images {
        height: 400px;
        overflow-y: scroll;
    }
}

@media (min-width: 1536px) {
    #carousel-images {
        height: 400px;
        overflow-y: scroll;
    }
}




#carousel-images::-webkit-scrollbar {
    /* width: 6px; */
    display: none;
}

#carousel-images::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.2);
    /* Custom scrollbar color */
    border-radius: 4px;
}

.img-list {
    height: 150px;
    width: 150px;
}

.live-image-container {
    /* display: flex;
    justify-content: center;
    align-items: center; */
    /* padding: 10px; */
}

.image-wrapper {
    position: relative;
    display: inline-block;
    border: 4px solid red;
    border-radius: 50%;
    /* padding: 5px; */
}

.latest-image-wrapper {
    position: relative;
    display: inline-block;
    border: 4px solid #d1d5db;
    border-radius: 50%;
}

.live-image {
    width: 100px;
    height: 70px;
    object-fit: cover;
    border-radius: 50%;
}

.live-badge {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    background-color: red;
    color: white;
    padding: 2px 8px;
    font-size: 12px;
    font-weight: bold;
    border-radius: 5px;
    text-transform: uppercase;
}

.carsoleSelect {
    border: 2px solid #972D2D;
}

.privacy-policy-bg {
    display: flex;
    width: 100%;
    height: auto;
    background-image: url(../assets/policy-bg.png);
    background-size: 100% 100%;
    background-position: top;
    background-repeat: no-repeat;
}

@media (max-width:786px) {
    .privacy-policy-bg {
        display: flex;
        width: 100%;
        height: auto;
        background-image: url(../assets/policy-bg-mobile.png);
        background-size: cover;
        background-position: top;
        background-repeat: no-repeat;
        background-blend-mode: multiply;
    }
}

/* .latestvideo-box {
    display: flex;
    flex-direction: column;
    min-height: 383px;
}

@media (max-width:1600px) {
    .latestvideo-box {
        display: flex;
        flex-direction: column;
        min-height: 330px;
    }
}


@media (max-width:1500px) {
    .latestvideo-box {
        display: flex;
        flex-direction: column;
        min-height: 330px;
    }
}

@media (max-width:1420px) {
    .latestvideo-box {
        display: flex;
        flex-direction: column;
        height: 270px;
    }
}

@media (max-width:1300px) {
    .latestvideo-box {
        display: flex;
        flex-direction: column;
        min-height: 327px;
    }
}

@media (max-width:1200px) {
    .latestvideo-box {
        display: flex;
        flex-direction: column;
        min-height: 278px;
    }
}

@media (max-width:1024px) {
    .latestvideo-box {
        display: flex;
        flex-direction: column;
        min-height: 300px;
    }
}

@media (max-width:786px) {
    .latestvideo-box {
        display: flex;
        flex-direction: column;
        min-height: 270px;
    }
}

@media (max-width:512px) {
    .latestvideo-box {
        display: flex;
        flex-direction: column;
        min-height: 290px;
    }
} */




.latestvideo-box {
    display: flex;
    flex-direction: column;
    min-height: 383px;
}


@media (max-width: 512px) {
    .latestvideo-box {
        display: flex;
        flex-direction: column;
        min-height: 270px;
    }
}

@media (max-width: 640px) {
    .latestvideo-box {
        display: flex;
        flex-direction: column;
        min-height: 270px;
    }
}

@media (min-width: 768px) {
    .latestvideo-box {
        display: flex;
        flex-direction: column;
        min-height: 290px;
    }
}

@media (min-width: 1024px) {
    .latestvideo-box {
        display: flex;
        flex-direction: column;
        min-height: 370px;
    }
}

@media (min-width: 1280px) {
    .latestvideo-box {
        display: flex;
        flex-direction: column;
        min-height: 383px;
    }
}

@media (min-width: 1536px) {
    .latestvideo-box {
        display: flex;
        flex-direction: column;
        min-height: 383px;
    }
}

/* Fade-in animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.video-image {
    height: 250px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s, transform 0.5s;
}

@media (min-width: 640px) {
    .video-image {
        height: 165px;
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.5s, transform 0.5s;
    }
}

@media (min-width: 768px) {
    .video-image {
        height: 160px;
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.5s, transform 0.5s;
    }
}

@media (min-width: 1024px) {
    .video-image {
        height: 250px;
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.5s, transform 0.5s;
    }
}

@media (min-width: 1280px) {
    .video-image {
        height: 275px;
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.5s, transform 0.5s;
    }
}

@media (min-width: 1536px) {
    .video-image {
        height: 275px;
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.5s, transform 0.5s;
    }
}

.video-image.visible {
    animation: zoomIn 0.6s forwards;
}

.news-image.visible {
    animation: zoomIn 0.6s forwards;
}

.article-image.visible {
    animation: zoomIn 0.6s forwards;
}

.blog-image.visible {
    animation: zoomIn 0.6s forwards;
}

.live-image.visible {
    animation: zoomIn 0.6s forwards;
}

.blog-image-list.visible {
    animation: zoomIn 0.6s forwards;
}

/* Login    */

.auth-page {
    padding-left: 10px;
    padding-right: 10px;
}


@media (min-width: 640px) {
    .auth-page {
        padding-left: 10px;
        padding-right: 10px;
    }
}

@media (min-width: 768px) {
    .auth-page {
        padding-left: 100px;
        padding-right: 100px;
    }
}

@media (min-width: 1024px) {
    .auth-page {
        padding-left: 200px;
        padding-right: 200px;
    }
}

@media (min-width: 1280px) {
    .auth-page {
        padding-left: 300px;
        padding-right: 300px;
    }
}

@media (min-width: 1536px) {
    .auth-page {
        padding-left: 400px;
        padding-right: 400px;
    }
}

/* .toast-message {
    position: fixed;
    top: 10px;
    right: 20px;
    background-color: #c20b0b;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    opacity: 0.9;
    z-index: 1000;
} */

.filled-heart {
    color: #FFC700;
    /* Color for filled heart */
    font-size: 24px;
    /* Set size */
}

.border-heart {
    font-size: 24px;
    /* Set size */
}



/* Ensure the close button is on top */
.close-button {
    z-index: 50;
}

/* Modal content is below the close button */
#imageModal {
    z-index: 40;
    padding: 20px;
}



.galleryImage {
    width: 90vh;
    height: 90vh;
    margin-top: 30px;
}

@media (max-width:512px) {
    .galleryImage {
        width: 50vh;
        height: 50vh;
        margin-top: 220px;
    }

}

/* Hide default Swiper arrows with higher specificity */
.swiper-container .swiper-button-next,
.swiper-container .swiper-button-prev {
    display: none !important;
    /* Force hiding of default Swiper buttons */
}

/* Ensure the swiper container is positioned relative */
.swiper-container {
    position: relative;
}

/* Custom button styles */
.custom-swiper-button {
    width: 50px;
    height: 50px;
    background-size: 40px 40px;
    background-repeat: no-repeat;
    background-position: center;
    background-color: transparent;
    border: none;
    cursor: pointer;
    position: absolute;
    top: 50%;
    /* Center vertically */
    transform: translateY(-50%);
    /* Adjust to vertically center */
    z-index: 10;
    /* Ensure it's on top of the swiper content */
}

/* Left button (prev) on the left side */
.custom-swiper-button-left {
    left: 10px;
    /* Adjust distance from the left edge */
    background-image: url('../assets/left-side.png');
}

/* Right button (next) on the right side */
.custom-swiper-button-right {
    right: 10px;
    /* Adjust distance from the right edge */
    background-image: url('../assets/right-side.png');
}

/* Style for disabled buttons */
.custom-swiper-button.disabled {
    opacity: 0.5;
    /* Make it visually appear disabled */
    pointer-events: none;
    /* Disable click events */
}



/* .animated-image {
    opacity: 0;
    transform: rotateY(90deg) translateX(100%);
    transition: all 0.8s ease;
}

.animated-image img {
    height: auto;
}

.flip-in {
    opacity: 1;
    transform: rotateY(0deg) translateX(0);
} */
/* Base style for animated images */
.animated-image {
    opacity: 0;
    /* Start invisible */
    transition: opacity 0.8s ease, transform 0.8s ease;
    /* Smooth transition */
}

/* Flip-in effect for images entering from the right */
.flip-in {
    opacity: 1;
    /* Fully visible */
    transform: translateX(0);
    /* Move into position */
}

/* Flip-in effect for images entering from the left */
.flip-in-left {
    opacity: 1;
    /* Fully visible */
    transform: translateX(0);
    /* Move into position */
}

/* Initial position for images entering from the right */
#image1 {
    transform: translateX(100%);
    /* Start off-screen to the right */
}

/* Initial position for images entering from the left */
#image2 {
    transform: translateX(-100%);
    /* Start off-screen to the left */
}

/* Grid layout */
.grid {
    display: grid;
    grid-template-columns: 1fr;
    /* Single column on mobile */
    gap: 1rem;
    /* Gap between grid items */
}

@media (min-width: 768px) {
    .grid {
        grid-template-columns: repeat(2, 1fr);
        /* Two columns on larger screens */
    }
}

/* Left-side image enter from left */
@keyframes enter-left {
    0% {
        opacity: 0;
        transform: translateX(-100%);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Right-side image enter from right */
@keyframes enter-right {
    0% {
        opacity: 0;
        transform: translateX(100%);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}


.animate-enter-left {
    opacity: 0;
    transform: translateX(-100%);
    transition: opacity 1s ease, transform 1s ease;
}

.animate-enter-left.animate {
    opacity: 1;
    transform: translateX(0);
}

.animate-enter-right {
    opacity: 0;
    transform: translateX(20%);
    transition: opacity 1s ease-out, transform 1s ease-out;
}


.animate-enter-right.animate {
    opacity: 1;
    transform: translateX(0);
}

@media (width: 1300px) {

    .animate-enter-left {
        display: block;
    }

    .animate-enter-left.animate {
        opacity: 1;
        display: block;
        transform: translateX(0);
    }


}

.zoom-in {
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.zoom-in.animate {
    opacity: 1;
    transform: scale(1);
}