:root {
    --primary-green: #8BCB3F;
    --bg-green: #F2F9EA;

    --primary-blue: #0B3B91;
    --secondary-blue: #22C4E8;
    --border-bluelight: #dceafb;
    --bg-blue: #EEF5FF;

    --border-greylight: #dae1ea;
}

body {
    padding-top: 122px;
    font-family: 'Source Sans 3';
    font-style: normal;
    font-weight: 400;
}

.row {
  scroll-margin-top: 200px;
}

.mb-6 {
    margin-bottom: 4.5rem;
}

nav {
    border-top: 15px solid var(--primary-green);
    background-color: white;
    box-shadow: 1px 1px 5px rgba(0,0,0,0.1);
}

.nav-item .nav-link.active {
    font-weight: 600;
}

header {
    height: 550px;
    display: flex;
    align-items: end;
    background: url('../img/header-image.png') top center no-repeat;
    background-size: cover;

    @media screen and (max-width: 1199.98px) {
        height: 450px;
    }
    @media screen and (max-width: 991.98px) {
        background-position: top -15px left -100px;
    }
    @media screen and (max-width: 767.98px) {
        height: 350px;
    }
    @media screen and (max-width: 575.98px) {
        height: 300px;
    }
}

header .card {
    background-color: rgba(255,255,255,0.9);
    text-align: center;

    @media screen and (max-width: 767.98px) {
        margin: 0 0.5rem;
    }
}

header .card-body {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

header .card-title {
    color: var(--primary-blue);
}

header, main {
    margin-bottom: 3.5rem;
}

.heading {
    margin-bottom: 2rem;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
}

.heading h2 {
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--primary-green);
}

.heading h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-blue);
}

.card {
    height: 100%;
    border-radius: 0.5rem;
    border-color: var(--border-greylight);
}

.card.highlightcard {
    transition: all 0.2s ease-in-out;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.card.highlightcard:hover {
    transform: scale(1.02);
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.card.highlightcard.b-green {
    border-top: 15px solid var(--primary-green);
}
.card.highlightcard.b-blue {
    border-top: 15px solid var(--primary-blue);
}
.card.highlightcard.b-blue-2 {
    border-top: 15px solid var(--secondary-blue);
}
.card.bg-green {
    background-color: var(--bg-green);
}
.card.bg-blue {
    background-color: var(--bg-blue);
}
.card.b-bluelight {
    border-color: var(--border-bluelight);
}

.card-body {
    padding: 1.5rem;
}

.card-title {
    font-size: 1.5rem;
    font-weight: 600;
}

.card-text {
    font-size: 1rem;
}

main ul {
    padding-left: 0.75rem;
}

main ul li {
    margin-bottom: 0.75rem;
    padding-left: 0.5rem;
}

main ul li::marker {
    height: 10px;
    font-family: "Font Awesome 7 Pro";
    font-size: 0.7rem;
    font-weight: 700;
    content: '\f111';
    color: var(--primary-green);
    display: inline-block;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
}

main a {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 500;
}

main a:hover {
    text-decoration: underline;
    text-decoration-color: var(--primary-green);
    text-underline-offset: 0.25rem;
}

.process-steps .card {
    text-align: center;
    transition: all 0.2s ease-in-out;
}

.process-steps .card:hover {
    transform: scale(1.02);
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.process-steps .card::after {
    position: absolute;
    right: -2rem;
    top: 50%;
    transform: translateY(-50%);
    display: block;
    font-family: "Font Awesome 5 Pro";
    font-weight: 600;
    font-size: 2rem;
    content: '\f105';
    display: inline-block;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    color: var(--border-greylight);

    @media screen and (max-width: 1199.98px) {
        right: -1.25rem;
        font-size: 1.75rem;
    }

    @media screen and (max-width: 991.98px) {
        content: '\f107';
        top: unset;
        right: unset;
        left: 50%;
        bottom: -3rem;
        transform: translateX(-50%);
    }
}

.process-steps .col:last-of-type .card::after {
    display: none;
}

.process-steps .step {
    width: 3rem;
    height: 3rem;
    margin: 0 auto 2rem;
    border-radius: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-blue);
    font-size: 1.25rem;
    color: white;
}

.process-steps .col:nth-of-type(2) .step {
    background-color: var(--primary-green);
}

footer {
    height: 50px;
    background-color: var(--primary-blue);
}