:root {
    --font-family: "Bebas Neue", sans-serif;
    --font-family: "Poppins", sans-serif;
}

html {
    box-sizing: border-box;
    height: 100%;
    background-color: whitesmoke;

}

h1,
h2,
h3 {
    font-family: "Bebas Neue", sans-serif;
}


*,
*:before,
*:after {
    box-sizing: inherit;
}


/* HOME */

.body {
    font-family: "Bebas Neue", sans-serif;
}


a:link {
    color: black;
    text-decoration: none;
}

a:visited {
    color: black;
    text-decoration: none;
}

a:hover {
    color: white;
}

a:active {
    color: rgb(233, 250, 48);
}


.home-container {
    max-width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(480px, 1fr));
    grid-gap: 20px;
    background-color: rgb(230, 231, 219);
    padding: 2rem;
    margin: 5rem;
    border-radius: 20px;
}

.home__logo {
    max-width: 100%;
}

.home__btn-portfolio {
    font-family: "Bebas Neue", sans-serif;
    text-decoration: none;
    background-color: rgb(230, 231, 219);
    font-size: 5rem;
    font-weight: bolder;
    border: 1px solid black;
    text-align: center;
    border-radius: 1rem;
    padding: 1rem;
    transition: 0.3s;
}

.home__btn-portfolio:hover {
    color: white;
    background-color: rgb(250, 167, 167);
    border: 1px solid rgb(250, 167, 167);

}

.home__btn-fineart {
    font-family: "Bebas Neue", sans-serif;
    text-decoration: none;
    background-color: rgb(230, 231, 219);
    font-size: 5rem;
    font-weight: bolder;
    border: 1px solid black;
    text-align: center;
    border-radius: 1rem;
    padding: 1rem;
    transition: 0.3s;
}

.home__btn-fineart:hover {
    color: white;
    background-color: rgb(246, 148, 148);
    border: 1px solid rgb(246, 148, 148);
}

.home__btn-services {
    font-family: "Bebas Neue", sans-serif;
    text-decoration: none;
    background-color: rgb(230, 231, 219);
    font-size: 5rem;
    font-weight: bolder;
    border: 1px solid black;
    text-align: center;
    border-radius: 1rem;
    padding: 1rem;
}

.home__btn-services:hover {
    color: white;
    background-color: rgb(243, 202, 139);
    border: 1px solid rgb(243, 202, 139);
}


.home__btn-about {
    font-family: "Bebas Neue", sans-serif;
    text-decoration: none;
    background-color: rgb(230, 231, 219);
    font-size: 5rem;
    font-weight: bolder;
    border: 1px solid black;
    text-align: center;
    border-radius: 1rem;
    padding: 1rem;
    transition: 0.3s;
}

.home__btn-about:hover {
    color: white;
    background-color: rgb(194, 240, 241);
    border: 1px solid rgb(194, 240, 241)
}

.home__btn-resume {
    font-family: "Bebas Neue", sans-serif;
    text-decoration: none;
    background-color: rgb(230, 231, 219);
    font-size: 5rem;
    font-weight: bolder;
    border: 1px solid black;
    text-align: center;
    border-radius: 1rem;
    padding: 1rem;
    transition: 0.3s;
}

.home__btn-resume:hover {
    color: white;
    background-color: rgb(236, 206, 248);
    border: 1px solid rgb(236, 206, 248);
}

.home__btn-walk {
    font-family: "Bebas Neue", sans-serif;
    text-decoration: none;
    background-color: rgb(230, 231, 219);
    font-size: 5rem;
    line-height: 4rem;
    font-weight: bolder;
    border: 1px solid black;
    text-align: center;
    border-radius: 1rem;
    max-width: 100%;
    padding: 3rem 0;
    transition: 0.3s;
}

.home__btn-walk:hover {
    color: white;
    background-color: rgb(239, 241, 194);
    border: 1px solid rgb(239, 241, 194);
}

/*--HOME PAGE MEDIA QUARY*/

