@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100..900&family=Spectral:wght@400;700&display=swap');

html, body {
    height: 100%;
    color: black;
}

.banner {
    width: 100%;
    background-color: #F5F5F5;
    color: black;
    text-align: center;
    padding: 20px 0;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 15px;
    line-height: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

div[name="page-wrapper"] {
    min-height: 100%;
    display: flex;
    flex-direction: column;
}
div[name="main"] {
    flex: 1;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Montserrat', sans-serif;
    line-height: 20px;
    color: black;
}
h1 {
    width: 380px;
    font-family: 'Spectral', serif;
    font-weight: 700;
    font-size: 65px;
    line-height: 68px;
    color: white;
    align-items: center;
    letter-spacing: 8px;
    font-variant: small-caps;
    text-align: center;
}
h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 17px;
    line-height: 21px;
    color: #1C2550;
    letter-spacing: 3px;
    text-transform: uppercase;
}
h3 {
    font-weight: 700;
    font-size: 14px;
    line-height: 17px;
    color: white;
    letter-spacing: 4px;
    text-transform: uppercase;

}
div[name="nav-links"] a {
    font-family: 'Spectral', serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 27px;
    color: black;
    letter-spacing: -0.2px;
    text-decoration: none;
    transition: color 0.2s;
}
a[name="brand"] {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 17px;
    line-height: 22px;
    color: #1C2550;
    text-decoration: none;
    letter-spacing: 3px;
    text-transform: uppercase;
    transition: color 0.2s;
}
a[name="brand"] span {
    font-weight: 700;
}
p[name="main-text"] {
    font-family: 'Spectral', serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 35px;
    color: #1C2550;
    text-align: left;
}
p[name="footer-text"] {
    width: 500px;
    line-height: 22px;
    font-size: 14px;
    color: #1C2550;
}
p[name="footer-text"] a {
    color: inherit;
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    text-decoration: underline;
    transition: color 0.2s;
}
p[name="footer-text"] a:hover {
    color: #9c1919;
}
div[name="nav"] {
    display: flex;
    flex-direction: row;
    padding: 25px 40px 25px 40px;
    position: sticky;
    top: 0;
    z-index: 100;
    background: #fff;
}
div[name="nav-wrapper"] {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}
div[name="nav-links"] {
    display: flex;
    flex-direction: row;
    gap: 15px;
}
div[name="hidden-menu"]  {
    display: none;
    padding: 5px;
    font-family: 'Spectral', serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 27px;
    letter-spacing: 4px;
    text-transform: uppercase;
    cursor: pointer;
}
div[name="hero"] {
    display: flex;
    justify-content: center;
    padding: 0px 20px 0px 20px;
    width: 100%;
}
div[name="hero-content"] {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    padding: 0px 20px 50px 20px;
    width: 100%;
    height: 600px;
    border-radius: 16px;
}
div[name="hero-content"].hero {
    height: 700px;
    background:
        linear-gradient(0deg, rgba(0, 0, 0, 0.8) 20%, transparent 100%),
        url('https://raw.githubusercontent.com/beanboi-svg/4391/main/assets/asset-1.png');
    background-size: cover;
    background-position: center;
}
div[name="hero-content"].about {
    background:
        linear-gradient(0deg, rgba(0, 0, 0, 0.8) 20%, transparent 100%),
        url('https://raw.githubusercontent.com/beanboi-svg/4391/main/assets/asset-3.png');
    background-size: cover;
    background-position: center;
}
div[name="hero-content"].leadership {
    background:
        linear-gradient(0deg, rgba(0, 0, 0, 0.8) 20%, transparent 100%),
        url('https://raw.githubusercontent.com/beanboi-svg/4391/main/assets/asset-4.png');
    background-size: cover;
    background-position: center;
}
div[name="hero-content"].information {
    background:
        linear-gradient(0deg, rgba(0, 0, 0, 0.8) 20%, transparent 100%),
        url('https://raw.githubusercontent.com/beanboi-svg/4391/main/assets/asset-5.png');
    background-size: cover;
    background-position: center;
}
div[name="hero-logo"] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 7px;
    width: 100%;
}
div[name="main-wrapper"] img {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: auto;
}
div[name="main"] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 80px 0px 80px 0px;
    max-width: 700px;
    width: 100%;
    margin: 0 auto;
    gap: 0px;
}
div[name="main-header"] {
    display: flex;
    flex-direction: column;
    justify-content: left;
    padding: 50px 0px 30px 0px;
    width: 100%;
}
div[name="footer"] {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
}
div[name="footer-wrapper"] {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 50px 0px 50px 0px;
    max-width: 1000px;
    width: 100%;
    border-top: 1px solid #E0E5EF;
}
div[name="socials-wrapper"] {
    display: flex;
    gap: 0;
}
div[name="socials-wrapper"] a {
    display: flex;
    text-decoration: none;
    color: #1C2550;
    display: inline-block;
    transition: color 0.2s;
    margin: 0;
    gap: 0;
}
div[name="socials-wrapper"] svg {
    width: 40px;
    height: auto;
    display: block;
}
::selection {
  background-color: #1C2550;
  color: white;
}
div[name="menu-hidden"] {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: white;
    z-index: 1000;
    flex-direction: column;
}
div[name="menu-hidden-close"] {
    padding: 10px;
    font-family: 'Spectral', serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 27px;
    letter-spacing: 4px;
    text-transform: uppercase;
    cursor: pointer;
    color: #1C2550;
}
div[name="menu-hidden-wrapper"] {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

div[name="menu-hidden-wrapper"] a {
    font-family: 'Spectral', serif;
    font-weight: 400;
    font-size: 20px;
    color: #1C2550;
    text-decoration: none;
    letter-spacing: 0;
}

@media (min-width: 768px) and (max-width: 1024px) {
    h1 {
        width: 255px;
        font-size: 45px;
        line-height: 50px;
        align-items: center;
        letter-spacing: 5px;
    }
    h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    line-height: 20px;
    }
    h3 {
        font-weight: 700;
        font-size: 13px;
        line-height: 15px;
        letter-spacing: 4px;
    }
    p[name="main-text"] {
        font-size: 18px;
        line-height: 32px;
    }
    p[name="footer-text"] {
        width: 400px;
        line-height: 22px;
        font-size: 12px;
    }
    div[name="nav"] {
        padding: 25px
    }
    div[name="menu-hidden"] {
        display: flex;
        background-color: #C0DBEE;
    }
    div[name="menu-hidden-wrapper"] {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 5px;
        font-size: 55px;
        font-weight: 700;
        line-height: 55px;
        text-transform: uppercase;
        letter-spacing: 5px;
    }
    div[name="menu-hidden-wrapper"] a {
        font-family: 'Spectral', serif;
        font-weight: 400;
        letter-spacing: 0;
        text-transform: none;
    }
    div[name="menu-hidden-close"] {
        display: flex;
        justify-content: right;
        padding: 25px;
    }
    div[name="close"] {
        padding: 5px;
    }
    div[name="menu-hidden-close-wrapper"] {
        padding: 25px;
    }
    div[name="nav-wrapper"] {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }
    div[name="nav-links"] {
        display: none;
    }
    div[name="hidden-menu"]  {
        display: flex;
    }
    div[name="hero"] {
        padding: 0px 15px 0px 15px;
    }
    div[name="hero-content"].hero {
        height: 500px;
    }
    div[name="main"] {
        padding: 60px 0px 60px 0px;
        max-width: 600px;
    }
    div[name="footer"] {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        width: 100%;
    }
    div[name="footer-wrapper"] {
        padding: 40px 0px 40px 0px;
        max-width: 650px;
    }
    div[name="socials-wrapper"] svg {
        width: 38px;
        height: auto;
        display: block;
    }
        a:active,
div[name="nav-links"] a:active,
a[name="brand"]:active,
div[name="hidden-menu"]:active,
div[name="menu-hidden-wrapper"] a:active,
div[name="socials-wrapper"] a:active {
    color: #9c1919;
}
}

