@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:wght@300;400;700&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto Condensed', sans-serif;
}
br{
  color: #FFF;
}

:root{
  --background-dark: #ffffff;
  --text-light: rgba(255,255,255,0.6);
  --text-lighter: rgba(255,255,255,0.9);
  --spacing-s: 8px;
  --spacing-m: 16px;
  --spacing-l: 24px;
  --spacing-xl: 32px;
  --spacing-xxl: 64px;
  --width-container: 1200px;
}

.h18{
  padding: 20px 10%;
  display: flex;
  flex-direction: column;
  font-size: 10px;
  color:#747cdf;
  
}
  
.hero-section{
  align-items: flex-start;
  background-color: #FFF;
  display: flex;
  justify-content: center;
  padding: var(--spacing-xxl) var(--spacing-l);
}

.card-grid{
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-column-gap: var(--spacing-l);
  grid-row-gap: var(--spacing-l);
  max-width: var(--width-container);
  width: 100%;
}

@media(min-width: 540px){
  .card-grid{
    grid-template-columns: repeat(2, 1fr); 
  }
}

@media(min-width: 960px){
  .card-grid{
    grid-template-columns: repeat(4, 1fr); 
  }
}

.card{
  list-style: none;
  position: relative;
}

.card:before{
  content: '';
  display: block;
  padding-bottom: 150%;
}

.card__background{
  background-size: cover;
  background-position: center;
  border-radius: var(--spacing-l);
  bottom: 0;
  filter: brightness(0.75) saturate(1.2) contrast(0.85);
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  transform-origin: center;
  transform: scale(1) translateZ(0);
  transition: 
    filter 200ms linear,
    transform 200ms linear;
}

.card:hover .card__background{
  transform: scale(1.05) translateZ(0);
}

.card-grid:hover > .card:not(:hover) .card__background{
  filter: brightness(0.5) saturate(0) contrast(1.2) blur(20px);
}

.card__content{
  left: 0;
  padding: var(--spacing-l);
  position: absolute;
  top: 0;
}

.card__category{
  color: var(--text-light);
  font-size: 25px;
  margin-bottom: var(--spacing-s);
  text-transform: uppercase;
  color:#FFF;
  font-weight: bold;

}

.card__heading{
  color: var(--text-lighter);
  font-size: 25px;
  text-shadow: 2px 2px 20px rgba(0,0,0,0.2);
  line-height: 1.4;
  word-spacing: 100vw;
  color:#dbdbdb;
}

/*header*/

body {
    transition: 0.5s;
}
a{
    text-decoration: 0;
}
.header-home {
    background: linear-gradient(70deg, rgba(230, 0, 230, 0.384), rgb(245, 211, 203));
    position:relative;
}
h1 {
    font-size: 60px;
    font-weight: bold;
    letter-spacing: 1px;
    margin: 35px 0;
    text-transform: capitalize;
}

/* menu */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 10%;
}
.logo {
    text-transform: capitalize;
    color: #ffffffb9;
    font-size: 20px;
    font-weight: bold;
    font-style: italic;
}


header .logo_link {
    display: flex;
    align-items: center;
}
.menu_link {
    margin-left: 50px;
}
.menu_link a {
    margin: 0 10px;
    font-size: 20px;
    color: #ffffffe8;
}
.menu_link a:first-child {
    color: #ffffff;
}
.link_buttons a{
    margin-left: 25px;
}
.link_buttons a:first-child {
    color: #f26440;
}
.orange_link {
    color: #fff;
    padding: 8px 30px;
    background-color: #f26440;
    border-radius: 4px;
    text-transform: capitalize;
}
/*home*/

.home {
    margin-top: 50px;
    margin-left: 10%;
    margin-right: 10%;
    display: flex;
    justify-content: space-between;
    height: 500px;
    position: relative;
}
.home .left {
    width: 70%;
    display: flex;
    flex-direction: column;
    color: #747cdf;
}
.home .left p {
    margin: 15px 0;
    color: #ffffff;
    letter-spacing: 1px;
    line-height: 40px;
    font-size: 30px;
}
.home .left .orange_link {
    width: fit-content;
    padding: 12px 50px;
    box-shadow: 0 0 5px rgba(0,0,0,0.1);
}
.home .right {
    width: 60%;
}
.home .right img {
    width: 500px;
    right: 50px;
    height: 500px;
    object-fit:fill;
}
.statistiques {
    position: absolute;
    bottom: -50px;
    height: 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    background-color: #fff;
    box-shadow: 0 0 5px rgba(255, 255, 255, 0.2);
    padding: 20px 10%;
}
.statistiques span {
    text-align: center;
}
.statistiques span h2 {
    color: #f26440;
    font-size: 25px;
    margin-bottom: 10px;
}
.statistiques span p {
    color: #999;
    text-transform: capitalize;
}

/*about*/
.about {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 120px;
    padding: 20px 5%;
}
.about .image {
    width: 55%;
    height: 400px;
}
.about .image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.about .content {
    width: 40%;
    color: #000;
    font-family: Arial, Helvetica, sans-serif;
}
.about .content h1 {
    margin: 16px 0;
    color:#747cdf;
}
.about .content h2 {
    margin: 15px 0;
    color: #333;
}
.about .content p {
    color: #ffffff;
    text-align: justify;
    letter-spacing: 0.5px;
    line-height: 25px;
}

/*choice*/
.why_us {
    padding: 20px 10%;
    display: flex;
    flex-direction: column;
    font-size: 20px;
    color:#747cdf;
}
.why_us img {
    width: 60px;
}
.list_box {
    width: 100%;
    display: grid;
    justify-content: center;
    grid-template-columns: repeat(auto-fill,265px);
    grid-gap: 10px;
}
.list_box .box {
    text-align: center;
    background: linear-gradient(70deg, rgba(255, 0, 140, 0.219), rgb(255, 205, 192));
    border-radius: 4px;
    padding: 50px 25px;
    margin: 10px;
    box-shadow: 0 0 5px rgba(0,0,0,0.2);
}
.list_box .box h2 {
    margin: 2px 0;
    color: #f26440;
    letter-spacing: 0px;
    text-transform: capitalize;
    font-size: 25px;
}
.list_box .box p {
    color: #ffffff;
}
/*decoration*/
.decoration {
    padding: 20px 10%;
    width: 100%;
    color:#747cdf;
    font-family: 10px;
}
.deco-list {
    width: 100%;
    display: grid;
    justify-content: center;
    grid-template-columns: repeat(auto-fill,31.11%);
    gap: 30px;
}
.deco-list .deco img {
    width: 100%;
    object-fit: cover;
}
.deco-list .deco {
    text-align: center;
    cursor: pointer;
    padding: 10px;
    transition: 0.5s;
    box-shadow: 0 0 5px rgba(0,0,0,0.1);
}
.deco-list .deco:hover {
    transform: scale(1.1);
}
.deco-list .deco p {
    margin: 5px 0;
    font-weight: bold;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
.deco-list .deco span {
    font-size: 15px;
    color: #ffffff;
   
}
.deco-list .deco .orange_link {
    margin-top: 5px;
    border: 1px solid #f26440;
    letter-spacing: 1px;
    width: 100%;
    transition: 0.5s;
    cursor: pointer;
}
.deco-list .deco .orange_link:hover {
    background-color: transparent;
    color: #f26440;
    
}
/*footer*/

.imagefoot{
  width: 250px;
}

.cerv{
  width: 225px;
  position:absolute;
}

footer {
    margin-top: 60px;
    background-color: #ffffff;
    height: auto;
    padding-top: 40px;
}
.footer-content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}
.footer-content h1 {
    font-size: 50px;
    margin: 10px 0;
}
.footer-content p {
    max-width: 500px;
    margin: 20px 0;
    letter-spacing: 1px;
    font-size: 15px;
}
.socials {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
}
.socials li {
    margin: 0 20px;
}
.socials a {
    text-decoration: 0;
    color: #333;
    font-size: 20px;
    transition: 0.5s;
}
.socials a:hover {
    color: #000;
}
.footer-bottom {
    background-color: #ffffff;
    color: #fff;
    padding: 10px 0;
    text-align: center;
}
.footer-bottom p{
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: capitalize;
}
.footer-bottom  span {
    text-transform: uppercase;
    opacity: .6;
    font-weight: 200;
}
.sidebar , #main {
    display: none;
    height: 30px;
}
/*responsive*/

