/* Define the custom font */
@font-face {
    font-family: 'HeadingFont';
    src: url('../fonts/analogue-webfont.ttf') format('truetype'); /* Path to .ttf file */
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'ParaFont';
    src: url('../fonts/Montserrat-Light.ttf') format('truetype'); /* Path to .ttf file */
    font-weight: normal;
    font-style: normal;
}

/* Apply the custom font globally */
/* body {
    font-family: 'CustomFont', sans-serif;
} */

/* Apply to specific elements */
h1,h2,h4,h5,h6 {
    font-family: 'HeadingFont', sans-serif;
}

p {
    font-family: 'ParaFont', sans-serif;
}
.swiper-button-next,
.swiper-button-prev {
    color: #151B4A !important;
}