:root {
    --navbar-height: 82px;
}
body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}
summary {
    outline: none !important;
    font-weight: bold;
}
summary:hover {
    cursor: pointer;
}
nav {
    position: fixed;
    display: flex;
    align-items: center;
    width: 100vw;
    top: 0;
    background: white;
    height: var(--navbar-height);
    box-shadow: 0 2px 2px -2px rgba(0, 0, 0, 0.3);
}
nav > a {
    height: 100%;
    display: flex; 
    align-items: center;
}
nav > a > img {
    margin-left: 32px;
    height: 50%; 
}
nav > a:hover {
    text-decoration: underline;
}
nav > ul {
    display: inline;
    margin-left: auto; 
    margin-right: 32px;
    list-style: none;
}
nav > ul > li {
    display: inline;
}
nav > ul > li > a {
    color: black;
    font-weight: 700;
    font-size: 20px;
    text-decoration: none;
}
nav > ul > li > a:hover {
    text-decoration: underline;
}
.sector-name {
    text-align: center;
    font-size: 44px;
    margin-top: calc(var(--navbar-height) + 64px);
}
.intro {
    font-size: 20px;
    text-align: center;
    line-height: 26px;
    margin: 0 20vw;
    margin-bottom: 40px;
}
.row {
    margin: 0 10vw;
    text-align: center;
}
.row > div {
    margin-top: 32px;
}
.row > div > h2 {
    font-size: 36px;
}
.row > div > p,
.row > div > ul > li {
    text-align: justify;
    line-height: 24px;
}
.row > div > img {
    width: 100%;
    height: 300px;
    border-radius: 4px;
    object-fit: cover;
}
body > div.row > div > details > p,
body > div.row > div > details > ol,
body > div.row > div > details > ol > li,
body > div.row > div > details > ul,
body > div.row > div > details > ul > li,
body > div.row > div > details > ul > li > ol,
body > div.row > div > details > ul > li > ol > li {
    text-align: justify;
    line-height: 24px;
}
.partners > div {
    display: flex;
    align-items: center;
    height: 140px;
    padding: 24px;
}
.partners > div > img {
    width: 100%;
    object-fit: contain;
}
.bottom-link {
    display: flex;
    justify-content: center;
    margin: 56px;
}
.bottom-link > div {
    color: black;
    background: white;
    font-weight: 700;
    font-size: 26px;
    text-decoration: none;
    width: 56px;
    height: 56px;
    border: 2px solid rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s;
}
.bottom-link > div:hover {
    color: white;
    background: black;
    cursor: pointer;
}
@media screen and (max-width: 767px) {
    nav > ul > li > a {
        font-size: 16px;
    }
    .intro {
        font-size: 16px;
        margin: 0 16px;
    }
    .row:first-of-type {
        margin-top: 0;
    }
    .row {
        margin: 0;
        text-align: center;
    }
    .row > div > p { 
        margin: 0 16px;
    }
    .row > div > img {
        border-radius: 0;
    }
    .row > div > details > p {
        margin: 0 16px;
    }
}
@media screen and (max-width: 410px) {
    nav > ul {
        display: none;
    }
}