body, html{
  margin:0;
  padding:0;
  background-color: #fff;
  font-family:AvenirNextRegular;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: subpixel-antialiased !important; 
  text-rendering:optimizeLegibility !important;
  font-weight: 400 !important;
}

::selection{
  color:white;
  background-color: #637bf2;
}

h1,
h2,
h3,
h4,
h5{
  font-weight: normal;
  text-shadow: 0 0 0;
}

/* Ajout de la police */

@font-face{
    font-family: AvenirNextRegular;
    src: url("./font/AvenirNextLTPro-Regular.otf") format("opentype");
}

@font-face{
    font-family: AvenirNextBold;
    src: url("./font/AvenirNextLTPro-Bold.otf") format("opentype");
}

@font-face{
    font-family: AvenirNextItalic;
    src: url("./font/AvenirNextLTPro-It.otf") format("opentype");
}

@font-face{
  font-family: AvenirNextDemi;
  src: url("./font/AvenirNextLTPro-Demi.otf") format("opentype");
}

@font-face{
  font-family: AvenirNextUlt;
  src: url("./font/AvenirNextLTPro-UltLt.ttf") format("opentype");
}

.tag {
  opacity: 0;
  transform: translate(0, 10vh);
  transition: all 1.2s;
}

.tag.visible {
  opacity: 1;
  transform: translate(0, 0);
}

/* BARRE DE MENU */

.container{
    position: fixed;
    left: 0%;
    top: 0%;
    right: 0%;
    bottom: auto;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    max-height: 70px;
    padding: 10px 2%;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: #fff;
    z-index:100;
}

/* Logo Jobby */

.menu-logo{
    margin:auto;
    text-align:center;
    display:block;
    position: relative;
}

.logo,
.logo:visited,
.logo:hover,
.logo:active{
    color:#000;
    font-family:AvenirNextBold;
    letter-spacing: -3;
    font-size:40px;
    display:inline-block;
    text-decoration: none;
}

.sub-logo{
    font-family:AvenirNextBold;
    letter-spacing: -2;
    font-size:30px;
    color:#cacaca;
    display:inline-block;
}

p{
    margin:0;
    font-size: 14px;
}

/* Menu hamburger */

input {
    display: inline-block;
}


.label {
  display: block;
  width: 50vw;
  height: 50vw;
  max-width: 100px;
  max-height: 100px;
}

@media (min-aspect-ratio: 1/1) {
  .label {
    width: 50vh;
    height: 50vh;
  }
}

.menu--2 label {
  bottom: 0;
  left: 0;
}

path {
  fill: none;
  stroke: #000;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  --length: 24;
  --offset: -38;
  stroke-dasharray: var(--length) var(--total-length);
  stroke-dashoffset: var(--offset);
  transition: all .8s cubic-bezier(.645, .045, .355, 1);
}

circle {
  fill: #fff3;
  opacity: 0;
}

label:hover circle {
  opacity: 1;
}

.cross input:checked+svg .line--1,
  .cross input:checked+svg .line--3 {
    --length: 22.627416998;
  }

.cross input:checked+svg .line--2 {
    --length: 0;
  }

.back input:checked+svg .line--1,
  .back input:checked+svg .line--3 {
    --length: 8.602325267;
  }


.menu--2 .line--1,
  .menu--2 .line--3 {
    --total-length: 111.22813415527344;
    --offset: -50.22813415527344;
  }

.menu--2 .line--2 {
    --total-length: 99;
  }

.menu--2 input:checked+svg path {
      transform: translateX(30px);
    }

.menu--2 input:checked+svg .line--1,
    .menu--2 input:checked+svg .line--3 {
      --offset: -16.9705627485;
    }

.menu--2 input:checked+svg .line--2 {
      --offset: -20;
    }

.menu--2 input:checked+svg .line--1,
.menu--2 input:checked+svg .line--2,
.menu--2 input:checked+svg .line--3 {
    stroke: #fff;
  -webkit-transition-duration: 0.75s;
  transition-duration: 0.75s;
}


/* Menu qui apparaît */

.link,
.link:visited,
.link:hover,
.link:active {
  color: inherit;
  text-decoration: none;
}

.input {
    position: absolute;
    z-index: 2;
    cursor: pointer;
    height:60px;
    width:60px;
    opacity: 10;
}

svg{
    position: relative;
    z-index: 5;
}

.outer-menu {
  position: inherit;
  top: 10vh;
  left: 0;
  z-index: 1;
}
.checkbox-toggle {
    position: absolute;
    top: 10;
    left: 35;
    z-index: 100;
    cursor: pointer;
    width: 60px;
    height: 60px;
    opacity: 0
}

.input:checked ~ .pop-menu {
  pointer-events: auto;
  visibility: visible;
}
.input:checked ~ .pop-menu > div {
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition-duration: 0.75s;
          transition-duration: 0.75s;
}
.input:checked ~ .pop-menu > div > div {
  opacity: 1;
  -webkit-transition: opacity 0.4s ease 0.4s;
  transition: opacity 0.4s ease 0.4s;
}