@media (max-width:935px) {
    header{
        padding: 20px;
        margin: 0;
        height: auto;
    }
    .link_buttons {
        display: none;
    }
    .menu_link {
        display: none;
    }
    /*responsive menu*/
    .sidebar , #main {
        display: block;
    }
    .sidebar{
        height: 100%;
        width:0;
        position: fixed;
        z-index: 1000;
        top: 0;
        left: 0;background: linear-gradient(70deg, rgb(255, 0, 140), rgb(255, 205, 192));;
        overflow-x: hidden;
        padding-top: 60px;
        transition: 0.5s;
        display: flex;
        flex-direction: column;

    }
    .sidebar img , #main img {
        width: 30px;

    }
    .sidebar a{
        padding: 15px;
        font-size: 35px;
        color: #fff;
        transform: 0.3s;
    }
    .sidebar a:hover {
        background-color: #f26440;
    }
    .sidebar .closebtn {
        position: absolute;
        top: 20px;
        right: 20px;
        cursor: pointer;
    }
    .openbtn img {
        width: 20px;
        margin-right: 10px;
    }
    .openbtn {
        background-color: #f26440;
        border: 0;
        display: flex;
        align-items: center;
        color: #fff;
        font-size: 15px;
        padding: 10px 15px;
        border-radius: 5px;
        box-shadow: 0 0 5px rgba(0,0,0,0.1);
        cursor: pointer;
        transition: 0.5s;
    }
    .openbtn:hover {
        background-color: #111;
    }


}

@media (max-width:588px) {
    h1{
        font-size: 30px;
    }
    .home {
        margin: 25px;
        flex-direction: column-reverse;
        height: auto;
        padding-bottom: 25px;
    }
    .home p , .home h1 {
        margin: 0;
    }
    .home .left , .home .right {
        width: 100%;
        height: fit-content;
    }
    .home .right {
        height: auto;
    }
    .statistiques{
        bottom: -50px;;
    }
    .statistiques h2 {
        font-size: 15px;
    }
    .statistiques p {
        font-size: 12px;
    }
    .about {
        flex-direction: column;
    }
    .about .image , .about .content {
        width: 100%;
    }

    /*Les box*/
    .list_box , .deco-list {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .box , .deco {
        width: 150%;
    }
}

.medias {
    list-style-type: none;
    position: absolute;
    right: 3.3%;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.bulle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 1px solid #f1f1f1;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 10px 0;
    background: #f1f1f1;
    cursor: pointer;
    position: relative;
}

.logo-medias {
    width: 40px;
    height: 40px;
}
button {
    padding: 20px 50px;
    font-size: 1.5rem;
    cursor: pointer;
    border: 0;
    color: #fff;
    background: transparent;
    position: relative;
    margin: 20px;
    transition: all .25s;
  }
  button::after,button::before {
    border: 3px solid #fff;
    content: '';
    position: absolute;
    border-radius: inherit;
    width: 100%;
    height: 100%;
    left: 0px;
    bottom: 0px;
    transition: all .25s;
  }
  button:hover::after {
    transform: translate(-5px, -5px);
  }
  
  button:hover::before {
    transform: translate(5px, 5px);
  }
  body {
	color: #ffffff;
	font: 100% Lato, Arial, Sans Serif;
	height: 100vh;
	margin: 0;
	padding: 0;
	overflow-x: hidden;
}

#background-wrap {
    bottom: 0;
	left: 0;
	position: fixed;
	right: 0;
	top: 0;
	z-index: -1;
}


*, ::before, ::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'FontAwesome', sans-serif;
  background-color: #ffffff;
}

.container-buttons {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    /* background-color: #FFF; */
    min-width: 500px;
    display: flex;
    justify-content: space-between;
  }
  
  .container-buttons a {
    width: 70px;
    height: 70px;
    display: block;
    border-radius: 50%;
    /* line-height: 70px; */
    color: #FFF;
    background-color: #000;
    text-decoration: none;
    overflow: hidden;
    text-align: center;
    font-size: 2.2rem;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, .9);
  }
  
  .container-buttons a::before {
    content: "\f2c6";
    display: block;
    margin: 19px 0;
    transition: all .5s ease-in-out;
  }
  
  .container-buttons a:hover::before {
    margin-top: -37px;
  }
  
  .container-buttons a::after {
    content: "\f2c6";
    display: block;
  }
  
  .container-buttons .two {
    background-color: #53afff;
  }
  
  .container-buttons .two::before {
    content: '\f293';
  }
  
  .container-buttons .three {
    background-color: #ff8337;
  }
  
  .container-buttons .three::before {
    content: '\f27a';
  }
  
  .container-buttons .three {
    background-color: #ffbd39;
  }
  
  .container-buttons .three::before {
    content: '\f2b6';
  }
  
  .container-buttons .four {
    background-color: #e61c5d;
  }
  
  .container-buttons .four::before {
    content: '\f004 ';
  }
  
  .container-buttons .five {
    background-color: #155263;
  }
  
  .container-buttons .five::before {
    content: '\f098 ';
  }

  .transition{
    position: fixed;
    width:100%;
    height:100%;
    background: #222222;
    z-index: 1;
    opacity: 0;
    pointer-events: none;
    transition : ease-in 0.4s;
}
.transition.active{
    opacity: 1;
    pointer-events: none;
}