@media screen and (max-width: 690px) {
    .home-container {
        max-width: 100%;
        display: grid;
        grid-template-columns: 1fr;
        background-color: rgb(230, 231, 219);
        padding: 2rem;
        margin: 1rem;
        border-radius: 20px;
    }

   .home__btn-resume {
        max-width:fit-content;
        font-size: 4rem;
        padding: 0 3.5rem;
    }

    .home__btn-portfolio {
        max-width:fit-content;
        font-size: 4rem;
        padding: 0 1.8rem;

    }

    .home__btn-services {
        max-width:fit-content;
        font-size: 4rem;
        padding: 0 2.7rem;
    }

    .home__btn-about {
        max-width:fit-content;
        font-size: 4rem;
        padding: 0 4.5rem;
    }

    .home__btn-fineart {
        max-width:fit-content;
        font-size: 4rem;
        padding: 0 3rem;
    }

    .home__btn-walk {
        max-width:fit-content;
        font-size: 4rem;
        padding: 2rem 4rem;
    }
}


/*Services Page*/

.page__container{
    display:grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    grid-gap:50px;
}

.header__container{
    height:450px;
    margin:0;
}

.services__container{
    display:flex;
    justify-content: space-between;
    max-width:100%;
    border-radius: 40px;
}

.services__item-container:hover{
    background-color: rgb(247, 251, 220);
}

.services-section{
    display:grid;
    grid-template-columns:1fr;
    grid-gap:20px;
    margin: 1.5rem;
    width: 90%;
    align-content:start;
    justify-content: center;
    padding:0;
}

.service-header__list {
    font-family: "Bebas Neue", sans-serif;
    font-size: 2rem;
    display: flex;
    flex-direction: column;
    line-height: 2rem;
    list-style: none;
}

.services__item-container{
    border-radius: 20px;
    background-color: white;
    max-height:300px;
}

.services__title{
    font-size: 10rem;
    color:black;
    padding:0 0 0 2rem;
    margin:2rem 0 0 2rem;
}

.services__bold-text{
    font-family: poppins;
    font-size: 1.3rem;
    font-weight: 600;
    color:black;
    list-style: none;
    width:100%;
    border-bottom: 1px solid rgb(108, 108, 104);
    padding:0 0 1rem 0;
}

.services__text-italic{
    font-family: poppins;
    font-size: 1rem;
    font-weight: 400;
    color:black;
    line-height: 1.5rem;
    list-style: none;
    padding:0 4rem;
    width:100%;
}
.services__text{
    font-family: poppins;
    font-size: .9rem;
    line-height: 1.6rem;
    color:black;
    list-style: none;
    padding:2rem;
}

.services__pricing{
    font-family: poppins;
    font-size: .9rem;
    line-height: 1.6rem;
    color:black;
    list-style: none;
    padding:2rem;
}

/*--SERVICES PAGE MEDIA QUARY*/

@media screen and (max-width: 415px){
    .services__text-italic{
        font-family: poppins;
        font-size: 1rem;
        font-weight: 400;
        color:black;
        line-height: 1.5rem;
        list-style: none;
        padding:0 1rem;
        width:370px;
    }

    .services__container{
        display:flex;
        flex-wrap:wrap;
        max-width:365px;
        border-radius: 40px;
    }

    .services-section{
        width: 360px;
        margin:.5rem;
    }

    .services__item-container{
        background-color: white;
        max-height:300px;
        margin:0;
        width:365px;
    }

    .services__text{
        font-family: poppins;
        font-size: .9rem;
        line-height: 1.6rem;
        color:black;
        list-style: none;
        padding:2rem;
    }
}



/*--Resume Page--*/

.page__container {
    display: grid;
    grid-template-columns: 13rem minmax(0, 1fr);
    grid-template-areas: "header main";
    padding-top: 0;
}

.page__main-container {
    grid-area: main;
    padding: 1rem .3rem;
    display: block;
}

.resume-header__logo {
    width: 5rem;
    list-style: none;
    margin: 2rem 0 0 2rem;
}

