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

:root{
    --bg-color: #1f242d;
    --second-bg-color: #323946;
    --main-color: #0ef;
  }

/*-------------- Navigation --------------*/

.nav-gauche {
    width: 300px;
    height: 100vh;
    min-height: 800px;
    background: #333;
    opacity:85%;
    position: fixed;
    display: flex;
    flex-direction: row;
    top: 0;
    left: -300px;
    border-right: 3px double #f1f1f1;
    z-index: 5;
    transition: all .5s ease-in-out;
}
.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: #f1f1f1;
}
.blocs-menu span::after {
    content: '';
    display: block;
    width: 0px;
    margin: 5px auto 0 auto;
    height: 2px;
    border-radius: 2px;
    background: #aaa;
    transition: all 0.2s ease-out;
}
.blocs-menu span:hover::after {
    width: 100%;
}

/* Portrait */

.blocs-menu:nth-child(1) {
    width: 100%;
    height: 25%;
    background: #333;
}
.cercle-portrait {
    margin: 20px 0;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    position: relative;
    box-shadow: 26px 26px 53px #292929,
                -26px -26px 53px #3d3d3d;
}
.cercle-portrait img {
    width: 100px;
    position: absolute;
    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%);
}

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

    .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: #333;
        position: fixed;
        top: 10px;
        right: 20px;
        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(Assets/grow.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 100vh;
    min-height: 900px;
    width: calc(100% - 300px);
    padding-left: 2%;
    position: relative;
    text-align: baseline ;
    gap: 8px;
}
h1 {
    font-size: 90px;
    font-family: 'Abril Fatface', sans-serif;
    /* margin: 0 60px; */
    padding-top: 210px;
}
h2{
    font-size: 70px;
    font-weight: lighter;
    font-style: oblique;
}
.nme{
    color:#8b5a5a;
    cursor: pointer;
    transition:all 0.8s ease;
}
.nme:hover{
    transform:translatey(-9px);
    color:#cb2626;
    filter: drop-shadow(4px #000);
}

.btn-acc {
    display: inline-flex;
    width: 200px;
    height: 50px;
    text-decoration: none;
    background: #000;
    justify-content: center;
    align-items: center;
    color: #f1f1f1;
    margin: 10px 0 0 0;
    border-radius: 2px;
    font-size: 18px;
}
.btn-acc1 {
    margin: 10px 0 0 60px;
}
.btn-acc2 {
    background: transparent;
    border: 2px solid black;
    color: black;
    font-weight: 700;
}
.medias {
    display: flex;
    margin-left: 60px;
    margin-top: 30px;
}
.media {
    width: 60px;
    height: 60px;
    background: #333;
    border-radius: 50%;
    margin-right: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}
.media2 {
    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 #333;
    background: #333;
    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: 1300px) {
    .accueil {
        width: 100%;
        background-position: center;
    }
    h2{
        font-size:250% ;
    }
}
@media screen and (max-width: 1000px) {
    .accueil {
        height: 100%;
        min-height: 0;
    }
    h1 {
        font-size: 70px;
        margin: 0 30px 0 30px;
        padding-top: 100px;
    }
    .accueil h2{
        font-size:200% ;
    }
    .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;
    }
    h2{
        font-size:120%;
    }
    .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;
    }
    h2{
        font-size:60% ;
    }
    .media {
        width: 40px;
        height: 40px;
    }
    .icone-medias {
        width: 20px;
    }

}

@media screen and (max-width: 450px) {
    .btn-rond-menu {
        width: 50px;
        height: 50px;
    }

    .accueil{
        margin-bottom: 40px;
    }
    .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;
    }
    h2{
        font-size: 60%;
    }
    .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;
    border-top: 1px dashed #333;
    /* border-bottom: 1px dashed #333; */
    color: #FFF;
}
.fond-forme {
    background: #757d86;
    background-image: linear-gradient(to right, #29323c, #485563);
    color: #f1f1f1;
    width: 2300px;
    height: 1000px;
    position: absolute;
    /* transform: rotate(-50deg) ; */
    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: 60px;
    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 110px;
}
.chiffre-style {
    font-family: 'Abril Fatface', sans-serif;
    font-size: 40px;
}
.txt-liste {
    font-size: 27px;
    display: inline;
}

/* Medias Presentation */

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

    .container-presentation{
        padding-left: 0px;
    }
    .titre-pres {
        padding-left: 0px;
    }

}

@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;
        margin-bottom: 100px;
    }
    .pres-gauche {
        width: 80%;
        flex-shrink: 1;
        margin-bottom: 10px;
        padding: 20px 0;
    }
    .pres-gauche h3 {
        font-size: 20px;
        letter-spacing: 0px;
    }

    .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 Portfolio --------------------- */

.portfolio {
    width: 100%;
    background:url();
}
.titre-port {
    text-align: center;
    padding: 50px 0;
    font-size: 70px;
    padding-left: 300px;
   
}

