/*========GENERAL============*/
@font-face
{
    font-family: Archivo;
    src: url("fonts/Archivo-Black.ttf") format('woff');
    font-weight: normal;
    font-style: normal; 
}

@font-face
{
    font-family: Roboto;
    src: url("fonts/Roboto-Regular.ttf") format('woff2');
}


*
{
    margin: 0;
    padding: 0;
    list-style: none;
    text-decoration: none;
    font-family: Archivo;
    font-weight: normal;
}

/*=====COULEUR==========*/
:root {
    --main-orange-color: #e76f51;
    --second-orange-color: #FF8A6C;
    --main-orangeDark-color : #d53d17;
    --second-orangeDark-color :#fedba6;
}

/*----NavBar-------*/

.navbar
{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    z-index: 10;
    background-color: var(--main-orange-color);
}

nav
{
    height: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
}

nav img
{
    margin: auto 0 auto 0;
    height: 20%;
    width: 150px;
}

nav .CenterContainer
{
    width: 30%;
    margin: auto 0 auto 0;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    opacity: 1;
}

nav a
{
    opacity: 1;
    font-family: rob;
    font-size: 20px;
    margin: auto 0 auto 0;
    cursor: pointer;
    position: relative;
    color: white;
}

nav .CenterContainer a::after 
{
    content: "";
    position: absolute;
    left: 50%;
    bottom: -10px;
    width: 0;
    height: 0.4em;
    opacity: 0;
    background: white;
    transition: all 400ms cubic-bezier(0.4, 1.6, 0.15, 0.9);
}

nav .CenterContainer a:hover::after
{
    left: 0;
    width: 100%;
    opacity: 1;
}

nav .ConnexionButton 
{
    margin: auto 0 auto 0;
    position: relative;
    height: 50px;
    width: 150px;
    background-color: transparent;
    font-family: rob;
    font-size: 20px;
    cursor: pointer;
    border-radius: 25px;
    color: white;
    border: solid 2px white;
    overflow: hidden;
    transition: 0.5s;
    z-index: 1;
}

nav .ConnexionButton::before
{
    content: "";
    position: absolute;
    height: 50px;
    width: 170px;
    background-color: white;
    border-radius: 25px;
    top: -2px;
    left: -2px;
    transform: translateX(-100%);
    transition: 0.5s;
    z-index: -1;
}

nav .ConnexionButton:hover::before
{
    transform: translateX(0%);
}
nav .ConnexionButton:hover{
    color: black;
    width: 150px;
}

@media (max-width: 1000px) 
{
    nav .CenterContainer a
    {
        display: none;
    }
}

/*========Section 1============*/

.section1
{
    height: 100vh;
    width: 100%;
}

.section1 img
{
    position: absolute;
    height: 100vh;
    width: 100%;
    border-radius: 0 0 200px 200px;
    z-index: -1;
}

.section1 .container
{
    position: absolute;
    height: 100vh;
    width: 100%;
    border-radius: 0 0 200px 200px;
    background-color: rgba(16, 18, 32, 0.3);
    z-index: 0;
}