.outer-menu .pop-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  visibility: hidden;
  overflow: hidden;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  outline: 1px solid transparent;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-box-pack: center;
          justify-content: center;
}
.outer-menu .pop-menu > div {
  width: 200vw;
  height: 200vw;
  color: #FEFEFE;
  background: #10161c;
  border-radius: 50%;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  -webkit-box-flex: 0;
          flex: none;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  overflow: hidden;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-box-pack: center;
          justify-content: center;
}
.outer-menu .pop-menu > div > div {
  text-align: left;
  max-width: 90vw;
  max-height: 100vh;
  opacity: 0;
  -webkit-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
  -webkit-box-flex: 0;
          flex: none;
  -webkit-box-align: center;
          align-items: center;
  -webkit-box-pack: center;
          justify-content: center;
}
.outer-menu .pop-menu > div > div > div > ul {
  list-style: none;
  padding: 0 1em;
  margin: 0;
  display: block;
  max-height: 100vh;
}
.outer-menu .pop-menu > div > div > div > ul > li {
  padding: 0;
  margin: 1em;
  text-transform: uppercase;
  letter-spacing: 7;
  line-height: 80%;
  font-family: AvenirNextBold;
  font-size: 50px;
  display: block;
}
.outer-menu .pop-menu > div > div > div > ul > li > a {
  position: relative;
  display: inline;
  cursor: pointer;
  -webkit-transition: color 0.4s ease;
  transition: color 0.4s ease;
}
.outer-menu .pop-menu > div > div > div > ul > li > a:hover {
  color: #e5e5e5;
}
.outer-menu .pop-menu > div > div > div > ul > li > a:hover:after {
  width: 100%;
}
.outer-menu .pop-menu > div > div > div > ul > li > a:after {
  content: '';
  position: absolute;
  z-index: 1;
  bottom: -0.15em;
  left: 0;
  width: 0;
  height: 4px;
  background: #e5e5e5;
  -webkit-transition: width 0.4s ease;
  transition: width 0.4s ease;
}

/* Logo réseaux sociaux */
      
/* Icones */
      
.ic {
  color:#fff;
  background: #e2e3e6;
  border-radius:20px;
  text-align:center;
  text-decoration:none;
  font-family:fontawesome;
  position: relative;
  display: inline-block;
  width:40px;
  height:28px;
  padding-top: 12px;
  margin:0 2px;
  -o-transition:all .5s;
  -webkit-transition: all .5s;
  -moz-transition: all .5s;
  transition: all .5s;
   -webkit-font-smoothing: antialiased;
}

.fb{
  background: #637bf2;
}

.tw{
  background: #63adf2;
}

.in {
  background: #f257d7;
}

.yt {
  background: #f25757;
}

/* pop-up text */

.ic .span {
  color:#fff;
  position:absolute;
  font-family:sans-serif;
  bottom:0;
  left:-25px;
  right:-25px;
  padding:5px 7px;
  z-index:3;
  font-size:14px;
  border-radius:20px;
  visibility:hidden;
  opacity:0;
  -o-transition:all .5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  -webkit-transition: all .5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  -moz-transition: all .5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transition: all .5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* pop-up text arrow */



/* text pops up when icon is in hover state */

.ic:hover .span {
  bottom:-30px;
  visibility:visible;
  opacity:1;
}

/* Icones FontAwesome */

.ic.fb:nth-of-type(1):before {
content:'\f39e';
}
.ic.tw:nth-of-type(2):before {
content:'\f099';
}
.ic.in:nth-of-type(3):before {
content:'\f16d';
}
.ic.yt:nth-of-type(4):before {
content:'\f16a';
}

/* INTRO */

.intro {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-right: 0px;
  margin-left: auto;
  padding-top: 90px;
  padding-right: 5%;
  padding-left: 5%;
  padding-bottom: 20px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 0 0 0 250px;
  background-color: #fafaff;
  height: 85%;
}

.container-intro {
  max-width: 1200px;
  margin-right: auto;
  margin-left: auto;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.testimonials-grid {
  display: -ms-grid;
  display: grid;
  grid-auto-columns: 1fr;
  grid-column-gap: 100px;
  grid-row-gap: 16px;
  -ms-grid-columns: 1.5fr 1.5fr;
  grid-template-columns: 1.5fr 1.5fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  margin: 0 60px 0 60px;
  padding: 40px 40px 0px 40px;
}

.menu-grid {
  display: -ms-grid;
  display: grid;
  grid-auto-columns: 1fr;
  grid-column-gap: 200px;
  grid-row-gap: 16px;
  -ms-grid-columns: 1.5fr 1.5fr;
  grid-template-columns: 1.5fr 1.5fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  margin: 0 60px 0 60px;
  padding: 40px 40px 0px 40px;
}

.typewriter h1{
  overflow: hidden;
  border-right: 3px solid #637bf2;
  width: fit-content;
  white-space: nowrap;
  margin: 0 0;
  user-select: none;

  animation:
    typing 2s steps(30, end),
    blink-caret 1s step-end infinite;
}

@keyframes typing{
  from{
    width: 0;
  }
  to{
    width: 88%;
  }
}

@keyframes blink-caret{
  50%{
    border-color: transparent;
  }
}

#slogan {
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
}

#slogan-icones {
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
}

.txt{
    margin-bottom: 10px;
    color: #cecfd2;
    font-size: 16px;
    line-height: 24px;
}

#sub-heading {
  font-size: 18px;
  line-height: 25px;
}

h1 {
  font-family: AvenirNextDemi;
  font-size: 38px;
  line-height: 44px;
}