.cont-portfolio {
    width: 100%;
    height: auto;
    margin: 0 auto 100px auto;
    padding-left: 300px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}
.item {
    margin: 20px;
    width: 420px;
    height: 400px;
    background: #f0f2f0;
    color: #333;
    transition: transform 0.3s ease-out;
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
}
.item:hover {
    transform: translateY(-5px);
}
.cont-img-port {
    width: 100%;
    height: 220px;
    overflow: hidden;
}
.cont-img-port img {
    width: 100%;
    height: auto;
}
.item h3 {
    padding: 10px 10px 0;
    font-size: 22px;
}
.item p {
    padding: 10px 10px 0;
}
.btn-projets {
    display: block;
    margin: 10px;
    width: 180px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    color: #333;
    text-decoration: none;
    border: 1px solid #333;
    border-radius: 3px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-projets::after {
    content: '';
    height: 240px;
    width: 100px;
    background: rgba(255,255,255,0.4);
    display: block;
    position: absolute;
    left: -150px;
    top: -50px;
    transform: rotate(-45deg)
}
.btn-projets:hover::after {
    transition: transform 0.3s 0.1s linear;
    transform: translateX(400px);
}
/* Media portfolio */

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

    .cont-portfolio{
        padding-left: 0;
    }
    .titre-port {
        font-size: 40px;
        margin: 50px 0 70px;
        padding-left: 0;
    }

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

    .titre-port {
        margin: 10px 0;
        padding: 30px 0;
    }
    .item {
        height: 420px;
    }
    .cont-img-port {
        height: auto;
    }

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

    .item {
        height: 380px;
    }

}

/*---------- section services ------------*/




#Services .heading{
    margin-top: 5rem;
    margin-bottom: 3rem;
    text-align: center;
    
  }
  
  .Services-container{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin:0% 6%; 
  }
  
  .Services-container .Services-box{
    margin-top: 4rem;
    flex: 1 1 30rem;
    background: var(--second-bg-color);
    padding: 3rem 2rem 4rem;
    border-radius: 2rem;
    text-align: center;
    border: .2rem solid var(--bg-color);
    transition: .5s ease;
  }
  
  .Services-container .Services-box:hover{
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.02);
  }
  
  .Services-box i{
    font-size: 7rem;
    color: var(--main-color);
  }
  
  .Services-box h3{
    font-size: 2.0rem;
    color: #f1f1f1;
  }
  
  .Services-box p{
    font-size: 1.6rem;
    margin: 1rem 0 3rem;
    color: #f1f1f1;

  }

  
.Services-box .btn{
    display: inline-block;
    padding: 1rem 2.8rem;
    background: #FFF;
    border-radius: 4rem;
    box-shadow: 0 0 1rem rgba(255, 255, 255, 0.5);
    font-size: 1.6rem;
    color: var(--second-bg-color);
    font-weight: 600;
    transition: .5s ease;
  }
  
  .services-box .btn:hover{
    box-shadow: none;
  }
  
  @media screen and (max-width: 1400px) {
 
}

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

  
}

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

    #Services .heading{
        margin: 1rem;
       font-size: 200%;
       font-weight: 600;
      }

    .Services-container{
        flex-direction: column;
        gap: 2rem;
        margin:0% 6%; 
      }

      .Services h3{
        width: 150px;

      }
      .Services-container .Services-box p{
        font-size: 20px;
        padding: 1rem 1rem 1rem;
      }

        
.Services-box .btn{
    box-shadow: 0 0 0.5rem var(--main-color);
    font-size: 1rem;
    color: var(--second-bg-color);
    font-weight: 600;
    margin:0 ;
 
  }

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

 
}

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

}

  
/*--------- Section Range -------------- */

.section-range {
    width: 100%;
    /* height: auto; */
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding-bottom: 200px;
    border-bottom: 1px dashed #333;
    background: #485563;
    background-image: linear-gradient(to right, #29323c, #485563);
    color: #f1f1f1;
    position: relative;
    margin-top: 200px;
    z-index: -1;
}
.range-cont {
    position: relative;
}
.titre-exp {
    font-size: 40px;
    text-align: center;
    margin: 80px 0 90px 0;
    padding-left: 300px;
}

  /* skill section  */

.skill{
    width:160px ;
    height: 160px;
    position:relative ;
}

.outer{

    width:160px ;
    height: 160px;
    border-radius: 50%;
    /* border: 1px solid red; */
    box-shadow: 6px 6px 10px -1px rgba(0,0 ,0 ,0.15),
                -4px -4px 8px -1px rgba(255,255,255,0.7);
    padding: 20px;
}

.inner {

    width:120px ;
    height: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    /* border: 1px solid red; */
    box-shadow: inset 4px 4px 4px -1px rgba(0,0 ,0 ,0.2),
                inset -2px -2px 4px -1px rgba(255,255,255 ,0.7),
                -0.5px -0.5px 0px rgba(255,255,255, 1),
                0.5px 0.5px 0px rgba(0,0,0,0.1),
                0px 12px 10px -19px rgba(0,0,0,0.5);

}

#number{

    font-size: 15px;
    font-weight: 600;
    color:#FFF;
    text-align: center;
    line-height: 160%;
}

