﻿body {
    font-family: 'Poppins', sans-serif;
}

h1 {
    padding: 80px 0 106px;
    color: var(--Primary);
    font-size: 24px;
    font-weight: bold;
}

h2 {
    font-size: 22px;
    font-weight: bold;
}

h3 {
    font-size: 20px;
    font-weight: bold;
}

.primary-color {
    color: var(--Primary);
}

p {
    font-size: 18px;
    color: var(--BodyText);
    margin-bottom: 0;
    font-weight: 400;
}

/* Colors */
:root {
    --Background: #ffffff;
    --Primary: #005C4E;
    --Tertiary: #006175;
    --Secondary: #98393E;
    --MidBlue: #252733;
    --LightBlue: #545763;
    --Black: #000000;
    --LightBlack: #575757;
    --BodyText: #333333;
    --NavText: #4D4D4D;
    --WhiteSmoke: #F2F2F2;
    --Timberwolf: #CFCFCF;
}

/*Override theme styles*/
.select2-container--bootstrap-5 .select2-dropdown .select2-results__options .select2-results__option.select2-results__option--selected, .select2-container--bootstrap-5 .select2-dropdown .select2-results__options .select2-results__option[aria-selected=true]:not(.select2-results__option--highlighted) {
    background-color: var(--Primary);
}

.select2-container--bootstrap-5.select2-container--focus .select2-selection, .select2-container--bootstrap-5.select2-container--open .select2-selection, .form-control:focus {
    box-shadow: 0 0 0 0.25rem rgb(124 179 51 / 25%);
}