@font-face {
    font-family: "Objectivity";
    src: url("../assets/font/objectivity/OBJECTIVITY-REGULAR.OTF");
}
@font-face {
    font-family: "Nexa";
    src: url("../assets/font/nexa/NEXA-BOLD.OTF");
}
/*html{*/
/*    scroll-behavior: smooth;*/
/*}*/
body{
    background-color: #ffffff;
    font-family: Objectivity;
	scroll-behavior: smooth;
}

#style-1::-webkit-scrollbar-track
{
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
    box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
    border-radius: 10px;
    background-color: #F5F5F5;
}

#style-1::-webkit-scrollbar
{
    width: 12px;
    background-color: #F5F5F5;
}

#style-1::-webkit-scrollbar-thumb
{
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);
    box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
    background-color: #555;
}


.flexx{
    width: 100%;
    height: 100%;
    background-color: #fff;
    position: fixed;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation-duration: 2.5s;
    animation-delay: 2.8s;
    animation-name: fade;
    animation-fill-mode: forwards;
    z-index: 98;
    
}
video{
    top: 0;
    left: 0;
    width: 10%;
    z-index:99;
    margin-top: auto;
    margin-bottom: auto;
    animation-duration: 2s;
    animation-delay: 2.5s;
    animation-name: fade;
    animation-fill-mode: forwards;
}

@keyframes fade {
    from {
      opacity: 1;
      z-index:99;
    }
  
    to {
      opacity: 0;
      z-index:-99;
    }
  }

  

  @media(max-width:768px){

    video{
        top: 0;
        left: 0;
        width: 50%;
        z-index:99;
        margin-top: auto;
        margin-bottom: auto;
        animation-duration: 2s;
        animation-delay: 2.5s;
        animation-name: fade;
        animation-fill-mode: forwards;
    }
    
}


a{
    text-decoration: none;
}
button{
    font-family: Objectivity;
    cursor: pointer;
}
*{
    margin: 0;
    padding: 0;
}

p{
    line-height: 1.5em;
}

/*part1*/
.part1{
    height: 800px;
    /*border: 3px solid black;*/
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
    padding-bottom: 200px;
}
/*nav-bar*/
header{
    padding: 20px;
    display: flex;
    justify-content: space-between;
}
header .logo{
    margin-left: 40px;
    width: 50px;
}
.cgv{
    margin-right: 40px;
    color: #f1f1f1;
    cursor: pointer;
    font-family: Objectivity;
    background-color: #000;
    font-weight: 400;
    border: 1.5px solid #000;
    box-shadow: 0px 4px 80px rgba(0, 0, 0, 0.3);
    padding: 15px 30px 10px 30px;
    border-radius: 99px;
    transition: 1s;
}
 .cgv:hover{
    border: 1.5px solid #000;
    background-color: transparent;
    color: #000;
    background-position: left bottom;
}

/*fin nav-bar*/

/*presentation*/

.presentation{
    display: flex;
    align-items: center;
    flex-direction: column;
    text-align: center;
    padding-top: 200px;
    z-index: 2;
}
.presentation p{
    color:#5F5F5F;
    margin-top: 30px;
    font-size: 18px;
} 
.reseaux-sociaux{
    margin-top: 20px;
}
.reseaux-sociaux img{
    margin-left: 5px;
    margin-right: 5px;
}

.rellax{
    position:absolute;
}

#cercle1{
    top: 5%;
    left: 0px;
    z-index: -1;
    /*animation: floating1 10s ease-in-out 0s infinite;*/
}
#crayon1{
    top: 3%;
    left: 27%;
    z-index: -1;
    /*animation: floating2 10s ease-in-out 0s infinite;*/
}
#triangle1{
    top: 4%;
    left: 70%;
    z-index: -1;
    /*animation: floating3 10s ease-in-out 0s infinite;*/
}
#carre1{
    top: 7%;
    right: 0%;
    z-index: -1;
    /*animation: floating4 10s ease-in-out 0s infinite;*/
}
#barre1{
    top:16%;
    left: 50%;
    z-index: -1;
    /*animation: floating5 10s ease-in-out 0s infinite;*/
}
#chaine1{
    top: 14%;
    left: 25%;
    z-index: -1;
    /*animation: floating6 10s ease-in-out 0s infinite;*/
}/* 
 @keyframes floating1 {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(20px);
    }
    100% {
        transform: translateY(0px);
    }
}
@keyframes floating2 {
    0% {
        transform: translate(0px,0px);
    }
    40% {
        transform: translate(-30px,-30px);
    }
    100% {
        transform: translate(0px,0px);
    }
    150% {
        transform: translate(20px,40px);
    }
    200% {
        transform: translate(0px,0px);
    }
}
@keyframes floating3 {
    0% {
        transform: translateX(0px);
    }
    50% {
        transform: translateX(20px);
    }
    100% {
        transform: translateX(0px);
    }
}
@keyframes floating4 {
    0% {
        transform: translate(0px);
    }
    50% {
        transform: translate(-20px,30px);
    }
    100% {
        transform: translate(0px);
    }
}
@keyframes floating5 {
    0% {
        transform: translate(0px);
    }
    50% {
        transform: translate(30px,30px);
    }
    100% {
        transform: translate(0px);
    }
}
@keyframes floating6 {
    0% {
        transform: translateX(0px);
    }
    50% {
        transform: translateX(50px);
    }
    100% {
        transform: translateX(0px);
    }
} */

