/* -------------------- DOCUMENT -------------------- */
:root {
    --dark-blue: #0E3444;
    --blue: #24CBCB;
    --cream :#F8EEDB;
    --orange :#E8623F;
    --green :#23DB9E;
    --yellow :#EDBC20;
    --purple : #B652F7;
}
@import url('https://fonts.googleapis.com/css2?family=Sora:wght@100;200;300;400;500;600;700;800&display=swap');
*{
padding: 0;
margin: 0;
box-sizing: border-box;
font-family: 'Sora', sans-serif;
}

html, body {
    width: 100%;
    min-height: 100vw;
    scroll-behavior: smooth;
    background-color: var(--cream);
}
/* ----------------------------------------  INDEX.HTML ---------------------------------------- */
/* --------------------  HEADER -------------------- */
header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 25px 150px;
    align-items: center;
}
/* --------------------  HEADER - LOGOS -------------------- */
/* LOGO SQUARE */
#header-logo .logo-square {
    display: none;
}
/* LOGO HORIZONTAL */
#header-logo .logo-horizontal {
    height: 60px;
}
/* --------------------  HEADER - LINKS -------------------- */
#header-links  {
    height: 40px;
    width: 200px;
    display: flex;
    justify-content: space-between;
}
.header-icon {
    height: 100%;
    width: auto;
    fill: var(--dark-blue);
    transition: fill 0.5s ease;
}
.header-icon:hover {
    fill: var(--blue);
    transition: fill 0.5s ease;
}

/* -------------------- MAIN -------------------- */
main {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
p a {
    color: var(--blue);
    font-weight: 600;
}
/* -------------------- MAIN - PRESENTATION -------------------- */
#presentation {
    width: 45%;
    padding: 100px 0 125px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
/* -------------------- MAIN - PRESENTATION - TITLE -------------------- */
#presentation-title {
    width: 100%;
    line-height: 0.95;
    margin-bottom: 75px;
    position: relative;
}
#presentation-title h2{
    color: var(--dark-blue);
    font-size: 4.5vw;
    font-weight: 600;
}
#presentation-title h1{
    color: var(--blue);
    font-size: 12.5vw;
    font-weight: 800;
    text-align: right;
}
/* -------------------- MAIN - PRESENTATION - STICKERS -------------------- */
#works-sticker img {
    position: absolute;
    width: 11vw;
    bottom: 0;
    left: -2.5% ;
    transition: transform 0.5s ease;
}
#about-sticker img {
    position: absolute;
    width: 11vw;
    top: -20%;
    right: -2.5%;
    transition: transform 0.5s ease;
}
/* STICKERS_HOVER */
#works-sticker img:hover {
    transform: rotate(20deg) scale(1.1);
    transition: transform 0.5s ease;
}
#about-sticker img:hover {
    transform: rotate(-20deg) scale(1.1);
    transition: transform 0.5s ease;
}
/* -------------------- MAIN - PRESENTATION - ARROW -------------------- */
#presentation-arrow img {
    height: 50px;
    transition: transform 0.5s ease;
}
/* ARROW_HOVER */
#presentation-arrow img:hover {
    transform: scale(1.1);
    transition: transform 0.5s ease;
}

/* -------------------- MAIN - ABOUT -------------------- */
#about {
    display: flex;
    background-color: #0E3444;
    align-items: center;
    justify-content: center;
}
#about-container {
    margin: 100px 0 250px;
    width: 70%;
    display: grid;
    grid-template-columns: 50% 50%;
    grid-column-gap: 25px;
 }
/* -------------------- MAIN - ABOUT - PICTURE -------------------- */
#about-picture {
   position: relative;
}
#about-picture .picture {
    width: 100%;
    margin-right: 25px;
}
/* PICTURE - STICKER */
#about-picture .sticker {
    width: 12vw;
    position: absolute;
    top: 70%;
    left: 67.5%;
    rotate: 10deg;
}
/* -------------------- MAIN - ABOUT - TEXTS -------------------- */
#about-texts {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center ;
}
/* TEXTS - TITLE */
#about-texts .title {
    width: 100%;
}
#about-texts .title h3 {
    width: 70%;
    color: var(--cream);
    font-weight:700;
    font-size: 25px;
    background-color: var(--green);
    padding: 5px 30px;
    border-radius: 100px;
}
/* TEXTS - PARAGRAPH */
#about-texts .paragraph {
    color: var(--cream);
    font-weight:200;
    font-size: 16px;
}
/* TEXTS - BUTTON */
#about-button {
    text-decoration: none;
    font-weight: 500;
    font-size: 17px;
    color: var(--cream);
    background-color: var(--green);
    padding: 10px 90px;
    border-radius: 100px;
    transition: scale 0.5s ease;
}
#about-button:hover {
    scale: 1.1;
    transition: scale 0.5s ease;
}

/* -------------------- MAIN - WORKS -------------------- */
#works {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-bottom: 150px;
}
#works-container {
    width: 70%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