@media (min-width: 320px) and (max-width: 768px) {
    div[name="menu-hidden"] {
        background-color: #C0DBEE;
        display: flex;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1000;
        flex-direction: column;
    }
    h1 {
        width: 200px;
        font-weight: 600;
        font-size: 31px;
        line-height: 33px;
        letter-spacing: 5px;
    }
    h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    line-height: 18px;
    }
    h3 {
        font-size: 10px;
        line-height: 12px;
        letter-spacing: 2px;
    }
    div[name="nav-links"] a {
        display: none;
    }
    div[name="hidden-menu"] {
        display: flex;
        padding: 10px;
        font-family: 'Spectral', serif;
        font-weight: 700;
        font-size: 14px;
        line-height: 27px;
        letter-spacing: 4px;
        text-transform: uppercase;
        cursor: pointer;
        color: #1C2550;
    }

    div[name="menu-hidden-close"] {
        padding: 10px;
        font-family: 'Spectral', serif;
        font-weight: 700;
        font-size: 14px;
        line-height: 27px;
        letter-spacing: 4px;
        text-transform: uppercase;
        cursor: pointer;
        color: #1C2550;
    }
    div[name="menu-hidden-close-wrapper"] {
        padding: 20px;
    }
    div[name="menu-hidden-close"] {
        display: flex;
        justify-content: right;
        padding: 20px;
    }
    div[name="close"] {
        padding: 10px;
    }
    div[name="menu-hidden-wrapper"] {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        font-size: 42px;
        font-weight: 700;
        line-height: 52px;
        letter-spacing: 5px;
    }
    div[name="menu-hidden-wrapper"] a {
        font-family: 'Spectral', serif;
        font-weight: 400;
        letter-spacing: 0;
    }