/*fin part1*/

/* part2 */
.part2{
    background: linear-gradient(104.18deg, #EE6C4D -1.93%, #EF233C 103.2%) no-repeat;
    display: flex;
    align-content: center;
    align-items: center;
    flex-direction: column;
    z-index: 6;
    border-bottom-left-radius: 75px 75px;
    border-bottom-right-radius: 75px 75px;
}

.header{
    text-align: center;
}
.container-card-graphiste{
    display: flex;
    justify-content: space-around;
    align-content: center;
    width: 1250px;

}
.container-cards{
    margin: 50px;
}
.card-graphiste{
    background-color: white;
    width: 330px;
    height: 210px;
    margin: 25px 10px;
    padding:25px;
    border-radius: 20px;
    transition: 1s;
}
.mini-header{
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}
.title{
    font-size: 30px;
    font-weight: bold;
    color: white;
    margin: 50px;
    font-family: Nexa;
}
.subtitle{
    color: white;
}
.logo-equipe{
    vertical-align: middle;
    margin-right: 20px;
    transition: 0.25s ease-in-out;
}

.logo-equipe:hover{
    transform: scale(1.2);
}

#logo-equipe-contour{
    border: 2px #6290C8 solid;
    border-radius: 99px;
}
.nom{
    color: #EF233C;
    font-weight: bold;
    font-family: Nexa;
}
.description{
    color:#939393;
}

/* portoflio part 3 */
.part3{
    background-color: #ffffff;
    padding-top: 30px;
}
.header-portfolio{
    margin-top: 30px;
    display: flex;
    align-items: center;
    flex-direction: column;
}
.title-portoflio{
    font-size: 40px;
    font-weight: bold;
    color: #EF233C;
    margin-bottom: 60px;
    font-family: Nexa;
}
.subtitle-portfolio{
    width: 1000px;
    text-align: center;
    margin-bottom: 100px;
}
/* image portfolio */
.container-img-portfolio{
    position: relative;
    height: 130vh;
}
.img-portfolio{
    position: absolute;
    z-index: -0;
    transition: 0.5s ease;
}

.img-portfolio:hover{
    transform: scale(1.3);
}

.container-img-portfolio-res{
    display: none;
}


#img1{
    top: 5%;
    left: 5%;
    width: 20%;
    border-radius: 11px;
    box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.06);
    filter: drop-shadow(0px 10px 36px rgba(0, 0, 0, 0.16));
}
#img2{
    top: 12%;
    left: 45%;
    width: 10%;
    border-radius: 11px;
    box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.06);
    filter: drop-shadow(0px 10px 36px rgba(0, 0, 0, 0.16));
}
#img3{
    top: 10%;
    left: 85%;
    width: 15%;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
    box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.06);
    filter: drop-shadow(0px 10px 36px rgba(0, 0, 0, 0.16));
}

#img3:hover{
    top: 10%;
    left: 82.75%;
    width: 15%;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
    box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.06);
    filter: drop-shadow(0px 10px 36px rgba(0, 0, 0, 0.16));
}


#img4{
    top: 30%;
    left: 10%;
    width: 10%;
    border-radius: 11px;
    box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.06);
    filter: drop-shadow(0px 10px 36px rgba(0, 0, 0, 0.16));
}
#img5{
    top: 30%;
    left: 32%;
    width: 20%;
    box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.06);
    filter: drop-shadow(0px 10px 36px rgba(0, 0, 0, 0.16));
    border-radius: 20px;
}
#img10{
    top: 28%;
    left: 60%;
    width: 10%;
    box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.06);
    filter: drop-shadow(0px 10px 36px rgba(0, 0, 0, 0.16));
    border-radius: 20px;
}
#img6{
    top: 45%;
    left: 70%;
    width: 23%;
    box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.06);
    filter: drop-shadow(0px 10px 36px rgba(0, 0, 0, 0.16));
    border-radius: 20px;
}