/* -------------------- MAIN - WORKS - TITLE -------------------- */
#works-container .title {
    width: 100%;
}
#works-container h3 {
    width: 40%;
    color: var(--cream);
    font-weight:700;
    font-size: 25px;
    background-color: var(--blue);
    padding: 5px 30px;
    border-radius: 100px;
    transform: translateY(-50%);
}
/* -------------------- MAIN - WORKS - SLIDER -------------------- */
#slider-container {
    width: 100%;
    position: relative;
    margin-top: 25px;
    
}
/* SLIDER - BUTTONS */
img#right-button {
    width: 50px;
    position: absolute;
    top: 50%;
    right: -75px;
    transform: translateY(-50%);
    cursor: pointer;
    transition: transform 0.5s ease;
}
img#left-button {
    width: 50px;
    position: absolute;
    top: 50%;
    left: -75px ;
    transform: translateY(-50%);
    cursor: pointer;
    transition: transform 0.5s ease;
}
/* SLIDER - BUTTONS_HOVER */
img#left-button:hover, img#right-button:hover {
    transform: translateY(-50%) scale(1.1);
    transition: transform 0.5s ease;
}
/* SLIDER - CAROUSEL */
#projects-carousel {
    display: flex;
    flex-wrap: nowrap;
    overflow: hidden;
    width: 100%;
    cursor: pointer;
    scroll-behavior: smooth;
}
#projects-carousel.dragging {
    scroll-behavior: auto;
}

/* -------------------- MAIN - WORKS - PROJECTS -------------------- */
.project {
    flex: 0 0 auto;
    position: relative;
    width: calc((100% - 50px)/3);
    padding: 25px;
    border-radius: 25px;
    display: grid;
    grid-template-rows: 50% 50%;
    overflow: hidden;
    margin-right:25px ;
}
.project:last-child {
    margin-right:0px ;
}
/* PROJECT - BG COLOR */
.blue-card{
    background-color: var(--blue);
}
.green-card {
    background-color: var(--green);
}
.orange-card{
    background-color: var(--orange);
}
.yellow-card{
    background-color: var(--yellow);
}
.purple-card{
    background-color: var(--purple);
}
/* PROJECT - ICONS */
.project-icon {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.project-icon img {
    width: 90%; 
    height: 90%;
}
/* PROJECT - INFOS */
.project-infos  {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
}
/* PROJECT - INFOS - TITLE */
.project-infos h4 {
    color: var(--cream);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12.5px;
}
/* PROJECT - INFOS - TEXT */
.project-infos p {
    width: 100%;
    color: var(--cream);
    font-size: 15px;
    font-weight: 300;
}
/* PROJECT - INFOS - BUTTON */
.project-button {
    text-decoration: none;
    font-weight: 500;
    font-size: 17px;
    color: var(--cream);
    border: solid 2px var(--cream);
    background-color: transparent;
    padding: 5px 70px;
    border-radius: 100px;
    transition: background-color 0.5s ease, color 0.5s ease;
}
/* BUTTON_HOVER */
.project-button:hover {
    background-color: var(--cream);
}
.blue-card .project-infos .project-button:hover {
    color: var(--blue);
    transition: background-color 0.5s ease, color 0.5s ease;
}
.orange-card .project-infos .project-button:hover {
    color: var(--orange);
    transition: background-color 0.5s ease, color 0.5s ease;
}
.green-card .project-infos .project-button:hover {
    color: var(--green);
    transition: background-color 0.5s ease, color 0.5s ease;
}
.yellow-card .project-infos .project-button:hover {
    color: var(--yellow);
    transition: background-color 0.5s ease, color 0.5s ease;
}
.purple-card .project-infos .project-button:hover {
    color: var(--purple);
    transition: background-color 0.5s ease, color 0.5s ease;
}

/* PROJECT - BREAK */
.project-break {
    position: absolute;
    width: 80%;
    height: 0px;
    border: 1px solid var(--cream);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%)
}

/* -------------------- MAIN - BREAK -------------------- */
#page .break {
    width: 45%;
    height: 0;
    border: solid 2px ;
}

/* -------------------- MAIN - CONTACT -------------------- */
#contact {
    width: 70%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
/* -------------------- MAIN - CONTACT - TEXTS -------------------- */
#contact-text {
    width: 100%;
    margin: 50px 0 100px;
    font-weight: 400;
}
#contact-text .line-1 {
    font-size: 35px;
}
#contact-text .line-2 {
    font-weight: 800;
    font-size: 60px;
    color: var(--blue);
}
#contact-text .line-3 {
    font-size: 20px;
}
#contact-text .line-3 span {
    color: var(--blue);
}

/* --------------------  FOOTER -------------------- */
footer {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: var(--dark-blue);
    position: relative;
}
/* --------------------  FOOTER - UP BUTTON -------------------- */
#up-button {
position: absolute;
top: -25px;
right: 15%;
}
#up-button img {
    width: 50px;
    height: 50px;
    transition: transform 0.5s ease;
}
#up-button img:hover {
    transform: scale(1.1);
    transition: transform 0.5s ease;
}