.page__edu-container{
    max-width: 80%;
    background-color: white;
    padding: 2rem;
    margin:2rem;
    border-radius: 20px;
}

.edu__copy-italic{
    font-family: "Poppins", sans-serif;
    font-size: .8rem;
    line-height: 1.3rem;
    font-weight: 400;
    color: black;
    list-style:square;
}

.edu_description{
    font-family: "Poppins", sans-serif;
    font-size: .7rem;
    line-height: 1rem;
    font-weight: 200;
    color: black;
    font-style: italic; 
    list-style: none;
    padding:0 0 1rem 0;
}

.page__work-container {
    max-width: 80%;
    background-color: white;
    padding: 2rem;
    margin:2rem;
    border-radius: 20px;
}

.email{
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-size: .7rem;
    color: black; 
}

.work__title1 {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-size: .9rem;
    color: black;
}

.work__title2{
    font-family: "Poppins", sans-serif;
    font-weight: 200;
    font-size: 1.5rem;
    color: rgb(246, 148, 148);
}

.work__bold-copy{
    font-family: "Poppins", sans-serif;
    font-size: .9rem;
    font-weight: 500;
    line-height: 1.5rem;
    color: black;
    margin:0;
}

.work__copy {
    font-family: "Poppins", sans-serif;
    font-size: .9rem;
    font-weight: 300;
    line-height: 1.5rem;
    color: black;
    margin:.2rem;
}


.work__copy-italic{
    font-family: "Poppins", sans-serif;
    font-size: .9rem;
    line-height: 1.6rem;
    font-weight: 200;
    color: black;
    list-style:square;
    font-style: italic;
}

.header__container {
    width: 12rem;
    background-color: white;
    padding: 1rem;
    margin: 5rem;
    border: 1px solid black;
    border-radius: 20px;
    position: relative;
}

.header__logo {
    width: 50px;
    list-style: none;
    margin: .5rem;
}

.header__list {
    font-family: "Bebas Neue", sans-serif;
    font-size: 2rem;
    display: flex;
    flex-direction: column;
    line-height: 2rem;
    text-decoration: none;
    list-style: none;
}

.header__item {
    text-decoration: none;
    list-style: none;
}

/*--header links--*/
a.header__item:link {
    color: black;
    text-decoration: none;
    list-style: none;
}

a.header__item:visited {
    color: black;
    text-decoration: none;
}

a.header__item:hover {
    color: rgb(236, 206, 248);
}

a.header__item:active {
    color: rgb(236, 206, 248);
}

.other-work-container{
    display:flex;
    justify-content: space-between;
    width: 100%;
    border-top: 1px solid black;
}

.other-work__bold-copy{
    font-family: "Poppins", sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5rem;
    color: black;
    margin:.5rem 0 0 0; 
    list-style: none;

}

.other-work__copy{
    font-family: "Poppins", sans-serif;
    font-size: .9rem;
    font-weight: 200;
    line-height: 1.4rem;
    color: black;
    list-style: none;
}

/*--RESUME PAGE MEDIA QUARY*/

@media screen and (max-width: 415px){
    .page__container {
        display:flex;
        flex-wrap: wrap;
    }

    .header__container {
        width:370px;
        height: 250px;
        background-color: white;
        padding: 0 .5rem;
        margin: 1rem;
        border: 1px solid black;
        border-radius: 20px;
        position: relative;
    }

    .header__list {
        font-family: "Bebas Neue", sans-serif;
        font-size: 2rem;
        display: flex;
        flex-direction: column;
        line-height: 2rem;
        text-decoration: none;
        list-style: none;
    }

    .header__logo {
        width: 50px;
        list-style: none;
        margin: .5rem;
        position:absolute;
        top: 1rem;
        right:1rem;
    }

    .services__title{
        font-size: 7rem;
        color:black;
        margin:0;
    }

    .page__work-container {
        max-width: 100%;
        background-color: white;
        padding: 2rem;
        margin:1rem;
        border-radius: 20px;
    }

    .other-work-container{
        display:flex;
        flex-wrap: wrap;
        margin:1rem;
        padding:1rem;
        width: 100%;
        border-top: 1px solid black;
    }
}


