﻿@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100..700;1,100..700&display=swap');

:root {
    --bs-body-color: #0f465b;
    --bs-primary: #0f465b;
    --bs-primary-rgb: 15, 70, 91;
}

body {
    font-family: "Josefin Sans", sans-serif;
    font-size: 18px;
    color: var(--bs-primary);
    line-height: 1.5;
    color: var(--bs-body-color);
}

a {
    text-decoration: none;
}

.rich-text a {
    color: var(--bs-primary);
}

    .rich-text a:hover {
        text-decoration: underline;
        text-decoration-thickness: 2px;
        text-underline-offset: 0.375em;
        text-decoration-color: rgb(var(--bs-primary-rgb), .3);
    }

.rich-text ul li {
    list-style: none;
    position: relative;
}

    .rich-text ul li::before {
        content: "";
        width: 12px;
        height: 12px;
        background: url(img/spp-shape.svg) no-repeat;
        position: absolute;
        left: -1.2em;
        top: 0.45em;
    }

.btn-primary {
    --bs-btn-color: #fff;
    --bs-btn-bg: var(--bs-primary);
    --bs-btn-border-color: var(--bs-primary);
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #048c7e;
    --bs-btn-hover-border-color: #048c7e;
    --bs-btn-focus-shadow-rgb: 49, 132, 253;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #048c7e;
    --bs-btn-active-border-color: #048c7e;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(var(--bs-primary-rgb) 0.125);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: #006056;
    --bs-btn-disabled-border-color: #0d6efd;
}