/* --------------------  FOOTER - LAYOUT -------------------- */
#footer-top, #footer-bottom {
    width: 45%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
/* --------------------  FOOTER - TOP -------------------- */
#footer-top{
    margin: 100px 0 50px;
}
/* TOP - LINKS */
#footer-links{
    width: 50%;
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
}
.footer-icon {
    height: 50px;
    width: auto;
    fill: var(--cream);
    transition: fill 0.5s ease;
}
.footer-icon:hover {
    fill: var(--blue);
    transition: fill 0.5s ease;
}
/* TOP - MAIL */
#footer-mail{
    text-decoration: none;
    font-size: 15px;
    font-weight: 400;
    color: var(--cream);
    transition: color 0.5s ease;
}
#footer-mail:hover{
    color: var(--blue);
    transition: color 0.5s ease;

}
/* --------------------  FOOTER - BREAK -------------------- */
#footer-break {
    width: 45%;
    height: 0;
    border: solid 1px var(--cream);
}
/* --------------------  FOOTER - BOTTOM -------------------- */
#footer-bottom{
    margin: 50px 0 100px;
}
/* BOTTOM - LOGO */
#footer-logo {
    width: 100px;
    margin-bottom: 25px;
}
/* BOTTOM - LEGAL */
#footer-bottom p {
    text-align: center;
    color: var(--cream);
    font-size: 12px;
    font-weight: 300;
}

/* ----------------------------------------  PROJECTS ---------------------------------------- */
/* --------------------  HEADER - ICON -------------------- */
#cross-icon {
    height: 25px;
    width: 25px;
}
#cross-icon svg {
    height: 100%;
    width: 100%;
}
/* --------------------  PROJECT - INTRO -------------------- */
#project-intro {
    width: 70%;
    padding: 25px 0 75px;
}
/* INTRO - TITLE */
#project-intro h1 {
    width: 70%;
    font-size: 35px;
    font-weight: 700;
    color: var(--cream);
    padding: 10px 50px;
    background-color: var(--blue);
    border-radius: 100px;
    margin-bottom: 25px;
}
/* INTRO - PARAGRAPH */
#project-intro #intro-paragraph {
    width: 100%;
    font-size: 15px;
    color: var(--dark-blue);
}

/* --------------------  PROJECT - MAIN -------------------- */
#project-main {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: var(--dark-blue);
    color: var(--cream);
    
}
#project-main-container {
    width: 70%;
    padding: 25px 0 75px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
/* --------------------  PROJECT - MAIN - PARAGRAPH -------------------- */
.project-paragraph{
    width: 100%;
    margin-bottom: 25px;
    line-height: 1.5;
}
.project-credit{
    text-align: center;
    width: 100%;
    margin-bottom: 25px;
    line-height: 1.5;
}
/* PARAGRAPH - TITLE */
#project-main h2 {
    font-size: 30px;
    font-weight: 600;
}
/* PARAGRAPH - SUBTITLE */
#project-main h3 {
    font-size: 20px;
    font-weight: 500;
}
/* PARAGRAPH - TEXT */
#project-main p {
    font-size: 12.5px;
    color: var(--cream);
    font-weight: 300;
}
/* --------------------  PROJECT - MAIN - IMAGE -------------------- */
.image-container {
    width: 100%;
    margin-bottom: 25px;
    text-align: right;
}
.image-container img {
    width: 100%;
    height: auto;
}
/* --------------------  PROJECT - MAIN - VIDEO -------------------- */
.video-wrapper {
    width: 100%;
    aspect-ratio: 560/315;
}
.video-container {
    width: 100%;
    margin-bottom: 25px;
    text-align: right;
}
.video-container iframe {
    border: none;
    width: 100%;
    height: 100%;
}
.image-container h2, .image-container h3, .image-container p, .video-container h2, .video-container h3, .video-container p {
    text-align: left;
}
/* VIDEO / IMAGE - CAPTION */
.image-container h4, .video-container h4, .image-container a, .video-container a {
    width: 100%;
    text-align: right;
    font-weight: 400;
    font-size: 15px;
}
/* VIDEO / IMAGE - LINK */
.image-container a, .video-container a {
    color: #24CBCB;
}
/* --------------------  PROJECT - MAIN - BUTTON -------------------- */
a#more-project {
    text-align: center;
    text-decoration: none;
    font-weight: 500;
    font-size: 17px;
    color: var(--cream);
    background-color: var(--blue);
    padding: 10px 90px;
    border-radius: 100px;
    transition: scale 0.5s ease; 
}
a#more-project:hover{
        scale: 1.1;
        transition: scale 0.5s ease; 
}

/* --------------------  RESPONSIVE -------------------- */
/* --------------------  RESPONSIVE - LARGER SCREEN -------------------- */