.section1 .container .containerTitle
{
    position: relative;
    margin: auto;
    top: 50%;
    transform: translate(0, -50%);
    max-width: 30%;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.section1 .container .containerTitle h1
{
    color: white;
    font-size: 70px;
    margin-bottom: 30px;
}

.section1 .container .containerTitle p
{
    color: white;
    font-family: rob;
    font-size: 18px;
    margin-bottom: 30px;
}

.section1 .container .containerTitle button
{
    background-color: var(--main-orange-color);
    height: 50px;
    width: 205px;
    border-radius: 25px;
    border: none;
    color: white;
    font-family: rob;
    font-size: 18px;
    cursor: pointer;
    transition: 0.3s all;
}

.section1 .container .containerTitle button:hover
{
    width: 225px;
    letter-spacing: 3px;
}

@media (max-width: 1000px) 
{
    .section1 img
    {
        height: 760px;
        object-fit: cover;
        border-radius: 0 0 100px 100px;
    }

    .section1 .container
    {
        height: 760px;
        border-radius: 0 0 100px 100px;
    }
    .section1 .container .containerTitle
    {
        max-width: 400px;
    }
    .section1 .container .containerTitle h1
    {
        font-size: 45px;
        margin-bottom: 10px;
    }
}

/*========Section 2============*/

.section2
{
    position: relative;
    width: 100%;
    transform: translateY(-35%);
    z-index: 1;
    background-color: white;
}

.section2 .CardContainer
{
    width: 80%;
    margin: auto;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    z-index: 1;
}

.section2 .CardContainer .Card
{
    background-color: white;
    height: 360px;
    width: 357px;
    border-radius: 20px;
    box-shadow: black 5px 10px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    z-index: 1;
}

.section2 .CardContainer .Card img
{
    margin: 20px 0 10px 0;
    height: 100px;
    width: 100px;
}

.section2 .CardContainer .Card h3
{
    color: #3B3735;
    font-size: 25px;
    font-weight: 700;
}

.section2 .CardContainer .Card p
{
    font-family: rob;
    font-size: 18px;
    line-height: 27px;
    margin-top: 10px;
    max-width: 85%;
}
@media (max-width: 1500px) 
{
    .section2 .CardContainer
    {
        width: 100%;
    }
}

@media (max-width: 1000px) 
{
    .section2 .CardContainer
    {
        display: flex;
        flex-direction: column;
        width: 100%;
    }
    .section2 .CardContainer .Card
    {
        margin: 20px auto 0 auto;
    }
    .section2
    {
        transform: translateY(-10%);
    }
}

@media (max-width: 400px)
{
    .section2 .CardContainer .Card
    {
        width: 300px;
    }
} 

/*========Section 3============*/

.section3
{
    height: auto;
    width: 100%;
    background-color: #1d1d1d;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section3 h2
{
    margin-top: 100px;
    text-align: center;
    color: white;
    font-size: 80px;
    opacity: 0;
    transition: opacity 2s;
}

.appear 
{
   opacity: 1 !important;
}

.section3 .InfoIcon
{
    margin-top: 100px;
    display: flex;
    flex-direction: column;
}

.section3 .IconWithText
{
    font-family: rob;
    font-size: 2em;
    color: white;
    display: flex;
    flex-direction: row;
    margin-bottom: 50px;
}

.section3 .IconWithText a
{
    text-decoration: none;
}
.section3 .IconWithText a:visited
{
    color: white;
}

.section3 .IconWithText img
{
    height: 80px;
    width: 80px;
    opacity: 0;
    transition: opacity 2s;
}

.section3 .IconWithText span
{
    display: inline-block;
    font-family: rob;
    font-weight: bold;
    font-size: 1.2em;
    color: white;
}

.section3 .IconWithText p
{
    margin: auto;
    font-family: rob;
    font-size: 0.8em;
    color: white;
    padding-left: 50px;
    width: 600px;
    text-align: center;
}

.section3 .IconWithText p a
{
    color: white;
}

@media (max-width: 1000px) 
{
    .section3 h2
    {
        font-size: 45px;
    }
    .section3 .IconWithText
    {
        font-size: 18px;
    }
    .section3 .IconWithText p
    {
        width: 400px;
        padding-left: 0px;
    }
    .section3 .IconWithText img
    {
        height: 40px;
        width: 40px;
    }
}
@media (max-width: 400px)
{
    .section3 .IconWithText p
    {
        width: 300px;
        padding-left: 0px;
    }
} 

/*========Section 4============*/

.section4
{
    height: auto;
    width: 100%;
    background-color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section4 #TitleSection4
{
    margin-top: 100px;
    margin-bottom: 100px;
    text-align: center;
    color: #3B3735;
    font-size: 80px;
    opacity: 1;
    transition: opacity 2s;
}

.section4 .container
{
    width: 50%;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
}

.section4 .container .block
{
    position: relative;
    max-width: 400px;
    overflow: hidden;
}

.blockAppear
{
    position: absolute;
    background-color: white;
    border-radius: 20px;
    height: 100%;
    width: 100%;
    left: 100%;
    transform: scaleX(0.5);
}

.section4 .container .block .separator
{
    margin-top: 1px;
    border-top: 3px solid var(--main-orange-color);
}

.section4 .container .block p
{
    font-family: rob;
    font-size: 18px;
    line-height: 27px;
    margin-top: 10px;
    max-width: 100%;
}

.section4 .container2
{
    width: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
    text-align: center;
}

.section4 #Title2Section4
{
    margin-top: 100px;
    margin-bottom: 50px;
    text-align: center;
    color: #3B3735;
    font-size: 80px;
    opacity: 0;
    transition: opacity 2s;
    max-width: 80%;
}

.section4 .container2 p
{
    margin: auto;
    font-family: rob;
    font-size: 25.6px;
    width: 60%;
    text-align: center;
}

.section4 .container2 #Devenir
{
    text-align: center;
    color: #3B3735;
    font-size: 60px;
    margin-top: 50px;
    opacity: 0;
    transition: opacity 1s;
}

.section4 .container2 .buttonContainer
{
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    margin-bottom: 50px;
    width: 60%;
}

.section4 .container2 .buttonContainer a
{
	color: var(--main-orangeDark-color);
	font-family: 'Playfair Display';
	font-weight: 400;
	text-transform: uppercase;
	font-size: 40px;
	padding-bottom: 1px;
    overflow: hidden;
}

.link {
    outline: none;
    text-decoration: none;
    position: relative;
    display: inline-block;
}

/* Yaku */
.link--yaku::before {
	content: '';
	position: absolute;
	height: 90%;
	width: 100%;
	border-width: 2px 0;
	border-color: #282828;
	border-style: solid;
	left: 0;
	-webkit-transform: translate3d(-101%,0,0);
	transform: translate3d(-101%,0,0);
	-webkit-transition: -webkit-transform 0.5s;
	transition: transform 0.5s;
}

.link--yaku:hover::before {
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
}

.link--yaku span {
	display: inline-block;
	position: relative;
	-webkit-transform: perspective(1000px) rotate3d(0,1,0,0deg);
	transform: perspective(1000px) rotate3d(0,1,0,0deg);
	-webkit-transition: -webkit-transform 0.5s, color 0.5s;
	transition: transform 0.5s, color 0.5s;
}

.link--yaku:hover span {
	color: #1e1a1b;
	-webkit-transform: perspective(1000px) rotate3d(0,1,0,360deg);
	transform: perspective(1000px) rotate3d(0,1,0,360deg);
}

.link--yaku span:nth-child(4),
.link--yaku:hover span:first-child,.link--yaku span:nth-child(7)
{
	-webkit-transition-delay: 0s;
	transition-delay: 0s;
}

.link--yaku span:nth-child(3),
.link--yaku:hover span:nth-child(2),.link--yaku span:nth-child(5),.link--yaku span:nth-child(6)
{
	-webkit-transition-delay: 0.1s;
	transition-delay: 0.1s;
}

.link--yaku span:nth-child(2),
.link--yaku:hover span:nth-child(3) {
	-webkit-transition-delay: 0.2s;
	transition-delay: 0.2s;
}

.link--yaku span:first-child,
.link--yaku:hover span:nth-child(4),.link--yaku span:nth-child(5) {
	-webkit-transition-delay: 0.3s;
	transition-delay: 0.3s;
}

.link--yaku span:first-child,
.link--yaku:hover span:nth-child(6),.link--yaku span:nth-child(7) {
	-webkit-transition-delay: 0.4s;
	transition-delay: 0.4s;
}
.link--yaku span:first-child,
.link--yaku:hover span:nth-child(8),.link--yaku span:nth-child(9) {
	-webkit-transition-delay: 0.4s;
	transition-delay: 0.4s;
}
.link--yaku span:first-child,
.link--yaku:hover span:nth-child(10),.link--yaku span:nth-child(11) {
	-webkit-transition-delay: 0.4s;
	transition-delay: 0.4s;
}

@media (max-width: 1500px) 
{
    .section4 .container
    {
        width: 80%;
    }
}
@media (max-width: 1000px) 
{
    
    .section4 #TitleSection4
    {
        font-size: 45px;
    }
    .section4 .container
    {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .section4 .container .block
    {
        margin-bottom: 40px;
    }
    .section4 #Title2Section4
    {
        font-size: 45px;
    }
    .section4 .container2 .buttonContainer
    {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin-bottom: 50px;
        width: 100%;
    }
    .section4 .container2 .buttonContainer a
    {
        margin-bottom: 20px;
    }
}

@media (max-width: 700px)
{
    .section4 .container2 p
    {
        margin: auto;
        font-family: rob;
        font-size: 25.6px;
        width: 100%;
        text-align: center;
    }
} 
/*=======CONTACT=============*/

.Contact
{
    position: relative;
    display: flex;
    align-items: center;
    width: 60%;
    justify-content: center;
    background-color: #F8E1DB;
    margin: 100px 0 100px 0;
    overflow: hidden;
    box-shadow: black 10px 6px 30px;
}

.Contact svg
{
    position: absolute;
    left: -10%;
}

.Contact .Contactcontainer
{
    width: 80%;
    position: relative;
    height: auto;
    margin: 50px 0 50px 0;
}

.Contact .Contactcontainer .TitleContainer
{
    width: 100%;
    align-items: center;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.Contact .Contactcontainer .TitleContainer h2
{
    font-weight: 400;
	font-size: 40px;
    text-align: start;
}

.Contact .Contactcontainer .TitleContainer span
{
    font-family: rob;
    font-size: 18px;
    line-height: 27px;
    margin-left: 15px;
}

form 
{
    display: flex;
    flex-direction: column;
}

form .Information
{
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between
}

form .Information input
{
    height: 40px;
    width: 250px;
    font-family: rob;
    font-size: 18px;
    line-height: 27px;
    border-radius: 0px;
    color: rgb(78, 78, 78);
    background-color: #f4f4f4;
    border: 1px solid #eee;
    margin: 25px 0 25px 0;
    padding-left: 15px;
}

form textarea
{
    height: 200px;
    max-height: 250px;
    min-height: 100px;
    width: 100%;
    max-width: 100%;
    min-width: 50%;
    font-family: rob;
    font-size: 18px;
    border-radius: 0px;
    text-indent: 15px;
    padding-top: 10px;
    color: rgb(78, 78, 78);
    background-color: #f4f4f4;
    border: 1px solid #eee;
    outline: none;
    box-shadow: none;
    margin-bottom: 25px;
}

form button
{
    height: 44px;
    width: 100%;
    font-size: 20px;
    line-height: 27px;
    border-radius: 0px;
    font-weight: 600;
    color: #fff;
    text-transform: capitalize;
    background-color: var(--main-orange-color);
    display: inline-block;
    outline: none;
    box-shadow: none;
    border: none;
    letter-spacing: 0.25px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: all 0.3s;
}

form button:hover
{
    background-color: var(--main-orangeDark-color);
}

form button span
{
    position: relative;
    display: flex;
    align-items: center;
}

form button span img 
{
    position: absolute;
    margin-left: 30px;
    height: 44px;
    width: 44px;
    transition: all 0.3s;
    left: 80%;
    transform: translateX(0%);
}

form button:hover span > img
{ 
    transform: translateX(60%);
}


@media (max-width: 1000px)
{
    .Contact
    {
        width: 90%;
    }
    .Contact .Contactcontainer .TitleContainer h2
    {
        text-align: center;
        margin-bottom: 15px;
    }
    .Contact .Contactcontainer .TitleContainer
    {
        width: 100%;
        align-items: center;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    form .Information
    {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    form .Information input
    {
        max-width: 100%;
        min-width: 100%;
    }
}


/*----Footer-------*/

.footer {
    background-color: #1e1a1b;
    height: auto;
    text-align: center;
    width: 100%;
    margin: 0;
    padding: 0;
}
  
.footer p {
    font-family: sans-serif;
    margin-bottom: 0px;
    font-size: 13px;
    color: #fff;
    letter-spacing: 0.5px;
    font-weight: 300;
}
  
.footer a {
    font-family: sans-serif;
    color: #337ab7;
    text-decoration: none;
    line-height: 80px;
}
  