*
{
    box-sizing:border-box;
}
html
{
    scroll-behavior: smooth;  
}
body
{
    margin:0;
    padding:0;
    font-family:'Montserrat', sans-serif;
    background: rgb(241, 235, 235)
}

/* scrollbar */
body::-webkit-scrollbar-track
{
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
	background-color: rgb(241, 235, 235);
}

body::-webkit-scrollbar
{
	width: 10px;
	background-color: rgb(241, 235, 235);
}

body::-webkit-scrollbar-thumb
{
	background-color: #7B39EB;
	
	background-image: -webkit-gradient(linear, 0 0, 0 100%,
	                   color-stop(.5, rgba(255, 255, 255, .2)),
					   color-stop(.5, transparent), to(transparent));
}
a
{
    text-decoration:none;
    color:white;
}

/*Mise en forme de l'en-tête*/
header
{
    height:120px;
    background-color:#262431d0;
    position:fixed;
    top:0px;
    left:0px;
    width:100%;
    display:flex;
    justify-content:center;
    align-items:center;
    z-index:999;
}
header img
{
    width: 50px;
    height: auto;
    transition: all 0.5s;
}
header img:hover
{
    transform: scale(0.8);
}
nav
{
    display:flex;
    justify-content:center;
    align-items:center;
    width:80%;
}
header > nav > a
{
    margin:0 100px 0 0;
}
header > nav button
{
    height:40px;
    width:170px;
    border: 2.3px solid #FE017C;
    border-radius:50px;
    background-color:#7B39EB;
    margin:0 0 0 100px;
    font-size:1em;
    transition: all 0.5s;
}
header > nav button:hover
{
    transform: scale(1.2);
}
header > nav img
{
    width:auto;
    height:70px;
    transition: all 1.4s;
}
header > nav img:hover
{
    transform : rotate(360deg) scale(1.2);
}
nav div
{
    display:flex;
    justify-content:space-around;
    width:50%;
}
header > nav > div > a
{
    transition: all 0.5s;
}
header > nav > div > a:hover
{
    transform: scale(1.2);
}

/*Mise en forme de l'image de couverture*/
main
{
    position:relative;
}
main img
{
    width:100%;
    height:700px;
    object-fit:cover;
    overflow:hidden;
}
#cover
{
    display:inline;
    color:white;
    font-size:30px;
    text-align:center;
    position:absolute;
    left:30%;
    right:30%;
    top:35%;
}

/*Mise en forme des titres et sous-titres des différentes sections*/
section>h1
{
    text-align:center;
    font-size:30px;
    margin-block-start:0em;
    margin-block-end:0em;
    margin-top:20px;
}
section>p
{
    text-align:center;
    font-size:20px;
    margin-block-start:0em;
    margin-block-end:0em;
}

/*Mise en forme de la section équipe*/
#equipe
{
    margin-top:30px;
    display:flex;
    justify-content:space-around;
    align-items: center;
}
#equipe h2
{
    margin-block-start:0em;
    margin-block-end:0em;
}
#equipe div:first-child
{
    display:flex;
    align-items:flex-start;
    width:35%;
    background-color:#7B39EB;
    color:white;
}
#equipe div:first-child div
{
    padding:10px;
}
#equipe div:first-child img
{
    height:450px;
    width:auto;
    margin-right:20px;
}
#equipe>img
{
    height: 200px;
    width: auto;
    transition: all 1.4s;
}
#equipe>img:hover
{
    transform: scale(1.2) rotate(360deg);
}
#equipe>div:nth-child(3)
{
    display:flex;
    align-items:flex-start;
    width:35%;
    background-color:#FE017C;
    color:white;
}
#equipe>div:nth-child(3) img
{
    height:450px;
    width:auto;
    margin-right:20px;
}
#equipe div:nth-child(3) div
{
    padding:10px;
}

/*Mise en forme de la section services*/
#services
{
    display:flex;
    justify-content:space-around;
}

/*magnifique mise en forme creation*/
#creation > h3
{
    margin-bottom: 70px;
    text-align: center;
}
#creation-li
{
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 400px;
    width: 300px;
    border-radius: 20px;
    background-color: #FE017C;
    position: relative;
}
#creation-li img
{
    width: 93px;
    height: auto;
}
#creation-li div
{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100px;
    height: 100px;
    border-radius: 100%;
    position: absolute;
    background-color: #7B39EB;
    left: 50%;
    transform: translate(-50%, -50%);
    top: 0px;
}
#creation-li ul
{
    display: flex;
    flex-direction: column;
    justify-content: center;
}
#creation-li li
{
    color: #7B39EB;
}
#creation-li span
{
    color: white;
    font-size: 19px;
}

