*, ::before, ::after{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: 'Poppins', sans-serif;
    background: #f1f1f1;
}

/* -------------------En construction ------------------*/

.under-construction {
    background: url(ressources/underconstruction.png);
    background-repeat: no-repeat;
    background-position: center;
    height: 500px;
    width: calc(100% - 300px);
    margin-left: auto;
    position: relative;
    margin-top: -200px;
}

@media screen and (max-width: 900px) {
    .under-construction {
        width: 100%;
        background-position: center;
    }
}



/* https://rgb.to/ */
/*-------------- Navigation --------------*/

.nav-gauche {
    width: 300px;
    height: 100vh;
    min-height: 800px;
    background: #e0e0e0;
    position: fixed;
    top: 0;
    left: 0;
    border-right: 1px dashed #f1f1f1;
    z-index: 5;
    transition: all 0.2s ease-in-out;
    display: flex;
    flex-direction: column;
}
.blocs-menu {
    width: 100%;
    height: 10%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.blocs-menu span {
    font-size: 19px;
    text-align: center;
    position: relative;
    font-weight: 700;
    cursor: pointer;
}
.blocs-menu span a {
    text-decoration: none;
    color: #646464;
}
.blocs-menu span::after {
    content: '';
    display: block;
    width: 0px;
    margin: 5px auto 0 auto;
    height: 2px;
    border-radius: 2px;
    background: #bf9268;
    transition: all 0.2s ease-out;
}
.blocs-menu span:hover::after{
    width: 100%;
}

.logo-cercle {
    background-color: #303848;
}

/*-------------- Portrait --------------*/

.blocs-menu:nth-child(1){
    width: 100%;
    height: 25%;
    background: #e0e0e0;
}

.cercle-portrait {
    margin: 10px 0;
    width: 100px;
    height: 100px;
    border-radius: 100%;
    position: relative;
    box-shadow: 26px 26px 53px #303848,
                -26px -26px 53px #3d3d3d;
}

.cercle-portrait img{
    width: 130px;
    position: absolute;
    border-radius: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.logo-cercle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    position: absolute;
    bottom: 40px;
    cursor: pointer;
}

.logo-cercle img {
    width: 70px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.contour-portrait {
    margin: 10px 0;
    width: 145px;
    height: 173px;
    border-radius: 100%;
    background: #485672;
    position: absolute;

}

 /*-------------- Nav access --------------*/
 @media screen and (max-height: 500px) {
    .blocs-menu:nth-child(1) {
        display: none;
    }
    .blocs-menu:nth-child(7) {
        display: none;
    }
    .nav-gauche {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }
 }
@media screen and (max-width: 900px) {
    .nav-gauche {
        left: -300px!important;

        width: 250px;
        min-height: 300px;

        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }
    .menu-visible {
        left: 0px!important;
    }
    .blocs-menu:nth-child(1) {
        display: none;
    }
    .blocs-menu:nth-child(7) {
        display: none;
    }
    .btn-rond-menu {
        width: 70px;
        height: 70px;
        border: 1px solid #f1f1f1;
        border-radius: 50%;
        background: #303848;
        position: fixed;
        top: 10px;
        left: 10px;
        z-index: 10;
    }

    .cont-ligne {
        width: 36px;
        height: 36px;
        cursor: pointer;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .ligne-unique {
        width: 100%;
        height: 4px;
        border-radius: 5px;
        background: #f1f1f1;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .ligne-unique::before {
        content: '';
        position: absolute;
        bottom: 10px;
        background: #f1f1f1;
        width: 100%;
        height: 4px;
        border-radius: 5px;
    }
    .ligne-unique::after {
        content: '';
        position: absolute;
        top: 10px;
        background: #f1f1f1;
        width: 100%;
        height: 4px;
        border-radius: 5px;
    }

    .cont-ligne.active .ligne-unique::after {
        top: 0;
        transform: rotate(45deg);
        transition: top 300ms ease, transform 300ms 300ms ease;
    }
    .cont-ligne.active .ligne-unique {
        background: transparent;
    }
    .cont-ligne.active .ligne-unique::before {
        bottom: 0;
        transform: rotate(-45deg);
        transition: bottom 300ms ease, transform 300ms 300ms ease;
    }
}

 /*-------------- Accueil --------------*/

.accueil {
    background: url(ressources/accueil.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: right;
    height: 100vh;
    min-height: 900px;
    width: calc(100% - 300px);
    margin-left: auto;
    position: relative;
}
h1 {
    font-size: 90px;
    font-family: 'Abril Fatface', sans-serif;
    margin: 0 60px;
    padding-top: 210px;
}
.txt-animation {
    font-size: 30px;
    margin: 10px 0 10px 60px;
}
.btn-acc {
    display: inline-flex;
    width: 200px;
    height: 50px;
    text-decoration: none;
    background: #303848;
    justify-content: center;
    align-items: center;
    color: #f1f1f1;
    margin: 10px 0 0 0;
    border-radius: 2px;
    font-size: 18px;
}
.btn-acc:hover {
    transform: scale(1.02);
}
.btn-acc1 {
    margin: 10px 0 0 60px;
}
.btn-acc2 {
    background: transparent;
    border: 2px solid #303848;
    color: #303848;
    font-weight: 700;
}
.medias {
    display: flex;
    margin-left: 60px;
    margin-top: 30px;
}
.medias-menu {
    display: flex;
    gap: 15px;
    justify-content: center;
    align-items: center;
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
}
.media {
    width: 60px;
    height: 60px;
    background: transparent;
    border: 2px solid #333;
    border-radius: 50%;
    margin-right: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}
.media2 {
    background: transparent;
    border: 2px solid #333;
}
.media3 {
    background: transparent;
    border: 2px solid #333;
}
.icone-medias {
    width: 30px;
}
.btn-rond {
    width: 70px;
    height: 70px;
    position: absolute;
    bottom: 20px;
    left: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 0 0 0 #303848;
    background: #303848;
    animation: pulse 1.3s infinite;
}
@keyframes pulse {
    to {
        box-shadow: 0 0 0 8px rgba(255,255,255,0.01);
    }   
}
.logo-btn-rond-acc {
    width: 35px;
}


/* Medias accueil */

@media screen and (max-width: 900px) {
    .accueil {
        width: 100%;
        background-position: center;
    }
}

@media screen and (max-width: 1000px) {
    .accueil {
        height: 700px;
        min-height: 0;
    }
    h1 {
        font-size: 70px;
        margin: 0 30px 0 30px;
        padding-top: 100px;
    }
    .accueil p {
        margin: 20px 0 20px 30px;
    }
    .btn-acc1 {
        margin: 10px 0 0 30px;
    }
    .medias {
        margin-left: 30px;
    }
    .btn-rond {
        display: none;
    }
}
@media screen and (max-width: 700px) {
    .accueil {
        height: 600px;
    }
    h1 {
        font-size: 50px;
        margin: 0 30px;
    }
    .accueil p {
        font-size: 20px;
    }
    .btn-rond-menu {
        width: 60px;
        height: 60px;
    }
}
@media screen and (max-width: 500px) {

    h1 {
        font-size: 35px;
    }
    .accueil p {
        font-size: 16px;
    }
    .btn-acc {
        width: 120px;
        font-size: 13px;
        height: 40px;
        margin: 10px 0 0 5px;
    }
    .btn-acc1 {
        margin: 10px 0 0 30px;
    }
    .media {
        width: 40px;
        height: 40px;
    }
    .icone-medias {
        width: 20px;
    }

}
@media screen and (max-width: 450px) {
    .btn-rond-menu {
        width: 50px;
        height: 50px;
    }
    .cont-ligne{
        width: 20px;
        height: 38px;
    }
    .ligne-unique {
        height: 3px;
    }
    .ligne-unique::before {
        bottom: 8px;
        height: 3px;
    }
    .ligne-unique::after {
        top: 8px;
        height: 3px;
    }
    .accueil {
        height: 500px;
    }
    h1 {
        margin: 0 30px 0 5px;
        padding-top: 120px;
    }
    .accueil p {
        margin: 30px 0 0 5px;
    }
    .btn-acc {
        width: 100px;
        font-size: 12px;
        height: 35px;
        margin: 30px 0 0 5px;
    }
    .medias {
        margin-top: 30px;
        margin-left: 5px;
    }
    .icone-medias {
        width: 20px;
    }
}

@media screen and (max-width: 380px) {
    .txt-animation {
        font-size: 15px!important;
    }
}
@media screen and (max-width: 370px) {
    .txt-animation {
        font-size: 13px!important;
    }
}

/* ---------- Section Presentation ---------- */

.presentation {
    width: 100%;
    position: relative;
    overflow: hidden;
    color: #e7e7e7;
}
.fond-forme {
    background: #485563;
    background-image: linear-gradient(to right, #303848, #53607c);
    width: 2300px;
    height: 1100px;
    position: absolute;
    transform: rotate(-45deg) translateX(100px) translateY(-15px);
    z-index: -1;
}

.titre-pres {
    font-size: 40px;
    text-align: center;
    margin: 50px 0 70px 0;
    padding-left: 300px;
}

.container-presentation {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    margin: 50px 0 130px 0;
    flex-shrink: 0;
    padding-left: 300px;
}
.pres-gauche {
    width: 600px;
    flex-shrink: 0;
    margin-bottom: 50px;
    padding-left: 120px;
    padding-top: 20px;
}
.pres-gauche h3 {
    text-align: center;
    font-size: 25px;
    letter-spacing: 2px;
}
.pres-gauche hr {
    width: 185px;
    background-color: #bf9268;
    border-color:  #bf9268;
    margin: 0 auto 20px auto;
}
.pres-gauche p {
    text-align: justify;
}

.pres-droite {
    width: 600px;
    flex-shrink: 0;
    display: flex;
    justify-content: flex-start;
}
.liste-presentation {
    list-style-type: none;
    padding: 10px 0 50px 100px;
}
.chiffre-style {
    font-family: 'Abril Fatface', sans-serif;
    font-size: 30px;
}
.txt-liste {
    font-size: 20px;
    display: inline;
}

/* Medias Presentation */

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

    .container-presentation{
        padding-left: 0px;
    }
    .titre-pres {
        padding-left: 0px;
    }
    .fond-forme{
        margin-left: 0px;
        width: 100%;
        height: 150%;
        transform: rotate(0) translateY(0) translateX(0);
    }
}

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

    .fond-forme {
        width: 100%;
        height: 150%;
        transform: rotate(0) translateY(0) translateX(0);
    }
    .titre-pres {
        margin: 0 0 20px 0;
        padding-top: 50px;
    }
    .container-presentation {
        flex-direction: column;
    }
    .pres-gauche {
        width: 80%;
        flex-shrink: 1;
        margin-bottom: 10px;
        padding: 20px 0;
    }
    .pres-gauche h3 {
        font-size: 20px;
        letter-spacing: 0px;
    }
    .pres-gauche hr {
        width: 130px;
    }
    .pres-gauche p {
        font-size: 16px;
    }
    .pres-droite {
        width: 80%;
        flex-shrink: 1;
    }
    .liste-presentation{
        padding: 0 0;
    }
}

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

    .container-presentation {
        margin-top: 10px;
        margin-bottom: 70px;
    }
    .titre-pres {
        font-size: 24px;
        margin: 0 10px
    }
    .pres-gauche h3 {
        font-size: 20px;
    }
    .chiffre-style {
        font-size: 30px;
    }
    .txt-liste {
        font-size: 17px;
    }
}
/* ------------------ Section Competences --------------------- */

.section-range {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding-bottom: 200px;
    position: relative;
    overflow: hidden;
    color: #e7e7e7;
}
.fond-forme-grill-skill {
    background: #485563;
    background-image: linear-gradient(to right, #303848, #53607c);
    width: 2300px;
    height: 1100px;
    margin-left: 90px;
    position: absolute;
    transform: rotate(45deg) translateX(100px) translateY(-15px);
    z-index: -1;
}

/* Section Entreprises */

.section-entreprises {
    width: calc(100% - 300px);
    margin-left: auto;
    position: relative;
    overflow: hidden;
    color: #e7e7e7;
}

.fond-forme-entreprises {
    background: #485563;
    background-image: linear-gradient(to right, #303848, #53607c);
    width: 2300px;
    height: 1100px;
    position: absolute;
    transform: rotate(-45deg) translateX(100px) translateY(-15px);
    z-index: -1;
}

.titre-entreprises {
    font-size: 40px;
    text-align: center;
    margin: 50px 0 70px 0;
}

.container-slider {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    margin: 50px 0 130px 0;
    flex-shrink: 0;
    min-height: 280px;
}

.slider-container {
    width: 100%;
    overflow: hidden;
    padding: 40px 0;
}

.slider-track {
    display: flex;
    gap: 40px;
    will-change: transform;
}

.slider-item {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.bubble {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: white;
    border: 3px solid #f1f1f1;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bubble:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(0,0,0,0.4);
}

.bubble img {
    width: 80%;
    height: 80%;
    object-fit: contain;
}

.bubble-name {
    font-weight: 600;
    color: #e7e7e7;
    font-size: 16px;
    max-width: 150px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Medias section entreprises */

@media screen and (max-width: 900px) {
    .section-entreprises {
        width: 100%;
    }
    .titre-entreprises {
        padding-left: 0;
    }
    .container-slider {
        padding-left: 0px;
        margin-left: 0;
        margin-right: 0;
    }
    .fond-forme-entreprises {
        margin-left: 0px;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        transform: rotate(0) translateY(0) translateX(0);
    }
}

@media screen and (max-width: 1100px) {
    .fond-forme-entreprises {
        width: 100%;
        height: 100%;
        transform: rotate(0) translateY(0) translateX(0);
    }
}

@media screen and (max-width: 700px) {
    .titre-entreprises {
        font-size: 28px;
        margin-bottom: 40px;
    }
    .container-slider {
        padding: 0 20px;
    }
    .slider-item {
        gap: 15px;
    }
    .bubble {
        width: 120px;
        height: 120px;
    }
    .bubble-name {
        font-size: 14px;
    }
}

.range-cont {
    position: relative;
}
.titre-exp {
    font-size: 40px;
    text-align: center;
    margin: 80px 0 90px 0;
    padding-left: 300px;
}
.grille-skill {
    display: grid;
    grid-template: repeat(3,80px) / repeat(2, 500px);
    grid-gap: 50px;
    padding-left: 300px;
}
.barre-skill {
    height: 15px;
    background: #bf9268;
    border-radius: 5px;
    position: absolute;
    left: 0;
    bottom: 0;
}
.barre-grises {
    position: absolute;
    z-index: -1;
    left: 0;
    bottom: 0;
    width: 500px;
    height: 15px;
    background: rgb(216,216,216);
    border-radius: 5px;
}
.b1 {
    width: 85%;
}
.b2 {
    width: 75%;
    background: rgb(169, 164, 197);
}
.b3 {
    width: 70%;
    background:  rgb(169, 164, 197);
}
.b4 {
    width: 65%;
}
.b5 {
    width: 65%;
}
.b6 {
    width: 50%;
    background:  rgb(169, 164, 197);
}
.label-skill {
    font-size: 24px;
}

/* Medias Range */

@media screen and (max-width: 1400px) {
    .grille-skill{
        grid-template: repeat(3,80px) / repeat(2,450px);
    }
    .barre-grises {
        width: 450px;
    }
}

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

    .section-range {
        padding-left: 0;
    }
    .titre-exp {
        padding-left: 0;
    }
    .grille-skill {
        grid-template: repeat(6,80px) / 600px;
        padding-left: 0;
    }
    .barre-grises {
        width: 600px;
    }
    .fond-forme-grill-skill  {
        margin-left: 0px;
        width: 100%;
        height: 150%;
        transform: rotate(0) translateY(0) translateX(0);
    }
    .b3{
        background: #bf9268;
    }
    .b4{
        background: rgb(169, 164, 197);
    }
}

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

    .grille-skill {
        grid-template: repeat(6,80px) / 400px;
    }
    .barre-grises {
        width: 400px
    }

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

    .section-range{
        padding-bottom: 100px;
    }
    .titre-exp {
        font-size: 30px;
        margin: 50px 0 60px 0;
    }
    .label-skill {
        font-size: 20px;
    }
    .grille-skill{
        grid-template: repeat(6,80px) / 300px;
        grid-gap: 40px;
    }
    .barre-grises {
        width: 300px;
    }
}
/*------------ Section experience travail --------- */

.travail-exp {
    width: calc(100% - 300px);
    height: auto;
    margin-left: auto;
    padding-bottom: 10px;
}

.titre-travail-exp {
    text-align: center;
    margin: 70px 0;
    font-size: 40px;
    color: #333;
}
.cont-exp-travail {
    position: relative;
    display: flex;
    justify-content: center;
}
.barre-verticale {
    width: 5px;
    background: #000;
    display: block;
    position: absolute;
    left: calc(50% - 430px);
    top: 0;
    bottom: 0;
    z-index: 1;
}
.boule-ico {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid #333;
    background: #f1f1f1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}
.boule-ico:nth-child(1) {
    top: 0;
}
.boule-ico:nth-child(2) {
    top: 24%;
}
.boule-ico:nth-child(3) {
    top: 48%;
}
.boule-ico:nth-child(4) {
    top: 74%;
}
.boule-ico img {
    width: 25px;
}

.flex-cont-bloc-exp {
    width: 800px;
    flex-shrink: 1;
    height: auto;
    position: relative;
    z-index: 0;
}
.bloc {
    width: 100%;
    height: auto;
    min-height: 250px;
    margin-bottom: 37.5px;
    cursor: pointer;
    border: 1px solid #333;
    position: relative;
    z-index: 0;
}
.contenu-bloc {
    padding: 20px;
    width: 100%;
    height: auto;
    border: 2px solid black;
    background: white;
    transition: transform 0.25s ease-in-out;
    position: relative;
    transform: translate(10px, -10px);
}
.contenu-bloc:hover {
    transform: translate(0,0);
}
.bloc1 {
    background: #bf9268;
}
.bloc2 {
    background: #303848;
}
.bloc3 {
    background: #bf9268;
}
.bloc4 {
    background: #303848;
}

.titre-section-bloc {
    font-family: 'Abril Fatface', sans-serif;
    font-size: 25px;
    padding-bottom: 10px;
}

/* Media section travail exp */
@media screen and (max-width: 900px) {
    .travail-exp {
        width: 100%;
    }
}
@media screen and (max-width: 950px) {

    .barre-verticale {
        left: 30px;
    }
    .flex-cont-bloc-exp {
        margin-right: 30px;
        margin-left: 90px;
    }

}

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

    .txt-section  {
        font-size: 16px;
    }
}

@media screen and (max-width: 480px) {
    .titre-section-bloc {
        font-size: 20px;
    }
}

@media screen and (max-width: 380px) {
    .txt-section {
        font-size: 15px;
    }

}

@media screen and (max-width: 340px) {
    .titre-section-bloc {
        font-size: 18px;
    }
}

@media screen and (max-width: 300px) {
    .txt-section {
        font-size: 14px;
    }
}

/* Section Parallax */
.section-parallax {
    width: 100%;
    height: 500px;
    background: url(ressources/paralax.jpg) no-repeat right / cover fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #303848;
}
.txt-par {
    font-size: 30px;
    font-weight: bold;
    margin: 0 50px;
}
.txt-par:nth-child(1){
    padding-left: 300px;
}

@media screen and (max-width: 900px) {
    .txt-par {
        font-size: 25px;
        margin: 0 30px;
    }
    .txt-par:nth-child(1) {
        padding-left: 0px;
    }
    
}
@media screen and (max-width: 700px) {

.txt-par {
    font-size: 22px;
    margin: 0 25px;
}
}
@media screen and (max-width: 550px) {

    .section-parallax {
        flex-direction: column;
    }
    .txt-par {
        font-size: 20px;
        margin: 20px 0px;
    }

}

/* Section Contact */

.section-contact {
    width: 100%; 
    height: auto;
}
.section-contact h2 {
    text-align: center;
    color: #333;
    font-size: 48px;
    font-weight: 400;
    margin-bottom: 50px;
    padding: 70px 0 0 300px;
}
.section-contact h2 strong {
    font-weight: 900;
}

.container-form {
    margin: 0 auto;
    width: 70%;
    padding-left: 300px;
}
.form-groupe {
    position: relative;
    display: flex;
    margin-bottom: 45px;
}
.form-groupe label {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    color: #aaa;
    font-size: 20px;
    transition: 0.4s ease-out;
}
.form-groupe input {
    display: block;
    width: 100%;
    padding: 10px 0px;
    border: none;
    outline: none;
    background: none;
    border-bottom: 3px solid #aaa;
    color: #666;
    font-size: 20px;
    transition: 0.4s ease-out;
}
textarea {
    width: 100%;
    height: 200px;
    border: none;
    border: 3px solid #aaa;
    border-radius: 3px;
    padding: 5px;
    resize: none;
    outline: none;
    font-size: 20px;
    transition: 0.4s all ease-out;
    background: #f1f1f1;
}
textarea::placeholder {
    font-size: 20px;
    opacity: 0.5;
}
textarea:focus {
    border-color: #303848;
}

.form-groupe:nth-child(4) {
    margin-bottom: 25px;
    justify-content: flex-start;
}

.form-groupe .button-sub {
    display: block;
    width: auto;
    padding: 15px 60px;
    border: 3px solid rgb(144,144,144);
    border-radius: 999px;
    background-image: linear-gradient(to right, transparent 50%, rgb(48,56,72) 50%, rgb(61,61,61));
    background-size: 200%;
    color: #333;
    font-size: 24px;
    font-weight: 500;
    cursor: pointer;
}
.form-groupe .button-sub:hover {
    color: #fff;
    background-position: 100%;
    border: 3px solid #fff;
}
@media screen and (max-width: 900px) {
    .section-contact h2 {
        padding: 70px 0 0 0;
    }
    .container-form{
        padding-left: 0;
    }
    .form-groupe:nth-child(4){
        justify-content: center;
    }
}

/* Animation Contact */

.form-groupe:focus-within label,
.form-groupe.animation label {
    top: 0px;
    transform: translateY(-100%);
    color: #303848;
}

/* Footer */

footer {
    width: 100%;
    text-align: center;
    padding-top: 100px;
    padding-left: 300px;
}
@media screen and (max-width: 900px) {
    footer {
        padding-left: 0px;
    }
}