/* ABOUT PAGE */

.about__section_container {
    display: grid;
    grid-template-columns: 2fr;
    grid-gap: 10px;
    max-width: 70%;
    padding: 4rem;
    margin: 2rem 0 0 5rem;
    background-color: white;
    border-radius: 20px;
}

.about-header__container {
    width: 12rem;
    background-color: white;
    padding: 1rem;
    margin: 2rem;
    border: 1px solid black;
    border-radius: 20px;
    position: relative;
}

.about-header__logo {
    width: 5rem;
    list-style: none;
    margin: 2rem 0 0 2rem;
}

.about-header__list {
    font-family: "Bebas Neue", sans-serif;
    font-size: 2rem;
    display: flex;
    flex-direction: column;
    line-height: 2rem;
    list-style: none;
}

.about__photo {
    width: 50%;
    border-radius: 20px;
}

a.email__text{
    font-family: "Poppins", sans-serif;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.5rem;
    color: rgb(246, 148, 148);
    margin:4rem;
}

.about__title {
    font-family: "Bebas Neue", sans-serif;
    font-size: 1.5rem;
    color: rgb(134, 134, 96);
    margin: 1.5rem;
}

.about__text {
    font-family: "Poppins", sans-serif;
    font-size: .9rem;
    line-height: 1.5rem;
    color: black;
}

.about_linkedin{
    display:inline-block;
    width: 2rem;
    font-family: "Poppins", sans-serif;
    font-size: .7rem;
    line-height: .9rem;
    color: black;
    margin:0 3rem 0 0;
}

.about_insta{
    display:inline-block;
    width: 2rem;
    font-family: "Poppins", sans-serif;
    font-size: .7rem;
    line-height: .9rem;
    color: black;
}

/*--header links--*/
a.about-header__item:link {
    color: black;
    text-decoration: none;
    list-style: none;
}

a.about-header__item:visited {
    color: black;
    text-decoration: none;
}

a.about-header__item:hover {
    color: rgb(201, 223, 247);
}

a.about-header__item:active {
    color: rgb(201, 223, 247);
}


.footer__social-media {
    font-size: 3rem;
    text-decoration: none;
    list-style: none;
}

/*--ABOUT PAGE MEDIA QUARY*/

@media screen and (max-width: 415px){
    .page__container {
        display:flex;
        flex-wrap: wrap;
    }

    .header__container {
        width:370px;
        height: 250px;
        background-color: white;
        padding: 0 .5rem;
        margin: 1rem;
        border: 1px solid black;
        border-radius: 20px;
        position: relative;
    }

    .header__list {
        font-family: "Bebas Neue", sans-serif;
        font-size: 2rem;
        display: flex;
        flex-direction: column;
        line-height: 2rem;
        text-decoration: none;
        list-style: none;
    }

    .about-header__logo {
        width: 50px;
        list-style: none;
        margin: .5rem;
        position:absolute;
        top: 1rem;
        right:1rem;
    }

    .services__title{
        font-size: 7rem;
        color:black;
        margin:0;
    }

    .page__work-container {
        max-width: 100%;
        background-color: white;
        padding: 2rem;
        margin:1rem;
        border-radius: 20px;
    }

    .other-work-container{
        display:flex;
        flex-wrap: wrap;
        margin:1rem;
        padding:1rem;
        width: 100%;
        border-top: 1px solid black;
    }

    .about__section_container {
        max-width: 100%;
        padding: 1rem;
        margin:1rem;
        background-color: white;
        border-radius: 20px;
    }

    .about__photo {
        width: 100%;
        border-radius: 20px;
    }
}



/*PORTFOLIO PAGE*/

  .project__container{
    display:grid;
    grid-template-columns: repeat(auto-fit, minmax(300px 10rem));
    grid-template-rows: repeat(auto-fit, minmax(10rem, 8rem));
    grid-gap:10px;
    background-color: white;
    border-radius: 20px;
    margin:2rem; 
}