::selection {
    background-color: rgb(0, 76, 240);
    color: rgb(255, 255, 255);
}
#pricing {
    display: flex;
    flex-wrap: wrap;
    padding: 0px 100px;
    margin-top: 50px;
    color:#FFF;
    /* border: 2px solid; */
}
.single-card {
    flex-basis: calc(100% / 3);
    padding: 20px;
    /* border: 2px solid red; */
}
.single-card .wrapper {
    background: linear-gradient(70deg, rgb(212, 17, 212,0.692), rgba(20, 17, 212, 0.692));
    height: 100%;
    padding: 30px;
    box-shadow: 3px 5px 10px rgb(0, 0, 0);
    transition: .3s;
}
.single-card .wrapper:hover {
    transform: translateY(-5px);
}
.single-card h3 {
    text-align: center;
    font-weight: 500;
    color:#FFF;
}
.single-card h1 {
    margin: 20px 0px;
    font-size: 30px;
    color:#FFF;
}
.h10 {
  margin: 20px 0px;
  font-size: 30px;
  color:#000000;
}
.single-card li {
    list-style: none;
    display: flex;
    align-items: center;
    margin-top: 10px;
}
.single-card i.fas {
    height: 15px;
    width: 15px;
    background-color: rgb(0, 0, 0);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    color: white;
    font-size: 10px;
    margin-right: 10px;
}
.single-card span {
    font-size: 12px;
    font-weight: 500;
}
.single-card button {
    height: 40px;
    width: 100%;
    background-color: #ffffff;
    color: rgb(255, 255, 255);
    border: none;
    outline: none;
    cursor: pointer;
    border-radius: 20px;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: .5px;
    margin-top: 30px;
    transition: 0.3s;
}
.single-card button:hover {
    background: rgb(255, 255, 255);
}
.single-card .popular {
    position: relative;
}
.single-card .popular::before {

    position: absolute;
    top: 15px;
    right: -45px;
    background: rgb(255, 255, 255);
    transform: rotate(45deg);
    font-size: 10px;
    padding: 0px 50px;
}
.popular.wrapper {
    color: rgb(255, 255, 255);
    background: linear-gradient(rgb(255, 205, 192), 70deg, rgba(255, 0, 140, 0.219));
    overflow: hidden;
}
.popular.wrapper button , 
.popular.wrapper i {
    color: #ffffff;
    background: rgb(0, 0, 0);
}
.popular.wrapper button:hover {
    color: rgb(255, 255, 255);
    background: rgb(255, 255, 255);
}
.disable span {
    color: #c4c4c4;
}
.disable i.fas {
    background: #c4c4c4;
}
@media screen and (max-width : 992px) {
    #pricing {
        padding: 0px 20px;
    }    
}
@media screen and (max-width : 768px) {
    .single-card {
        flex-basis: calc(100% / 2);
    }    
}
@media screen and (max-width : 576px) {
    .single-card {
        flex-basis: calc(100%);
    }    
}

form {
    padding: 30px;
    background: linear-gradient(70deg, rgba(255, 225, 52, 0.733), rgb(255, 205, 192));
    border-radius: 10px;
  }
  form h1 {
    font-size: 20px;
  }
  form .separation {
    width: 100%;
    height: 1px;
    background-color: #747cdf;
  }
  form .corps-formulaire {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 30px;
  }
  form .corps-formulaire .groupe {
    position: relative; /* Pour mettre positionner l’élément dans le flux normal de la page */
    margin-top: 20px;
    display: flex;
    flex-direction: column;
  }
  form .corps-formulaire .gauche .groupe input {
    margin-top: 5px;
    padding: 10px 5px 10px 30px;
    border: 1px solid #c9c9c9;
    outline-color: #747cdf;
    border-radius: 5px;
  }
  form .corps-formulaire .gauche .groupe i {
    position: absolute; /* positionné par rapport à son parent le plus proche positionné */
    left: 0;
    top: 25px;
    padding: 9px 8px;
    color: #747cdf;
  }
  form .corps-formulaire .droite {
    margin-left: 40px;
  }
  form .corps-formulaire .droite .groupe {
    height: 250px;
    width: 500px;

  }
  form .corps-formulaire .droite .groupe textarea {
    margin-top: 5px;
    padding: 10px;
    background-color: #f1f1f1;
    border: 2px solid #747cdf;
    outline: none;
    border-radius: 5px;
    resize: none;
    height: 72%;
  }
  form .pied-formulaire button {
    margin-top: 10px;
    background-color: #747cdf;
    color: white;
    font-size: 15px;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    outline: none;
    cursor: pointer;
    transition: transform 0.5s;
  }
  form .pied-formulaire button:hover {
    transform: scale(1.05);
  }
  
  @media screen and (max-width: 920px) {
    form .corps-formulaire .droite {
      margin-left: 0px;
    }
  }
  .toggle {
    width: 50px;
    height: 50px;
    background: #c70039;
    border-radius: 50%;
    cursor: pointer;
    position: relative;
  }
  
  .toggle::before {
    content: '\f1e0';
    width: 100%;
    height: 100%;
    position: absolute;
    color: white;
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    text-align: center;
    line-height: 50px;
    font-size: 22px;
  }

  .share.active .toggle::before {
    content: '\f00d';
    font-size: 2rem;
  }
  .share {
    position: fixed;
    bottom: 70px;
    right: 70px;
  }
  .share ol {
    position: absolute;
    width: 50px;
    height: 50px;
  }
  .share ol li {
    position: absolute;
    width: 50px;
    height: 50px;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all .3s;
    opacity: 0;
  }
  
  .share ol li a {
    color: black;
  }
  
  .share.active ol li {
    opacity: 1;
    transition: all .3s;
  }

  .share.active ol li:nth-child(1) {
    transition-delay: .1s;
    transform: translateX(60px);
  }
  
  .share.active ol li:nth-child(2) {
    transition-delay: .2s;
    transform: translateY(60px);
  }
  
  .share.active ol li:nth-child(3) {
    transition-delay: .3s;
    transform: translateX(-60px);
  }
  
  .share.active ol li:nth-child(4) {
    transition-delay: .4s;
    transform: translateY(-60px);
  }

  .medias {
    list-style-type: none;
    position: absolute;
    right: 3.3%;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.bulle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 10px 0;

    cursor: pointer;
    position: relative;
}

.logo-medias {
    width: 40px;
    height: 40px;
}
button {
    padding: 20px 50px;
    font-size: 1.5rem;
    cursor: pointer;
    border: 0;
    color: #fff;
    background: transparent;
    position: relative;
    margin: 20px;
    transition: all .25s;
  }
  button::after,button::before {
    border: 3px solid #fff;
    content: '';
    position: absolute;
    border-radius: inherit;
    width: 100%;
    height: 100%;
    left: 0px;
    bottom: 0px;
    transition: all .25s;
  }
  button:hover::after {
    transform: translate(-5px, -5px);
  }
  
  button:hover::before {
    transform: translate(5px, 5px);
  }

  body {
	color: #000000;
	font: 100% Lato, Arial, Sans Serif;
	height: 100vh;
	margin: 0;
	padding: 0;
	overflow-x: hidden;
} 
  #background-wrap {
    bottom: 0;
	left: 0;
	position: fixed;
	right: 0;
	top: 0;
	z-index: -1;
}

