@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&family=Playpen+Sans+Deva:wght@100..800&display=swap');
body {
    font-family: "Outfit", sans-serif;
    cursor:url("../assets/images/cursor-64.cur"),auto;
}
button,
a,
input[type="submit"] {
    cursor: url("../assets/images/cursor-64.cur") 8 2, pointer !important;
}

.heading {
    font-family: 'Cormorant Garamond', serif;
}
.texture-bg {
    position: relative;
    background: url("../assets/images/bg-texture.png") center/cover no-repeat;
    overflow: hidden;
}

.texture-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
}

.texture-bg > * {
    position: relative;
    z-index: 1;
}

/* header dropdown code */

@media (min-width:1024px){

    .group:hover > .nav-dropdown{
        display:block;
    }

    .group:hover i{
        transform:rotate(180deg);
    }

}

