.cms-title__container h1,
.cms-contact__wrapper-text h1,
.cms-contact__wrapper-form>h3,
.cms-post__category,
.cms-post>h2,
.cms-product__content h1,
.cms-product__item h2,
.cms-contact__wrapper-text h4,
.cms-img-content__item-text h1, 
.cms-img-content__item-text h2, 
.cms-img-content__item-text h3,
.cms-page__title h1 {
    font-family: 'Chakra Petch', sans-serif;
}

.menu-prime {
    position: relative;
}

.menu-prime::after {
    content: '';
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: #ffc700;
    border-radius: 50%;
    animation: blink 1s infinite;
}

@keyframes blink {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}