@media screen and (min-width: 2200px) {   
    /* -------------------- MAIN - PRESENTATION -------------------- */
    #presentation {
        padding: 200px 0 300px;
    }
    /* -------------------- MAIN - PRESENTATION - TITLE -------------------- */
    #presentation-title {
        margin-bottom: 150px;
    }
    /* -------------------- MAIN - ABOUT - TEXTS -------------------- */
    /* TEXTS - TITLE */
    #about-texts .title h3 {
        font-size: 40px;
        padding: 7.5px 60px;
    }
    /* TEXTS - PARAGRAPH */
    #about-texts .paragraph {
        font-size: 25px;
    }
    /* TEXTS - BUTTON */
    #about-button {
        font-size: 30px;
        color: var(--cream);
        padding: 7.5px 125px;
    }

    
    /* -------------------- MAIN - WORKS -------------------- */
    #works {
        margin-bottom: 175px;
    } 

    #works-container h3 {
        font-size: 40px;
        padding: 7.5px 60px;
    }
    /* -------------------- MAIN - WORKS - SLIDER -------------------- */

    /* -------------------- MAIN - WORKS - PROJECTS -------------------- */
    /* PROJECT - INFOS - TITLE */
    .project-infos h4 {
        font-size: 30px;
        margin-bottom: 20px;
    }
    /* PROJECT - INFOS - TEXT */
    .project-infos p {
        font-size: 20px;
    }
    /* PROJECT - INFOS - BUTTON */
    .project-button {
        font-size: 25px;
        padding: 5px 125px;
    }

    #contact-text {
        margin: 100px 0 150px;
    }

    /* -------------------- MAIN - CONTACT -------------------- */
    #contact-text .line-1 {
        font-size: 75px;
    }
    #contact-text .line-2 {
        font-size: 125px;
    }
    #contact-text .line-3 {
        font-size: 40px;
    }
}
@media screen and (min-width: 1650px) and (max-width: 2200px) {
    /* --------------------  HEADER -------------------- */
    header {
        padding: 35px 200px;
    }
    /* --------------------  HEADER - LOGOS -------------------- */
    #header-logo .logo-horizontal {
        height: 75px;
    }
    /* --------------------  HEADER - LINKS -------------------- */
    #header-links  {
        height: 55px;
        width: 275px;
    }

    /* -------------------- MAIN - PRESENTATION -------------------- */
    #presentation {
        padding: 150px 0 250px;
    }
    /* -------------------- MAIN - PRESENTATION - TITLE -------------------- */
    #presentation-title {
        margin-bottom: 100px;
    }
    /* -------------------- MAIN - PRESENTATION - ARROW -------------------- */
    #presentation-arrow img {
        height: 75px;
    }

    /* -------------------- MAIN - ABOUT -------------------- */
    #about-container {
        margin: 100px 0 250px;
    }
    /* -------------------- MAIN - ABOUT - TEXTS -------------------- */
    /* TEXTS - TITLE */
    #about-texts .title h3 {
        font-size: 30px;
        padding: 7.5px 60px;
    }
    /* TEXTS - PARAGRAPH */
    #about-texts .paragraph {
        font-size: 18px;
    }
    /* TEXTS - BUTTON */
    #about-button {
        font-size: 25px;
        color: var(--cream);
        padding: 7.5px 125px;
    }

    
    /* -------------------- MAIN - WORKS -------------------- */
    #works {
        margin-bottom: 175px;
    }
    /* -------------------- MAIN - WORKS - TITLE -------------------- */
    #works-container h3 {
        font-size: 30px;
        padding: 7.5px 60px;
    }
    /* -------------------- MAIN - WORKS - SLIDER -------------------- */

    /* -------------------- MAIN - WORKS - PROJECTS -------------------- */
    /* PROJECT - INFOS - TITLE */
    .project-infos h4 {
        font-size: 25px;
        margin-bottom: 15px;
    }
    /* PROJECT - INFOS - TEXT */
    .project-infos p {
        font-size: 15px;
    }
    /* PROJECT - INFOS - BUTTON */
    .project-button {
        font-size: 20px;
        padding: 5px 125px;
    }

    /* -------------------- MAIN - CONTACT -------------------- */
    #contact-text .line-1 {
        font-size: 50px;
    }
    #contact-text .line-2 {
        font-size: 80px;
    }
    #contact-text .line-3 {
        font-size: 25px;
    }

    /* --------------------  FOOTER - UP BUTTON -------------------- */
    #up-button {
    top: -37.5px;
    }
    #up-button img {
        width: 75px;
        height: 75px;
    }
    /* --------------------  FOOTER - TOP -------------------- */
    #footer-top{
        margin: 125px 0 75px;
    }
    /* TOP - LINKS */
    #footer-links{
        margin-bottom: 50px;
    }
    .footer-icon{
        height: 75px;
    }
    /* TOP - MAIL */
    #footer-mail{
        font-size: 25px;
    }
    /* --------------------  FOOTER - BOTTOM -------------------- */
    #footer-bottom{
        margin: 75px 0 125px;
    }
    /* BOTTOM - LOGO */
    #footer-logo {
        width: 150px;
        margin-bottom: 50px;
    }
    /* BOTTOM - LEGAL */
    #footer-bottom p {
        font-size: 20px;
    }
}
@media screen and (min-width: 1650px) {
    /* --------------------  HEADER -------------------- */
    header {
        padding: 35px 200px;
    }
    /* --------------------  HEADER - LOGOS -------------------- */
    #header-logo .logo-horizontal {
        height: 75px;
    }
    /* --------------------  HEADER - LINKS -------------------- */
    #header-links  {
        height: 55px;
        width: 275px;
    }
    /* --------------------  FOOTER - UP BUTTON -------------------- */
    #up-button {
    top: -37.5px;
    }
    #up-button img {
        width: 75px;
        height: 75px;
    }
    /* --------------------  FOOTER - TOP -------------------- */
    #footer-top{
        margin: 125px 0 75px;
    }
    /* TOP - LINKS */
    #footer-links{
        margin-bottom: 50px;
    }
    .footer-icon{
        height: 75px;
    }
    /* TOP - MAIL */
    #footer-mail{
        font-size: 25px;
    }
    /* --------------------  FOOTER - BOTTOM -------------------- */
    #footer-bottom{
        margin: 75px 0 125px;
    }
    /* BOTTOM - LOGO */
    #footer-logo {
        width: 150px;
        margin-bottom: 50px;
    }
    /* BOTTOM - LEGAL */
    #footer-bottom p {
        font-size: 20px;
    }
}