.project__header{
    font-family: poppins;
    font-size: 2rem;
    font-weight: 300;
    padding:2rem;
    color:black;
}

.protea-intro{
width: 100%
}


.ss__container{
    display:grid;
    grid-template-columns: repeat(auto-fit, minmax(300px 10rem));
    grid-template-rows: repeat(auto-fit, minmax(10rem, 8rem));
    grid-gap:10px;
    background-color: white;
    border-radius: 20px;
    margin:2rem; 
}

.ss__header{
    font-family: poppins;
    font-size: 2rem;
    font-weight: 300;
    padding:2rem;
    color:black;
}

.ss-intro{
    width:100%;
}

/*CadenceCo*/
.cadence__container{
    display:grid;
    grid-template-columns: repeat(auto-fit, minmax(300px 10rem));
    grid-template-rows: repeat(auto-fit, minmax(10rem, 8rem));
    grid-gap:10px;
    background-color: white;
    border-radius: 20px;
    margin:2rem; 
}

.cadence__header{
    font-family: poppins;
    font-size: 2rem;
    font-weight: 300;
    padding:2rem;
    color:black;
}

.cadence-intro{
    width:98%;
    padding: 1rem;
}
/*ohsu*/

.ohsu__container{
    display:grid;
    grid-template-columns: repeat(auto-fit, minmax(300px 10rem));
    grid-template-rows: repeat(auto-fit, minmax(10rem, 8rem));
    grid-gap:10px;
    background-color: white;
    border-radius: 20px;
    margin:2rem; 
}

.ohsu__header{
    font-family: poppins;
    font-size: 2rem;
    font-weight: 300;
    padding:2rem;
    color:black;
}

.ohsu-intro{
    width:98%;
    padding: 1rem;
}

.portfolio_skills{
    list-style: none;
    font-family: poppins;
    font-size: .7rem;
    line-height: 1.3rem;
    font-weight: 300;
    padding:2rem;
    color:rgb(128, 126, 126);
}

/*-animal show-*/
.animals__container{
    display:grid;
    grid-template-columns: repeat(auto-fit, minmax(300px 10rem));
    grid-template-rows: repeat(auto-fit, minmax(10rem, 8rem));
    grid-gap:10px;
    background-color: white;
    border-radius: 20px;
    margin:2rem;
}

.animals__header{
    font-family: poppins;
    font-size: 2rem;
    font-weight: 300;
    padding:2rem;
    color:black;
}

.animals__intro{
    width:100%;
}

/*-------*/

.collect__container{
    display:grid;
    grid-template-columns: repeat(auto-fit, minmax(300px 10rem));
    grid-template-rows: repeat(auto-fit, minmax(10rem, 8rem));
    grid-gap:10px;
    background-color: white;
    border-radius: 20px;
    margin:2rem;
}

.collect__header{
    font-family: poppins;
    font-size: 2rem;
    font-weight: 300;
    padding:2rem;
    color:black;
}

.collect-intro{
    width:100%;
    padding:3rem;
}

/*--banana republic--*/

.bb__container{
    display:grid;
    grid-template-columns: repeat(auto-fit, minmax(300px 10rem));
    grid-template-rows: repeat(auto-fit, minmax(10rem, 8rem));
    grid-gap:10px;
    background-color: white;
    border-radius: 20px;
    margin:2rem;
}

.bb__header{
    font-family: poppins;
    font-size: 2rem;
    font-weight: 300;
    padding:2rem;
    color:black;
}

.bb-intro{
    width:100%;
    padding:3rem;
}

/*--mini--*/

.mini__container{
    display:grid;
    grid-template-columns: repeat(auto-fit, minmax(300px 10rem));
    grid-template-rows: repeat(auto-fit, minmax(10rem, 8rem));
    grid-gap:10px;
    background-color: white;
    border-radius: 20px;
    margin:2rem;
}