#img7{
    top: 53%;
    left: 0%;
    width: 20%;
    box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.06);
    filter: drop-shadow(0px 10px 36px rgba(0, 0, 0, 0.16));
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
}
#img8{
    top: 58%;
    left: 35%;
    width: 8%;
    box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.06);
    filter: drop-shadow(0px 10px 36px rgba(0, 0, 0, 0.16));
    border-radius: 20px;
}
#img9{
    top: 70%;
    left: 50%;
    width: 20%;
    box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.06);
    filter: drop-shadow(0px 10px 36px rgba(0, 0, 0, 0.16));
    border-radius: 20px;
}

#img12{
    top: 80%;
    left: 25%;
    width: 13%;
    box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.06);
    filter: drop-shadow(0px 10px 36px rgba(0, 0, 0, 0.16));
    border-radius: 20px;
}



/*part4*/

.white {
    background-color: #ffffff;
    width: 100%;
    height: 80px;
    border-bottom-left-radius: 80px;
    border-bottom-right-radius: 80px;
}
.color-part{
    background: linear-gradient(104.18deg, #EE6C4D -1.93%, #EF233C 103.2%) no-repeat;
    height: 1500px;
    border-radius: 0px 0px 80px 80px;
}
.container-partner{
    display:flex;
    justify-content: center;
}
.header-partner{
    text-align: center;
    margin-top: 50px;
}
.title-partner{
    font-size: 40px;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 60px;
    font-family: Nexa;
}
.subtitle-partner{
    color: #ffffff;
}

.img-partner img{
    width: 170px;
    position: relative;
    margin-left: 40px;
    margin-right: 40px;
    margin-top: 150px;

}
.avis{
    height: 150%;
}
.img-partner{
    display: flex;
    flex-direction: row;
}
.hover{
    position: relative;
    transition: 0.5s ease-in-out;
    border: solid;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    border-radius: 180px;
    border-width: 0.01px;
    border-color: #EE6C4D;
}
.hover:hover{
    border-width:7px;
    border-color: #ffffff;
}

/*avis*/
.slider-avis{
    display: block;
    overflow :hidden;
    /*width: 300px;*/
    height: 300px;
    white-space: nowrap;
}
.container-avis{

    margin-top: 50px;
}
.subtitle-avis{
    display: flex;
    justify-content: center;
    margin-top: 100px;
    margin-bottom: 100px;
    color: #ffffff;
}


.card-avis{
    font-size: 20px;
    margin:0;
    padding-left:0px;

    /*width:283px;*/
}
footer{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 50px;
    background-color: #ffffff;
    padding-top: 30px;
}
.made-by{
    padding-top: 40px;
    text-align: center;
}
.link-made{
    color: #EF233C;
}
.titles-contact{
    font-size: 40px;
    font-weight: bold;
    color: #EF233C;
    margin-bottom: 60px;
    font-family: Nexa;
}
.btns-contact{
   margin-top: 40px;
}
.btn-contact{
    cursor: pointer;
    background-color: #EE6C4D;
    border-radius: 99px;
    color: #ffffff;
    margin-left: 10px;
    margin-right:10px;
    padding: 10px 40px;
    box-shadow: 0px 4px 80px rgba(0, 0, 0, 0.3);
    border: none;
    animation: fadeIn 0.5s ease-in-out;
    transition-duration: 0.5s;
    border: 3px solid;
    border-color: #EE6C4D;

}
.btn-contact:hover{
    background-color: #fff;
    box-shadow: 0px 10px 80px rgba(0, 0, 0, 0.3);
    color: #000;

}
.copyright{
    margin-top: 50px;
    margin-bottom: 25px;
    text-align: center;
}

/*background image*/
/* .part1{
    background: url("../assets/img/background/part-1/cercle.svg") no-repeat -30px 75px, url("../assets/img/background/part-1/crayon.svg") no-repeat 500px 80px, url("../assets/img/background/part-1/triangle.svg") no-repeat 1400px 30px, url("../assets/img/background/part-1/carr�.svg") no-repeat 1500px 270px, url("../assets/img/background/part-1/barre.svg") no-repeat 1050px 400px, url("../assets/img/background/part-1/chaine.svg") no-repeat 550px 600px;
} */
 .part3{
    background: url("../assets/img/background/part-3/cercle-gauche.png") no-repeat -5px 250px, url(../assets/img/background/part-3/carr�.png) no-repeat right -50px, url(../assets/img/background/part-3/cercle.png) no-repeat 760px 450px, url(../assets/img/background/part-3/crayon-gauche.png) no-repeat 0px 800px, url(../assets/img/background/part-3/crayon.png) no-repeat 1500px 700px, url(../assets/img/background/part-3/barre.png) no-repeat 400px 150px;
}
.part4{
    background: url("../assets/img/background/part-5/amortisseur.png") no-repeat 0px 40px, url(../assets/img/background/part-5/chaine.png) no-repeat right 200px;
}