@font-face {
    font-family: 'CustomFont';
    src: url('../fonts/customBold.ttf') format('truetype');
    font-weight: bold;
    font-style: 600;
}

@font-face {
    font-family: 'CustomFont';
    src: url('../fonts/customBolder.ttf') format('woff');
    font-weight: 800;
    font-style: normal;
}


@font-face {
    font-family: 'CustomFont';
    src: url('../fonts/customExtraBolder.ttf') format('woff');
    font-weight: 950;
    font-style: normal;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'CustomFont', sans-serif;
}

body {
    font-family: 'Rubik', sans-serif;
}


.navbar-nav .nav-link {
    font-size: 20px;
}

.active {
    color: #2875A9;
    border-color: #2875A9 !important;
}

.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next {
    border: 1px solid black;
    border-radius: 5px;
    width: 30px;
    height: 30px;
    margin: 30px 5px;

}

.owl-carousel .owl-nav button.owl-prev:hover,
.owl-carousel .owl-nav button.owl-next:hover {
    background-color: black;
    color: white;
}

.owl-theme .owl-dots,
.owl-theme .owl-nav {
    text-align: right !important;
}


.scroller__inner {
    padding-block: 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.scroller[data-animated="true"] {
    overflow: hidden;
}

.scroller[data-animated="true"] .scroller__inner {
    width: max-content;
    flex-wrap: nowrap;
    animation: scroll var(--_animation-duration, 40s) var(--_animation-direction, forwards) linear infinite;
}

.scroller[data-direction="right"] {
    --_animation-direction: reverse;
}

.scroller[data-direction="left"] {
    --_animation-direction: forwards;
}

.scroller[data-speed="fast"] {
    --_animation-duration: 20s;
}

.scroller[data-speed="slow"] {
    --_animation-duration: 60s;
}

.scroller__inner img:hover {
    animation: none
}

@keyframes scroll {
    to {
        transform: translate(calc(-50% - 0.5rem));
    }
}


.tag-list {
    margin: 0;
    padding-inline: 0;
    list-style: none;
}

.tag-list li {
    padding: 1rem;
    background: var(--clr-primary-400);
    border-radius: 0.5rem;
    box-shadow: 0 0.5rem 1rem -0.25rem var(--clr-primary-900);
}

.test {
    background: red !important;
}