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-weight: 400;
}

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

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

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

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

.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: 150px;
  padding: 10px 2%;
  -webkit-box-pack: justify;
  -webkit-justify-content: center;
  -ms-flex-pack: justify;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #fff;
  z-index: 100;
  height: 150px;
}

/* 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:75px;
  display:inline-block;
  text-decoration: none;
}

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

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

/* Menu hamburger */

input {
  display: inline-block;
}

.menu{
  position: fixed;
}

.label {
  display: block;
  width: 50vw;
  height: 50vw;
  max-width: 200px;
  max-height: 200px;
  left: -32px;
  position: relative;
}

@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;
font-size: 100px;
line-height: 150px;
}

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

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

.outer-menu {
position: inherit;
z-index: 1;
top: -17px;
left: 24px;
}

.checkbox-toggle {
  position: absolute;
  top: 66px;
  left: 66px;
  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: 300vw;
height: 300vw;
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: 8px;
background: #e5e5e5;
-webkit-transition: width 0.4s ease;
transition: width 0.4s ease;
}

/* Logo réseaux sociaux */
    
/* Icones */

.icones{
  position: fixed;
  right: 16%;
}

#mobile-ic-display{
  bottom: -200%;
}
    
.ic {
  color: #fff;
  background: #e2e3e6;
  border-radius: 100px;
  text-align: center;
  text-decoration: none;
  font-family: fontawesome;
  position: relative;
  display: inline-block;
  width: 135px;
  height: 103px;
  padding-top: 32px;
  margin: 0 2px;
  -o-transition: all .5s;
  -webkit-transition: all .5s;
  -moz-transition: all .5s;
  transition: all .5s;
  -webkit-font-smoothing: antialiased;
  font-size: 70px;
  margin-right: 20px;
}

.fb{
background: #637bf2;
}

.tw{
background: #63adf2;
}

.in {
background: #f257d7;
}

.yt {
background: #f25757;
}

/* pop-up text */

.ic .span {
display:none;
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: 200px;
  padding-right: 5%;
  padding-left: 5%;
  padding-bottom: 220px;
  -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: 900px;
}

.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: 2%;
  -ms-grid-columns: 2fr;
  grid-template-columns: 2fr;
  -ms-grid-rows: auto;
  grid-template-rows: 1fr 0;
  margin: 0;
  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: 1fr;
grid-template-columns: 1fr;
-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;
}

.mobile-display{
  display: none;
}

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

#sub-heading {
  font-size: 39px;
  line-height: 23px;
}

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

.top-heading {
  margin-top: 45px;
  margin-bottom: 62px;
  font-size: 89px;
  line-height: 84px;
  text-transform: none;
  font-family: AvenirNextBold !important;
}

.bouton {
  font-family: AvenirNextBold;
  padding: 32px 65px;
  border-radius: 100px;
  background-color: #63adf2;
  -webkit-transition: all 200ms ease;
  transition: all 200ms ease;
  color: #fff;
  font-size: 30;
  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;
display: inline;
}

/* Cercles */

.circle-shape_1 {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background-color: #63adf2;
  position: absolute;
  display: flex;
  top: 69%;
  left: 70%;
}

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

.circle-shape_3 {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background-color: #f25757;
  position: absolute;
  display: flex;
  top: 82%;
  left: 84%;
}

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

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

/* Images */

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

/* Souris */

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

.mouse {
  display: inline-block;
  width: 45px;
  height: 80px;
  bottom: 100px;
  left: 50%;
  right: 50%;
  margin-left: -12px;
  border-radius: 35px;
  border: 5px solid #7567f8;
  -webkit-animation: intro 1s;
  animation: intro 1s;
}
.scroll {
  display: block;
  width: 10px;
  height: 10px;
  margin: 6px auto;
  border-radius: 5px;
  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: 210px 5% 200 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;
display: none;
}

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

.btn-more{
  margin-top: 40px;
  font-family: AvenirNextBold;
  padding: 20px 60px;
  border-radius: 54px;
  background-color: #7567f8;
  -webkit-transition: all 200ms ease;
  transition: all 200ms ease;
  color: #fff;
  font-size: 40px;
  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: 90%;
  padding: 20px;
  border-radius: 20px;
  margin-left: auto;
  margin-right: auto;
  left: 0;
  right: 0;
  font-size: 44px;
}

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

.more-info{
  opacity: 0.3;
  margin-top: 20px;
  font-size: 49px;
}

.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:80px;
-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;
}

.st-web{
  margin-top:250px;
}

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

.sous-titre {
  position: relative;
  margin-top: 30px;
  margin-bottom: 0px;
  font-size: 80px;
  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: 50px;
-ms-grid-columns: 100%;
grid-template-columns: 100%;
-ms-grid-rows: auto;
grid-template-rows: auto;
margin-right: auto;
margin-left: auto;
justify-content: space-around;
}

.produit-expander {
position: relative;
max-width: 100%;
-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: 70px 70px 0px 70px;
background-color: #f7f7ff;
border-radius: 100px;
}

#pr2{
  padding: 70px 70px 0px 70px;
background-color: #f7f7ff;
border-radius: 100px;
}

#pr3{
  padding: 70px 70px 0px 70px;
background-color: #f7f7ff;
border-radius: 100px;
}

#pr4{
  padding: 70px 70px 0px 70px;
background-color: #f7f7ff;
border-radius: 100px;
}

#pr5{
  padding: 70px 70px 0px 70px;
background-color: #f7f7ff;
border-radius: 100px;
}

#pr6{
  padding: 70px 70px 0px 70px;
background-color: #f7f7ff;
border-radius: 100px;
}

.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 100px 100px;
}

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

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

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

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

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