@import url(https://fonts.googleapis.com/css?family=Open+Sans:400,500,300,700);

* {
  font-family: Open Sans;
}



.footer-distributed{
	background: linear-gradient(70deg, rgba(230, 0, 230, 0.384), rgb(245, 211, 203));
	box-shadow: 0 1px 1px 0 rgba(255, 255, 255, 0.12);
	box-sizing: border-box;
	width: 100%;
	text-align: left;
	font: bold 16px sans-serif;
	padding: 55px 50px;
}

.footer-distributed .footer-left,
.footer-distributed .footer-center,
.footer-distributed .footer-right{
	display: inline-block;
	vertical-align: top;
}

/* Footer left */

.footer-distributed .footer-left{
	width: 40%;
}

/* The company logo */

.footer-distributed h3{
	color:#747cdf;
	font: normal 36px 'Open Sans', cursive;
	margin: 0;
}

.footer-distributed h3 span{
	color:#747cdf;
}

/* Footer links */

.footer-distributed .footer-links{
	color: #747cdf;
	margin: 20px 0 12px;
	padding: 0;
}

.footer-distributed .footer-links a{
	display:inline-block;
	line-height: 1.8;
  font-weight:400;
	text-decoration: none;
	color:  inherit;
}

.footer-distributed .footer-company-name{
	color:  #222;
	font-size: 14px;
	font-weight: normal;
	margin: 0;
}

/* Footer Center */

.footer-distributed .footer-center{
	width: 35%;
}

.footer-distributed .footer-center i{
	background-color:  #ffffff;
	color: #ffffff;
	font-size: 25px;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	text-align: center;
	line-height: 42px;
	margin: 10px 15px;
	vertical-align: middle;
}

.footer-distributed .footer-center i.fa-envelope{
	font-size: 17px;
	line-height: 38px;
}

.footer-distributed .footer-center p{
	display: inline-block;
	color: #747cdf;
  font-weight:400;
	vertical-align: middle;
	margin:0;
}

.footer-distributed .footer-center p span{
	display:block;
	font-weight: normal;
	font-size:14px;
	line-height:2;
}

.footer-distributed .footer-center p a{
	color:  lightseagreen;
	text-decoration: none;;
}

.footer-distributed .footer-links a:before {
  content: "|";
  font-weight:300;
  font-size: 20px;
  left: 0;
  color: #fff;
  display: inline-block;
  padding-right: 5px;
}

.footer-distributed .footer-links .link-1:before {
  content: none;
}

/* Footer Right */

.footer-distributed .footer-right{
	width: 20%;
}

.footer-distributed .footer-company-about{
	line-height: 20px;
	color:  #92999f;
	font-size: 13px;
	font-weight: normal;
	margin: 0;
}

.footer-distributed .footer-company-about span{
	display: block;
	color: #747cdf;
	font-size: 25px;
	font-weight: bold;
	margin-bottom: 20px;
}

.footer-distributed .footer-icons{
	margin-top: 25px;
}

.footer-distributed .footer-icons a{
	display: inline-block;
	width: 35px;
	height: 35px;
	cursor: pointer;
	background-color:  #ffffff;
	border-radius: 2px;

	font-size: 20px;
	color:#747cdf;
	text-align: center;
	line-height: 35px;

	margin-right: 3px;
	margin-bottom: 5px;
}

/* If you don't want the footer to be responsive, remove these media queries */

@media (max-width: 880px) {

	.footer-distributed{
		font: bold 14px sans-serif;
	}

	.footer-distributed .footer-left,
	.footer-distributed .footer-center,
	.footer-distributed .footer-right{
		display: block;
		width: 100%;
		margin-bottom: 40px;
		text-align: center;
	}

	.footer-distributed .footer-center i{
		margin-left: 0;
	}

}

.slider {
	width: 100%;
}
.slider input {
	display: none;
}
.testimonials {
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	min-height: 350px;
	perspective: 1000px;
	overflow: hidden;
}
.testimonials .item {
	width: 450px;
	padding: 50px;
	border-radius: 55px;
	background-color: #8991ff;
	position: absolute;
	top: 0;
	box-sizing: border-box;
	text-align: center;
	transition: transform 0.4s;
	box-shadow: 0 0 10px rgb(0, 0, 0);
	user-select: none;
	cursor: pointer;
}
.testimonials .item img {
	width: 100px;
	height: 100px;
	object-fit: cover;
	border-radius: 50%;
	border: 13px solid #3B344D;
}
.testimonials .item p {
	color:#ffffff;
}
.testimonials .item h2 {
	font-size: 14px;
}
.dots {
	display: flex;
	justify-content: center;
	align-items: center;
}
.dots label {
	height: 5px;
	width: 5px;
	border-radius: 50%;
	cursor: pointer;
	background-color: #000000;
	margin: 7px;
	transition-duration: 0.2s;
}

#t-1:checked ~ .dots label[for="t-1"],
#t-2:checked ~ .dots label[for="t-2"],
#t-3:checked ~ .dots label[for="t-3"],
#t-4:checked ~ .dots label[for="t-4"],
#t-5:checked ~ .dots label[for="t-5"] {
	transform: scale(2);
	background-color: #fff;
}
#t-1:checked ~ .dots label[for="t-2"],
#t-2:checked ~ .dots label[for="t-1"],
#t-2:checked ~ .dots label[for="t-3"],
#t-3:checked ~ .dots label[for="t-2"],
#t-3:checked ~ .dots label[for="t-4"],
#t-4:checked ~ .dots label[for="t-3"],
#t-4:checked ~ .dots label[for="t-5"],
#t-5:checked ~ .dots label[for="t-4"] {
	transform: scale(1.5);
}
#t-1:checked ~ .testimonials label[for="t-5"] {
	transform: translate3d(1200px, 0, -360px) rotateY(-45deg);
}
#t-1:checked ~ .testimonials label[for="t-4"],
#t-2:checked ~ .testimonials label[for="t-5"] {
	transform: translate3d(900px, 0, -270px) rotateY(-35deg);
	z-index: 1;
}
#t-1:checked ~ .testimonials label[for="t-3"],
#t-2:checked ~ .testimonials label[for="t-4"],
#t-3:checked ~ .testimonials label[for="t-5"] {
	transform: translate3d(600px, 0, -180px) rotateY(-25deg);
	z-index: 2;
}
#t-1:checked ~ .testimonials label[for="t-2"],
#t-2:checked ~ .testimonials label[for="t-3"],
#t-3:checked ~ .testimonials label[for="t-4"],
#t-4:checked ~ .testimonials label[for="t-5"] {
	transform: translate3d(300px, 0, -90px) rotateY(-15deg);
	z-index: 3;
}
#t-2:checked ~ .testimonials label[for="t-1"],
#t-3:checked ~ .testimonials label[for="t-2"],
#t-4:checked ~ .testimonials label[for="t-3"],
#t-5:checked ~ .testimonials label[for="t-4"] {
	transform: translate3d(-300px, 0, -90px) rotateY(15deg);
	z-index: 3;
}
#t-3:checked ~ .testimonials label[for="t-1"],
#t-4:checked ~ .testimonials label[for="t-2"],
#t-5:checked ~ .testimonials label[for="t-3"] {
	transform: translate3d(-600px, 0, -180px) rotateY(25deg);
}
#t-5:checked ~ .testimonials label[for="t-2"],
#t-4:checked ~ .testimonials label[for="t-1"] {
	transform: translate3d(-900px, 0, -270px) rotateY(35deg);
}
#t-5:checked ~ .testimonials label[for="t-1"] {
	transform: translate3d(-1200px, 0, -360px) rotateY(45deg);
}
#t-1:checked ~ .testimonials label[for="t-1"],
#t-2:checked ~ .testimonials label[for="t-2"],
#t-3:checked ~ .testimonials label[for="t-3"],
#t-4:checked ~ .testimonials label[for="t-4"],
#t-5:checked ~ .testimonials label[for="t-4"],
#t-5:checked ~ .testimonials label[for="t-5"] {
	z-index: 4;
}

  /* ================ The Timeline ================ */
  
  .timeline {
    position: relative;
    width: 720px;
    margin: 20 auto;
    margin-top: 10px;
    padding: 1em 0;
    list-style-type: none;
  }
  
  .timeline:before {
    position: absolute;
    left: 50%;
    top: 0;
    content: ' ';
    display: block;
    width: 6px;
    height: 100%;
    margin-left: -3px;
    background: rgb(80,80,80);
    background: -moz-linear-gradient(top, rgba(80,80,80,0) 0%, rgb(80,80,80) 8%, rgb(80,80,80) 92%, rgba(80,80,80,0) 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(30,87,153,1)), color-stop(100%,rgba(125,185,232,1)));
    background: -webkit-linear-gradient(top, rgba(80,80,80,0) 0%, rgb(80,80,80) 8%, rgb(80,80,80) 92%, rgba(80,80,80,0) 100%);
    background: -o-linear-gradient(top, rgba(80,80,80,0) 0%, rgb(80,80,80) 8%, rgb(80,80,80) 92%, rgba(80,80,80,0) 100%);
    background: -ms-linear-gradient(top, rgba(80,80,80,0) 0%, rgb(80,80,80) 8%, rgb(80,80,80) 92%, rgba(80,80,80,0) 100%);
    background: linear-gradient(to bottom, rgba(80,80,80,0) 0%, rgb(80,80,80) 8%, rgb(80,80,80) 92%, rgba(80,80,80,0) 100%);
    
    z-index: 5;
  }
  
  .timeline li {
    padding: 1em 0;
  }
  
  .timeline li:after {
    content: "";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
  }
  
  .direction-l {
    position: relative;
    width: 300px;
    float: left;
    text-align: right;
  }
  
  .direction-r {
    position: relative;
    width: 300px;
    float: right;
  }
  
  .flag-wrapper {
    position: relative;
    display: inline-block;
    
    text-align: center;
  }
  
  .flag {
    position: relative;
    display: inline;
    background: rgb(248,248,248);
    padding: 6px 10px;
    border-radius: 5px;
    
    font-weight: 600;
    text-align: left;
  }
  
  .direction-l .flag {
    -webkit-box-shadow: -1px 1px 1px rgba(0,0,0,0.15), 0 0 1px rgba(0,0,0,0.15);
    -moz-box-shadow: -1px 1px 1px rgba(0,0,0,0.15), 0 0 1px rgba(0,0,0,0.15);
    box-shadow: -1px 1px 1px rgba(0,0,0,0.15), 0 0 1px rgba(0,0,0,0.15);
  }
  
  .direction-r .flag {
    -webkit-box-shadow: 1px 1px 1px rgba(0,0,0,0.15), 0 0 1px rgba(0,0,0,0.15);
    -moz-box-shadow: 1px 1px 1px rgba(0,0,0,0.15), 0 0 1px rgba(0,0,0,0.15);
    box-shadow: 1px 1px 1px rgba(0,0,0,0.15), 0 0 1px rgba(0,0,0,0.15);
  }
  
  .direction-l .flag:before,
  .direction-r .flag:before {
    position: absolute;
    top: 50%;
    right: -40px;
    content: ' ';
    display: block;
    width: 12px;
    height: 12px;
    margin-top: -10px;
    background: #fff;
    border-radius: 10px;
    border: 4px solid rgb(255,80,80);
    z-index: 10;
  }
  
  .direction-r .flag:before {
    left: -40px;
  }
  
  .direction-l .flag:after {
    content: "";
    position: absolute;
    left: 100%;
    top: 50%;
    height: 0;
    width: 0;
    margin-top: -8px;
    border: solid transparent;
    border-left-color: rgb(248,248,248);
    border-width: 8px;
    pointer-events: none;
  }
  
  .direction-r .flag:after {
    content: "";
    position: absolute;
    right: 100%;
    top: 50%;
    height: 0;
    width: 0;
    margin-top: -8px;
    border: solid transparent;
    border-right-color: rgb(248,248,248);
    border-width: 8px;
    pointer-events: none;
  }
  
  .time-wrapper {
    display: inline;
    
    line-height: 1em;
    font-size: 0.66666em;
    color: rgb(250,80,80);
    vertical-align: middle;
  }
  
  .direction-l .time-wrapper {
    float: left;
  }
  
  .direction-r .time-wrapper {
    float: right;
  }
  
  .time {
    display: inline-block;
    padding: 4px 6px;
    background: rgb(248,248,248);
  }
  
  .desc {
    margin: 1em 0.75em 0 0;
    
    font-size: 0.77777em;
    font-style: italic;
    line-height: 1.5em;
  }
  
  .direction-r .desc {
    margin: 1em 0 0 0.75em;
  }
  
  /* ================ Timeline Media Queries ================ */
  
  @media screen and (max-width: 660px) {
  
  .timeline {
      width: 100%;
      padding: 4em 0 1em 0;
  }
  
  .timeline li {
      padding: 2em 0;
  }
  
  .direction-l,
  .direction-r {
      float: none;
      width: 100%;
  
      text-align: center;
  }
  
  .flag-wrapper {
      text-align: center;
  }
  
  .flag {
      background: rgb(255,255,255);
      z-index: 15;
  }
  
  .direction-l .flag:before,
  .direction-r .flag:before {
    position: absolute;
    top: -30px;
      left: 50%;
      content: ' ';
      display: block;
      width: 12px;
      height: 12px;
      margin-left: -9px;
      background: #fff;
      border-radius: 10px;
      border: 4px solid rgb(255,80,80);
      z-index: 10;
  }
  
  .direction-l .flag:after,
  .direction-r .flag:after {
      content: "";
      position: absolute;
      left: 50%;
      top: -8px;
      height: 0;
      width: 0;
      margin-left: -8px;
      border: solid transparent;
      border-bottom-color: rgb(255,255,255);
      border-width: 8px;
      pointer-events: none;
  }
  
  .time-wrapper {
      display: block;
      position: relative;
      margin: 4px 0 0 0;
      z-index: 14;
  }
  
  .direction-l .time-wrapper {
      float: none;
  }
  
  .direction-r .time-wrapper {
      float: none;
  }
  
  .desc {
      position: relative;
      margin: 1em 0 0 0;
      padding: 1em;
      background: rgb(245,245,245);
      -webkit-box-shadow: 0 0 1px rgba(0,0,0,0.20);
      -moz-box-shadow: 0 0 1px rgba(0,0,0,0.20);
      box-shadow: 0 0 1px rgba(0,0,0,0.20);
      
    z-index: 15;
  }
  
  .direction-l .desc,
  .direction-r .desc {
      position: relative;
      margin: 1em 1em 0 1em;
      padding: 1em;
      
    z-index: 15;
  }
  
  }
  
  @media screen and (min-width: 400px) {
  
  .direction-l .desc,
  .direction-r .desc {
      margin: 1em 4em 0 4em;
  }
  
  }

  /*cerveau*/

  body{
    background: #ffffff;
  }
  
  svg {
     display: block;
     height: 30vh;
     left: 40px;
     margin: left;
     padding: 2%;
  }
  
  .cls-1,
  .dotclass {
     fill: #4c6bfa;
  }
  
  #dot1 {
     animation: heartbeat 1.5s ease-in-out infinite both;
     animation-delay: -71ms;
  }
  
  #dot2 {
     animation: heartbeat 1.5s ease-in-out infinite both;
     animation-delay: -142ms;
  }
  
  #dot3 {
     animation: heartbeat 1.5s ease-in-out infinite both;
     animation-delay: -213ms;
  }
  
  #dot4 {
     animation: heartbeat 1.5s ease-in-out infinite both;
     animation-delay: -284ms;
  }
  
  #dot5 {
     animation: heartbeat 1.5s ease-in-out infinite both;
     animation-delay: -355ms;
  }
  
  #dot6 {
     animation: heartbeat 1.5s ease-in-out infinite both;
     animation-delay: -426ms;
  }
  
  #dot7 {
     animation: heartbeat 1.5s ease-in-out infinite both;
     animation-delay: -497ms;
  }
  
  #dot8 {
     animation: heartbeat 1.5s ease-in-out infinite both;
     animation-delay: -568ms;
  }
  
  #dot9 {
     animation: heartbeat 1.5s ease-in-out infinite both;
     animation-delay: -639ms;
  }
  
  #dot10 {
     animation: heartbeat 1.5s ease-in-out infinite both;
     animation-delay: -710ms;
  }
  
  #dot11 {
     animation: heartbeat 1.5s ease-in-out infinite both;
     animation-delay: -781ms;
  }
  
  #dot12 {
     animation: heartbeat 1.5s ease-in-out infinite both;
     animation-delay: -852ms;
  }
  
  #dot13 {
     animation: heartbeat 1.5s ease-in-out infinite both;
     animation-delay: -923ms;
  }
  
  #dot14 {
     animation: heartbeat 1.5s ease-in-out infinite both;
     animation-delay: -1000ms;
  }
  
  @keyframes heartbeat {
     from {
        transform: scale(1);
        transform-origin: center center;
        animation-timing-function: ease-out;
     }
     10% {
        transform: scale(0.8);
        animation-timing-function: ease-in;
     }
     17% {
        transform: scale(1.2);
        animation-timing-function: ease-out;
     }
     33% {
        transform: scale(0.8);
        animation-timing-function: ease-in;
     }
     45% {
        transform: scale(1);
        animation-timing-function: ease-out;
     }
  }

  .ribbon {
    --c: #C7F464;
    
    border-image: 
       conic-gradient(from 45deg at calc(100% - 1lh),#0000 25%,var(--c) 0) 
       fill 0 0 0 0 100vw;
    padding-right: 1.3lh;
    line-height: 1.5em; /* control the height */ 
    width: fit-content; /* you probably don't need this if your element is already shrink-to-fit*/
  }
  
  @supports not (padding: 1lh) { /* in case the lh unit is not available fallback to em */
    .ribbon {
      border-image: 
         conic-gradient(from 45deg at calc(100% - 1.5em) 50%,#0000 25%,var(--c) 0) 
         fill 0 0 0 0 100vw;
      padding-right: 2em; 
    }

  }
  
  

  h1 {
    font-size: 3rem;
  }
  p {
    text-align:justify;
  }

  /*neuro*/
  .ze-card-full-wrap {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
  }
  .ze-card-invi-wrap {
    display: flex;
    cursor: pointer;
    max-width: 320px + 60px + 55px;
    width: 25%;
    margin: 50px auto;
    overflow: hidden;
    padding: 45px;
    padding-bottom: 100px;
    
    position: relative;
    perspective: 1000px;
    transform-style: preserve-3d;
    &:hover {
      .ze-img-w {
        transform: translateZ(20px);
        &:after {
          top: 200%;
        }
      }
      .ze-title:after {
        width: 90%;
      }
    }
  }
  .ze-card-ze-bg {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    height: 100%;
    opacity: 0.05;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
  }
  .ze-card {
    max-width: 320px;
    padding: 25px;
    padding-bottom: 255px;
    background: #fff;
    border-radius: 3px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1), 0 3px 5px rgba(0,0,0,0.05);
    position: relative;
    
    transform-style: preserve-3d;
    perspective: 1000px;
    z-index: 5;
    .ze-img-w {
      box-shadow: 0 0 10px rgba(0,0,0,0.1);
      position: absolute;
      bottom: -60px;
      right: -55px;
      width: 100%;
      height: 300px;
      border-radius: 9px;
      overflow: hidden;
      background-size: cover;
      background-repeat: no-repeat;
      background-position: center;overflow: hidden;
      
      transform-style: preserve-3d;
      transform: translateZ(15px);
      transition: all 0.5s;
      &:after {
        content: '';
        position: absolute;
        background: #fff;
        width: 50%;
        height: 100%;
        top: -200%;
        left: -70%;
        transform: rotateZ(-45deg);
        opacity: 0.2;
        transition: all 0.5s;
      }
    }
    .ze-title {
      font-size: 3px;
      font-style: italic;
      font-weight: bold;
      margin-bottom: 5px;
      font-size: 20px;
      
      position: relative;
      left: 15px;
      top: 8px;
      transform-style: preserve-3d;
      transform: translateZ(25px);
      &:after {
        content: '';
        position: absolute;
        left: -8px;
        bottom: 3px;
        width: 0;
        height: 10px;
        background: lightskyblue;
        z-index: -1;
        transition: all 0.5s;
      }
    }
    .ze-description {
      font-family: Verdana, sans-serif;
      font-size: 35px;
      line-height: 25px;
      margin-bottom: 15px;
      opacity: 0;
      color:#ffffff;
      
      position: relative;
      left: 8px;
      top: 5px;
      transform-style: preserve-3d;
      transform: translateZ(5px);
    }
  }

  .boxtt
  {
    width: 800px;
    margin: 0 auto;
    padding: 2px;
    background-color: #eaab00; /* gold */
    /* Single pixel data uri image http://jsfiddle.net/LPxrT/ 
    /* background-image: gold, gold, white */
    background-image: url('data:image/gif;base64,R0lGODlhAQABAPAAAOqrAP///yH5BAAAAAAALAAAAAABAAEAAAICRAEAOw=='),  url('data:image/gif;base64,R0lGODlhAQABAPAAAOqrAP///yH5BAAAAAAALAAAAAABAAEAAAICRAEAOw=='),
  url('data:image/gif;base64,R0lGODlhAQABAPAAAP///////yH5BAAAAAAALAAAAAABAAEAAAICRAEAOw==');
    background-repeat: no-repeat;
    background-size: 0 2px, 0 100%, 0% 2px;
    background-position: top center, top center, bottom center;
    -webkit-animation:drawBorderFromCenter 7s;
  }
  
  /* Chrome, Safari, Opera */
    @-webkit-keyframes drawBorderFromCenter {
      0% {
        background-size: 0 2px, 0 0, 100% 100%;
      }
      20% {
        background-size: 100% 2px, 100% 0, 100% 100%;
      }
      66%
      {
        background-size: 100% 2px, 100% 98%, 100% 100%;
      }
      99%
      {
        background-size: 100% 2px, 100% 98%, 0 2px;
      }
  }
  
  .content
  {
    background: white;
    padding: 5px;
    text-align: center;
    text-transform: uppercase;
  }

  /*cheval*/

  @import url("https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght,SOFT,WONK@9..144,100..900,0..100,0..1&family=Fraunces:ital,opsz,wght,SOFT,WONK@1,9..144,100..900,0..100,0..1&display=swap");

  /* Variables and page setup */
  
  html {
    font-family: Fraunces, serif;
    font-size: 100%;
    line-height: 1.35;
    font-weight: 340;
    color: var(--text);
    background: var(--background);
    padding-bottom: 20vh;
  
    /* Typetura */
    --tt-key: html;
    --tt-max: 900;
    --tt-ease: cubic-bezier(0, 0.78, 0.53, 1);
  
    /* Grid */
    --max-width: 22200px;
    --columns: 7;
    --gutter: 1.5rem;
  
    /* Color */
    --primary:#747cdf;
    --background: #ffffff;
    --background-alt: #ffffff;
    --text: #31355b;
  }
  @keyframes html {
    0% {
      font-size: 0%;
    }
  
    100% {
      font-size: 125%;
    }
  }
  * {
    --grid: minmax(var(--gutter), 1fr)
      repeat(
        var(--columns),
        minmax(
          0,
          calc(
            (var(--max-width) - (var(--gutter) * (var(--columns) - 1))) /
              var(--columns)
          )
        )
      )
      minmax(var(--gutter), 1fr);
  }
  
  /* Element styles */
  
  body {
    margin: 0;
  }
  
  img {
    width: 100%;
  }
  
  /* Typography */
  
  .masthead {
    color: var(--primary);
    mix-blend-mode: multiply;
    text-align: center;
    font-variation-settings: "WONK" 1, "SOFT" 30;
    --tt-key: masthead;
    --tt-max: 1200;
    --tt-ease: ease-in-out;
    margin: 0.5em 0 -0.5em;
  }
  @keyframes masthead {
    0% {
      font-size: 1rem;
      margin-bottom: -0.45em;
      font-weight: 600;
    }
    100% {
      font-size: 6.5rem;
      margin-bottom: -0.375em;
      font-weight: 500;
    }
  }
  
  .primary-headline {
    --tt-key: primary-headline;
    --tt-ease: cubic-bezier(1, 0, 1, 1);
    --tt-max: 585;
    line-height: 1;
    font-variation-settings: "SOFT" 0, "WONK" 1;
    margin: 0.5rem 0;
  }
  @keyframes primary-headline {
    0% {
      font-size: 1rem;
      font-weight: 500;
    }
    100% {
      font-size: 4rem;
      font-weight: 300;
    }
  }
  
  .meta {
    font-style: italic;
    margin: 0.25rem 0;
    font-size: 0.75rem;
  }
  
  .entry-summary {
    margin: 0.25rem 0;
  }
  
  /* Layout */
  
  .main {
    column-gap: var(--gutter);
    grid-template-columns: var(--grid);
    padding: var(--gutter);
  }
  
  .entry {
    margin-bottom: var(--gutter);
  }
  
  .entry,
  .entry-content {
    display: flex;
    flex-direction: column;
  }
  
  .entry-img {
    aspect-ratio: 5 / 3;
    object-fit: cover;
  }
  
  .entry-date {
    order: -1;
  }
  
  /* Module overrides */
  
  .entry-lede time {
    margin-bottom: 1rem;
  }
  
  .entry-lede time::after {
    content: "";
    display: block;
    width: calc(100% + (var(--gutter) * 2));
    height: 1px;
    margin-left: calc(var(--gutter) * -2);
    background: var(--primary);
    mix-blend-mode: multiply;
    margin-top: 0.67rem;
  }
  
  /* Breakpoints */
  
  @media (min-width: 30em) {
    html {
      --columns: 12;
    }
    .main,
    .entry-lede {
      padding: 0;
      display: grid;
    }
  
    .entry,
    .trending {
      grid-column-start: 3;
      grid-column-end: span 10;
    }
  
    .entry-lede {
      column-gap: var(--gutter);
      grid-template-columns: var(--grid);
      grid-column-start: 1;
      grid-column-end: span 14;
      margin-bottom: 4rem;
    }
  
    .entry-lede > .entry-img {
      aspect-ratio: auto;
      grid-column-start: 1;
      grid-column-end: span 10;
    }
  
    .entry-lede .entry-content {
      grid-column-start: 3;
      grid-column-end: span 11;
      margin: -2.5rem calc(var(--gutter) * -1) 0;
      background: var(--background-alt);
      padding: 0.5rem var(--gutter) 1rem;
    }
  }
  .ze-card-full-wrap {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .ze-card-invi-wrap {
    display: flex;
    cursor: pointer;
    max-width: 320px + 60px + 55px;
    width: 25%;
    margin: 50px auto;
    overflow: hidden;
    padding: 45px;
    padding-bottom: 100px;
    position: relative;
    perspective: 1000px;
    transform-style: preserve-3d;
  
    @media (max-width: 768px) {
      width: 50%;
      padding: 20px;
      padding-bottom: 80px;
    }
  
    &:hover {
      .ze-img-w {
        transform: translateZ(20px);
        &:after {
          top: 200%;
        }
      }
      .ze-title:after {
        width: 90%;
      }
    }
  }
  
  .ze-card-ze-bg {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    height: 100%;
    opacity: 0.05;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
  }
  
  .ze-card {
    max-width: 320px;
    padding: 25px;
    padding-bottom: 255px;
    background: #fff;
    border-radius: 3px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1), 0 3px 5px rgba(0, 0, 0, 0.05);
    position: relative;
    transform-style: preserve-3d;
    perspective: 1000px;
    z-index: 5;
  
    .ze-img-w {
      box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
      position: absolute;
      bottom: -60px;
      right: -55px;
      width: 100%;
      height: 300px;
      border-radius: 9px;
      overflow: hidden;
      background-size: cover;
      background-repeat: no-repeat;
      background-position: center;
      overflow: hidden;
      transform-style: preserve-3d;
      transform: translateZ(15px);
      transition: all 0.5s;
  
      &:after {
        content: '';
        position: absolute;
        background: #fff;
        width: 250%;
        height: 100%;
        top: -200%;
        left: -70%;
        transform: rotateZ(-45deg);
        opacity: 0.2;
        transition: all 0.5s;
      }
    }
  
    .ze-title {
      font-size: 30px;
      font-style: italic;
      font-weight: bold;
      margin-bottom: 5px;
      position: relative;
      left: 15px;
      top: 8px;
      transform-style: preserve-3d;
      transform: translateZ(25px);
  
      &:after {
        content: '';
        position: absolute;
        left: -8px;
        bottom: 3px;
        width: 0;
        height: 10px;
        background: lightskyblue;
        z-index: -1;
        transition: all 0.5s;
      }
    }
  
    .ze-description {
      font-family: Verdana, sans-serif;
      font-size: 18px;
      line-height: 19px;
      margin-bottom: 15px;
      opacity: 0.4;
      position: relative;
      left: 8px;
      top: 5px;
      transform-style: preserve-3d;
      transform: translateZ(5px);
      color:#001aff;
    }
  }
  
  @media (min-width: 50em) {
    html {
      --columns: 24;
    }
  
    .main::before,
    .main::after {
      content: "";
      display: block;
      grid-column-start: 8;
      grid-column-end: 26;
      grid-row-start: 2;
      grid-row-end: 3;
      background: var(--background-alt);
      margin: 0 calc(var(--gutter) * -1);
      z-index: -1;
    }
    .main::after {
      grid-column-start: 2;
      background-color: var(--primary);
      height: 1px;
      mix-blend-mode: multiply;
    }
  
    .entry {
      grid-column-end: span 9;
      margin-bottom: var(--gutter);
    }
    .entry:nth-child(n + 2) {
      margin-top: -2rem;
      grid-row-start: 2;
    }
    .entry:nth-child(2) {
      grid-column-start: 8;
    }
    .entry:nth-child(3) {
      grid-column-start: 17;
    }
  
    .entry-lede {
      column-gap: var(--gutter);
      grid-template-columns: var(--grid);
      grid-column-start: 1;
      grid-column-end: span 26;
      margin-bottom: 4rem;
    }
  
    .entry-lede > .entry-img {
      aspect-ratio: auto;
      grid-column-start: 1;
      grid-column-end: span 13;
    }
  
    .entry-lede .entry-content {
      grid-column-start: 14;
      grid-column-end: span 12;
      margin: 0.5rem 0;
      padding: 4rem 0 0;
      background: none;
    }
  
    .trending {
      grid-row-start: 2;
      grid-column-start: 2;
      grid-column-end: span 6;
      margin-top: var(--gutter);
      transform: translatex(calc(var(--gutter) * -1));
      
    }
  }
  
/*qui suis je*/

.container2 {
  position:absolute;
  top: 113%;
  left: 65%;
  transform: translate(-50%, -50%);
  width: 45.5rem;
  padding: 1.88rem;
  background: #fff;
  box-sizing: border-box;
  border-radius: 0.63rem;
  box-shadow: 0 0.94rem 3.13rem rgba(0, 0, 0, 0.2);
}

.circle {
  width: 12.5rem;
  height: 12.5rem;
  background: url(veroooooooooo.png);
  border-radius: 70%;
  float: left;
  shape-outside: circle();
  margin: 3.13rem 1.88rem 2.5rem 0;
}

p {
  margin: 0;
  padding: 0;
  text-align: justify;
  line-height: 1.38rem;
}

h1 {
  margin: 0 0 1.25rem;
  padding: 0;
  font-size: 1.88rem;
}


@import url(https://fonts.googleapis.com/css?family=Playfair+Display:900italic|Gentium+Basic);


.centered {
  width: 50%;
  margin: 0 auto;
}

.title {
  font-family: 'Playfair Display', serif;
  font-size: 2em;
  text-transform: capitalize;
  text-align: left;
}

p5{
  margin: 0;
  padding: 0;
  }

p6{
  margin: 0;
  padding: 0;
}



.deck {
  width: 80%;
  margin: 0 auto;
  font-size: 1.4em;
  text-align: left;
}

.title::after {
  display: block;
  margin: .75em auto;
  width: 100px;
  content: "";
  border-bottom: 6px solid hsl(160, 100%, 70%);
}

.deck::after {
  display: block;
  margin-top: 2em;
  text-align: center;
  content: "§";
}

.photoespion {
  float: right;
  width: 30%;
}


/*phrase*/

.testimonial666 {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #ffffff;
    padding: 0px 200px;
    font-family: Georgia, serif;
    color: #666;
    font-weight: bold;
}

/*prix*/
/* fonts  */
@import url('https://fonts.googleapis.com/css?family=Abel|Aguafina+Script|Artifika|Athiti|Condiment|Dosis|Droid+Serif|Farsan|Gurajada|Josefin+Sans|Lato|Lora|Merriweather|Noto+Serif|Open+Sans+Condensed:300|Playfair+Display|Rasa|Sahitya|Share+Tech|Text+Me+One|Titillium+Web');

#container{
	box-shadow: 0 15px 30px 1px rgba(128, 128, 128, 0.31);
	background: rgba(255, 255, 255, 0.90);
	text-align: center;
	border-radius: 5px;
	overflow: hidden;
	margin: 5em auto;
	height: 350px;
	width: 700px;
	
}



/* 	Product details  */
.product-details {
	position: relative;
	text-align: left;
	overflow: hidden;
	padding: 30px;
	height: 100%;
	float: left;
	width: 40%;

}

/* 	Product Name */
#container .product-details h1{
	font-family: 'Old Standard TT', serif;
	display: inline-block;
	position: relative;
	font-size: 34px;
	color: #005eff;
	margin: 0;
	
}

