/*  --------------------------------
        GENERAL
    --------------------------------  */

*,
*::before,
*::after {
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background: #F8F9FB;
}

.wrap {
    margin: auto;
    width: 100%;
    max-width: 1100px;
    min-width: 320px;
}

p {
    line-height: 20px;
}

a {
    text-decoration: none;
}

/* --------------- Fixed button --------------- */

.goToTop {
    color: #fff;
    background-color: rgba(0, 0, 0, 0.2);
    border: 1px solid #fff;
    border-radius: 25px;
    display: block;
    height: 40px;
    line-height: 40px;
    width: 40px;
    text-align: center;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 100;
    transition: all 0.3s;
}

.goToTop:hover {
    color: #626FEE;
    background-color: #283149;
    border: 1px solid #626FEE;
    transform: translateY(-10px);
}

.goToTop:active {
    color: #fff;
    transform: translateY(0);
}

/* --------------- Buttons --------------- */

.button {
    display: inline-block;
    height: 35px;
    line-height: 35px;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 700;
    border-radius: 25px;
    overflow: hidden;
    padding: 0 20px;
    transition: all 0.3s ease;
    position: relative;
}

.button span {
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 700;
    position: relative;
    z-index: 2;
}

.button:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    transition: all 0.3s ease;
}

.button:hover:after {
    width: 100%;
}

/* --------------- Title Style --------------- */

main h2 {
    color: #283149;
    font-size: 40px;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 50px;
    position: relative;
}

main h2::after {
    color: #EDEEF2;
    font-size: 80px;
    font-weight: 700;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.iconTitle {
    text-align: center;
    height: 100px;
}

/* --------------- Section Shadow Style --------------- */

.sectionShadow {
    position: relative;
}

.sectionShadow::after {
    content: '';
    display: block;
    height: 20%;
    width: 100%;
    background-color: #F8F9FB;
    position: absolute;
    bottom: 0;
    z-index: -200;
}

.sectionShadow::before {
    content: '';
    display: block;
    height: 5%;
    width: 70%;
    background-color: #fff;
    box-shadow: 0px 0px 99px 0px rgba(0, 0, 0, 0.1);
    position: absolute;
    bottom: 0;
    left: 15%;
    right: 15%;
    z-index: -200;
}

/* --------------- Item Shadow Style --------------- */

.itemShadow {
    position: relative;
}

.itemShadow::after {
    content: '';
    display: block;
    height: 100%;
    width: 20%;
    background-color: #F8F9FB;
    position: absolute;
    top: 0;
    right: 0;
    z-index: -100;
}

.itemShadow::before {
    content: '';
    display: block;
    height: 90%;
    width: 5%;
    background-color: #fff;
    box-shadow: 0px 0px 99px 0px rgba(0, 0, 0, 0.1);
    position: absolute;
    right: 0;
    top: 5%;
    bottom: 5%;
    z-index: -100;
}

/* --------------- Light Card Style --------------- */


.cardContainer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cardItem {
    width: 48%;
}

.card {
    background-color: #fff;
    padding: 25px;
    margin-bottom: 10px;
    box-shadow: 0px 0px 20px 5px rgba(0, 0, 0, 0.02);
    position: relative;
}

.card::before {
    content: '';
    display: block;
    height: 10%;
    width: 70%;
    background-color: #283149;
    box-shadow: 0px 0px 99px 0px rgba(0, 0, 0, 0.2);
    position: absolute;
    bottom: 0;
    left: 15%;
    right: 15%;
    z-index: -1;
    transition: all 0.3s;
}

.card:hover::before {
    box-shadow: 0px 0px 99px 0px rgba(0, 0, 0, 0.6);
}

.cardTitle {
    color: #626FEE;
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 7px;
    transition: all 0.3s;
}

.cardSubtitle {
    color: #283149;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 3px;

}

.cardDate {
    color: #283149;
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 20px;
}

.cardText {
    color: #283149;
    font-size: 14px;
    font-weight: 400;
}

/* --------------- Dark Card Style --------------- */

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

.imgItem {
    color: #fff;
    background-color: #283149;
    background-position: right;
    background-repeat: no-repeat;
    background-size: auto 100%;
    font-size: 16px;
    height: 130px;
    margin: 20px 0;
    padding: 0 40px;
    transition: 0.2s ease;
    width: 48%;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.imgItem:hover {
    transform: translateY(-7px);
}

strong {
    display: block;
    font-weight: 700;
    line-height: 30px;
}

/*  --------------------------------
        HEADER
    --------------------------------  */

.headerBg {
    height: 60px;
    background-color: rgba(255, 255, 255, 0.05);
}

.header {
    color: #fff;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.headerTitle {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.headerName {
    font-family: 'Staatliches', cursive;
    font-size: 20px;
    letter-spacing: 3px;
}

.headerLogo {
    height: 30px;
    margin-right: 20px;
    transition: all 0.3s;
}

.headerLogo:hover {
    height: 35px;
}

/* --------------- Menu --------------- */

.menu a {
    color: rgba(255, 255, 255, 0.5);
    display: inline-block;
    margin-right: 30px;
    height: 60px;
    line-height: 60px;
    position: relative;
    transition: all 0.3s;
}

.menu a span {
    font-family: 'Staatliches', cursive;
    font-size: 15px;
    letter-spacing: 3px;
    transition: all 0.3s;
}

.menu a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 1;
    opacity: 0;
    transition: all 0.3s;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    transform: scale(0.1, 1);
}

.menu a:hover span {
    color: #fff;
    letter-spacing: 4px;
}

.menu a:active span {
    letter-spacing: 3px;
}

.menu a:hover::before {
    opacity: 1;
    transform: scale(1, 1);
}

.menu a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    z-index: 1;
    transition: all 0.3s;
}

