* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

@font-face {
    font-family: 'monserrat';
    src: url('fonts/Montserrat-Light.ttf');
}

.clrAccent {
    color: #1793AE;
}

body {
    margin: 0;
    display: flex;
    flex-direction: column;
    z-index: 0;
    overflow: hidden;

}

.header {
    /* background-color: red; */
    width: 100%;
    height: 8rem;
    display: flex;

}

.headerLeft {
    width: 50%;
}

.headerRight {
    width: 50%;
    background-color: #212529
}

#logo {
    width: 9rem;
    height: auto;
    margin-top: 2rem;
    margin-left: 3rem;
    z-index: 1;
}

.content {
    /* background-color: blue; */
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: row;
}

.content-text {
    width: 50vw;
    height: 100%;
    display: flex;
    justify-content: flex-end;
    /* background-color: brown; */
}

.content-foto {
    width: 50vw;
    height: 100%;
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    background-color: #212529;
}

.text {
    /* background-color: green; */
    height: 100%;
    width: 70%;
    padding-top: 5rem;
    padding-right: 5rem;
    font-family: monserrat;
    /* font-size: 1.3rem; */
}

.foto {
    width: 100%;
    height: 100%;
    margin-top: 5rem;
    /* background-color: yellow; */
    /* padding-left: 5rem */
}

.foto-text {
    font-family: monserrat;
    font-size: 1.5rem;
    color: white;
    padding-left: 2.5rem;
}

.fotoAndText {
    padding-top: 5rem;


}

ul {
    list-style: none;
}

ul li::before {
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    background: url('images/bulletpoint.png') no-repeat;
    background-size: cover;
    margin-right: 8px;
}

li {
    display: flex;
    align-items: center;
}

#foto {
    width: 85%;
}

@media (max-width: 1124px) {



    body {
        height: 100vh;
        width: 100vw;
        overflow: scroll;
    }

    .text {
        height: 100%;
        width: 90%;
        padding-top: 5rem;
        padding-right: 5rem;
        font-family: monserrat;
    }
}

@media (max-width: 864px) {

    html,
    body {
        height: 100%;
    }

    body {
        /* height: 100vh; */
        /* width: 100%; */
        overflow-x: hidden;
        overflow-y: scroll;
    }

    .content {
        display: flex;
        flex-direction: column;
        min-height: 100%;
    }

    .content-text {
        width: 100%;
        justify-content: center;
        height: 100%;
    }

    .content-foto {
        width: 100%;
        height: 100%;
        /* display: none; */
    }

    .headerRight {
        background-color: white;
    }

    #logo {
        width: 7rem;
        height: auto;
        margin-top: 1rem;
        margin-left: 2rem;
    }

    .text {
        margin: 0;
        padding: 0;
        justify-content: center;
        padding-bottom: 2rem;
        width: 90%;
        height: 100vh;
        padding-top: 2rem;
        font-size: 1rem;

    }


    .foto-text {
        display: none;
    }

    .fotoAndText {
        padding: 0;
    }

    .foto {
        height: 100%;
        margin: 0;
        display: flex;
        justify-content: center;
        /* display: none; */
    }

    * {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
    }
}

@media (max-width: 321px) {
.content-foto {
    display: none;
}
}
