/* POLICES */
@font-face{
    font-family: "MontserratThin";
    src: url("../polices/Montserrat-Thin.ttf");
    font-style: normal;
  }
  
  @font-face{
    font-family: "MontserratLight";
    src: url("../polices/Montserrat-Light.ttf");
  }
  
  @font-face{
    font-family: "MontserratRegular";
    src: url("../polices/Montserrat-Regular.ttf");
  }
  
  @font-face{
    font-family: "MontserratSemiBold";
    src: url("../polices/Montserrat-SemiBold.ttf");
  }
  
  @font-face{
    font-family: "MontserratBold";
    src: url("../polices/Montserrat-Bold.ttf");
  }
  
  @font-face{
    font-family: "MontserratAlternatesSemiBold";
    src: url("../polices/MontserratAlternates-SemiBold.ttf");
  }
  
  @font-face{
    font-family: "MontserratAlternatesMedium";
    src: url("../polices/MontserratAlternates-Medium.ttf");
  }
  
  @font-face{
    font-family: "MontserratAlternatesRegular";
    src: url("../polices/MontserratAlternates-Regular.ttf");
  }
  
  @font-face{
    font-family: "YoungSerif";
    src: url("../polices/YoungSerif-Regular.otf");
  }
  
  @font-face{
    font-family: "NexaBold";
    src: url("../polices/NexaBold.otf");
  }
  
  @font-face{
    font-family: "NexaLight";
    src: url("../polices/Light.otf");
  }
  
  @font-face{
    font-family: "Alata";
    src: url("../polices/Alata-Regular.ttf");
  }

/* JAVASCRIPT */

@keyframes card-anim {
    0% {}
    100% {transform: translateX(0px) rotateX(0deg) rotateY(0deg);}
}	

@keyframes Apparition {
    0%   { opacity: 0; }
    100% { opacity: 1; }
}

@-moz-keyframes Apparition {
    0%  {opacity:0;}
    100% {opacity:1;}
 }
 @-webkit-keyframes Apparition {
    0%  {opacity:0;}
    100% {opacity:1;}
 }
 @-o-keyframes Apparition {
    0%  {opacity:0;}
    100% {opacity:1;}
 }
 @-ms-keyframes Apparition {
    0%  {opacity:0;}
    100% {opacity:1;}
}

@keyframes HoverBouton1{
    from {font-size: 12px;}
    to   {font-size: 15px;}
}

@keyframes UnHoverBouton1{
    from {font-size: 15px;}
    to   {font-size: 12px;}
}

@keyframes HoverMenu{
    from {color: white;}
    to   {color: rgb(184, 184, 184);}
}

@keyframes rotation{
    from {border-radius: 100px;}
    to {border-radius: 40px;}
}

@keyframes UnHoverMenu{
    from {color: rgb(184, 184, 184);}
    to   {color: white;}
}

@keyframes float {
	0% {
		transform: translatey(20px);
	}
	50% {
		transform: translatey(-20px);
	}
	100% {
		transform: translatey(20px);
	}
}

@keyframes FormeOmbre {
	0% {
		width: 205px;
	}
	50% {
		width:355px;
	}
	100% {
		width:205px;
	}
}

@keyframes anime {
	0% {
		background-position: 0% 50%
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%
	}
}


/* CSS */

video, source{
    width: 55vw;
    height: auto;
    border-radius: 30px;
}

body {
    background-color:#0f1010;
    overflow-x: hidden;
    margin: 0px;
    padding: 0;
    margin: 0;
}

html {
    scroll-behavior: smooth;

  }

*::selection{
    color: white;
    background-color: black;
}
  
  @media (prefers-reduced-motion: reduce) {
    html {
      scroll-behavior: auto;
    }
  }

/* PARTIE 1 */

#navside{
    z-index: 1;
    mix-blend-mode: exclusion;
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    position: fixed;
    display: flex;
    flex-flow: column wrap;
    align-items: center;
    padding-left: 30px;
    padding-top: 30vh;
}

#navside a{
    transition: 0.3s;
    text-decoration: none;
    color: transparent;
    -webkit-text-stroke: 1px white;
    padding-bottom: 30px;
    font-size: 1.3em;
}

#navside a:hover{
    color: rgb(255, 255, 255);
}

@media screen and (max-device-width: 992px){
    .nav{
        z-index: 3;
        display: flex;
        justify-content: space-between;
        background: transparent !important;
        align-items: center;
        position: fixed;
        width: 100vw;
        min-height: 100px;
      }
    #navside{
        display: none;
    }
}

/* 
    This CSS file was created by OwL for use by pointer.js, 
     witch can be found on https://seattleowl.com. 
*/

#pointer-dot {
    border: 2px solid white;
    position: fixed;
    border-radius: 50%;
    z-index: 101;
    pointer-events: none;
    transition: border-color 0.5s;
    mix-blend-mode: exclusion;
}