.one{
    fill: none;
    stroke: url(#GradientColoro);
    stroke-width: 20px;
    stroke-dasharray: 472;
    stroke-dashoffset: 472;
    animation: anim 2s linear forwards;
}
@keyframes anim{
    100%{
        stroke-dashoffset: 150;
    }
}

.two{
    fill: none;
    stroke: url(#GradientColorT);
    stroke-width: 20px;
    stroke-dasharray: 472;
    stroke-dashoffset: 472;
    animation: animo 2s linear forwards;
}
@keyframes animo{
    100%{
        stroke-dashoffset: 270;
    }
}
.three{
    fill: none;
    stroke: url(#GradientColort);
    stroke-width: 20px;
    stroke-dasharray: 472;
    stroke-dashoffset: 472;
    animation: animi 2s linear forwards;
}
@keyframes animi{
    100%{
        stroke-dashoffset: 270;
    }
}
.four{
    fill: none;
    stroke: url(#GradientColorf);
    stroke-width: 20px;
    stroke-dasharray: 472;
    stroke-dashoffset: 472;
    animation: anima 2s linear forwards;
}
@keyframes anima{
    100%{
        stroke-dashoffset: 200;
    }
}
.five{
    fill: none;
    stroke: url(#GradientColorF);
    stroke-width: 20px;
    stroke-dasharray: 472;
    stroke-dashoffset: 472;
    animation: anime 2s linear forwards;
}
@keyframes anime{
    100%{
        stroke-dashoffset: 200;
    }
}

svg{
    position: absolute;
    top: 0;
    left: 0;
    
}


 .grille-skill {
    display: flex;
    flex-wrap: wrap;
    gap: 150px;
    margin-left: 200px;
}



.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: 1300px) {

    .section-range {
        padding-left: 0;
        
    }
    .titre-exp {
        padding-left: 0;
    }
    .grille-skill {
        grid-template: repeat(6,80px) / 600px;
        padding-left: 0;
        margin:0px 15%;
    }
    .barre-grises {
        width: 600px;
    }

}

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

    .grille-skill {
        grid-template: repeat(6,80px) / 400px;
        margin:0px 10%;
    
}
}
@media screen and (max-width: 700px) {

    .grille-skill {
        grid-template: repeat(6,80px) / 400px;
        margin-left: 200px;
    }
    .barre-grises {
        width: 400px
    }
    .section-range{
        margin-top: 100px;
    }

}
@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;
        margin-left: 150px;

    }
    .barre-grises {
        width: 300px;
    }
}

@media screen and (max-width: 400px) {
    .grille-skill{
        grid-template: repeat(6,80px) / 300px;
        grid-gap: 40px;
        margin-left: 100px;

}

}

/* Section Contact */

.section-title {
    flex: 0 0 100%;
    max-width: 100%;
    text-align: center;
  }
  .section-title h2 {
    font-size: 2rem;
    color: var(--bg-black-900);
    font-weight: 600;
    margin-bottom: 6rem;
    position: relative;
  } 

  .contact-title .row{
    display:flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
  }


h3.contact-title {
    color: var(--skin-color);
    font-weight: 700;
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
  }
  
  h4.contact-sub-title {
    color: var(--bg-black-700);
    font-weight: 700;
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 6rem;
  }


  .contact-info-item {
    /* flex: 0 0 25%;
    max-width: 25%; */
    text-align: center;
    margin-bottom: 4rem;
  }
  .contact-info-item .icon {
    display: inline-block;
  }
  .contact-info-item .icon .fa {
    font-size: 2.5rem;
    color: var(--skin-color);
  }
  
  
  .contact-info-item h4 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--bg-black-900);
    text-transform: capitalize;
    margin: 1.5rem 0 0.5rem;
    font-weight: 500;
    color: var(--bg-black-700);
  }
  .contact-info-item h4.dark{
    color:var(--bg-white-700);
  }

.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: #c78bd7;
}

.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(65,65,65) 50%, rgb(134,134,134));
    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: 1300px) {
    .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: #c78bd7;
}

/* Footer */

footer {
    width: 100%;
    background-color: #757d86;
    text-align: center;
    padding-top: 50px;
    padding-bottom: 50px;
    margin-bottom: 10px;
    
}

.btn-social {
    height: 2.5rem;
    width: 2.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border-radius: 100%;
  }

  .btn-dark {
    color: #fff;
    background-color: #212529;
    border-color: #212529;
  }

@media screen and (max-width: 1300px) {
    footer {
        padding-left: 0px;
    }
}