.top-heading {
  font-size: 43px;
  line-height: 43px;
  text-transform: none;
  font-family: AvenirNextBold !important;
}

.bouton {
  font-family: AvenirNextBold;
  padding: 15px 30px;
  border-radius: 25px;
  background-color: #63adf2;
  -webkit-transition: all 200ms ease;
  transition: all 200ms ease;
  color: #fff;
  font-size: 12px;
  border: 0;
  line-height: inherit;
  text-decoration: none;
  cursor: pointer;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.top-margin.for-the-blog {
  margin-top: 60px;
}

.top-margin.flex-top {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

/* Cercles */

.circle-shape_1 {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background-color:#63adf2;
  position: relative;
  display:flex;
  top: 30;
}

.circle-shape_2 {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color:#61e894;
  position: relative;
  display:flex;
  top:-100;
  left:280;
}

.circle-shape_3 {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background-color:#f25757;
  position: relative;
  display:flex;
  top:-20;
  left:180;
}

.circle-shape_4 {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color:#7567f8;
  position: relative;
  display:flex;
  top:-120;
  left:60;
}

.circle-shape_5 {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color:#f2cd60;
  position: relative;
  display:flex;
  top:-30;
  left: 300;
}

/* Images */

#img1{
  position: relative;
  content: url(./img/icons/institution.png);
  filter: invert();
  margin:auto;
  height: 100px;
}
#img2{
  position: relative;
  content: url(./img/icons/entreprise.png);
  filter: invert();
  margin:auto;
  height: 20px;
}
#img3{
  position: relative;
  content: url(./img/icons/ecole.png);
  filter: invert();
  margin:auto;
  height: 80px;
}
#img4{
  position: relative;
  content: url(./img/icons/info.png);
  filter: invert();
  margin:auto;
  height: 40px;
}
#img5{
  position: relative;
  content: url(./img/icons/www.png);
  filter: invert();
  margin:auto;
  height: 30px;
}
#img6{
  position: relative;
  content: url(./img/icons/ecommerce.png);
  filter: invert();
  margin:auto;
  height: 100px;
}

/* Souris */

.mouse-center{
  text-align: center;
  position: absolute;
  bottom: 40;
  left: 50%;
  right: 50%;
  cursor: pointer;
}

.mouse {
  display: inline-block;
  width: 26px;
  height: 42px;
  bottom: 80px;
  left: 50%;
  margin-left: -12px;
  border-radius: 15px;
  border: 2px solid #7567f8;
  -webkit-animation: intro 1s;
          animation: intro 1s;
}
.scroll {
  display: block;
  width: 6px;
  height: 6px;
  margin: 6px auto;
  border-radius: 4px;
  background: #7567f8;
  -webkit-animation: finger 2s infinite;
          animation: finger 2s infinite;
}
@-webkit-keyframes intro {
  0% {
    opacity: 0;
    -webkit-transform: translateY(40px);
            transform: translateY(40px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes intro {
  0% {
    opacity: 0;
    -webkit-transform: translateY(40px);
            transform: translateY(40px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes finger {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(25px);
            transform: translateY(25px);
  }
}
@keyframes finger {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(25px);
            transform: translateY(25px);
  }
}

/* PRODUITS */

.circle-shape_11 {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background-color:#7567f8;
  position: relative;
  display:flex;
  top: 130;
  left: 90%;
}

.circle-shape_14 {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color:#f25757;
  position: relative;
  display:flex;
  top: -60;
  left: 13%;
}

.section {
  position: relative;
  padding: 90px 5% 150 5%;
}

.contain{
  max-width: 1200px;
    margin-right: auto;
    margin-left: auto;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.div-titre {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 60px;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.barre-titre {
  width: 15%;
  height: 3px;
  margin-right: 20px;
  background-color: #e3e2ef;
}

.titre {
  position: relative;
  margin-top: 0px;
  margin-bottom: 0px;
  font-size: 45px;
  line-height: 50px;
  text-transform: none;
}

.btn-more{
  margin-top: 40px;
  font-family: AvenirNextBold;
  padding: 13px 26px;
  border-radius: 25px;
  background-color: #7567f8;
  -webkit-transition: all 200ms ease;
  transition: all 200ms ease;
  color: #fff;
  font-size: 12px;
  border: 0;
  line-height: inherit;
  text-decoration: none;
  cursor: pointer;
  letter-spacing: 2px;
  text-transform: uppercase;
                                              display:none;
}

/* Suite myJobby */

.circle-info{
  cursor: pointer;
}

.btn-info{
  background-color: #7567f8;
  color: white;
  position: absolute;
  opacity: 0.8;
  z-index: 2;
  text-align: center;
  width: 35%;
  padding: 20px;
  border-radius: 20px;
  margin-left: auto;
  margin-right: auto;
  left: 0;
  right: 0;
  font-size: 25;
}

.info-popover{
  width: 2%;
  margin-left: auto;
  margin-right: auto;
}

.more-info{
  opacity: 0.3;
}

.info-popover:hover .hidden-info{
  display:block;
}

.hidden-info{
  display: none;
}

.div-info {
  display: -webkit-box;
  -webkit-box-pack: center;
  margin-bottom: 70px;
  margin-top:70px;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.divsous-titre {
  position: relative;
  display: -webkit-box;
  -webkit-box-pack: center;
  margin-bottom: 70px;
  margin-top:70px;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.barresous-titre {
  width: 15%;
  height: 3px;
  margin-right: 20px;
  margin-left:20px;
  background-color: #e3e2ef;
}

.sous-titre {
  position: relative;
  margin-top: 0px;
  margin-bottom: 0px;
  font-size: 42px;
  line-height: 50px;
  font-family: AvenirNextDemi;
  text-transform: none;
}

.jobby-grid {
  display: -ms-grid;
  display: grid;
  grid-auto-columns: 1fr;
  grid-column-gap: 40px;
  grid-row-gap: 16px;
  -ms-grid-columns: 30% 30% 30%;
  grid-template-columns: 30% 30% 30%;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  margin-right: auto;
  margin-left: auto;
  justify-content: space-around;
}

.produit-expander {
  position: relative;
  max-width: 400px;
  -webkit-perspective: 1800px;
  perspective: 1800px;
  -webkit-transition: all 200ms ease;
  transition: all 200ms ease;
  -webkit-touch-callout: none;    /* iOS Safari */
  -webkit-user-select: none;      /* Safari */
  -khtml-user-select: none;       /* Konqueror HTML */
  -moz-user-select: none;         /* Old versions of Firefox */
  -ms-user-select: none;          /* Internet Explorer/Edge */
  user-select: none;              /* Non-prefixed version, currently
                                  supported by Chrome, Edge, Opera and Firefox */
}


.produit-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border: 3px solid transparent;
  -webkit-transition: all 200ms ease;
  transition: all 200ms ease;
  text-align: center;
}

.pointer{
  cursor: pointer;
}

#pr1{
  padding: 40px 40px 0px 40px;
  background-color: #f7f7ff;
  border-radius: 20px;
}

#pr2{
  padding: 40px 40px 0px 40px;
  background-color: #f7f7ff;
  border-radius: 20px;
}

#pr3{
  padding: 40px 40px 0px 40px;
  background-color: #f7f7ff;
  border-radius: 20px;
}

#pr4{
  padding: 40px 40px 0px 40px;
  background-color: #f7f7ff;
  border-radius: 20px;
}

#pr5{
  padding: 40px 40px 0px 40px;
  background-color: #f7f7ff;
  border-radius: 20px;
}

#pr6{
  padding: 40px 40px 0px 40px;
  background-color: #f7f7ff;
  border-radius: 20px;
}

.produit-extanded {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border: 3px solid transparent;
  -webkit-transition: all 200ms ease;
  transition: all 200ms ease;
  text-align: center;
  cursor: pointer;
}

#hidden-txt1{
  display:none;
  padding: 0px 50px 30px 50px;
  background-color: #f7f7ff;
  border-radius: 0px 0px 20px 20px;
}