#container .product-details h1:before{
	position: absolute;
	content: '';
	right: 0%; 
	top: 0%;
	transform: translate(25px, -15px);
	font-family: 'Farsan', cursive;
	display: inline-block;
	background: #FFA69E;
	border-radius: 5px;
	font-size: 14px;
	padding: 5px;
	color: #ff0000;
	margin: 0;
	animation: chan-sh 6s ease infinite;

}


@keyframes chan-sh {
	from  {content: 'New';}
	to  {content: 'Nouveau';}
	
}

/*Product Rating  */
.hint-star {
	display: inline-block;
	margin-left: 0.5em;
	color: gold;
	width: 50%;
}


/* The most important information about the product */
#container .product-details > p {
	font-family: 'Farsan', cursive;
	text-align: center;
	font-size: 20px;
	color: #7d7d7d;
	
}

/* control */

.control{
	position: absolute;
	bottom: 20%;
	left: 22.8%;
	
}
/* the Button */
.btn {
	transform: translateY(0px);
	transition: 0.3s linear;
	background: #089ac6;
	border-radius: 5px;
  position: relative;
  overflow: hidden;
	cursor: pointer;
	outline: none;
	border: none;
	color: #eee;
	padding: 0;
	margin: 0;
	
}

.btn:hover{transform: translateY(-4px);}