/* --------------------  RESPONSIVE - SHORTER SCREEN -------------------- */
@media screen and (max-width: 1400px) {
    /* -------------------- MAIN - ABOUT - TEXTS -------------------- */
    /* TEXTS - PARAGRAPH */
    #about-texts .paragraph {
        font-size: 14px;
    }

    /* -------------------- MAIN - WORKS - PROJECTS -------------------- */
    /* PROJECT - INFOS - TITLE */
    .project-infos h4 {
        font-size: 16px;
    }
    /* PROJECT - INFOS - TEXT */
    .project-infos p {
        font-size: 13px;
    }
    /* PROJECT - INFOS - BUTTON */
    .project-button {
        font-size: 15px;
    }

}
@media screen and (max-width: 1200px) {
    /* -------------------- MAIN - ABOUT - TEXTS -------------------- */
    /* TEXTS - TITLE */
    #about-texts .title h3 {
        font-size: 22.5px;
    }
    /* TEXTS - PARAGRAPH */
    #about-texts .paragraph {
        font-size: 13px;
    }
    /* TEXTS - BUTTON */
    #about-button {
        font-size: 17px;
        padding: 9px 80px;
    }
    
    /* -------------------- MAIN - WORKS - TITLE -------------------- */
    #works-container h3 {
        font-size: 22.5px;
    }
}
@media screen and (max-width: 1140px) {
    /* -------------------- MAIN - ABOUT - PICTURE -------------------- */
    #about-picture .picture {
        margin-right: 20px;
    }
    /* -------------------- MAIN - ABOUT - TEXTS -------------------- */
    /* TEXTS - TITLE */
    #about-texts .title h3 {
        font-size: 20px;
    }
    /* TEXTS - PARAGRAPH */
    #about-texts .paragraph {
        font-size: 12px;
    }
    /* TEXTS - BUTTON */
    #about-button {
        font-size: 15px;
    }

    /* -------------------- MAIN - WORKS - PROJECTS -------------------- */
    .project {
        padding: 20px;
    }
    /* PROJECT - INFOS - TITLE */
    .project-infos h4 {
        font-size: 15px;
        margin-bottom: 5px;
    }
    /* PROJECT - INFOS - TEXT */
    .project-infos p {
        font-size: 10px;
    }
    /* PROJECT - INFOS - BUTTON */
    .project-button {
        font-size: 12px;
        padding: 5px 60px;
    }

    /* -------------------- MAIN - CONTACT - TEXTS -------------------- */
    #contact-text .line-1 {
        font-size: 30px;
    }
    #contact-text .line-2 {
        font-size: 55px;
    }
    #contact-text .line-3 {
        font-size: 15px;
    }  
}
@media screen and (max-width: 1040px) {
    /* -------------------- MAIN - ABOUT - TEXTS -------------------- */
    /* TEXTS - TITLE */
    #about-texts .title h3 {
        font-size: 17px;
    }
    /* TEXTS - PARAGRAPH */
    #about-texts .paragraph {
        font-size: 10px;
        font-weight: 300 ;
    }
    /* TEXTS - BUTTON */
    #about-button {
        font-size: 12px;
        padding: 7px 70px;
    }

    /* -------------------- MAIN - WORKS - TITLE -------------------- */
    #works-container h3 {
        font-size: 17px;
    }


    /* -------------------- MAIN - WORKS - PROJECTS -------------------- */
    .project {
        padding: 15px;
    }
    /* PROJECT - INFOS - TITLE */
    .project-infos h4 {
        font-size: 13px;
        margin-bottom: 3px;
    }
    /* PROJECT - INFOS - BUTTON */
    .project-button {
        font-size: 11px;
        padding: 3px 40px;
    }  
}

