    /* !VARIABLES ============================================================== */
:root {
    --bs-white: #FFFFFA;
    --bs-text: #2C2B28;
    --bs-grey: #5C5A54;
    --bs-lightgrey: #bfbbae;
    --bs-yellow: #FDC40E;
    
    --basesize: 14px;
    @media screen and (min-width: 640px) { --basesize: 16px; }
    @media screen and (min-width: 1600px) { --basesize: 18px; }
    
    font-size: var(--basesize);
}

/* RESET =================================================================== */
*, *::before, *::after {
    box-sizing: border-box;
}
* {
    margin: 0;
}
body {
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}
img, picture, video, canvas, svg {
    display: block;
    max-width: 100%;
    height: auto;
}
input, button, textarea, select {
    font: inherit;
}
p, h1, h2, h3, h4, h5, h6 {
    overflow-wrap: break-word;
}
/* end of reset */
/* !Basics & Typography ==================================================== */

body {
    font-family: "Fira Sans", sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5rem;
    background-color: var(--bs-white);
    color: var(--bs-text);
    
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Fira Sans", sans-serif;
    font-weight: 800;
    line-height: 1.25;
    color: var(--bs-grey);
}

p, h1, h2, h3, h4, h5, h6, ul, ol {
    margin-bottom: 1rem;
}
h1 { font-size: 2.5rem; line-height: 3rem; }
h2 { font-size: 2rem; line-height: 2rem; }
h3 { font-size: 1.5rem; line-height: 2rem; }

.container {
    width: 90%;
    max-width: 960px;
    margin: 0 auto 2rem;
}
.wideContainer {
    width: 100%;
    max-width: 1280px;
    /* padding: 0 5%; */
    margin: auto;
}
hr {
    margin: 1rem 0;
}

/* ====================================================================== */
.mainHeader {
    padding: 2rem 0;
}
.siteTitle {
    width: 98%;
    display: flex;
    justify-content: flex-end;
    background-image: url(../images/logogroup.png);
    background-size: cover;
    background-position: center right;
    a {
        display: inline-block;
        width: 240px;
        height: 240px;
        text-indent: -9999px;
    }
}
 @media screen and (min-width: 920px) {
     .siteTitle a {
         width: 318px;
         height: 318px;
     }
 }
 @media screen and (min-width: 1600px) {
     .siteTitle a {
         width: 420px;
         height: 420px;
     }
 }
/* !nav ---------------------------------------------------------- */
.navList {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.navListItemLink { 
    text-decoration: none;
    color: var(--bs-text);
    background-color: transparent;
    padding: 0.5rem 1rem;
    border-radius: 1.5rem;
    &:hover {
        background-color: var(--bs-lightgrey);
    }
    &.active {
        background-color: var(--bs-yellow);
    }
}
.mainNav {
    font-size: 1.25rem;
    align-self: flex-start;
    .navList {
        transform: translateX(-1rem);
    }
}
@media screen and (min-width: 640px) {
    .mainNav {
        transform: translateY(-64px);
    }
}
@media screen and (min-width: 880px) {
    .mainNav {
        transform: none;
        width: 100%;
        position: absolute;
        top: 112px;
        left: 0;
        .navList {
            flex-direction: row;
            gap: 2rem;
        }
    }
}
/* !footer ========================================== */
.mainFooter {
    border-top: 1px solid var(--bs-yellow);
    padding-top: 4rem;
    margin-top: 4rem;
}
.mainFooterContent {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    
}
.footNav {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    .navList {
        display: flex;
        flex-direction: row;
    }
}
@media screen and (min-width: 880px) {
    .mainFooterContent {
        flex-direction: row;
        justify-content: space-between;
    }
}
/* !content ============================================ */
.article {
    margin-top: 4rem;
}
.block-2-column {
    width: 100%;
    max-width: 60rem;
    display: flex;
    gap: 2rem;
    flex-direction: column;
}
.block-body {
    width: 100%;
    max-width: 30rem;
}
.block-image {
    width: 100%;
    max-width: 25rem;
    height: auto;
    border-radius: 1rem;
}
.block-image-bar {
    display: flex;
    flex-direction: row;
    gap: 2rem;
    max-width: 25rem;
    .block-image {
        width: 45%;
    }
}
.block-logo {
    max-height: 6rem;
}
.block-logo-bar {
    max-height: 6rem;
}

@media screen and (min-width: 880px) {
    .article {
        margin-top: 8rem;
    }
    .block-2-column {
        flex-direction: row;
        align-items: flex-start;
        justify-content: space-between;
    }
    .text-block-right {
        flex-direction: row-reverse;
    }
    section > .block-image {
        margin-top: 8rem;
    }
}

#map { 
    display: block;
    height: 320px;
    width: 100%;
    margin-bottom: 2rem;
    border-radius: 1rem;
    /* outline: 1px solid var(--bs-yellow);
    outline-offset: .5rem; */
}


