html,
body {
    font-family: 'Lato', sans-serif;
    height: 100vh;
    width: 100vw;
    overflow-x: hidden;
    background-color: black;
    display: flex;
    flex-direction: column;

}

body {
    background-image: url("/static/images/kelly-sikkema-vtKc7BpJ-vU-unsplash.jpg");
    background-size: cover;
    z-index: 1;
}

body::before {
    content: "";
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    position: absolute;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: -1;
}

a {
    text-decoration: none;
    color: inherit;
}

.wrapper {
    display: flex;
    flex-direction: row;
    flex: 1;
}


.wrapper__navigation {
    width: 300px;
    height: 530px;
    margin-top: 50px;
    background-color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 1;
    position: relative;
}

.wrapper__navigation__inside {
    margin-top: 25px;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 15px;
    color: rgb(50, 30, 71);
}

.wrapper__navigation_btn {
    height: 50px;
    display: flex;
    width: 100%;
    font-weight: normal;
    background-color: white;
    font-size: 1.5em;
    transition: color 0.1s ease-in;
}

.wrapper__navigation_btn a {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wrapper__navigation_btn:hover {
    background-color: rgb(50, 30, 71);
    color: white;
}

.wrapper__navigation_logo {
    color: rgb(50, 30, 71);
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 2px solid rgb(50, 30, 71);
    width: 100%;
    font-size: 2em;
    font-weight: bold;
}

.wrapper__navigation_logo img {
    height: 80%;
}

.contact-us {
    margin-top: 20px;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-flow: column;
    background-color: rgb(50, 30, 71);
    color: white;
    font-size: 1em;

}

.contact_us h1 {
    padding: 0px;
    font-size: 2em;
}

.contact-us__inside {
    display: flex;
    width: 80%;
    justify-content: center;
    align-items: center;
    flex-flow: column;
    color: white;
    font-size: 1em;
}

.contact-us__inside__social-media {
    display: flex;
    flex-direction: row;
    gap: 15px;
    align-items: center;
    justify-content: center;
}

.contact-us__inside__social-media_btn {
    display: flex;
    align-items: center;
}

.contact-us__inside__social-media_btn>a {
    margin-left: 10px;
}

.contact-us__inside__social-media__location {
    margin-top: 10px;
}

.wrapper__inside__information__contact__email {
    color: purple;
    margin-left: 5px;
}

.wrapper__inside__information {
    margin-left: 100px;
    background-color: white;
    min-height: 80%;
    margin-top: 50px;
    z-index: 1;
    display: flex;
    flex-direction: column;
    padding-left: 30px;
    width: 60%;
    padding-bottom: 20px;
    font-size: 1rem;
}

.wrapper__inside__information__wrapper {
    width: 60%;
}

.wrapper__inside__information__top__spacer {
    width: 100%;
    height: 2px;
    background-color: black;
}

.wrapper__inside__information__bottom {
    margin-top: 20px;
    display: flex;
    flex-direction: row;
    width: 100%;
    height: 100%;
}



.wrapper__inside__information__bottom__text {
    margin-left: 20px;
    width: 80%;
    word-wrap: break-word;
}


.wrapper__inside__information__wrapper img {
    width: 100%;
}

.wrapper__inside__information__wrapper__table {
    width: 100%;
    margin-top: 20px;
    text-align: left;
    align-items: center;
    font-size: 1.2em;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
}

.wrapper__inside__information__wrapper__table_img {
    margin-top: 20px;
    text-align: left;
    align-items: center;
    font-size: 20px;
    display: grid;
    grid-template-columns: 0.5fr 1fr;
    column-gap: 10px;
    row-gap: 10px;
    grid-template-rows: auto;
}

.wrapper__inside__information__wrapper__table_img div img {
    width: 340px;
}

.wrapper__mobile-navbar {
    width: 100%;
    height: 5vh;
    background-color: rgb(50, 30, 71);
    display: none;
    flex-direction: row;
    color: white;
    align-items: center;
    padding: 5px;
}

.wrapper__mobile-navbar__menu {
    width: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}


.fullscreen-navbar {
    position: absolute;
    height: 100%;
    width: 100%;
    background-color: rgb(50, 30, 71);
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    display: none;
}

.fullscreen-navbar__btn__wrapper__logo {
    width: 100%;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100px;
    background-color: rgb(148, 117, 182);
}

.fullscreen-navbar__btn__wrapper__logo img {
    height: 80%;
}

.fullscreen-navbar__btn__wrapper {
    width: 100%;
}

.fullscreen-navbar_close_btn {
    background-color: rgb(150, 125, 177);
    margin-top: auto;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.fullscreen-navbar__btn__wrapper__btn {
    color: white;
    background-color: rgb(50, 30, 71);
    width: 100%;
    height: 50px;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wrapper__inside__information__homepage-images {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

@media only screen and (max-device-width: 1440px) {
    .wrapper__navigation {
        display: none;
    }

    .wrapper__inside__information {
        margin-left: 0%;
        margin-top: auto;
        width: 100%;
        align-items: center;
        min-height: unset;
        height: 100%;
    }

    .wrapper {
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .wrapper__inside__information__wrapper__table_img {
        display: flex;
        flex-direction: column;
    }

    .wrapper__inside__information__bottom {
        flex-direction: column;
    }

    .wrapper__mobile-navbar {
        display: flex;
    }

    .contact-us {
        margin: unset;
    }

    .contact-us__inside__social-media {
        display: flex;
        flex-direction: column;
    }
}