#pointer-ring {
    border: 2px solid white;
    position: fixed;
    border-radius: 100px;
    z-index: 102;
    pointer-events: none;
    mix-blend-mode: exclusion;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
  }

a {
    cursor: none !important;
}

/* BODY */

.bloc{
    height: 100vh;
    display: flex;
    flex-flow: column wrap;
    align-items: center;
    justify-content: center;
}

@media screen and (max-device-width: 767px){
    .bloc{
        height: 50vh !important;
        display: flex;
        flex-flow: column wrap;
        align-items: center;
        justify-content: center;
    }
}


.rowB{
    height: 100vh;
    background:#0f1010;
}

.rowB p{
    color: rgb(202, 202, 202);
}

@media screen and (max-device-width: 767px){
    .rowB p{
        margin-left: 20%;
        margin-right: 20%;
        line-height: 250%;
    }
}

.rowW{
    height: 100vh;
    background: #E5EBF0;
}

.BT{
    margin-top: 40px;
    background: transparent;
    border: none;
    box-sizing: border-box;
    width: min-content;
    width: 170px;
    background: none;
    padding: 10px 0px 10px 0px;
    background-size: 600%;
}

@media screen and (max-device-width: 768px){
    .BT{ 
        display: block;
        margin-left: auto;
        margin-right: auto;
        margin-top: 40px;
    }
}

.BTB{
                 border: 1.2px solid white;
                 color: white;
}


.BTB:hover{
    color: white;
}

.BTW{
                border: 1.2px solid black;
                color: black;
}

.BTW:hover{
    color: black;
}

.BT{
font-family: "MontserratAlternatesMedium",sans-serif;
text-align: center;
background: transparent;
background: linear-gradient(-45deg, rgba(255, 255, 255, 0.041), #00000000);
padding: 10px 0px 10px 0px;
background-size: 600%;
border-radius: 100px;
font-weight: 500;
display: block;
line-height: 30px;
text-decoration: none;
transition: 0.2s;
}

.BT:hover{
font-size: 20px ;
text-decoration: none;
animation: anime 4s linear infinite;
}

.img{
    display: flex;
    transform: translateX(-300px) rotateX(10deg) rotateY(65deg);
    animation-name: card-anim;
    animation-duration: 1s;
    animation-timing-function: ease-in-out;
    animation-fill-mode: forwards;
}

.img{
    width: 800px;
    margin-bottom: 20px;
}

@media screen and (max-device-width: 768px){
    .img{
        width: 300px;
    }
}

.card-animation {
    animation-name: card-anim;
      animation-duration: 2s;
      animation-timing-function: ease-in-out;
      animation-fill-mode: forwards;
}

.STDW{
    margin-top: 30px;
    margin-bottom: 20px;
    font-size: 35px;
    font-family: "MontserratSemiBold";
    color:transparent;
    -webkit-text-stroke: 1px black;
    z-index: 1;
}


@media screen and (max-device-width: 768px){
    .STDW{
        align-self: center;
    }
}

@media screen and (max-device-width: 578px){
    .STDW{
        align-self: center;
    }
}

.SSTDW{
    font-family: "MontserratRegular";
    font-size: 14px;
    color: #000000;
}

@media screen and (max-device-width: 768px){
    .SSTDW{
        align-self: center;
    }
}


.STDB{
    margin-top: 30px;
    margin-bottom: 20px;
    font-size: 35px;
    font-family: "MontserratSemiBold";
    color:transparent !important;
    -webkit-text-stroke: 1px rgb(255, 255, 255);
    z-index: 1;
}


@media screen and (max-device-width: 768px){
    .STDB{
        align-self: center;
    }
}

@media screen and (max-device-width: 578px){
    .STDB{
        align-self: center;
    }
}

.SSTDB{
    font-family: "MontserratRegular";
    font-size: 14px;
    color: #ffffff;
}

@media screen and (max-device-width: 768px){
    .SSTDB{
        align-self: center;
    }
}

.textegauche{
    font-family: "MontserratRegular";
    font-size: 15px;
    line-height: 200%;
    width:calc(50% + 150px);
    height: auto;
    position: relative;
    z-index: 1;
}

@media screen and (max-device-width: 768px){
    .textegauche{
       font-size: 80%;
       margin-top: 21.5vh;
       margin-left: auto;
       margin-right: auto;
       text-align: center;
    }
}

@media screen and (max-device-width: 576px){
    .textegauche{
       font-size: 80%;
       margin-top: 3.5vh;
       margin-left: auto;
       margin-right: auto;
       text-align: center;
    }
}


.textedroite{
    font-family: "MontserratRegular";
    font-size: 14.5px;
    line-height: 200%;
    width: 90%;
    height: auto;
    position: relative;
    z-index: 1;    
}

@media screen and (max-device-width: 768px){
    .textedroite{
       font-size: 0.65em;
       margin-bottom: 3vh;
       margin-left: auto;
       margin-right: auto;
       text-align: center;
    }
}

@media screen and (max-device-width: 576px){
    .textedroite{
       font-size: 0.65em;
       margin-left: auto;
       margin-right: auto;
       text-align: center;
    }
}

@media screen and (min-device-width: 768px){
    .textedroite{
        margin-top: 30px;
        padding-right: 10%;
        padding-left: 10%;
    }
    .textegauche{
        padding-left: 10%;
    }
}

@media screen and (max-device-width: 768px){
    .textedroite{
        margin-bottom: 50px;
    }
}

@media screen and (max-device-width: 768px){
    .zoneimage{
        display: flex;
        flex-flow: column wrap;
        align-items: center;
    }
}



/* LIGNE 1 */

#PremierBloc{
    display: flex;
    flex-flow: column-reverse;
}

