@import "https://fonts.googleapis.com/css2?family=Young+Serif&display=swap";@import "https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800;900&display=swap";@import "https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&display=swap";@import "https://fonts.googleapis.com/css2?family=Noto+Serif+Devanagari:wght@400;500;600;700;800;900&display=swap";@import "https://fonts.googleapis.com/css2?family=Sumana:wght@400;700&display=swap";@import "https://fonts.googleapis.com/css2?family=Nunito:wght@400;500;600;700;800;900;1000&display=swap";.foo {
    animation: foo .9s cubic-bezier(.9,.7,.5,.9) infinite
}

@keyframes foo {
    0% {
        color: #000
    }

    50% {
        transform: scale(1.2)
    }
}

.pop_imagehfv {
    animation: zoom-in-zoom-out 1.2s cubic-bezier(.9,.7,.5,.9) infinite
}

@keyframes zoom-in-zoom-out {
    0% {
        transform: scale(.8);
        opacity: 1
    }

    50% {
        transform: scale(1);
        opacity: .5
    }

    to {
        transform: scale(.8);
        opacity: 1
    }
}

.fontYoung {
    font-family: "young serif",serif
}

.fontPoppins {
    font-family: Poppins,sans-serif
}

.fontOswald {
    font-family: Oswald,sans-serif
}

.fontNoto {
    font-family: "noto serif devanagari",sans-serif
}

.font-sumana {
    font-family: Sumana,serif
}

.font-nunito {
    font-family: Nunito,sans-serif
}

.fontShadow {
    text-shadow: 3px 3px 0 #21cdc1
}

.manageLineheight {
    line-height: 3.5rem!important
}

@media(max-width: 768px) {
    .fontShadow {
        text-shadow:1px 1px 2px #21cdc1
    }

    .manageLineheight {
        line-height: 2rem!important
    }
}