/* --------------------  RESPONSIVE - TABLET -------------------- */
@media screen and (max-width: 940px) {
    /* --------------------  HEADER -------------------- */
    header {
        padding: 25px 75px;
    }
    /* --------------------  HEADER - LOGOS -------------------- */
    #header-logo .logo-horizontal {
        height: 50px;
    }
    /* --------------------  HEADER - LINKS -------------------- */
    #header-links  {
        height: 30px;
        width: 150px;
    }

    /* -------------------- MAIN - PRESENTATION -------------------- */
    #presentation {
        width: 60%;
        padding: 225px 0 300px;
    }
    /* -------------------- MAIN - PRESENTATION - TITLE -------------------- */
    #presentation-title {
        margin-bottom: 250px;
    }
    #presentation-title h2{
        font-size: 7vw;
    }
    #presentation-title h1{
        font-size: 21vw;
    }
    /* -------------------- MAIN - PRESENTATION - STICKERS -------------------- */
    #about-sticker img {
        width: 20vw;
        top: auto;
        right: auto;
        bottom: -65%;
        left: -10%;
        
    }
    #works-sticker img {
        width: 20vw;
        bottom: auto;
        left: auto;
        top: -65%;
        right: -10% ;
    }

    /* -------------------- MAIN - ABOUT -------------------- */
    #about-container {
        margin: 75px 0 100px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column-reverse;
        width: 80%;
    }
    /* -------------------- MAIN - ABOUT - PICTURE -------------------- */
    #about-picture .picture {
        margin-right: 0px;
    }
    #about-picture .sticker {
        width: 25vw;
    }
    /* -------------------- MAIN - ABOUT - TEXTS -------------------- */
    /* TEXT - TITLE */
    #about-texts .title h3 {
        font-size: 20px;
        margin-bottom: 50px;
    }
    /* TEXT - PARAGRAPH */
    #about-texts .paragraph {
        font-size: 14px;
        font-weight: 200 ;
        margin-bottom: 50px;
    }
    /* TEXT - BUTTON */
    #about-button {
        font-size: 16px;
        padding: 8px 80px;
        margin-bottom: 100px;
    }
     
    /* -------------------- MAIN - WORKS -------------------- */
    #works-container {
        width: 80%;
    }
    /* -------------------- MAIN - WORKS - TITLE -------------------- */
    #works-container h3 {
        width: 60%;
        font-size: 20px;
    }
    /* -------------------- MAIN - WORKS - SLIDER -------------------- */
    /* SLIDER - BUTTONS */
    img#right-button {
        width: 30px;
        right: -45px;   
    }
    img#left-button {
        width: 30px;
        left: -45px ;
    }

    /* -------------------- MAIN - WORKS - PROJECT -------------------- */
    .project {
        width: calc((100% - 25px)/2);
        padding: 30px ;
        border-radius: 20px;
    }
    /* PROJECT - INFOS - TITLE */
    .project-infos h4 {
        font-size: 17px;
        margin-bottom: 15px;
    }
    /* PROJECT - INFOS - TEXT */
    .project-infos p {
        font-size: 13px;
    }
    /* PROJECT - INFOS - BUTTON */
    .project-button {
        font-size: 15px;
        padding: 4px 90px;
    }
    
    /* -------------------- MAIN - BREAK -------------------- */
    #page .break {
        width: 80%;
    }

    /* -------------------- MAIN - CONTACT -------------------- */
    #contact {
        width: 80%;
    }
    #contact-text{
        margin: 150px 0 150px
    }
    /* -------------------- MAIN - CONTACT - TEXTS -------------------- */
    #contact-text .line-2 {
        font-size: 60px;
    }
    #contact-text .line-3 {
        font-size: 17px;
    }

    /* --------------------  FOOTER - LAYOUT -------------------- */
    #footer-top, #footer-bottom {
        width: 70%;
    }
    /* TOP - LINKS */
    #footer-links{
        width: 70%;
    }
    /* --------------------  FOOTER - BREAK -------------------- */
    #footer-break {
        width: 70%;
    }
    /* --------------------  FOOTER - BOTTOM -------------------- */
    #footer-bottom{
        margin: 50px 0 150px;
    }
    /* BOTTOM - LOGO */
    #footer-logo {
        margin-bottom: 50px;
    } 

    /* ----------------------------------------  PROJECT.HTML ---------------------------------------- */
    /* --------------------  HEADER - ICON -------------------- */
    #cross-icon {
        height: 20px;
        width: 20px;
    }
    /* --------------------  PROJECT - INTRO -------------------- */
    /* INTRO - TITLE */
    #project-intro h1 {
        font-size: 25px;
        padding: 7.5px 25px;
    }
    /* INTRO - PARAGRAPH */
    #project-intro #intro-paragraph {
        font-size: 15px;
    }

    /* --------------------  PROJECT - MAIN -------------------- */
    /* --------------------  PROJECT - MAIN - PARAGRAPH -------------------- */
    /* PARAGRAPH - TITLE */
    #project-main h2 {
        font-size: 20px;
    }
    /* PARAGRAPH - SUBTITLE */
    #project-main h3 {
        font-size: 17.5px;
    }
    /* PARAGRAPH - TEXT */
    #project-main p {
        font-size: 12.5px;
    }
    /* VIDEO / IMAGE - CAPTION */
    .image-container h4, .video-container h4, .image-container a, .video-container a {
        width: 100%;
        text-align: right;
        font-weight: 400;
        font-size: 12.5px;
    }
    /* --------------------  PROJECT - MAIN - BUTTON -------------------- */
    a#more-project {
        font-size: 15px;
        padding: 7.5px 70px;
    }
}   
@media screen and (max-width: 775px) {
    /* -------------------- MAIN - ABOUT - TEXTS -------------------- */
    /* TEXTS - TITLE */
    #about-texts .title h3 {
        font-size: px;
    }

    /* -------------------- MAIN - WORKS - PROJECT-------------------- */
    /* PROJECT - INFOS - TITLE */
    .project-infos h4 {
        font-size: 14px;
        margin-bottom: 5px;
    }
    /* PROJECT - INFOS - TEXT */
    .project-infos p {
        font-size: 10px;
    }
    /* PROJECT - INFOS - BUTTON */
    .project-button {
        font-size: 12px;
        padding: 3px 60px;
    }

    /* -------------------- MAIN - CONTACT - TEXTS -------------------- */
    #contact-text .line-1 {
        font-size: 25px;
    }
    #contact-text .line-2 {
        font-size: 50px;
    }
    #contact-text .line-3 {
        font-size: 13px;
    }
}

