
/* PORTFOLIO PAGE*/

.full-page {
    padding: 100px 0px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.main-container {
    width: 80%;
    max-width: 1100px;
}

.description-text {
    max-width: 600px;
}

.client-description {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-auto-rows: auto;
}

.client-animation {
    width: 100%;
    display: flex;
    justify-content: end;
    align-items: center;
}

.client-animation-small {
    width: 100%;
}

.article-section {
    display: flex;
    justify-content: center;
}

.citation > li {
	font-size: .8em;
	line-height: 1.8em;
	font-weight: 400;
	letter-spacing: .5px;
}

.dark-mode {
    background: rgb(36,38,63);
    background: linear-gradient(180deg, rgba(36,38,63,1) 0%, rgba(72,86,125,1) 75%, rgba(111,105,151,1) 100%);
}


/* SINGLE IMAGE SECTION */

.single-image-section  { 
    display: grid;
    grid-template-columns: 2fr 3.5fr;
    grid-auto-rows: auto;
    column-gap: 20px;
}

.single-image-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.single-image {
    max-width: 100%;
    max-height: 90vh;
}

.single-image-small {
    max-width: 80%;
    max-height: 90vh;
}

.single-image-text {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.single-image-small-text { 
    max-width: 100%;
    padding: 5px 0px;
    display: flex;
    justify-content: center;
}

/* ZOOM DIV */

.single-image-zoom {
    max-width: 100%;
    height: 90vh;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

.single-image-zoom:hover {
    background-size: 200%;
    border: 1px solid #dddddd;
}

/* TWO IMAGE SECTION */

.multi-image-section {
    width: 100%;
}

.multi-image-container {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.multi-image-text {
    width: 100%;
    margin-bottom: 50px;
}

.two-image-section-image {
    max-width: 45%;
}

.three-image-section-image {
    max-width: 32%;
}

/*GALLERY*/
.gallery {
    display: flex;
    justify-content: center;
}

.gallery-container {
    width: 100%;
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
    gap: 4%;
}

.gallery-text {
    padding: 30px 5px 0px 0px;
    margin-bottom: 25px;
}

/* THREE IMAGE GALLERY */

.three-icon-gallery-item { 
    width: 25%;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    min-width: 250px;
    min-height: 230px;
    margin-bottom: 40px;
}


/* FOUR IMAGE GALLERY */

.four-icon-gallery-item { 
    width: 20%;
    min-height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    margin-bottom: 40px;
}

.four-icon-gallery-text {
    max-width: 200px;
}



/*   MOBILE!!!!!   */

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

    .client-description {
        display: flex;
        flex-direction: column-reverse;
    }

    .client-animation {
        width: 100%;
        max-width: 350px;
        display: flex;
        justify-content: start;
        margin-bottom: 50px;
    }
        
/* PORTFOLIO PAGE */
    .full-page {
        padding: 50px 0px;
    }
    .main-container {
        width: 85%;
    }

    .multi-image-container {
        width: 100%;
        display: flex;
        justify-content: center;
    }

/* IMAGE GALLERY */

    .single-image {
        max-width: 100%;
        max-height: 90vh;
        margin-bottom: 50px;
    }
    
    .single-image-small {
        max-width: 100%;
        max-height: 90vh;
        margin-bottom: 50px;
    }

/* SINGLE IMAGE SECTION */

    .single-image-section  { 
        display: flex;
        flex-direction: column-reverse;
        align-items: center;
        margin-bottom: 50px;
    }


/* THREE IMAGE GALLERY */

    .three-image-section-image {
        margin-bottom: 50px;
        max-width: 100%;
        max-height: 90vh;
    }

/* FOUR IMAGE GALLERY */
    .four-icon-gallery-item {
        width: 40%;
    }

    .four-icon-gallery-item >  {
        max-width: 70%;
        text-align: center;
    }
}


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

    .gallery-container {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        flex-wrap: nowrap;
        gap: 4%;
    }
    
    .four-icon-gallery-item {
        width: 80%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

}