#hidden-txt2{
  display:none;
  padding: 0px 50px 30px 50px;
  background-color: #f7f7ff;
  border-radius: 0px 0px 20px 20px;
}

#hidden-txt3{
  display:none;
  padding: 0px 50px 30px 50px;
  background-color: #f7f7ff;
  border-radius: 0px 0px 20px 20px;
}

#hidden-txt4{
  display:none;
  padding: 0px 50px 30px 50px;
  background-color: #f7f7ff;
  border-radius: 0px 0px 20px 20px;
}

#hidden-txt5{
  display:none;
  padding: 0px 50px 30px 50px;
  background-color: #f7f7ff;
  border-radius: 0px 0px 20px 20px;
}

#hidden-txt6{
  display:none;
  padding: 0px 50px 30px 50px;
  background-color: #f7f7ff;
  border-radius: 0px 0px 20px 20px;
}

.produit-circle {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 180px;
  height: 180px;
  margin-bottom: 30px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 100%;
}

.img1{
  position: relative;
  content: url(./img/icons/institution-c.png);
  margin:auto;
  height: 100px;
}
.img2{
  position: relative;
  content: url(./img/icons/entreprise-c.png);
  margin:auto;
  height: 100px;
}
.img3{
  position: relative;
  content: url(./img/icons/ecole-c.png);
  margin:auto;
  height: 100px;
}
.img4{
  position: relative;
  content: url(./img/icons/info-c.png);
  margin:auto;
  height: 100px;
}
.img5{
  position: relative;
  content: url(./img/icons/www-c.png);
  margin:auto;
  height: 100px;
}
.img6{
  position: relative;
  content: url(./img/icons/ecommerce-c.png);
  margin:auto;
  height: 100px;
}

.img-p-h {
  height: 100px;
}

.produit-titre {
  margin-top: 0px;
  margin-bottom: 15px;
  font-size: 30px;
  line-height: 25px;
  text-transform: capitalize;
}

#c1{
  background-color: #fff;
}

#c2{
  background-color: #fff;
}

#c3{
  background-color: #fff;
}

#c4{
  background-color: #fff;
}

#c5{
  background-color: #fff;
}

#c6{
  background-color: #fff;
}

.produit-wrapper:hover #c1 {
  transition: all 200ms ease;
  background-color: #63adf2;
}

.produit-wrapper:hover .img1{
  content: url(./img/icons/institution.png);
  filter: invert();
}

.produit-wrapper:hover #c2 {
  transition: all 200ms ease;
  background-color: #61e894;
}

