
/*
Färgkoder

Blue: #4d75a0
Dark Blue: #3C5A75;
Yellow: #EBBC00;
Green: #9EBE8A;

Blue filter: filter: brightness(0) saturate(100%) invert(39%) sepia(61%) saturate(390%) hue-rotate(170deg) brightness(96%) contrast(84%);
Yellow filter: brightness(0) saturate(100%) invert(65%) sepia(99%) saturate(646%) hue-rotate(359deg) brightness(103%) contrast(105%);
*/

.scroll-to {
    display: block;
    position: relative;
    top: -74px;
    visibility: hidden;
}

body {
    font-family: century-gothic, sans-serif;
    font-weight: 400;
    font-style: normal;
    background-color: #ffff;
}

a {
    color: #4d75a0;
}

a:hover {
    color: #3C5A75;
}


hr {
    width: 25%;
    margin: 0 auto;
    color: #FFC300;
    opacity: 1;
    border-width: 3px;
}

strong, b {
    font-weight: 700;
}

.navbar-brand {
    font-weight: bold;
}

.navbar-brand img{
    height: auto;
    width: 160px;
}
.navbar-toggler {
    border: 0;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.hero-section {
    background-image: url(hero2.jpg);
    background-size: cover;
    background-position: center;
    color: white;
    padding: 100px 0;
    text-align: center;
    height: calc(100vh - 74px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-top: 74px;
}

#aims-section {
    background-image: url(hero2.jpg);
    background-size: cover;
    background-position: center;
}

@media screen and (min-width: 768px) {

    .hero-section,
    #aims-section {
        background-attachment: fixed;
    }
}


.hero-section h1 {
    font-size: clamp(2.5rem, 1.9906rem + 2.5078vw, 5rem);
    margin-bottom: 1rem;
    font-weight: 400;
}

.hero-section p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.section-heading {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: #4d75a0;
}

.feature-item {
    background-color: white;
    border-radius: .5rem;
    padding: 2rem;
    height: 100%; /* Ensure cards are same height */
}

#aims-section .section-heading {
     margin-bottom: 2rem;
}

.feature-icon img {
    width: 56px;
    height: auto;
    margin-bottom: 0.5rem;
    filter: brightness(0) saturate(100%) invert(39%) sepia(61%) saturate(390%) hue-rotate(170deg) brightness(96%) contrast(84%);
}
.list-item-icon img {
    width: 24px;
    height: auto;
    margin-right: 8px;
    filter: brightness(0) saturate(100%) invert(39%) sepia(61%) saturate(390%) hue-rotate(170deg) brightness(96%) contrast(84%);
}


.cta-section {
    background-color: #e9ecef; /* Light gray background */
    padding: 5rem 0;
    text-align: center;
    color: #3C5A75;
}

.footer {
    background-color: #3C5A75; /* Dark background */
    color: white;
    padding: 40px 0;
    text-align: center;
}

.btn-primary {
    background-color: #4D75A0;
    border-color: #4D75A0;
    border-radius: 30px;
    padding: 12px 30px;
    font-size: 1rem;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

    .btn-primary:hover {
        background-color: #3C5A75;
        border-color: #3C5A75;
    }


.btn-hero {
    background-color: transparent;
    border: 1px solid #ffffff;
    border-radius: 30px;
    padding: 12px 30px;
    font-size: 1rem;
    color: #ffffff;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

    .btn-hero:hover {
        background-color: #3C5A75;
        border-color: #3C5A75;
        color: #ffffff;
    }





.py-vw {
    padding-top: clamp(48px, 6vw, 80px);
    padding-bottom: clamp(48px, 6vw, 96px);
}




