:root {
    --siteColor: #4ed70e;
    --siteColor2: #60f01c;
    --siteLightColor: #e1fcd4 ;
    --siteLightColor2: #c7faaf;
}

* {
    font-family: 'Poppins', sans-serif !important;
}

.fa, .far, .fas {
    font-family: "Font Awesome 5 Free" !important;
}

.fab {
    font-family: "Font Awesome 5 Brands" !important;
}

.hd-required {
    font-weight: bold;
    color: red !important;
}

.bg-site {
    background: var(--siteColor) !important;
    color: white !important;
}

.custom-control-input:checked ~ .custom-control-label::before {
    color: #fff;
    border-color: var(--siteColor) !important;
    background-color: var(--siteColor) !important;
}

.btn-site {
    background: var(--siteColor) !important;
    color: white !important;
}

.form-control:focus {
    border-color: var(--siteLightColor2) !important;
    box-shadow: 0 0 0 0.25rem var(--siteLightColor2) !important;
}

.input-group:not(.bootstrap-touchspin):focus-within .form-control, .input-group:not(.bootstrap-touchspin):focus-within .input-group-text {
    border-color: var(--siteLightColor2) !important;
    box-shadow: 0 0 0 0.25rem var(--siteLightColor2) !important;
}

.navbar-light .navbar-nav .show > .nav-link, .navbar-light .navbar-nav .active > .nav-link, .navbar-light .navbar-nav .nav-link.show, .navbar-light .navbar-nav .nav-link.active {
    color: white !important;
}

.navbar-light .navbar-nav .nav-link {
    color: white !important;
}

p {
    font-size: 20px;
    color: white !important;
}

#header {
    background: var(--siteColor);
    padding: 1.5rem 0px;
}

.hd-warning {
    font-size: 15px;
    color: #333 !important;
}

.hd-warning a {
    text-decoration: none !important;
    color: var(--siteColor) !important;
}

#footer {
    background: var(--siteColor);
    padding: 2rem 0px;
}

.about {
    color: #f2fded;
    padding-right: 20px;
    margin-top: 20px;
    margin-bottom: 13px;
}

.btnSubmit {
    background: var(--siteColor);
}

.social-icons {
    display: flex;
}

a.social-icon {
    padding: 15px;
    /* width: 20px; */
    /* height: 20px; */
    background: #6ff232;
    border-radius: 50%;
    color: white;
    margin-right: 5px;
}

.social-icons a {
    line-height: 1;
    width: 1em;
    height: 1em;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

#menu-quick-links {
    list-style: none;
    padding: 0px;
}

#menu-quick-links li {
    color: white;
    line-height: 1.85rem;
}

#menu-quick-links li a {
    color: white;
    font-size: 20px;
    text-decoration: none;
}

#menu-quick-links2 {
    list-style: none;
    padding: 0px;
}

#menu-quick-links2 li {
    color: white;
    line-height: 1.85rem;
}

#menu-quick-links2 li a {
    color: white;
    font-size: 20px;
    text-decoration: none;
}

.title-row {
    padding: 1.3rem 0;
}

.page-title {
    color: var(--siteColor);
    font-weight: bold;
}

.card {
    border: none !important;
    border-radius: 2rem !important;
    padding: 1.5rem !important;
}

.btn-check:focus+.btn-outline-secondary, .btn-outline-secondary:focus {
    box-shadow: 0 0 0 0.25rem var(--siteLightColor2) !important;
}



/* RESPONSIVE CSS */
@media only screen and (min-width: 360.5px) and (max-width: 480px) {
    p {
        font-size: 15px;
    }

    #menu-quick-links li a {
        color: white;
        font-size: 15px;
        text-decoration: none;
    }

    #menu-quick-links2 li a {
        color: white;
        font-size: 15px;
        text-decoration: none;
    }

    #footer {
        padding-bottom: 1rem;
    }
}

@media only screen and (min-width: 320.5px) and (max-width: 360px) {
    p {
        font-size: 15px;
    }

    #menu-quick-links li a {
        color: white;
        font-size: 15px;
        text-decoration: none;
    }

    #menu-quick-links2 li a {
        color: white;
        font-size: 15px;
        text-decoration: none;
    }

    #footer {
        padding-bottom: 1rem;
    }
}

@media only screen and (max-width: 320px) {
    p {
        font-size: 15px;
    }

    #menu-quick-links li a {
        color: white;
        font-size: 15px;
        text-decoration: none;
    }

    #menu-quick-links2 li a {
        color: white;
        font-size: 15px;
        text-decoration: none;
    }

    #footer {
        padding-bottom: 1rem;
    }
}