.produit-wrapper:hover .img2{
  content: url(./img/icons/entreprise.png);
  filter: invert();
}

.produit-wrapper:hover #c3 {
  transition: all 200ms ease;
  background-color: #f25757;
}

.produit-wrapper:hover .img3{
  content: url(./img/icons/ecole.png);
  filter: invert();
}

.produit-wrapper:hover #c4 {
  transition: all 200ms ease;
  background-color: #7567f8;
}

.produit-wrapper:hover .img4{
  content: url(./img/icons/info.png);
  filter: invert();
}

.produit-wrapper:hover #c5 {
  transition: all 200ms ease;
  background-color: #f2cd60;
}

.produit-wrapper:hover .img5{
  content: url(./img/icons/www.png);
  filter: invert();
}

.produit-wrapper:hover #c6 {
  transition: all 200ms ease;
  background-color: #f257d7;
}

.produit-wrapper:hover .img6{
  content: url(./img/icons/ecommerce.png);
  filter: invert();
}

.plus {
  margin-top:10px;
  margin-bottom:30px;
  width: 30px;
  height: 30px;
  border-radius: 40px;
  background-color: #7567f8;
  background-image: url(./img/icons/plus.png);
  background-position: 50% 50%;
  background-size: 12px;
  background-repeat: no-repeat;
}

.txt-produit{
  text-align: justify;
}

/* A PROPOS */

.circle-shape_6 {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color:#63adf2;
  position: relative;
  display:flex;
  top: 30;
  left: 40;
}

.circle-shape_7 {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color:#f25757;
  position: relative;
  display:flex;
  top: -120;
  left: 95%;
}

.circle-shape_12 {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color:#7567f8;
  position: relative;
  display:flex;
  top: 10;
  left: 27%;
}

.circle-shape_13 {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color:#f2cd60;
  position: relative;
  display:flex;
  top: -10;
  left: 70%;
}

.propos {
  position: relative;
  padding: 130px 5% 150 5%;
  border-radius: 250px 0 250px 0px;
  background-color: #f7f7ff;
}

.txt-propos{
  margin: 0 20%;
  padding: 40px;
  background-color: white;
  border-radius: 40px;
  color: #7567f8;
  font-size: 20px;
  text-align: justify;
  line-height: 1.4;
}

/* CLIENTS */

.circle-shape_8 {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color:#f2cd60;
  position: relative;
  display:flex;
  top: -130;
  left: 200;
}