/*maginifique mise en forme de cette petite section design web*/
#design > h3
{
    margin-bottom: 70px;
    text-align: center;
}
#design-li
{
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 400px;
    width: 300px;
    background-color: #7B39EB;
    border-radius: 20px;
    position: relative;
}
#design-li img
{
    width: 110px;
    height: auto;
}
#design-li div
{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100px;
    height: 100px;
    border-radius: 100%;
    position: absolute;
    background-color: #FE017C;
    left: 50%;
    transform: translate(-50%, -50%);
    top: 0px;
}
#design-li ul
{
    display: flex;
    flex-direction: column;
    justify-content: center;
}
#design-li li
{
    color: #FE017C;
}
#design-li span
{
    color: white;
    font-size: 19px;
}

/*maginifique mise en forme de cette petite section web marketing*/
#strategie > h3
{
    margin-bottom: 70px;
    text-align: center;
}
#strategie-li
{
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #FE017C;
    border-radius: 20px;
    position: relative;
    height: 400px;
    width: 300px;
}
#strategie-li img
{
    width: 160px;
    height: auto;
}
#strategie-li div
{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100px;
    height: 100px;
    border-radius: 100%;
    position: absolute;
    background-color: #7B39EB;
    left: 50%;
    transform: translate(-50%, -50%);
    top: 0px;
}
#strategie-li ul
{
    display: flex;
    flex-direction: column;
    justify-content: center;
}
#strategie-li li
{
    color: #7B39EB;
}
#strategie-li span
{
    color: white;
    font-size: 19px;
}

/*mise en forme de la magnifique section réalisation*/
#réalisation
{
    display: flex;
    justify-content: center;
    height: 400px;
}

/*mise en forme de la jolie section nous contacter*/
#titreContacter
{
    margin-top: 50px;
}
#contacter
{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
#contacter div:first-child>h1
{
    text-align: center;
}
/*Nos coordonnées*/
.coordonnées
{
    display: flex;

    align-items: center;
}
.coordonnées>img
{
    width: 120px;
    height: auto;
}
#telephone>div
{
    display: flex;
    align-items: center;
}
#lieu>div
{
    display: flex;
    align-items: center;
}
.logo
{
    transition: all 1.4s;
    width: 31px;
    height: auto;
}
.logo:hover
{
    transform: rotate(360deg);
}
/*formulaire*/
#formulaire
{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-right: 27px;
    height: 518.81px;
}
#formulaire>div
{
    display: flex;
    flex-direction: column;
}
#formulaire input
{
    margin-top: 25px;
    width: 250px;
    height: 40px;
    border-style: none;
    background-color: #FE017C;
    border-radius: 20px;
    color: rgb(241, 235, 235);
    text-align: center;
    transition: all 0.5s;
}
#formulaire input:hover
{
    transform: scale(1.2);
}
#formulaire input::placeholder
{
    color: rgb(241, 235, 235);
    text-align: center;
}
#formulaire>div button
{
    width: 100px;
    height: 100px;
    border-radius: 100%;
    border: none;
    background-color: #FE017C;
    color: rgb(241, 235, 235);
    margin: auto;
    margin-top: 25px;
    transition: all 1s;
    cursor: pointer;
}
#formulaire>div button:hover
{
    transform:scale(1.2) rotate(360deg) ;
    background-color: #7B39EB;
}

/*mise en place de la section footer*/
footer
{
    margin-top: 50px;
    background: linear-gradient(-45deg, #C49FFF, #FFD0E6, #FF9CB6, #F08488);
	background-size: 400% 400%;
	animation: gradient 15s ease infinite;
    border-radius: 20px 20px 0 0;
}
@keyframes gradient {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}
footer>div:first-child
{
    display: flex;
    justify-content: space-between;
}
footer>div:first-child>div:first-child
{
    display: flex;
    align-items: flex-start;
    margin-left: 10px;
}
footer>div:first-child>div:first-child>img
{
    width: 60px;
    height: auto;
    margin-right: 10px;
    margin-top: 10px;
    transition: all 1.4s;
}
footer>div:first-child>div:first-child>img:hover
{
    transform: rotate(360deg) scale(1.2);
}

footer>div:first-child>div:nth-child(2) img
{
    width: 30px;
    height: auto;
    border-radius: 10px;
    transition: all 0.5s;
}
footer>div:first-child>div:nth-child(2) img:hover
{
    transform: scale(1.2);
}
footer>div:first-child>div:nth-child(2)
{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-right: 10px;
}

footer p
{
    margin: 0;
}
footer>div:nth-child(2)
{
    width: 50vw;
    margin: auto;
}
footer>div:nth-child(2)>div
{
    display: flex;
    justify-content: space-around;
    width: 50vw;
}
footer>div:nth-child(2)>div>p
{
    font-size: 12px;
}