.mini__header{
    font-family: poppins;
    font-size: 2rem;
    font-weight: 300;
    padding:2rem;
    color:black;
}

.mini-intro{
    width:100%;
    padding:1rem;
}

.portfolio__skills{
    list-style: none;
    font-family: poppins;
    font-size: .7rem;
    line-height: 1.3rem;
    font-weight: 300;
    padding:2rem;
    color:black;
}

/*--columbia--*/

.columbia__container{
    display:grid;
    grid-template-columns: repeat(auto-fit, minmax(300px 10rem));
    grid-template-rows: repeat(auto-fit, minmax(10rem, 8rem));
    grid-gap:10px;
    background-color: white;
    border-radius: 20px;
    margin:2rem;
}

.columbia__header{
    font-family: poppins;
    font-size: 2rem;
    font-weight: 300;
    padding:2rem;
    color:black;
}

.columbia-intro{
    width:100%;
    padding:3rem;
}

/*--rubios--*/

.rubios__container{
    display:grid;
    grid-template-columns: repeat(auto-fit, minmax(300px 10rem));
    grid-template-rows: repeat(auto-fit, minmax(10rem, 8rem));
    grid-gap:10px;
    background-color: white;
    border-radius: 20px;
    margin:2rem;
}

.rubios__header{
    font-family: poppins;
    font-size: 2rem;
    font-weight: 300;
    padding:2rem;
    color:black;
}

.rubios-intro{
    width:100%;
    padding:3rem;
}

/*--PORTFOLIO PAGE MEDIA QUARY*/

@media screen and (max-width: 415px){
    .services__title{
        font-size: 6rem;;
    }

    .project__container{
        background-color: white;
        border-radius: 20px;
        margin:1rem; 
        height:500px;
        display:flex;
        flex-direction: column;
        align-content:start;
    }

    .project__header{
        font-family: poppins;
        font-size: 2rem;
        font-weight: 300;
        padding:2rem;
        color:black;
        margin:0;
    }

    .animals__header{
        font-family: poppins;
        font-size: 2rem;
        font-weight: 300;
        padding:1rem;
        color:black;
    }
    .collect-intro{
        width:98%;
        padding:1rem;
        margin:1rem .5rem;
    }

    .bb-intro{
    width:100%;
    padding:1rem;
    margin: 0;
}

    .mini__header{
    font-family: poppins;
    font-size: 2rem;
    font-weight: 300;
    padding:1rem;
    color:black;
}
    .mini-intro{
    width:100%;
    padding:1rem;
}

.columbia-intro{
    width:100%;
    padding:1rem;
}

.rubios-intro{
    width:100%;
    padding:1rem;
}

}

/*--FINEART SITE--*/

.fineart__art-site{
    font-family: "Poppins", sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5rem;
    color: black;
    margin:2rem; 
    list-style: none;
}

.fineart-text{
    font-family: poppins;
    font-size: 1.5rem;
    margin:2rem 4rem;
}

.fineart_email__text{
    font-family: poppins;
    font-size: 1.5rem;
    margin:2rem 4rem;
}

.fineart__img{
    width:60%;
    margin:2rem;
}

/*--FINE ART MEDIA QUARIES--*/

@media screen and (max-width: 415px){

    .fineart__art-site{
        font-family: "Poppins", sans-serif;
        font-size: 1rem;
        font-weight: 400;
        line-height: 1.5rem;
        color: black;
        list-style: none;
        margin:1rem;
    }

    .fineart_email__text{
        font-family: poppins;
        font-size: 1rem;
        margin:2rem;
    }

    .fineart__img{
        width:92%;
        margin:0;
        align-items: start;
    }
}


/*CLIENT PORTFOLIO PAGES*/

.client__title{
    font-size: 10rem;
    color:black;
    padding:0 0 0 2rem;
    margin:2rem 0 0 2rem;
}

.client__protea__container{
    border-radius: 20px;
    background-color: white;
    width:auto;
    margin:4rem;
}