.logo-client-wrapper{
  display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin-right: auto;
    margin-left: auto;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.logo-flex{
  display: flex;
  flex-wrap: wrap;
  margin-left: -16px;
  justify-content: center;
}

.logo-client{
  margin: 30px 40px;
  min-height: 80px;
  padding: 0px;
  height: 60px;
  -webkit-transition: all 200ms ease;
  transition: all 200ms ease;
}

.jci{
  position: absolute;
  height: 80px;
  opacity: 1;
  -o-transition:.2s ease-in-out;
  -ms-transition:.2s ease-in-out;
  -moz-transition:.2s ease-in-out;
  -webkit-transition:.2s ease-in-out;
  transition:.2s  ease-in-out;
  content: url(./img/clients/jci.png);
}

.jci-c{
  height: 80px;
  content: url(./img/clients/jci-c.png);
}

.jci:hover{
  opacity: 0;
}

.pr-gr{
  position: absolute;
  height: 80px;
  opacity: 1;
  -o-transition:.2s ease-in-out;
  -ms-transition:.2s ease-in-out;
  -moz-transition:.2s ease-in-out;
  -webkit-transition:.2s ease-in-out;
  transition:.2s  ease-in-out;
  content: url(./img/clients/pr-gr.png);
}

.pr-gr-c{
  height: 80px;
  content: url(./img/clients/pr-gr-c.png);
}

.pr-gr:hover{
  opacity: 0;
}

.paquier{
  position: absolute;
  height: 80px;
  opacity: 1;
  -o-transition:.2s ease-in-out;
  -ms-transition:.2s ease-in-out;
  -moz-transition:.2s ease-in-out;
  -webkit-transition:.2s ease-in-out;
  transition:.2s  ease-in-out;
  content: url(./img/clients/paquier.png);
}

.paquier-c{
  height: 80px;
  content: url(./img/clients/paquier-c.png);
}

.paquier:hover{
  opacity: 0;
}

.cf{
  position: absolute;
  height: 80px;
  opacity: 1;
  -o-transition:.2s ease-in-out;
  -ms-transition:.2s ease-in-out;
  -moz-transition:.2s ease-in-out;
  -webkit-transition:.2s ease-in-out;
  transition:.2s  ease-in-out;
  content: url(./img/clients/cf.png);
}

.cf-c{
  height: 80px;
  content: url(./img/clients/cf-c.png);
}

.cf:hover{
  opacity: 0;
}

.rssg{
  position: absolute;
  height: 80px;
  opacity: 1;
  -o-transition:.2s ease-in-out;
  -ms-transition:.2s ease-in-out;
  -moz-transition:.2s ease-in-out;
  -webkit-transition:.2s ease-in-out;
  transition:.2s  ease-in-out;
  content: url(./img/clients/rssg.png);
}

.rssg-c{
  height: 80px;
  content: url(./img/clients/rssg-c.png);
}

.rssg:hover{
  opacity: 0;
}

.pr-vv{
  position: absolute;
  height: 80px;
  opacity: 1;
  -o-transition:.2s ease-in-out;
  -ms-transition:.2s ease-in-out;
  -moz-transition:.2s ease-in-out;
  -webkit-transition:.2s ease-in-out;
  transition:.2s  ease-in-out;
  content: url(./img/clients/pr-vv.png);
}

.pr-vv-c{
  height: 80px;
  content: url(./img/clients/pr-vv-c.png);
}

.pr-vv:hover{
  opacity: 0;
}

.rssv{
  position: absolute;
  height: 80px;
  opacity: 1;
  -o-transition:.2s ease-in-out;
  -ms-transition:.2s ease-in-out;
  -moz-transition:.2s ease-in-out;
  -webkit-transition:.2s ease-in-out;
  transition:.2s  ease-in-out;
  content: url(./img/clients/rssv.png);
}

.rssv-c{
  height: 80px;
  content: url(./img/clients/rssv-c.png);
}

.rssv:hover{
  opacity: 0;
}

/* CONTACT */

.circle-shape_9 {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color:#61e894;
  position: relative;
  display:flex;
  top: 30;
  left: 90%;
}

.circle-shape_10 {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background-color:#63adf2;
  position: relative;
  display:flex;
  top: 80;
  left: 40;
}

.contact{
  position: relative;
  padding: 40px 5% 150 5%;
  border-radius: 0px 250px 0px 0px;
  background-color: #f7f7ff;
}

.container-form{
  max-width: 1200px;
  margin-right: auto;
  margin-left: auto;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.submit-project-wrapper {
  display: flow-root;
  position: relative;
  width: 55%;
  margin-right: auto;
  margin-left: auto;
}

.field-label {
  margin-bottom: 10px;
  color: #7567f8;
  font-size: 17px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-family: AvenirNextDemi;
}

.text-field.white {
  background-color: #fff;
}
.text-field {
  height: 50px;
  padding: 20px;
  border: 1px none #000;
  background-color: #fafaff;
  font-size: 16px;
  display: block;
  margin: 10px 0px 30px 0px;
  width: 100%;
  border-radius:25px;
  font-family: AvenirNextRegular;
  outline: none;
  position: relative;
  left: -5px;
  color: #7567f8;
}

::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #cacaca;
}
::-moz-placeholder { /* Firefox 19+ */
  color: #cacaca;
  opacity: 1;
}
:-ms-input-placeholder { /* IE 10+ */
  color: #cacaca;
}
:-moz-placeholder { /* Firefox 18- */
  color: #cacaca;
  opacity: 1;
}
::placeholder {
  color: #cacaca;
}

.grid{
  display: flow-root;
  display: flex;
  align-items: center;
  justify-content: center;
}


.col-1-2{
  width: 45%;
  float: left;
}

.col-1-1{
  width: 95%;
  float: left;
}

.col-left{
  padding-right: 30px;
}

.grid-radio {
  display: -ms-grid;
  display: grid;
  grid-auto-columns: 1fr;
  grid-column-gap: 30px;
  grid-row-gap: 25px;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  -ms-grid-rows: auto auto;
  grid-template-rows: auto auto;
  width: 95%;
  margin-top: 10px;
}

.grid-radio-long {
  display: -ms-grid;
  display: grid;
  grid-auto-columns: 1fr;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  -ms-grid-rows: auto auto;
  grid-template-rows: auto auto;
  width: 95%;
  margin-top: 10px;
}

.img-h{
  height: 80px;
}

.radio-wrapper {
  padding: 20px;
  background-color: #fff;
  text-align: center;
  border-radius: 25px;
}

.services-title.radio-text {
  margin-bottom: 10px;
  font-family: AvenirNextRegular;
  color: #cacaca;
  font-size: 20px;
  line-height: 20px;
  margin-top: 20px;
}

/* Bouton radio */

.label-container{
  cursor: pointer;
}

.label-container input {
  position: absolute;
	opacity:0;
}

.label-container input:checked + .span-radio:before {
  box-shadow: inset 0 0 0 0.4em #7567f8;
}

.label-container .span-radio:before {
  display: -webkit-box;
  display: flex;
  flex-shrink: 0;
  content: "";
  background-color: #fff;
  width: 20px;
  height: 20px;
  border-radius: 49%;
  -webkit-border-radius: 49%;
  -moz-border-radius: 49%;
  -webkit-transition: 0.25s ease;
  transition: 0.25s ease;
  box-shadow: inset 0 0 0 0.125em #7567f8;
  margin-top:10px;
}

.span-radio{
  display: table;
  margin: 0 auto;
}

/* Zone plus d'informations */

.txt-area{
  max-width:100%;
  min-height: 200px;
  resize: none;
}

.btn{
  font-family: AvenirNextBold;
  padding: 15px 30px;
  border-radius: 25px;
  background-color: #7567f8;
  -webkit-transition: all 200ms ease;
  transition: all 200ms ease;
  color: #fff;
  font-size: 12px;
  border: 0;
  line-height: inherit;
  text-decoration: none;
  cursor: pointer;
  letter-spacing: 2px;
  width:200px;
  text-transform: uppercase;
}

.btn-container {
  overflow: hidden;
  font-family: 'Inter';
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
          justify-content: center;
  -webkit-box-align: center;
          align-items: center;
}

/* FOOTER */

.gray-bg{
  background-color: #f7f7ff;
}

.section.footer {
  padding: 40px 15% 40px;
  border-top-right-radius: 200px;
  background-color: #221e41;
}

.footer-grid {
  display: -ms-grid;
  display: grid;
  grid-auto-columns: 1fr;
  grid-column-gap: 50px;
  grid-row-gap: 0px;
  -ms-grid-columns: 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
}

.footer-title {
  color: #fff;
  font-family: 'AvenirNextBold';
  margin-top: 0px;
  font-size: 28px;
  line-height: 30px;
  margin-bottom: 20px;
  margin-top: 30px;
}

.nav-link-footer {
  position: relative;
  margin-top: 0px;
  margin-bottom: 9px;
  padding-top: 0px;
  padding-bottom: 0px;
  color: #fff;
  font-size: 16px;
  line-height: 16px;
  letter-spacing: 1px;
  text-decoration: none;
  text-transform: uppercase;
}


.footer-links div{
  color: #fff;
  font-family: 'AvenirNextDemi';
  margin-bottom:12px;
}

.p-white{
  font-family: 'AvenirNextDemi';
  color: #fff;
}

.a-contact {
  color: #fff;
  text-decoration: none;
  position: relative;
  display: inline;
  cursor: pointer;
  -webkit-transition: color 0.4s ease;
  transition: color 0.4s ease;
}
.a-contact:hover {
  color: #e5e5e5;
}
.a-contact:hover:after {
  width: 100%;
}
.a-contact:after {
  content: '';
  position: absolute;
  z-index: 1;
  bottom: -0.15em;
  left: 0;
  width: 0;
  height: 2px;
  background: #e5e5e5;
  -webkit-transition: width 0.4s ease;
  transition: width 0.4s ease;
}

.footer-line-divider {
  width: 100%;
  height: 2px;
  border-radius: 50px;
  margin-top: 30px;
  margin-bottom: 20px;
  background-color: #fff;
}

.left-copyright-flex.full {
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: center;
}

.left-copyright-flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.copyright {
  margin-bottom: 0px;
  color: #727181;
  font-size: 15px;
  line-height: 20px;
  font-family: 'AvenirNextRegular';
}

.footer-logo,
.footer-logo:visited,
.footer-logo:hover,
.footer-logo:active{
    color:#fff;
    font-family:AvenirNextBold;
    letter-spacing: -3;
    font-size:50px;
    display:inline-block;
    text-decoration: none;
}

.footer-sub-logo{
  font-family:AvenirNextRegular;
  letter-spacing: -2;
  font-size:30px;
  color:#fff;
  display:inline-block;
}

.go-top {
  position: fixed;
  left: auto;
  top: auto;
  right: 10px;
  bottom: 10px;
  z-index: 10;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 55px;
  height: 55px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 100%;
  background-color: #7567f8;
  text-decoration: none;
	-webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.go-top:hover{
  background-color: #63adf2;
}

.go-top.hide{
  right: -80px;
}

.fa-chevron-up{
  color: white;
}

/* PAGE PRODUIT - INSTITUTION */

.btn-back{
  display: flex;
  position: absolute;
  left: 3%;
  top: 120px;
  opacity: 0.2;
  cursor: pointer;
  font-family: 'AvenirNextDemi';
}

.circle-shape-institution {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background-color:#63adf2;
  position: relative;
  display:flex;
  margin-bottom: 20px;
}

.container-prod {
  max-width: 1200px;
  margin-right: auto;
  margin-left: auto;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  text-align: -webkit-center;
  align-items: center;
}

.prod-heading {
  font-size: 60px;
  line-height: 43px;
  text-transform: none;
  font-family: AvenirNextBold !important;
}

#prod-transparent{
  font-size: 80px;
  position: absolute;
  top: 150px;
  left: 10%;
  color: #7567f8;
  opacity: 0.07;
}

.intro-prod {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-right: 0px;
  margin-left: auto;
  padding-top: 90px;
  padding-right: 5%;
  padding-left: 5%;
  padding-bottom: 20px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 0 0 0 250px;
  background-color: #fafaff;
  height: 70%;
}

/* Caractéristiques */

.produit-carac {
  padding:40px;
  background-color: #f7f7ff;
  border-radius: 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border: 3px solid transparent;
  -webkit-transition: all 200ms ease;
  transition: all 200ms ease;
  text-align: center;
  border: 4px solid transparent;
  -webkit-touch-callout: none;    /* iOS Safari */
  -webkit-user-select: none;      /* Safari */
  -khtml-user-select: none;       /* Konqueror HTML */
  -moz-user-select: none;         /* Old versions of Firefox */
  -ms-user-select: none;          /* Internet Explorer/Edge */
  user-select: none;              /* Non-prefixed version, currently
                                  supported by Chrome, Edge, Opera and Firefox */
}

.produit-carac:hover{
  background-color: white;
  border: 4px solid #7567f8;
}

.carac-txt{
  text-align: justify;
  margin-top: 20px;
  color: #7567f8;
}

.circle-shape_16 {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background-color: #f2cd60;
  position: absolute;
  display: flex;
  bottom: 40%;
  left: 90%;
}

.circle-shape_17 {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background-color: #f25757;
  position: absolute;
  display: flex;
  bottom: 25%;
  left: 3%;
}

/* PAGE PRODUIT - ENTREPRISE */

.circle-shape-entreprise {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background-color:#61e894;
  position: relative;
  display:flex;
  margin-bottom: 20px;
}

/* PAGE PRODUIT - EDUCATION */

.circle-shape-education {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background-color:#f25757;
  position: relative;
  display:flex;
  margin-bottom: 20px;
}

/* PAGE PRODUIT - APP INFO */

.circle-shape-app_info {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background-color:#7567f8;
  position: relative;
  display:flex;
  margin-bottom: 20px;
}

/* PAGE PRODUIT - WEB */

.circle-shape-web {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background-color:#f2cd60;
  position: relative;
  display:flex;
  margin-bottom: 20px;
}

/* PAGE PRODUIT - WEB */

.circle-shape-ecommerce {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background-color:#f257d7;
  position: relative;
  display:flex;
  margin-bottom: 20px;
}

/* ERREUR 404 */

.intro-error {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-right: 0px;
  margin-left: auto;
  padding-top: 90px;
  padding-right: 5%;
  padding-left: 5%;
  padding-bottom: 20px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 0 0 0 250px;
  background-color: #fafaff;
  height: 70%;
  margin-bottom: 80px;
  -webkit-touch-callout: none;    /* iOS Safari */
  -webkit-user-select: none;      /* Safari */
  -khtml-user-select: none;       /* Konqueror HTML */
  -moz-user-select: none;         /* Old versions of Firefox */
  -ms-user-select: none;          /* Internet Explorer/Edge */
  user-select: none;              /* Non-prefixed version, currently
                                  supported by Chrome, Edge, Opera and Firefox */
}

.max-height{
  max-height: 280px;
}

.error-heading {
  font-size: 120px;
  line-height: 80px;
  text-transform: none;
  font-family: AvenirNextBold !important;
  margin-top: 0;
  margin-bottom: 0;
}

.error404-heading {
  font-size: 200px;
  line-height: 200px;
  text-transform: none;
  font-family: AvenirNextBold !important;
  margin-top: 0;
  margin-bottom: 0;
  letter-spacing: -18px;
}

.circle-shape-error {
  width: 155px;
  height: 155px;
  border-radius: 50%;
  background-color: #63adf2;
  position: relative;
  top: -198px;
  left: 6px;
  display: flex;
}

.container-error {
  max-width: 1200px;
  max-height: 300px;
  margin-right: auto;
  margin-left: auto;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  text-align: -webkit-center;
  align-items: center;
}

.circle-shape_18 {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background-color: #f2cd60;
  position: absolute;
  display: flex;
  bottom: 40%;
  left: 90%;
}

.circle-shape_19 {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background-color: #f25757;
  position: absolute;
  display: flex;
  bottom: 25%;
  left: 3%;
}

.p-404{
  font-size: 20px;
  color: #7567f8;
  font-family: 'AvenirNextDemi';
}

/* IGRUYERE DOWNLOAD */

.dl-heading {
  font-size: 40px;
  line-height: 50px;
  text-transform: none;
  font-family: AvenirNextDemi !important;
  max-width: 40vw;
  margin-top: -100px;
  margin-bottom: 0;
}

.fa-apple{
  color: white;
  font-size: 3.6rem;
  text-align: center;
  margin: auto;
  vertical-align: middle;
  line-height: 94px!important;
  margin-right: 1px;
}

.fa-google-play{
  color: white;
  font-size: 3rem;
  text-align: center;
  margin: auto;
  vertical-align: middle;
  line-height: 101px!important;
  margin-left: 8px;
}

.dl-buttons {
  display: inline-flex;
  margin-top: 40px;
}

.dl-button {
    width: 300px;
    border-radius: 30px;
    margin-left: 10px;
    margin-right: 10px;
    padding: 20px 0px;
}

.dl-button-play{
  background: #ffffff;
}

.dl-button-app{
  background: #ffffff;
}

.dl-a{
  text-decoration: none;
}

.dl-title{
  font-family: AvenirNextDemi;
  margin: 20px 20%;
}

.dl-title-app{
  color:black;
}

.dl-title-play{
  color:black;
}

.span-appstore {
  color: #637bf2;
}

.span-playstore{
  color: #f2cd60;
}

.appstore-logo{
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-color: #637bf2;
}

.playstore-logo{
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-color: #f2cd60;
}

.dl-a:hover .span-appstore{
  color:white;
}

.dl-a:hover .span-playstore{
  color:white;
}

.dl-a:hover .playstore-logo{
  background-color:white;
}

.dl-a:hover .appstore-logo{
  background-color:white;
}

.dl-a:hover .dl-button-play{
  background:#f2cd60;
}

.dl-a:hover .dl-button-app{
  background:#637bf2;
}

.dl-a:hover .fa-apple{
  color: #637bf2;
}

.dl-a:hover .fa-google-play{
  color: #f2cd60;
}

.dl-a:hover .dl-title-app{
  color: #b9c3f1;
}

.dl-a:hover .dl-title-play{
  color: #fff5d5;
}

.igr-logo{
  height: 40px;
  display: block;
  margin-top: 4px;
}