*, *::before, *::after
{
    box-sizing: border-box;
}

body
{
    margin:0;
    font-family:"questa-sans",sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

h2
{
    color: #7c776b;
}

a
{
    color:#000;
    text-decoration: underline;
    transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
}

a:hover
{
    color: #7c776b;
    text-decoration: unset;
}

header
{
    padding: 1rem 0;
    border-bottom: 1px solid #e5e5e5;
    height: 6rem;
}

.navbar-brand img
{
    height: 40px;
}

.navbar-nav .nav-link
{
    color: #7c776b;
    text-align: center;
    margin-bottom: -1rem;
}

.navbar .container
{
    justify-content: center;
}

.flex-regions
{
    display:flex;
    align-items:center;
    justify-content:center;
    flex-direction: column;
    height: calc(100vh - 6rem);
}

.region-link
{
    display:block;
    border-top: 2px solid #7c776b;
    color:#7c776b;
    text-transform:uppercase;
    font-weight:600;
    font-size: 5vw;
    text-decoration:none;
    text-align:center;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
}

.region-link:last-child
{
    border-bottom: 2px solid #7c776b;
}

.region-link:hover
{
    background:#7c776b;
    color:#fff;
}

@media (min-width: 768px )
{
    .flex-regions
    {
        flex-direction: row;
    }

    .region-link
    {
        font-size: 2vw;
        border-top: 2px solid #7c776b;
        border-bottom: 2px solid #7c776b;
        border-right: 2px solid #7c776b;
    }

    .region-link:last-child
    {
        border-right: none;
    }
}


.btn-dark {
    background-color: #7c776b;
    color: #fff;
    margin-left: 1rem;
}

.btn-dark svg{
    height: 1rem;
    width: 1rem;
}

.btn-go-back
{
    background-color: #7c776b;
    color: #fff;
    width: fit-content;
    margin-top: 1rem;
}

.btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    border: 0;
    border-radius: 0;
    font-weight: 500;
    text-align: center;
    text-transform: uppercase;
    box-sizing: border-box;
    font-size: 14px;
    padding: 10px 18px;
}

.page-header-container
{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
    padding: 3rem 0;
}

.page-header
{
    background-color: rgb(229, 228, 226, 0.4);
}

.page-header h1
{
    font-size: 2rem;
    border: 5px solid #7c776b;
    color: #7c776b;
    padding: 0.5rem;
    display: inline-block;
    width: 100%;
    max-width: 100%;
    word-break: break-word;
}

.headerThumbnail
{
    width: 100%;
    max-width: 925px;
    background-size: cover;
    background-position: center;
    aspect-ratio: 925 / 272;
}

.headerThumbnail img
{
    width: 100%;
    object-fit: cover;
}

@media ( min-width: 1024px )
{
    .page-header-container
    {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        text-align: left;
    }

    .headerThumbnail img
    {
        margin-bottom: -20rem;
    }

    .page-header h1
    {
        width: 50%;
        margin: auto;
        border: 20px solid #7c776b;
        padding: 3rem;
        text-align: center;
    }

    .headerThumbnail
    {
        width: 50%;
    }
}

.page-content
{
    padding: 2rem 0;
    flex: 1;
}

.flexSectionContent
{
    font-size: 1rem;
    line-height: 28px;
    text-align: left;
    color: #0c0c0c;
}

.flexSection
{
    margin-bottom: 1rem;
}

.documentsGroup
{
    margin-top:2rem;
}

.documentsGroup h1
{
    color:#7c776b;
    margin-bottom: 2rem;
}

.documentSubGroup h3
{
    margin:0 0 .75rem;
    font-size:1rem;
    font-weight:600;
    color:#7c776b;
}

.documentSubGroup + .documentSubGroup
{
    margin-top:2rem
}

.fileList
{
    list-style:none;
    margin:0;
    padding:0
}

.fileItem
{
    padding: 1rem 0;
    border-bottom:1px solid #e5e5e5;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.fileItem:first-child
{
    padding-top: 0;
}

.fileName
{
    font-weight:500;
    color:#000
}

.filesWrapper
{
    display:flex;
    gap:.5rem;
    flex-wrap:wrap;
    justify-content: flex-end;
    margin-top:.25rem;
}

.btn-download
{
    border:1px solid #7c776b;
    background:transparent;
    color:#7c776b;
    font-size:.875rem;
    text-transform:uppercase;
    display:flex;
    align-items:center;
    gap:.25rem;
    padding:.25rem .6rem;
    line-height:1;
    transition:background .3s, color .3s, opacity .3s;
}

.btn-download img
{
    width:14px;
    height:18px;
    flex-shrink:0;
}

.btn-download:hover
{
    opacity: 0.3;
}

.contactItem
{
    padding-bottom: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.border-bottom
{
    border-bottom: 1px solid #e5e5e5;
    padding-bottom: 1rem;
}

.contactInfos .contactLink
{
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
}

.contactInfos .contactLink a
{
    color:#000;
    text-decoration: unset;
    transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
}

.contactInfos .contactLink a:hover
{
    color: #7c776b;
    text-decoration: unset;
}

.contactInfos .contactLink svg
{
    margin-right: 0.5rem;
}

address
{
    color: #7c776b;
}

footer
{
    padding: 1rem 0;
    border-top: 1px solid #e5e5e5;
    font-size: 0.9rem;
}

.footer-container
{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 0 1rem;
}

.footer-menu
{
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 1rem;
}

.footer-menu a
{
    text-decoration: none;
    color: inherit;
}