.client__protea-intro__container{
    display:flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.intro-container{
    display:flex;
    justify-content: space-between;
    align-content: center;
    margin: 3rem;
}


.client__protea__header{
    font-family: poppins;
    font-size: 2rem;
    font-weight: 300;
    padding:3rem;
    color:black;
}

.client__portfolio_skills{
    list-style: none;
    font-family: poppins;
    font-size: .7rem;
    line-height: 1.3rem;
    font-weight: 300;
    text-align: right;
    color:black;
    padding:2rem;
}

.client__portfolio_intro-copy{
    list-style: none;
    font-family: poppins;
    font-size: .9rem;
    line-height: 1.5rem;
    font-weight: 300;
    padding: 0 3rem;
    color:black;
}

.client__protea-logo{
    width: 5rem;
    display:flex;
}

.client__protea-item{
    width: 90%;
    margin: 3rem;
    align-content: center;
}

.protea__social-posts{
    list-style: none;
    font-family: poppins;
    font-size: .9rem;
    line-height: 1.5rem;
    font-weight: 300;
    padding: 0 3rem;
    color:black;
    margin:0;
}

/*Sundae Scoops PAGES*/

.client__title{
    font-size: 10rem;
    color:black;
    padding:0 0 0 2rem;
    margin:2rem 0 0 2rem;
}

.client__sundae__container{
    border-radius: 20px;
    background-color: white;
    width:auto;
    margin:4rem;
}

.client__sundae-intro__container{
    display:flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.client__sundae__header{
    font-family: poppins;
    font-size: 2rem;
    font-weight: 300;
    padding:3rem;
    color:black;
}

.client__portfolio_skills{
    list-style: none;
    font-family: poppins;
    font-size: .7rem;
    line-height: 1.3rem;
    font-weight: 300;
    text-align: right;
    color:black;
    padding:2rem;
}

.client__portfolio_intro-copy{
    list-style: none;
    font-family: poppins;
    font-size: .9rem;
    line-height: 1.5rem;
    font-weight: 300;
    padding: 0 3rem;
    color:black;
}

.client__protea-logo{
    display:block;
    width: 40rem;
}

.client__sundae-item{
    width: 90%;
    margin: 3rem;
    align-content: center;
}

/*--Animal SHow--*/

.client__animals__container{
    border-radius: 20px;
    background-color: white;
    width:auto;
    margin:4rem;
}

.client__animals-intro__container{
    display:flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.client__animals__header{
    font-family: poppins;
    font-size: 2rem;
    line-height: 2.5rem;
    font-weight: 300;
    padding:3rem 0 0 2rem;
    color:black;
}

.client__animals_intro-copy{
    list-style: none;
    font-family: poppins;
    font-size: .9rem;
    line-height: 1.5rem;
    font-weight: 300;
    padding: 0 3rem;
    color:black;
    margin:0;
}

.animals__allscreens{
    width:95%;
    margin:0;
}

.animals__count{
    width:90%;
}

.animals__memory{
    width:95%;
}

.animals__match{
    width:95%;
}

.animals__allpages{
    width:95%;
}

.animals__final{
    width:95%;
}

/*--The Collector--*/

.client__collector__container{
    border-radius: 20px;
    background-color: white;
    width:auto;
    margin:2rem 0 0 4rem;
}

.client__collector-intro__container{
    display:flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.client__collector__header{
    font-family: poppins;
    font-size: 2rem;
    font-weight: 300;
    padding:3rem;
    color:black;
}

.client__collector-item{
    display:block;
    width:95%;
    align-content: center;
    padding:2rem;
    margin:1rem;
}

.collector__social-posts{
    list-style: none;
    font-family: poppins;
    font-size: .9rem;
    line-height: 1.5rem;
    font-weight: 300;
    padding: 0 3rem;
    color:black;
    margin:0;
}

/*--OHSU--*/

.client__ohsu__container{
    border-radius: 20px;
    background-color: white;
    width:auto;
    margin:4rem;
}

.client__ohsu-intro__container{
    display:flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.intro-container{
    display:flex;
    justify-content: space-between;
    align-content: center;
    margin: 3rem;
}


.client__ohsu__header{
    font-family: poppins;
    font-size: 2rem;
    font-weight: 300;
    padding:3rem;
    color:black;
}

.client__portfolio_skills{
    list-style: none;
    font-family: poppins;
    font-size: .7rem;
    line-height: 1.3rem;
    font-weight: 300;
    text-align: right;
    color:black;
    padding:2rem;
}

.client__portfolio_intro-copy{
    list-style: none;
    font-family: poppins;
    font-size: .9rem;
    line-height: 1.5rem;
    font-weight: 300;
    padding: 0 3rem;
    color:black;
}

.client__ohsu-logo{
    width: 5rem;
    display:flex;
}

.client__ohsu-item{
    width: 90%;
    margin: 3rem;
    align-content: center;
}

/*--MINI--*/

.client__mini__container{
    border-radius: 20px;
    background-color: white;
    width:auto;
    margin:4rem;
}

.client__mini-intro__container{
    display:flex;
    flex-wrap: wrap;
    justify-content: space-between;
}


.client__mini__header{
    font-family: poppins;
    font-size: 2rem;
    font-weight: 300;
    padding:3rem;
    color:black;
}

.client__mini-item{
    width: 90%;
    margin: 3rem;
    align-content: center;
}

.mini__social-posts{
    list-style: none;
    font-family: poppins;
    font-size: .9rem;
    line-height: 1.5rem;
    font-weight: 300;
    padding: 0 3rem;
    color:black;
    margin:0;
}

/*--Banana Republic--*/

.client__br__container{
    border-radius: 20px;
    background-color: white;
    width:auto;
    margin:4rem;
}

.client__br-intro__container{
    display:flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.intro-container{
    display:flex;
    justify-content: space-between;
    align-content: center;
    margin: 3rem;
}


.client__br__header{
    font-family: poppins;
    font-size: 2rem;
    font-weight: 300;
    padding:3rem;
    color:rgb(71, 69, 69);
}

.client__portfolio_skills{
    list-style: none;
    font-family: poppins;
    font-size: .7rem;
    line-height: 1.3rem;
    font-weight: 300;
    text-align: right;
    color:black;
    padding:2rem;
}

.client__portfolio_intro-copy{
    list-style: none;
    font-family: poppins;
    font-size: .9rem;
    line-height: 1.5rem;
    font-weight: 300;
    padding: 0 3rem;
    color:black;
}

.client__br-logo{
    width: 5rem;
    display:flex;
}

.client__br-item{
    width: 90%;
    margin: 3rem;
    align-content: center;
}em{
    width: 90%;
    margin: 3rem;
    align-content: center;
}

/*--Cadence Co--*/

.client__cadence__container{
    border-radius: 20px;
    background-color: white;
    width:auto;
    margin:4rem;
}

.client__cadence-intro__container{
    display:flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.intro-container{
    display:flex;
    justify-content: space-between;
    align-content: center;
    margin: 3rem;
}


.client__cadence__header{
    font-family: poppins;
    font-size: 2rem;
    font-weight: 300;
    padding:3rem;
    color:rgb(71, 69, 69);
}

.client__portfolio_skills{
    list-style: none;
    font-family: poppins;
    font-size: .7rem;
    line-height: 1.3rem;
    font-weight: 300;
    text-align: right;
    color:black;
    padding:2rem;
}

.client__portfolio_intro-copy{
    list-style: none;
    font-family: poppins;
    font-size: .9rem;
    line-height: 1.5rem;
    font-weight: 300;
    padding: 0 3rem;
    color:black;
}

.client__cadence-logo{
    width: 5rem;
    display:flex;
}

.client__cadence-item{
    width: 90%;
    margin: 3rem;
    align-content: center;
}

.cadence__social-posts{
    list-style: none;
    font-family: poppins;
    font-size: .9rem;
    line-height: 1.5rem;
    font-weight: 300;
    padding: 0 3rem;
    color:black;
    margin:0;
}