h1, h2, h3, h4, h5, h6 {
    font-family: 'Nunito', sans-serif;
}

body {
    font-family: 'Lora', serif;
}

body p {
    line-height: 1.5;
    font-size: 14px;
    color: #605b5b;
    font-family: 'Lora', serif;
}

.w3l-inner-page-main .breadcrumb-infhny {
    background: #e3223c;
}

.breadcrumb-item {
    font-family: 'Nunito', sans-serif;
    text-decoration: underline;
    color: white;
}

.w3l-inner-page-main li.breadcrumb-item a {
    color: white;
}

.w3l-inner-page-main .breadcrumb-item.active {
    text-decoration: none;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: white;
}

.fade-in {
    opacity: 1;
    animation-name: fadeInOpacity;
    animation-iteration-count: 1;
    animation-timing-function: ease-in;
    animation-duration: 1.5s;
}

@keyframes fadeInOpacity {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}