.produit-circle {
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
width: 250px;
height: 250px;
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;
}
.img2{
position: relative;
content: url(./img/icons/entreprise-c.png);
margin:auto;
}
.img3{
position: relative;
content: url(./img/icons/ecole-c.png);
margin:auto;
}
.img4{
position: relative;
content: url(./img/icons/info-c.png);
margin:auto;
}
.img5{
position: relative;
content: url(./img/icons/www-c.png);
margin:auto;
}
.img6{
position: relative;
content: url(./img/icons/ecommerce-c.png);
margin:auto;
}

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

.produit-titre {
  margin-top: 20px;
  margin-bottom: 15px;
  font-size: 75px;
  line-height: 100px;
  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: 70px;
  height: 70px;
  border-radius: 50px;
  background-color: #7567f8;
  background-image: url(./icons/plus.png);
  background-position: 50% 50%;
  background-size: 27px;
  background-repeat: no-repeat;
}

.txt-produit{
  text-align: justify;
  font-size: 37px;
}

/* A PROPOS */

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

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

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

.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: 210px 5% 150px 5%;
  border-radius: 150px 0 150px 0px;
  background-color: #f7f7ff;
}

.txt-propos{
margin: 0;
padding: 40px;
background-color: white;
border-radius: 40px;
color: #7567f8;
font-size: 42px;
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: 120px 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: 100%;
margin-right: auto;
margin-left: auto;
}

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

.text-field.white {
background-color: #fff;
}
.text-field {
  height: 130px;
  padding: 33px;
  border: 1px none #000;
  background-color: #fafaff;
  font-size: 40px;
  display: block;
  margin: 22px 0px 56px 0px;
  width: 100%;
  border-radius: 50px;
  font-family: 'AvenirNextDemi';
  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;
align-items: center;
justify-content: center;
}


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

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

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

.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: 100%;
margin-top: 30px;
}

.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: 100%;
margin-top: 10px;
margin-bottom: 30px;
}

.img-h{
  height: 150px;
}

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

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

/* Bouton radio */

.label-container{
cursor: pointer;
}

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

.label-container input:checked + .span-radio:before {
border-radius: 50%;
-moz-border-radius: 50%;
-khtml-border-radius: 50%;
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
box-shadow: inset 0 0 0 1.2em #7567f8;
-moz-box-shadow: inset 0 0 0 1.2em #7567f8;
-webkit-box-shadow: inset 0 0 0 1.2em #7567f8;
}

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

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

/* Zone plus d'informations */

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

.btn{
  font-family: AvenirNextBold;
  padding: 17px 48px;
  border-radius: 50px;
  background-color: #7567f8;
  -webkit-transition: all 200ms ease;
  transition: all 200ms ease;
  color: #fff;
  font-size: 40px;
  border: 0;
  line-height: inherit;
  text-decoration: none;
  cursor: pointer;
  letter-spacing: 2px;
  width: 100%;
  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: 65px 15% 40px;
  border-top-right-radius: 150px;
  background-color: #221e41;
}

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

.footer-title {
  color: #fff;
  font-family: 'AvenirNextBold';
  margin-top: 0px;
  font-size: 75px;
  line-height: 80px;
  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: 45px;
line-height: 61px;
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;
font-size: 45px;
}

.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: 6px;
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: 31px;
  line-height: 45px;
  font-family: 'AvenirNextRegular';
}

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

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

.go-top {
  position: fixed;
  left: auto;
  top: auto;
  right: 20px;
  bottom: 30px;
  z-index: 10;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 115px;
  height: 115px;
  -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: -120px;
}

.fa-chevron-up{
color: white;
font-size: 40px;
}

/* PAGE PRODUIT - INSTITUTION */

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

.txt-display {
  display:none;
}

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

.img-display {
  display:none;
}

.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: 100px;
line-height: 43px;
text-transform: none;
font-family: AvenirNextBold !important;
}

#prod-transparent{
  font-size: 120px;
  position: absolute;
  top: 184px;
  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: 900px;
}

/* Caractéristiques */

.produit-carac {
padding:75px;
background-color: #f7f7ff;
border-radius: 80px;
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: 10px solid transparent;
-webkit-transition: all 200ms ease;
transition: all 200ms ease;
text-align: center;
-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: 10px solid #7567f8;
}

.carac-txt{
  text-align: justify;
  margin-top: 57px;
  font-size: 40px;
  color: #7567f8;
}
.circle-shape_16 {
width: 35px;
height: 35px;
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;
  top: 900;
  left: 3%;
}
/* PAGE PRODUIT - ENTREPRISE */

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

/* PAGE PRODUIT - EDUCATION */

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

/* PAGE PRODUIT - APP INFO */

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

/* PAGE PRODUIT - WEB */

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

/* PAGE PRODUIT - WEB */

.circle-shape-ecommerce {
width: 400px;
height: 400px;
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: 1570px;
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: 480px;
}

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

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

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

.container-error {
max-width: 1200px;
max-height: 500px;
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: 35px;
  height: 35px;
  border-radius: 50%;
  background-color: #f2cd60;
  position: absolute;
  display: flex;
  bottom: 21%;
  left: 90%;
}

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

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

/* IGRUYERE DOWNLOAD */

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

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

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

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

.dl-button {
  width: 70vw;
  border-radius: 70px;
  margin-left: 10px;
  margin-right: 10px;
  padding: 45px 0px;
  margin-bottom: 30px;
}

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

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

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

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

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

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

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

.span-playstore{
  color: #f2cd60;
}

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

.playstore-logo{
  width: 200px;
  height: 200px;
  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: 80px;
  display: block;
  margin-top: 16px;
  margin-bottom: 70px;
}