/*  PROJECT HEADERS */
#header-projects{
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 4% 0;
}

#header-projects h1{
    text-align: center;
    font-size: 2.5em;
    line-height: 1.3em;
}

#header-project-img{
    display: block;
    width: 100%;
    height: auto;
}





/* PROJECT OVERVIEW SECTION */
#overview{
    display: flex;
    flex-direction: column;
    gap: 24px;
    justify-content: space-between;
}

#overview-main{
    display: flex;
    flex-direction: column;
    gap: 50px;
}

#overview-aside{
    background-color: white;
    border-radius: 20px;
    padding: 30px;
    height: fit-content;
}

#overview-aside ul{
    list-style-type: none;
    margin: 0;
    padding: 0;

    display: flex;
    flex-direction: column;
}

#overview-aside > ul{
    gap: 50px;
}

#overview-aside ul > li{
    font-size: 18px;
}

#overview-aside h3{
    font-size: 1.125em;
}




/* BANNER */
.banner{
    height: 60vw;
    width: 100%;
    background-size: cover;
    background-position: center;
}

#chevron{
    background-image: url(../images/chevron-images/chevron-doubleMockup.jpg);
}

#safely{
    background-image: url(../images/safely-images/safely-banner.jpg);
}

#blog{
    background-image: url(../images/blog-images/blog-banner.jpg);
}

#goodnotes{
    background-image: url(../images/goodnotes-images/goodnotes-banner.gif);
}




/* PROJECT SECTION WHOLE */
.project-section{
    display: flex;
    flex-direction: column;
    padding: 50px 0;
    gap: 72px;
    justify-content: space-between;
}

/* PROJECT SECTION SIDE BAR */
/* no styles for mobile */

/* PROJECT SECTION MAIN */
.project-section-main{
    display: flex;
    flex-direction: column;
    gap: 50px;
    max-width: 800px;
}

.project-content p{
    margin: 12px 0;
}





/* PROJECT TAKEAWAY SECTION */
.takeaway-card{
    padding: 30px;
    background-color: white;
    border-radius:10px;
    box-shadow: 0px 0px 9px 5px rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.takeaway-card span{
    padding-right: 20px;
}






/* PROJECT SOLUTION SECTION */
.solutions-content{
    display: flex;
    flex-direction: column;
    gap: 24px;
}





/* BUTTONS */
.sectionBtn-container{
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding: 20px 0;
}

.section-button{
    padding: 0 16px;
    cursor: pointer;


    background-color: transparent;
    border: none;

    display: flex;
    align-items: center;
    gap: 12px;

    transition: ease .5s;

}

svg{
    filter: grayscale(100) brightness(1.5);
    transition: transform 300ms ease-in-out;

}

.section-button:hover{
    color: #D14291;
    font-weight: 500;
}

.section-button:hover svg{
    filter: none;
	transform: rotate(45deg);
}

.selected-button svg{
    filter: none;
	transform: rotate(45deg);
}

.selected-button{
    font-weight: 500;
}

.no-display{
    display: none;
}






/* IMAGES */
.drop{
    border-radius: 20px;
    background-color: white;
    box-shadow: 0px 0px 9px 5px rgba(0, 0, 0, 0.03);
}

.container img{
    display: block;
    width: 100%;
    height: auto;
    margin: 24px auto;
}

.picture{
    width: 100%;
    height: auto;
    margin-bottom: 100px;
}

.prototype-img-container{
    background-color: #F2F2F2;
    border-radius: 5px;

    display: flex;
    flex-direction: column;

    padding: 20px;

    gap: 24px;
}

.prototype-img-container2{
    background-color: #F2F2F2;
    border-radius: 5px;

    display: flex;
    flex-direction: column;

    padding: 20px;

    gap: 42px;
}

.prototype-img-container img, .prototype-img-container2 img{
    width: 100%;
    height: auto;

    margin: 0;

    object-fit: contain;
    border-radius: 5px;
}

.prototype-img-container img:last-child{
    width: 50%;
    height: auto;

    margin: 0;

    object-fit: contain;
}



/* MEDIA QUERIES */
@media only screen and (min-width: 1200px){
    /*  PROJECT HEADERS */
    #header-projects{
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    #header-projects h1{
        max-width: 600px;
        text-align: right;
        font-size: 3em;
        line-height: 1.3em;
    }

    #header-project-img{
        width: 60%;
    }



    /* PROJECT OVERVIEW SECTION */
    #overview{
        display: flex;
        flex-direction: row;
        gap: 50px;
        justify-content: space-between;
    }

    #overview-main{
        max-width: 600px;
    }


    /* BANNER */
    .banner{
        height: 45vw;
        width: 100%;
    }

    

    /* PROJECT SECTION SIDE BAR */
    .project-section-title{
        height: fit-content;
        min-width: 310px;
        max-width: 310px;
    }

    /* PROJECT SECTION WHOLE */
    .project-section{
        flex-direction: row;
    }
    

    /* PROJECT SECTION MAIN */
    .project-section-main{
        max-width: 1050px;
        gap: 50px;
    }



    /* IMAGES UNDER PROTOTYPE */
    .prototype-img-container{
        background-color: #F2F2F2;
        border-radius: 10px;

        display: flex;
        flex-direction: row;
    }

    .prototype-img-container img:first-child{
        width: 70%;
        height: auto;

        margin: 0;

        object-fit: contain;
    }

    .prototype-img-container img:last-child{
        width: 30%;
        height: auto;

        margin: 0;

        object-fit: contain;
    }
    
}


@media only screen and (min-width: 1440px){
    /* img{
        width: 90%;
    } */

    #header-projects h1{
        font-size: 5em;
    }

    #overview-aside{
        width: 20%;
    }

    #header-project-img{
        max-width: 700px;
        margin: 0;
    }

    #header-projects{
        gap: 72px;
        justify-content: center;
    }

    .prototype-img-container{
        padding: 40px;
    }
}




/* ARCHIVE */
/* .link-bar{
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.bar1, .bar2, .bar3{
    padding: 12px 20px;
    border-radius: 10px;
    transition: ease .5s;
    border: white solid 1px;

    display: flex;
    flex-direction: row;
    gap: 12px;
    align-items: center;

    width: 100%;

}

.bar1{
    background-color: #F4DFEB;
    flex: 1;
}

.bar2{
    background-color: #EEC3DA;
    flex: 1;
}

.bar3{
    background-color: #E7A7CA;
    flex: 1;
}

.bar1:hover, .bar2:hover, .bar3:hover{
    background-color: #FAFAFA;
    border: #D14291 solid 1px;
} */