@media screen and (max-device-width: 768px){
    #PremierBloc{
        height: 15vh;
    }
}

#Timberland{
    background: rgb(234,226,206);
    background: linear-gradient(117deg, rgba(234,226,206,1) 0%, rgba(223,209,202,1) 100%); 
}

#Timberland .img{ 
    box-shadow:  none;
}

/* LIGNE 2 */

#Encens{
    background: rgb(166,108,157);
    background: linear-gradient(117deg, rgba(83,43,77,1) 100%, rgba(166,108,157,1) 0%); 
}

#Encens .img{
    box-shadow:  none;
}

/* LIGNE 3 */

#Phones{
    background: #C6E9E2;
}

#Phones .img{
    box-shadow:  none;
}

/* LIGNE 4 */

#Cars{
    background: rgb(62,62,62);
    background: linear-gradient(117deg, rgba(62,62,62,1) 0%, rgba(0,0,0,1) 100%); 
}

#Cars .img{
    box-shadow:  none;
}



/* LIGNE 5 */


#Naaman{
    background: rgb(229,236,244);
    background: linear-gradient(117deg, rgba(229,236,244,1) 0%, rgba(200,208,217,1) 100%);
}

#Naaman .img{
    box-shadow:  none;
}

/* LIGNE 6 */


#Synapse{
    background: rgb(166, 146, 183);
    background: linear-gradient(117deg, rgb(223, 217, 227) 0%, rgb(140, 74, 122) 100%);
}

#Synapse .img{
    box-shadow:  none;
}

/* LIGNE 7 */


#Vinci{
    background: rgb(249, 238, 238);
    background: linear-gradient(117deg, rgb(229, 12, 12) 0%, rgb(140, 74, 122) 100%);
}

#Vinci .img{
    box-shadow:  none;
}

/*
#Ligne5 img{
    margin-top: 7.5vh;
    width: 300px;
    border-radius: 35px;
}

@media screen and (max-device-width: 768px){
    #Ligne5 img{
        width: 200px;
        align-self: center;
    }
}

#Ligne5 h2{
    font-size: 35px;
    margin-bottom: 40px;
    font-family: "MontserratSemiBold";
    color:transparent;
    -webkit-text-stroke: 1px white;
    z-index: 1;
}

#Ligne5 h3{
    font-family: "YoungSerif";
    font-size: 17px;
    color: white;
    margin-top: 5px;
    text-align: right;
}

@media screen and (max-device-width: 768px){
    #Ligne5 h2{
        align-self: center;
    }
    #Ligne5 h3{
        align-self: center;
    }
}
*/

footer{
    height: 100px;
    background-color: black;
    position: relative;
}

#logofooter{
    font-size: 20px;
color: white;
text-decoration: none;
font-family: 'MontserratBold',sans-serif;
margin-left: 20px;
letter-spacing: 3px;
padding-top: -4px;
margin-top: 32px;
display: inline-flex;
}

#mail{
    text-align: right;
    font-size: 13px;
    color: white;
    text-decoration: none;
    font-family: 'MontserratSemiBold',sans-serif;
    letter-spacing: 2px;
    margin-top: 40px;
    display: inline-flex;
    height: -moz-fit-content;
    float: right;
    margin-right: 15px;
}

@media screen and (max-device-width: 388px){
    #logofooter{
        margin-left: 15px;
    }
    #mail{
        margin-right: 8px;
    }
}

@media screen and (max-device-width: 360px){
    #logofooter{
        margin-left: 15px;
    }
    #mail{
        font-size: 11px;
        margin-right: 8px;
    }
}


footer a{
    margin-left: 5px;
}

footer a:hover{
    color: rgb(90, 90, 90);
    text-decoration: none;
    transition: color 0.2s;
}

footer a:not(:hover){
    color: white;
    text-decoration: none;
    transition: color 0.2s;
}