.menu a:hover::after {
    opacity: 0;
    transform: scale(0.1, 1);
}

/* ----- Hamburger menu ----- */

#hamburgerIcon a {
    display: none;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.fa-bars {
    display: none;
    color: rgba(255, 255, 255, 0.5);
    font-size: 20px;
    transition: all 0.3s;
}

.fa-bars:hover,
.fa-bars:active {
    color: rgba(255, 255, 255, 1);
}

#hamburgerSidebar {
    background-color: #283149;
    display: none;
    height: 100%;
    width: 80%;
    max-width: 500px;
    overflow: hidden;
    overflow-y: auto;
    position: fixed;
    top: 0;
    left: 0;
    transform: translateX(-100%);
    transition: 0.5s ease;
    z-index: 20;
}

#hamburgerSidebarHeader {
    background-image: url('../img/banner.jpg');
    background-position: left;
    background-size: cover;
    height: 150px;
    position: relative;
    width: 100%;
}

#hamburgerSidebarHeader img {
    height: 90px;
    margin-left: 30px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

#hamburgerSidebarBody {
    padding: 30px;
}

#hamburgerSidebarBody a span {
    display: block;
    color: rgba(255, 255, 255, 0.5);
    font-family: 'Staatliches', cursive;
    font-size: 30px;
    line-height: 100px;
    letter-spacing: 3px;
    transition: all 0.3s;
}

#hamburgerSidebarBody a span:hover {
    color: #fff;
    letter-spacing: 5px;
}

#hamburgerSidebarBody a span:active {
    letter-spacing: 3px;
}

#hamburgerOverlay {
    display: none;
    background-color: rgba(0, 0, 0, 0.4);
    height: 100%;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
}

/*  --------------------------------
        BANNER
    --------------------------------  */

.bannerBg {
    background: url('../img/banner.jpg');
    background-size: cover;
    height: 600px;
    position: relative;
    overflow: hidden;
}

.banner {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    position: relative;
}

.photoQuentin {
    height: 520px;
    position: relative;
}