.btn span {
	font-family: 'Farsan', cursive;
	transition: transform 0.3s;
	display: inline-block;
  padding: 10px 20px;
	font-size: 1.2em;
	margin:0;
	
}
/* shopping cart icon */
.btn .price, .shopping-cart{
	background: #0000006b;
	border: 0;
	margin: 0;
}

.btn .price {
	transform: translateX(-10%); padding-right: 15px;
}

/* the Icon */
.btn .shopping-cart {
	transform: translateX(-100%);
  position: absolute;
	background: #ffffff;
	z-index: 1;
  left: 0;
  top: 0;
}

/* buy */
.btn .buy {z-index: 3; font-weight: bolder;}

.btn:hover .price {transform: translateX(-110%);}

.btn:hover .shopping-cart {transform: translateX(0%);}



/* product image  */
.product-image {
	transition: all 0.3s ease-out;
	display: inline-block;
	position: relative;
	overflow: hidden;
	height: 100%;
	float: right;
	width: 50%;
	display: inline-block;
}

#container img {width: 100%;height: 100%;}

.info {
    background: rgba(27, 26, 26, 0.9);
    font-family: 'Farsan', cursive;
    transition: all 0.3s ease-out;
    transform: translateX(-100%);
    position: absolute;
    line-height: 2;
    text-align: center;
    font-size: 120%;
    cursor: no-drop;
    color: #FFF;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
}

