@import url('font-awesome.css');

:root {
    --color-primary: #29166f;
    --color-secondary: #009045;
    --color-gray: #525252;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: #ffffff;
    color: #0f172a;
}

.site-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1em;
    height: 1em;
    background-color: currentColor;
    -webkit-mask-image: var(--site-icon-url);
    mask-image: var(--site-icon-url);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-size: contain;
    mask-size: contain;
    flex-shrink: 0;
}

.site-main-nav.is-fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 40;
    animation: siteNavDown 180ms ease-out;
}

@keyframes siteNavDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

.site-nav-menu.is-open {
    display: flex;
}

.site-slider {
    background: #0f172a;
}

.site-slide {
    display: none;
    width: 100%;
}

.site-slide.is-active {
    display: block;
}

.site-slider-prev,
.site-slider-next {
    position: absolute;
    top: 50%;
    z-index: 20;
    display: flex;
    width: 44px;
    height: 44px;
    transform: translateY(-50%);
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, .45);
    background: rgba(255, 255, 255, .14);
    color: #fff;
    font-size: 32px;
    line-height: 1;
    backdrop-filter: blur(8px);
    transition: background .2s ease, transform .2s ease;
}

.site-slider-prev:hover,
.site-slider-next:hover {
    background: rgba(255, 255, 255, .24);
}

.site-slider-prev {
    left: 24px;
}

.site-slider-next {
    right: 24px;
}

.site-slider-dots {
    position: absolute;
    bottom: 24px;
    left: 0;
    right: 0;
    z-index: 25;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.site-slider-dot,
.site-services-dot {
    width: 10px;
    height: 10px;
    border: 0;
    border-radius: 999px;
    background: #cbd5e1;
    cursor: pointer;
    transition: width .2s ease, background .2s ease;
}

.site-slider-dot.is-active,
.site-services-dot.is-active {
    width: 32px;
    background: var(--color-secondary);
}

.site-slider-dot {
    background: rgba(255, 255, 255, .55);
}

.site-slider-dot.is-active {
    background: #ffffff;
}

.site-service-item {
    width: 33.333333%;
}

@media (max-width: 1023px) {
    .site-service-item {
        width: 50%;
    }
}

@media (max-width: 767px) {
    .site-service-item {
        width: 100%;
    }

    .site-slider-prev,
    .site-slider-next {
        display: none;
    }
}

.site-rich-content h1,
.site-rich-content h2,
.site-rich-content h3 {
    margin: 1.25rem 0 .75rem;
    color: #0f172a;
    font-weight: 700;
}

.site-rich-content h1 {
    font-size: 2rem;
}

.site-rich-content h2 {
    font-size: 1.5rem;
}

.site-rich-content h3 {
    font-size: 1.25rem;
}

.site-rich-content p {
    margin: 0 0 1rem;
}

.site-rich-content ul {
    margin: 0 0 1rem;
    padding-left: 1.5rem;
    list-style: disc;
}

.site-rich-content ol {
    margin: 0 0 1rem;
    padding-left: 1.5rem;
    list-style: decimal;
}

.site-rich-content a {
    color: var(--color-primary);
    text-decoration: underline;
}

.site-rich-content img {
    margin: 1.5rem 0;
    width: 100%;
    border-radius: 1rem;
}

.js-category-filter {
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 7px 15px;
    border-radius: 10px;
    color: #ffffff;
    font-size: 14px;
    line-height: 1.35;
    text-decoration: none;
    text-align: left;
    cursor: pointer;
    transition: background 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}
.js-category-filter{
    background-color: var(--color-gray);
}
.js-category-filter.active{    
    background: var(--color-primary);
}