.bannerBg::before {
    content: '';
    display: block;
    height: 50%;
    width: 100%;
    background-image: linear-gradient(to right, #C700FF, #00DBDE);
    filter: blur(50px);
    opacity: 0.4;
    position: absolute;
    bottom: 0;
    z-index: -1;
}

.bannerBg::after {
    content: '';
    display: block;
    height: 20px;
    width: 100%;
    background-image: linear-gradient(to right, #C700FF, #00DBDE);
    position: absolute;
    bottom: 0;
}

/* --------------- Titles --------------- */

.title {
    font-family: 'Staatliches', cursive;
    font-size: 50px;
    line-height: 50px;
    letter-spacing: 5px;
    margin-bottom: 25px;
}

.bannerName {
    color: #fff;
    position: relative;
}

.bannerName::before {
    content: 'HELLO';
    color: rgba(255, 255, 255, 0.10);
    font-family: 'Staatliches', cursive;
    font-size: 150px;
    position: absolute;
    top: -20px;
    left: -120px;
}

.bannerJob {
    color: #626FEE;
}

.subTitle {
    color: rgba(255, 255, 255, 0.5);
    font-weight: 20px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

/* --------------- Buttons --------------- */

.portfolioButton {
    color: #fff;
    background-color: #626FEE;
    border: 1px solid #626FEE;
    margin-bottom: 15px;
}

.portfolioButton:after {
    background-color: #283149;
}

.portfolioButton:hover {
    color: #626FEE;
}

.cvButton {
    color: #fff;
    background-color: transparent;
    border: 1px solid #fff;
}

.cvButton:after {
    background-color: #283149;
}

.cvButton:hover {
    color: #626FEE;
    border: 1px solid #626FEE;
}

.portfolioButton:active,
.cvButton:active {
    color: #fff;
    background-color: #283149;
    border: 1px solid #626FEE;
}

.fa-behance {
    margin-right: 15px;
}

.fa-download {
    margin-right: 15px;
    transform: translateY(-1px);
}

/*  --------------------------------
        FORMATION
    --------------------------------  */

.schoolBox {
    padding: 100px 0;
}

.schoolBox h2::after {
    content: 'Formation';
}

.schoolCard {
    position: relative;
    margin: 100px 25px 100px 25px;
}

.schoolCard::before {
    content: url('../img/round.svg');
    position: absolute;
    top: -45px;
    left: -60px;
    z-index: -1;
}

/*  --------------------------------
        COMPETENCES
    --------------------------------  */

.cardContainer-skills {
    align-items: flex-start;
}

.skillsBox {
    padding: 100px 0;
}

.skillsBox h2::after {
    content: 'Compétences';
}

.skillsBox .card {
    margin-top: 30px;
}

.skillsBox .cardTitle {
    margin-bottom: 20px;
}

.skItem {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.skItem:last-child {
    margin-bottom: 0;
}

.skCircle {
    display: block;
    height: 50px;
    width: 50px;
    min-width: 50px;
    line-height: 50px;
    border: 2px solid #EDEEF2;
    border-radius: 50%;
    text-align: center;
    position: relative;
}

.skText {
    margin-left: 15px;
}

.skName {
    color: #283149;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 3px;
}

.skDescription {
    color: #283149;
    font-size: 14px;
    font-weight: 400;
}

.fa-html5,
.fa-css3-alt,
.fa-js-square,
.fa-php {
    font-size: 22px;
    color: #283149;
}

/*  --------------------------------
        LANGUES
    --------------------------------  */

.lang h2 {
    position: relative;
}

.lang h2::after {
    content: 'Langues';
}

.langBg {
    padding: 100px 0;
    position: relative;
}

.langBg::after {
    content: '';
    background-color: #EDEEF2;
    height: 355px;
    width: 100%;
    position: absolute;
    bottom: 0;
    z-index: -1;
}

.lang .bubble {
    position: absolute;
    height: 400px;
    top: -150px;
    right: 100px;
    z-index: -1;
}

/* --------------- Dark Cards --------------- */

.imgFrance {
    background-image: url(../img/flag_france.png);
}

.imgUk {
    background-image: url(../img/flag_uk.png);
}

.imgAlsace {
    background-image: url(../img/flag_alsace.png);
}

.imgAllemagne {
    background-image: url(../img/flag_germany.png);
}

/*  --------------------------------
        GALERIE
    --------------------------------  */

.galerieBox {
    padding: 100px 0;
}

.galerieBg {
    background-image: url('../img/banner.jpg');
    background-position: center;
    background-size: cover;
    height: 770px;
    width: 100%;
    position: absolute;
    top: 0;
    z-index: -100;
}

.galerie h2 {
    color: #fff;
    font-weight: 400;
    letter-spacing: 10px;
}

.galerie h2::after {
    content: 'Galerie';
    color: rgba(255, 255, 255, 0.1);
    font-weight: 400;
}

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

.glItemBg {
    height: 350px;
    width: 48%;
    background-position: center;
    background-size: cover;
    margin: 20px 0;
    position: relative;
}

.glItemBg::after {
    content: '';
    background-color: #283149;
    height: 350px;
    width: 100%;
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: -1;
}

.glItemBg:nth-child(-n+2)::after {
    background-color: rgba(255, 255, 255, 0.1);
}

.img1 {
    background-image: url('../img/behance_flyer.png');
}

.img2 {
    background-image: url('../img/behance_noteuniv.png');
}

.img3 {
    background-image: url('../img/behance_jwiq.png');
}

.img4 {
    background-image: url('../img/behance_quentin.jpg');
}

.img5 {
    background-image: url('../img/behance_infographie.png');
}

.img6 {
    background-image: url('../img/behance_batzendorf.png');
}

.img7 {
    background-image: url('../img/behance_oserya.png');
}

.img8 {
    background-image: url('../img/behance_ely.jpg');
}

.img9 {
    background-image: url('../img/behance_brochure.png');
}

.img10 {
    background-image: url('../img/behance_dressoom.jpg');
}

.img11 {
    background-image: url('../img/behance_alsace_verte.png');
}

.img12 {
    background-image: url('../img/behance_motion_design.png');
}

.img13 {
    background-image: url('../img/behance_steinberg.png');
}

.img14 {
    background-image: url('../img/behance_gendarmerie.png');
}

/* --------------- Galerie Hover --------------- */

.glItem {
    background-position: center;
    background-size: cover;
    overflow: hidden;
    transition: all 0.3s ease;
}

.glItem:hover {
    background-position: center;
    background-size: cover;
    overflow: hidden;
    transform: translate(20px, 20px);
}

.glHoverBg {
    background: #626FEE;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 350px;
    position: relative;
    bottom: -350px;
    transition: all 0.3s ease;
}

.glItem:hover .glHoverBg {
    bottom: 0;
}

.glHover {
    text-align: center;
    opacity: 0;
    transition: all 1s ease;
}

.glItem:hover .glHover {
    opacity: 1;
}

.glTitle {
    color: #fff;
    font-family: 'Staatliches', cursive;
    font-size: 30px;
    font-weight: 400;
    letter-spacing: 3px;
    margin-bottom: 10px;
}

.glSubtitle {
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 20px;
}

.glButton {
    color: #fff;
    background-color: transparent;
    border: 1px solid #fff;
}

.glButton span {
    text-transform: none;
}

.glButton:after {
    background-color: #fff;
}

.glButton:hover {
    color: #626FEE;
    border: 1px solid #fff;
}

.glButton:active {
    color: #283149;
    background-color: #fff;
    border: 1px solid #fff;
}

/* --------------- Galerie CTA --------------- */

.glCta {
    display: flex;
    justify-content: center;
    margin-top: 50px;
}

/*  --------------------------------
        EXPERIENCE
    --------------------------------  */

.experienceBox {
    padding: 100px 0;
}

.experienceBox h2::after {
    content: 'Expérience';
}

.experienceBox h3 {
    color: #283149;
    font-family: 'Staatliches', cursive;
    font-size: 30px;
    letter-spacing: 3px;
    margin: 100px 0 10px 0;
    text-align: center;
    position: relative;
}

.experienceBox h3::before {
    content: url('../img/round.svg');
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;

}

.bubble {
    padding-left: 50px;
    height: 400px;
}

.margin {
    margin-bottom: 100px;
}


/* --------------- Light Cards --------------- */

.projectButton {
    color: #283149;
    background-color: transparent;
    border: 1px solid #283149;
}

.projectButton span {
    text-transform: none;
}

.projectButton:after {
    background-color: #626FEE;
}

.projectButton:hover {
    color: #fff;
    border: 1px solid #626FEE;
}

.projectButton:active {
    color: #283149;
    background-color: #626FEE;
    border: 1px solid #626FEE;
}

.fa-arrow-right {
    margin-left: 10px;
}

.iconCalendar {
    height: 20px;
    margin-right: 5px;
    transform: translateY(4px);
}

/*  --------------------------------
        INTERETS
    --------------------------------  */

.interest h2::after {
    content: 'Intérêts';
}

.interestBg {
    padding: 100px 0;
    position: relative;
}

.interestBg::after {
    content: '';
    background-color: #EDEEF2;
    height: 355px;
    width: 100%;
    position: absolute;
    bottom: 0;
    z-index: -1;
}

.fa-instagram {
    color: rgba(255, 255, 255, 0.5);
    font-size: 50px;
    margin: 0 10px;
    transition: 0.3s ease
}

.fa-instagram:hover {
    color: #fff;
    box-shadow: 0px 0px 30px 10px rgba(0, 0, 0, 0.05);
    transform: translateY(-5px);
}

.fa-instagram:active {
    color: #fff;
    transform: translateY(0);
}

/* --------------- Dark Cards --------------- */

.imgActualite {
    background-image: url(../img/image_computer.png);
}

.imgGraphisme {
    background-image: url(../img/image_jwiq.png);
    display: flex;
    justify-content: space-between;
}

.imgSport {
    background-image: url(../img/image_dumbbell.png);
}

.imgCinema {
    background-image: url(../img/image_tv.png);
}

/*  --------------------------------
        CONTACT
    --------------------------------  */

.contactBg {
    background-image: url(../img/banner.jpg);
    background-position: center;
    background-size: cover;
    height: 650px;
    position: relative;
}

.contactBg::before {
    content: '';
    display: block;
    height: 50%;
    width: 100%;
    background-image: linear-gradient(to right, #C700FF, #00DBDE);
    filter: blur(50px);
    opacity: 0.4;
    position: absolute;
    top: 0;
    z-index: -1;
}

.contactBg::after {
    content: '';
    display: block;
    height: 20px;
    width: 100%;
    background-image: linear-gradient(to right, #C700FF, #00DBDE);
    position: absolute;
    top: 0;
}

.contact {
    display: flex;
    justify-content: space-between;
}

.contact .cardItem {
    margin-top: 100px;
    text-align: center;
}

.contact .cardItem h2 {
    color: #fff;
    font-family: 'Staatliches', cursive;
    font-size: 30px;
    font-weight: 400;
    letter-spacing: 3px;
    margin-bottom: 30px;
}

/* --------------- Social Media --------------- */

.logoSocialMedia {
    color: rgba(255, 255, 255, 0.5);
    font-size: 30px;
    margin: 0 10px;
    transition: 0.3s ease
}

.logoSocialMedia:hover {
    color: #fff;
    box-shadow: 0px 0px 30px 10px rgba(0, 0, 0, 0.05);
    transform: translateY(-5px);
}

.logoSocialMedia:active {
    color: #fff;
    transform: translateY(0);
}

/* --------------- Form --------------- */

input,
textarea {
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-style: 400;
    border: none;
    border-radius: 25px;
    box-sizing: border-box;
    padding: 12px 30px;
    text-decoration: none;
    transition: 0.2s ease;
    width: 100%;
}

::placeholder {
    color: #fff;
}

input[type=text],
input[type=email] {
    background-color: rgba(255, 255, 255, 0.1);
    margin-bottom: 20px;
}

textarea {
    background-color: rgba(255, 255, 255, 0.1);
    height: 150px;
    margin-bottom: 25px;
    resize: none;
    text-align: justify;
}

input[type=submit] {
    background-color: transparent;
    border: 1px solid #fff;
    color: #ffffff;
    cursor: pointer;
    width: 130px;
    margin-bottom: 30px;
}

input[type=submit]:hover {
    transform: translateY(-5px);
    color: #626FEE;
    background-color: #283149;
    border: 1px solid #626FEE;
}

input[type=submit]:active {
    transform: translateY(0);
    color: #fff;
    background-color: #283149;
    border: 1px solid #626FEE;
}

input[type=submit]:focus {
    background-color: #283149;
    outline: none;
}

input[type=text]:hover,
input[type=email]:hover,
textarea:hover,
input[type=submit]:hover {
    box-shadow: 0px 0px 30px 10px rgba(0, 0, 0, 0.05);
}

input[type=text]:focus,
input[type=email]:focus,
textarea:focus {
    background-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0px 0px 30px 10px rgba(0, 0, 0, 0.1);
    outline: none;
}

.iconInfo {
    margin-right: 10px;
    vertical-align: -30%;
}

.contact p {
    color: #ffffff;
    font-size: 14px;
    text-align: left;

}

/*  --------------------------------
        FOOTER
    --------------------------------  */

.footer {
    height: 170px;
    background-color: #283149;
    /* background-image: linear-gradient(to right, #C700FF, #00DBDE); */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
}

.linkFooter {
    color: #fff;
}

.logoFooter {
    display: block;
    height: 60px;
    margin-bottom: 25px;
}

.fa-heart:hover {
    transition: all 0.3s;
}

.fa-heart:hover {
    color: #626FEE;
}


/* --------------------------------------
		MEDIA QUERIES (Computer)
   -------------------------------------- */

@media all and (max-width: 1150px) {

    /* ----- General ----- */

    .wrap {
        width: 80%;
    }

    /* ----- Header ----- */

    .menu {
        display: none;
    }

    .fa-bars,
    #hamburgerSidebar,
    .hamburgerActivated #hamburgerOverlay {
        display: block;
    }

    .hamburgerActivated #hamburgerSidebar {
        transform: translateX(0);
    }

}

/* --------------------------------------
		MEDIA QUERIES (Tablet)
   -------------------------------------- */

@media all and (max-width: 1024px) {

    /* ----- General ----- */

    .wrap {
        width: 80%;
    }

    .display {
        display: none;
    }

    /* ----- Items Shadows Style ----- */

    .itemShadow:before,
    .itemShadow:after {
        display: none;
    }

    /* ----- Light Cards Style ----- */

    .cardContainer {
        flex-direction: column;
    }

    .cardItem {
        width: 100%;
    }

    /* ----- Dark Cards Style ----- */

    .imgItem {
        width: 100%;
    }

    /* ----- Header ----- */

    .menu {
        display: none;
    }

    /* ----- Banner ----- */

    .bannerItem {
        height: 520px;
        transform: translateY(50px);
    }

    .banner {
        transform: translateX(-100px);
    }

    /* ----- Galerie ----- */

    .galerieBg {
        height: 1200px;
    }

    .glItemBg {
        width: 100%;
    }

    /* ----- Contact ----- */

    .contactBg {
        height: 850px;
    }

    .contact {
        flex-direction: column-reverse;
    }

    .contact .cardItem:first-child {
        margin-top: 100px;
    }
}

/* --------------------------------------
		MEDIA QUERIES (Adjustements)
   -------------------------------------- */

@media all and (max-width: 700px) {

    /* ----- Title Style ----- */

    main h2::after {
        display: none;
    }

    /* ----- Header ----- */

    #hamburgerSidebarBody a span {
        font-size: 20px;
        line-height: 50px;
    }
}

/* --------------------------------------
		MEDIA QUERIES (Phone)
   -------------------------------------- */

@media all and (max-width: 480px) {

    /* ----- General ----- */

    .wrap {
        width: 100%;
    }

    p {
        line-height: 25px;
    }

    .galerie {
        overflow: hidden;
    }

    .header,
    .contact {
        padding: 20px;
    }

    .headerName,
    .bannerName::before {
        display: none;
    }

    .contactBg {
        height: 900px;
    }

    /* ----- Banner ----- */

    .bannerBg {
        height: 1000px;
    }

    .banner {
        flex-direction: column-reverse;
        transform: translateX(0);
    }

    .photoQuentin {
        transform: translate(-10px, -30px);
    }
}