a[name="brand"] {
    width: 140px;
    font-size: 14px;
    line-height: 18px;
    text-align: left;
}
p[name="main-text"] {
    font-size: 15px;
    line-height: 28px;
}
p[name="footer-text"] {
    width: 320px;
    line-height: 22px;
    font-size: 12px;
    text-align: center;
}
div[name="nav"] {
    padding: 20px;
}
div[name="nav-wrapper"] {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}
div[name="nav-links"] {
    display: flex;
    flex-direction: row;
    gap: 15px;
}
div[name="hidden-menu"]  {
    font-size: 14px;
    line-height: 21px;
    letter-spacing: 4px;
}
div[name="hidden-menu"]:hover {
    color: #9c1919;
    transition: color 0.2s;
}
div[name="hero"] {
    display: flex;
    justify-content: center;
    padding: 0px 15px 0px 15px;
    width: 100%;
}
div[name="hero-content"] {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    padding: 0px 0px 30px 00px;
    width: 100%;
    height: 400px;
    border-radius: 16px;
}
div[name="hero-content"].hero {
    height: 400px;
}
div[name="hero-logo"] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 7px;
    width: 100%;
}
div[name="main-wrapper"] img {
    display: flex;
    justify-content: center;
}
div[name="main"] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 30px 20px 30px 20px;
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
}
div[name="footer"] {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0px 20px 0px 20px;
    width: 100%;
}
div[name="footer-wrapper"] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 30px 0px 30px 0px;
    max-width: 1000px;
    width: 100%;
    border-top: 1px solid #E0E5EF;
}
div[name="socials-wrapper"] {
    display: flex;
    gap: 0;
}
div[name="socials-wrapper"] a {
    display: flex;
    text-decoration: none;
    color: #1C2550;
    display: inline-block;
    transition: color 0.2s;
    margin: 0;
    gap: 0;
}
div[name="socials-wrapper"] a:hover {
    color: #9c1919;
}
div[name="socials-wrapper"] svg {
    width: 35px;
    height: auto;
    display: block;
}
}
@media (max-width: 1024px) {
    div[name="menu-hidden-wrapper"] {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 25px;
        padding: 40px;
        width: 100%;
        height: auto;
        font-size: unset;
        font-weight: unset;
        line-height: unset;
        text-transform: unset;
        letter-spacing: unset;
    }
    div[name="menu-hidden-wrapper"] a {
        font-family: 'Spectral', serif;
        font-weight: 400;
        font-size: 36px;
        line-height: 46px;
        letter-spacing: 0;
        text-transform: none;
        color: #1C2550;
        text-decoration: none;
        padding: 0;
        margin: 0;
        text-align: left;
        transition: color 0.2s;
    }
    div[name="menu-hidden-wrapper"] a:hover {
        color: #9c1919;
    }
    div[name="hidden-menu"],
    div[name="menu-hidden-close"] {
        transition: color 0.2s;
    }
}
@media (hover: hover) and (pointer: fine) {
    div[name="nav-links"] a:hover {
        color: #9c1919;
    }
    a[name="brand"]:hover {
        color: #9c1919;
    }
    div[name="hidden-menu"]:hover {
        color: #9c1919;
        transition: color 0.2s;
    }
    div[name="socials-wrapper"] a:hover {
        color: #9c1919;
    }
    div[name="menu-hidden-wrapper"] a:hover {
        color: #9c1919;
    }
    div[name="hidden-menu"]:hover,
    div[name="menu-hidden-close"]:hover {
        color: #9c1919;
    }
    a:active,
div[name="nav-links"] a:active,
a[name="brand"]:active,
div[name="hidden-menu"]:active,
div[name="menu-hidden-wrapper"] a:active,
div[name="socials-wrapper"] a:active {
    color: #9c1919;
}
}

.banner a {
    color: inherit;
    text-decoration: underline;
}