.info h2 {text-align: center}
.product-image:hover .info{transform: translateX(0);}

.info ul li{transition: 0.3s ease;}
.info ul li:hover{transform: translateX(50px) scale(1.3);}

.product-image:hover img {transition: all 0.3s ease-out;}
.product-image:hover img {transform: scale(1.2, 1.2);}

/*maps*/

.googlemapinternet {
  width: 50%; /* ajustez la taille en pourcentage selon vos besoins */
  margin: 0 auto; /* centrer horizontalement en utilisant les marges */
}

.googlemapinternet img {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
 
.googlemapinternet :hover img {
  -webkit-transform: rotate(-15deg);
  transform: rotate(-15deg);
}

.googlemapinternet:hover img {
	opacity: 1;
	-webkit-animation: flash 1.5s;
	animation: flash 1.5s;
}
@-webkit-keyframes flash {
	0% {
		opacity: .4;
	}
	100% {
		opacity: 1;
	}
}
@keyframes flash {
	0% {
		opacity: .4;
	}
	100% {
		opacity: 1;
	}
}

.card5 {
  text-align: center;
  font-size: 20px;
}

.card-content5 {
  margin: 0 auto;
  max-width: 800px; /* ajustez la largeur maximale selon vos besoins */
}

.phob{

  width: 50%; /* ajustez la taille en pourcentage selon vos besoins */
  margin: 0 auto; /* centrer horizontalement en utilisant les marges */

}

.phob img {
	-webkit-transform: scale(1);
	transform: scale(1);
	-webkit-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
}
.phob :hover img {
	-webkit-transform: scale(1.3);
	transform: scale(1.3);
}

.valide{
  font-weight: bold;
  text-align: left;
  margin-left: 20px; /* Vous pouvez ajuster la valeur de la marge selon vos besoins */
  }

  .centerrr {
    display:flow-root;
    justify-content: center;
    align-items: center;
    width: 140%; /* Définir la largeur du conteneur */
    height: 400px; /* Définir la hauteur du conteneur */
    padding: 40px;
    /* Autres styles que vous souhaitez appliquer */
  }

  .bold-word {
    font-weight: bold;
  }

  .centertt{
    margin: 0 auto;
    width: 500px;
    display: block;
   }

  
  