/* --------------------  RESPONSIVE - PHONE -------------------- */
@media screen and (max-width: 580px) {
    /* --------------------  HEADER -------------------- */
    header {
        padding: 25px 5%;
    }
    /* --------------------  HEADER - LOGOS -------------------- */
    /* LOGO SQUARE */
    #header-logo {
        width: 100%;
        align-items: center;
        justify-content: center;
        display: flex;   
    }
    #header-logo .logo-square {
        display: block;
        height: 75px;
        
    }
    /* LOGO HORIZONTAL */
    #header-logo .logo-horizontal {
        display: none; 
    }
    #header-links {
        display: none; 
    }

    /* -------------------- MAIN - PRESENTATION -------------------- */
    #presentation {
        width: 80%;
        padding: 125px 0 200px;
    }
    /* -------------------- MAIN - PRESENTATION - TITLE -------------------- */
    #presentation-title {
        margin-bottom: 150px;
    }
    #presentation-title h2{
        font-size: 10vw;
    }
    #presentation-title h1{
        font-size: 27vw;
    }
    /* -------------------- MAIN - PRESENTATION - STICKERS -------------------- */
    #about-sticker img {
        width: 30vw;
        bottom: -80%;
        left: 0;
    }
    #works-sticker img {
        width: 30vw;
        top: -80%;
        right: 0 ;
    }

    /* -------------------- MAIN - WORKS -------------------- */
    #works-container {
            width: 90%;
    }
    /* -------------------- MAIN - WORKS - TITLE -------------------- */
    #works-container h3 {
            width: 70%;
    }
    /* -------------------- MAIN - WORKS - SLIDER -------------------- */
    #slider-container {
            width: 70%;
            margin-top: 125px;
    }
    /* SLIDER - BUTTONS */
    img#right-button {
            width: 25px;
            right: -35px;   
    }
    img#left-button {
            width: 25px;
            left: -35px ;
    }

    /* -------------------- MAIN - WORKS - PROJECTS -------------------- */
    .project {
        width: 100%;
        padding: 25px;
    }
    /* PROJECT - INFOS - TITLE */
    .project-infos h4 {
        font-size: 22.5px;
        padding-bottom: 15px;
    }
    /* PROJECT - INFOS - TEXT */
    .project-infos p {
        font-size: 15px;
    }
    /* PROJECT - INFOS - BUTTON */
    .project-button {
        font-size: 17px;
        padding: 5px 90px;
    }

    /* -------------------- MAIN - CONTACT - TEXTS -------------------- */
    #contact-text .line-1 {
        font-size: 20px;
    }
    #contact-text .line-2 {
        font-size: 45px;
    }
    #contact-text .line-3 {
        font-size: 12px;
    }

    /* ----------------------------------------  PROJECT.HTML ---------------------------------------- */
    /* --------------------  PROJECT - INTRO -------------------- */
    /* INTRO - TITLE */
    #project-intro h1 {
        text-align: center;
        width: 100%;
        font-size: 6vw;
        padding: 1vw 6vw;
    }
    /* INTRO - PARAGRAPH */
    #project-intro #intro-paragraph {
        font-size: 15px;
    }

    /* --------------------  PROJECT - MAIN - PARAGRAPH -------------------- */
    /* PARAGRAPH - TITLE */
    #project-main h2 {
        font-size: 5.5vw;
    }
    /* PARAGRAPH - SUBTITLE */
    #project-main h3 {
        font-size: 4.5vw;
    }
    /* PARAGRAPH - TEXT */
    /* VIDEO / IMAGE - CAPTION */
    .image-container h4, .video-container h4, .image-container a, .video-container a {
        font-size: 3vw;
    }
    /* --------------------  PROJECT - MAIN - BUTTON -------------------- */
    a#more-project {
        width: 100%;
        font-size: 4vw;
        padding: 7.5px 0;
    }
}
@media screen and (max-width: 480px) {
    /* --------------------  HEADER - LOGOS -------------------- */
    #header-logo .logo-square {
        display: block;
        height: 70px;   
    }

    /* -------------------- MAIN - ABOUT -------------------- */
    #about-container {
        width: 100%;
    }
    /* -------------------- MAIN - ABOUT - TEXTS -------------------- */
    #about-texts {
        width: 90%;
    }
    /* -------------------- MAIN - ABOUT - TEXTS -------------------- */
    #about-texts .title h3 {
        padding: 3px 20px;
        font-size: 17px;
        margin-bottom: 25px;
    }
    #about-texts .paragraph {
        font-size: 12px;
        font-weight: 300 ;
        margin-bottom:25px;
    }
    #about-button {
        font-size: 14px;
        padding: 2px 40px;
        margin-bottom: 100px;
    }

    #about-picture .sticker {
        width: 30vw;
        top: 65%;
        left: 65%;
    }
    
    /* -------------------- MAIN - WORKS -------------------- */
    #works-container {
        width: 80%;
    }
    /* -------------------- MAIN - WORKS - TITLE -------------------- */
    #works-container h3 {
        width: 80%;
        font-size: 17px;
    }

    /* -------------------- MAIN - WORKS - PROJECT -------------------- */
    /* PROJECT - INFOS - TITLE */
    .project-infos h4 {
        font-size: 17px;
        padding-bottom: 5px;
    }
    /* PROJECT - INFOS - TEXT */
    .project-infos p {
        font-size: 12px;
    }
    /* PROJECT - INFOS - BUTTON */
    .project-button {
        font-size: 15px;
        padding: 3px 40px;
    }

    /* -------------------- MAIN - CONTACT - TEXTS -------------------- */
    #contact-text .line-1 {
        font-size: 16px;
    }
    #contact-text .line-2 {
        font-size: 35px;
    }

    /* --------------------  FOOTER - LAYOUT -------------------- */
    /* TOP - LINKS */
    .footer-icon{
        height: 40px;
    }
    /* TOP - MAIL */
    #footer-mail{
        font-size: 14px;
    }
    /* --------------------  FOOTER - BOTTOM -------------------- */
    /* BOTTOM - LOGO */
    #footer-logo {
        width: 75px;
    }
    /* BOTTOM - LEGAL */
    #footer-bottom p {
        font-size: 11px;
    }
}
@media screen and (max-width: 380px) {

    /* -------------------- MAIN - ABOUT -TEXTS -------------------- */
    /* TEXT - TITLE */
    #about-texts .title h3 {
        padding: 3px 20px;
        font-size: 17px;
        margin-bottom: 25px;
    }
    /* TEXT - PARAGRAPH */
    #about-texts .paragraph {
        font-size: 12px;
        font-weight: 300 ;
        margin-bottom:25px;
    }
    /* TEXT - BUTTON */
    #about-button {
        font-size: 14px;
        padding: 2px 40px;
        margin-bottom: 100px;
    }
    
    /* -------------------- MAIN - WORKS -------------------- */
    #works-container {
        width: 90%;
    }

    /* -------------------- MAIN - WORKS - PROJECTS -------------------- */
    .project {
        padding: 10px;
    }
    /* PROJECT - INFOS - TITLE */
    .project-infos h4 {
        font-size: 14px;
        padding-bottom: 0px;
    }
    /* PROJECT - INFOS - TEXT */
    .project-infos p {
        font-size: 10px;
    }
    /* PROJECT - INFOS - BUTTON */
    .project-button {
        font-size: 12px;
        padding: 0px 40px;
    }

    /* -------------------- MAIN - CONTACT - TEXTS -------------------- */
    #contact-text .line-1 {
        font-size: 13px;
    }
    #contact-text .line-2 {
        font-size: 25px;
    }

    /* --------------------  FOOTER - LAYOUT -------------------- */
    /* TOP - LINKS */
    #footer-links{
        width: 100%;
    }
    .footer-icon{
        height: 35px;
    }
    /* TOP - MAIL */
    #footer-mail{
        font-size: 12px;
    }
    /* --------------------  FOOTER - BOTTOM -------------------- */
    /* BOTTOM - LEGAL */
    #footer-bottom p {
        font-size: 10px;
    }

}

/* --------------------  SCROLL ANIMATION -------------------- */
[class*="hidden"] {
    transform: translateY(50px);
    opacity: 0;
}

.hidden-2.reveal {
    transition-delay: .1s;
}
.hidden-3.reveal {
    transition-delay: .2s;
}

.reveal {
    transform: translateY(0);
    opacity: 1;
    transition: transform 1s cubic-bezier(.1,.1,0,1), opacity 1s cubic-bezier(.1,.1,0,1);
}