/*GENERAL STUFF*/

body {
    background-color: #ffffff;
    position: relative;
}

p {
    font-family: "neue-haas-grotesk-text", sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 16px;
    color: #373737;
    line-height: 28px;
    display: inline;
}

h1 {
    font-family: "neue-haas-grotesk-text", sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 18px;
    color: #373737;
}

h2 {
    font-family: "neue-haas-grotesk-text", sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 16px;
    color: #373737;
    line-height: 24px;
    display: inline;

}

a:link {
    color: #373737;
    text-decoration: none;
}

a:visited {
    color: #373737;
    text-decoration: none;
}

a:hover {
    color: #373737;
    text-decoration: none;
}

a:active {
    color: #373737;
    text-decoration: none;
}

/*NAVIGATION*/

/* header */

.header {
    background-color: #ffffff;
    width: 100%;
    z-index: 3;
    padding-top: 50px;
    padding-bottom: 50px;
}

.header ul {
    margin: 0;
    padding: 0;
    list-style: none;
    overflow: hidden;
    background-color: #ffffff;
}

.header li a {
    display: inline-block;
    text-decoration: none;
    margin-right: 50px;
    margin-bottom: 3px;
}

.header .katie {
    float: left;
    padding-left: 50px;
    text-decoration: none;
    margin-top: 3.5px;
}

/* menu */

.header .menu {
    clear: both;
    max-height: 0;
    transition: max-height .2s ease-out;
    display: flex;
}


/* menu icon */

.header .menu-icon {
    cursor: pointer;
    display: inline-block;
    float: right;
    position: relative;
    margin-right: 40px;
    user-select: none;
    padding: 10px;
}

.header .menu-icon .navicon {
    background: #373737;
    display: block;
    height: 3px;
    position: relative;
    transition: background .2s ease-out;
    width: 25px;
}

.header .menu-icon .navicon:before,
.header .menu-icon .navicon:after {
    background: #373737;
    content: '';
    display: block;
    height: 100%;
    position: absolute;
    transition: all .2s ease-out;
    width: 100%;
}

.header .menu-icon .navicon:before {
    top: 8px;
}

.header .menu-icon .navicon:after {
    top: -8px;
}

/* menu btn */

.header .menu-btn {
    display: none;
}

.header .menu-btn:checked ~ .menu {
    max-height: 240px;
}

.header .menu-btn:checked ~ .menu-icon .navicon {
    background: transparent;
}

.header .menu-btn:checked ~ .menu-icon .navicon:before {
    transform: rotate(-45deg);
}

.header .menu-btn:checked ~ .menu-icon .navicon:after {
    transform: rotate(45deg);
}

.header .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:before,
.header .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:after {
    top: 0;
}

@media only screen and (min-width: 600px) {
    .header li {
        text-align: right;
    }


    .header .menu {
        clear: none;
        float: right;
        max-height: none;
    }

    .header .menu-icon {
        display: none;
    }
}

@media only screen and (max-width: 599px) {
    .header li {
        text-align: left;
        margin-top: 20px;
        margin-left: 50px;
    }

    .header li h1 {
        font-size: 36px;
        color: #909090;
    }

    .photo {
        margin-top: 50px;
    }

    .header .menu {
        flex-direction: column;
    }
}


/*MAIN CONTENT*/
.about-content {
    display: grid;
    width: 70vw;
    grid-template-columns: 50% 50%;
    grid-column-gap: 50px;
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -45%);

}

.about-content img {
    width: 100%;
}

@media only screen and (min-width: 900px) {
    body {
        height: 100vh;
    }
}

@media only screen and (max-width: 899px) {
    .about-content {
        grid-template-columns: auto;
        grid-template-rows: auto auto;
        position: relative;
        grid-column-gap: 0px;
        top: auto;
        left: auto;
        transform: none;
        margin: auto;
        padding-top: 20px;
        width: 80%;
        padding-bottom: 150px;
    }

    .about-content img {
        margin-bottom: 25px;
    }
}

@media only screen and (max-width: 599px) {
    .about-content {
        padding-top: 0px;
        padding-bottom: 400px;
    }
}


/*FOOTER*/
.footer {
    bottom: 0;
    padding-top: 30px;
    padding-bottom: 30px;
    margin: auto;
    text-align: center;
    border-top: 1px solid #909090;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    position: absolute;
    left: 50px;
    right: 50px;
}

.footer h1 {
    padding: 5px;
    color: #909090;
}

@media only screen and (max-width: 600px) {
    .footer h1 {
        text-align: left;
        font-size: 36px;
        margin-top: 15px;
    }

    .footer {
        display: grid;
    }
}
