
@import url('https://fonts.googleapis.com/css2?family=Hind+Siliguri:wght@300;400;500;600;700&display=swap');



:root {
  --anthracite : #413e4a;
  --bleu : #0a90cc;
  --blanc : white;
  --bleu-ciel : #e3f3f9;
  --orange : #faede3;
}

*,*::before, *::after {
  box-sizing: border-box;
}

html, body {
  margin: 0;
}

html {
  font-size: 100%;
  scroll-behavior: smooth;
}

body {
  position: relative;
  overflow-x: hidden;
  font-family: 'Hind Siliguri', sans-serif !important;
  text-align: justify;
  color: var(--anthracite);
  background: var(--blanc);
  animation: body-opac 1s 200ms forwards;
}
@keyframes body-opac {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

section {
  padding-top: 140px;
/*  margin: 0 10px 0 10px;*/
  font-size: 1.2rem;
}

h1, h2 {
  visibility: hidden;
  position: absolute;
}
h3 {
  font-weight: 900;
  font-size: 30px;
}

.lettre {
  color: var(--bleu);
  font-size: 40px;
}
.txt-bleu {
  color: var(--bleu);
}


/*Suppression des bords*/
*:focus {
  outline:none;
}

/*-----------------*/
/*NAVIGATION*/
/*-----------------*/

header {
  background: var(--blanc);
  text-align: center;
  position: fixed;
  width: 100%;
  z-index: 50;
  box-shadow: 0 5px 5px -6px var(--anthracite);
}
header .logo {
  width: 115px !important;
}
nav {
  position: absolute;
  text-align: left;
  top: 100%;
  background: var(--blanc);
  width: 100%;
  transform: scale(1, 0);
  transform-origin: top;
  transition: transform 400ms ease-in-out;
}
nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
nav li {
  margin-bottom: 1em;
  margin-left: 1em;
}
nav a {
  color: var(--anthracite);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .09rem;
  font-weight: bold;
  opacity: 0;
  transition: opacity 150ms ease-in-out;
  font-size: 20px;
}
@media screen and (max-width: 1200px) {
  nav a {
    font-size: initial;
  }
}
nav a:hover {
  color: black;
}
nav .active a {
  color: var(--bleu);
}
.nav-toggle {
  display: none;
}
.nav-toggle-label {
  position: absolute;
  top: 0;
  left: 0;
  margin-left: 1em;
  height: 100%;
  display: flex;
  align-items: center;
}
.nav-toggle-label span,
.nav-toggle-label span::before,
.nav-toggle-label span::after {
  display: block;
  background: var(--anthracite);
  height: 2px;
  width: 2em;
  border-radius: 2px;
  position: relative;
}
.nav-toggle-label span::before,
.nav-toggle-label span::after {
  content: '';
  position: absolute;
}
.nav-toggle-label span::before {
  bottom: 7px;
}
.nav-toggle-label span::after {
  top: 7px;
}
.nav-toggle:checked ~ nav {
  transform: scale(1, 1);
}
.nav-toggle:checked ~ nav a {
  opacity: 1;
  transition: opacity 250ms ease-in-out 250ms;
}
nav .reseaux {
  display: flex;
}
nav .reseaux a:hover::before, nav .reseaux a:hover::after {
  transform: scale(0.0);
}
nav .fb {
  background-size: 100% 200%;
  background-image: linear-gradient(to bottom, transparent 50%, #3b5998 50%);
  transition: background-position 0.5s;
  border: 1px solid var(--anthracite);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  text-align: center;
}
nav .fb:hover {
  background-position: 0 100%;
  border: 1px solid var(--blanc);
  transition: 0.5s;
}
nav .fb :hover a {
  color: white;
  transition: 0.5s;

}
nav .fn img {
  width: 25px;
  height: 25px;
  vertical-align: sub;
  filter: grayscale(1);
  transition: filter 0.5s;
}
nav .fn img:hover {
  filter: grayscale(0);
  transition: filter 0.5s;
}

@media screen and (min-width: 800px) {
  .nav-toggle-label {
    display: none;
  }
  header {
    display: grid;
    grid-template-columns: 1fr auto minmax(600px, 3fr) 1fr;
  }
  .logo {
    grid-column: 2 / 3;
  }
  nav {
    all: unset;
    grid-column: 3 / 4;
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }
  nav ul {
    display: flex;
    justify-content: flex-end;
  }
  nav li {
    margin-left: 2em;
    margin-bottom: 0;
  }
  nav a {
    opacity: 1;
    position: relative;
  }
  nav a::before, nav a::after {
    content: '';
    display: block;
    height: 3px;
    background: black;
    position: absolute;
    left: 0;
    right: 0;
    transform: scale(0, 1);
    transition: transform ease-in-out 250ms;
  }
  nav a::before {
    top: -.75em;
    transform-origin: right;
  }
  nav a::after {
    bottom: -.75em;
    transform-origin: left;
  }
  nav a:hover::before, nav a:hover::after {
    transform: scale(1, 1);
  }
  nav .active a::before, nav .active a::after {
    background: var(--bleu);
  }
  nav .reseaux li {
    margin-right: -1em;
  }
}




/*-----------------*/
/*ACCUEIL*/
/*-----------------*/

#accueil {
  background: linear-gradient(var(--anthracite) 85%, var(--blanc) 15%);
}

#video {
  width: 1000px;
  max-width: 100%;
  margin: auto;
  top: 100px;
  border-radius: 10px;
}
#video video {
  border-radius: 10px;
  box-shadow: var(--anthracite) 0 0 15px -8px;
}
@media screen and (max-width: 1000px) {
  #video {
    width: 95%;
  }
}

#intro, #activ-fn {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  text-align: center;
  flex-wrap: wrap;
  margin: 0 auto;
}

#intro {
  width: 90%;
  font-size: 1.2em;
  color: white;
}

#activ-fn {
  width: 600px;
  font-size: 1.2em;
  padding: 100px 5px 0 5px;
  margin: 0 auto -50px auto;
}
#activ-fn p span {
  color: var(--bleu);
  font-weight: bold;
}
#activ-fn a img {
  transform: scale(1);
  transition: transform 0.5s ease-in-out;
  height: 100px;
}
#activ-fn a img:hover {
  transform: scale(1.1);
  transition: transform 0.5s ease-in-out;
}
@media screen and (max-width: 600px) {
  #activ-fn {
    width: 100%;
  }
  #intro {
    font-size: 1em;
  }
}


/*-----------------*/
/*L'Équipe*/
/*-----------------*/
#equipe {
  background-color: var(--blanc);
}
#equipe #bio {
  min-height: 500px;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}
#equipe #bio div {
  width: 570px;
  line-height: 30px;
  text-align: center;
  position: relative;
  padding: 20px;
}
@keyframes bord-rad {
  from {
    transform: rotate(0deg) scale(1);
  }

  to {
    transform: rotate(360deg) scale(1);
  }
}
#equipe div>span:before {
  content: '';
  position: absolute;
  animation: 2.5s linear infinite bord-rad;
  box-shadow: 0 1px 0 0 rgb(255 255 255), 0 -1px 0 0 rgb(255 255 255), 1px 0 0 0 rgb(255 255 255), -1px 0 0 0 rgb(255 255 255), 1px -1px 0 0 rgb(255 255 255), -1px 1px 0 0 rgb(255 255 255), 1px 1px 0 0 rgb(105 130 255), -1px -1px 0 0 rgb(255 255 255);
  height: 150px;
  width: 150px;
  border-radius: 50%;
}
#equipe #bio div img {
  width: 150px;
  height: 150px;
  background: var(--bleu-ciel);
  padding: 10px;
  border-radius: 50%;
  border: 10px solid white;
}
#equipe div p {
  text-align: justify;
}





/*Animation*/
.animation {
  margin: 0 auto;
  position: relative;
  display: block;
  width: 100%;
  height: 160px;
  overflow: hidden;
}
.montagnes {
  position: absolute;
  right: -900px;
  bottom: -20px;
  width: 2px;
  height: 2px;
  box-shadow:
      0 0 0 50px var(--bleu-ciel),
      60px 50px 0 70px var(--bleu-ciel),
      90px 90px 0 50px var(--bleu-ciel),
      250px 250px 0 50px var(--bleu-ciel),
      290px 320px 0 50px var(--bleu-ciel),
      320px 400px 0 50px var(--bleu-ciel);
  transform: rotate(130deg);
  animation: montagnes 25s linear infinite;
}
.collines {
  position: absolute;
  right: -900px;
  bottom: -50px;
  width: 400px;
  border-radius: 50%;
  height: 20px;
  box-shadow:
      0 0 0 50px var(--bleu-ciel),
      -20px 0 0 20px var(--bleu-ciel),
      -90px 0 0 50px var(--bleu-ciel),
      250px 0 0 60px var(--bleu-ciel),
      290px 0 0 60px var(--bleu-ciel),
      620px 0 0 40px var(--bleu-ciel);
  animation: collines 4s 2s linear infinite;
}
.arbre1, .arbre2, .arbre3 {
  position: absolute;
  height: 100px;
  width: 35px;
  bottom: 0;
  background: url("/img/animation/arbre.svg") no-repeat;
}
.arbre1 {
  animation: arbre1 3s 0.000s linear infinite;
}
.arbre2 {
  animation: arbre2 2.5s 0.150s linear infinite;
}
.arbre3 {
  animation: arbre3 8s 0.050s linear infinite;
}
.responsive {
  position: absolute;
  height: 160px;
  width: inherit;
  bottom: -1px;
  background: url("/img/animation/responsive.svg") no-repeat;
  animation: responsive 15s 0.100s linear infinite;
}
.bras-codes {
  position: absolute;
  height: 160px;
  width: inherit;
  background: url("/img/animation/bras-codes1.svg") no-repeat;
  animation: responsive 15s -7s linear infinite;
}
.bras-codes img {
  position: absolute;
  height: 160px;
  left: 119px;
  transform-origin: 24px 9px;
  animation: 5s linear infinite bras-codes;
}

.resp-engrenage {
  animation: responsive 15s 0.100s linear infinite;
}
.resp-engrenage img {
  position: absolute;
  height: 60px;
  width: inherit;
  left: 10px;
  top: 13px;
  animation: 7s linear infinite rotation;
}
.gros-engrenage {
  animation: responsive 20s -10s linear infinite;
}
.gros-engrenage img {
  position: absolute;
  height: inherit;
  width: 700px;
  top: 13px;
  animation: 15s linear infinite rotation;
}

.robot {
  transition: all ease;
  width: 85px;
  bottom: 0;
  position: absolute;
  background: url("/img/animation/robot-roulant.svg") no-repeat;
  background-size: contain;
  height: 60px;
  animation: robot 60s linear infinite;
}
.colline {
  position: absolute;
  right: -900px;
  bottom: -50px;
  width: 500px;
  border-radius: 50%;
  height: 10px;
  box-shadow:
      0 0 0 50px var(--bleu-ciel);
  animation: collines 3s 2s linear infinite;
}
@keyframes arbre1 {
  0%   { transform: translate(3000px); }
  50% {}
  100% { transform: translate(-50px); }
}
@keyframes arbre2 {
  0%   { transform: translate(1930px); }
  50% {}
  100% { transform: translate(-50px); }
}
@keyframes arbre3 {
  0%   { transform: translate(2750px); }
  50% {}
  100% { transform: translate(-50px); }
}
@keyframes montagnes {
  100% {
    transform: translateX(-3000px) rotate(130deg);
  }
}
@keyframes collines {
  100% {
    transform: translateX(-5000px);
  }
}
@keyframes responsive {
  0%   { transform: translate(2000px); }
  50% {}
  100% { transform: translate(-1000px); }
}
@keyframes robot {
  0%   { transform: translate(-20px); }
  50% {}
  100% { transform: translate(100vw); }
}
@keyframes bras-codes {
  0%   { transform: rotate(-0deg); }
  50% { transform: rotate(-20deg); }
  100% { transform: rotate(0deg); }
}









/*-----------------*/
/*SERVICES*/
/*-----------------*/

#services {
  background: var(--bleu-ciel);
  padding-bottom: 50px;
}

.bloc-services {
  margin: 50px 25%;
  border: solid var(--orange) 5px;
  background: var(--blanc);
  border-radius: 10px;
  position: relative;
  box-shadow: 0 -15px 10px -15px rgb(17 17 17 / 40%), 0 17px 10px -15px rgb(17 17 17 / 40%) !important;
  line-height: 30px;
}
.bloc-services .services-img {
  position: absolute;
}
.bloc-services .services-img .img1 {
  width: 150px;
}
.bloc-services .services-img .img2 {
  position: absolute;
}
@keyframes rotation {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.services-img .img2, .services-img .img3 {
  animation: 10s linear infinite rotation;
}
#webmastering {
  left: -5%;
}
#webmastering .services-img {
  top: -50px;
  left: -80px;
}
#webmastering .services-img .img1 {
  position: relative;
  z-index: 0;
}
#webmastering .services-img .img2 {
  width: 55px;
  left: 28px;
  top: 7px;
}
#webmastering .services-img .img3 {
  width: 36px;
  left: 91px;
  top: 15px;
  position: absolute;
  z-index: 1;
}
#webmastering .services-img .img4 {
  position: absolute;
  z-index: 1;
  left: 6px;
  width: 135px;
  top: 26px;
}
#webmastering .bloc-serv-txt {
  padding: 5px 30px 10px 80px;
}

#consulting {
  left: 5%;
}
#consulting .services-img {
  top: -50px;
  right: -80px;
}
#consulting .services-img .img1 {
  position: relative;
  z-index: 0;
}
#consulting .services-img .img2 {
  width: 75px;
  left: 43px;
  top: 12px;
  position: absolute;
}
#consulting .services-img .img3 {
  width: 46px;
  left: 93px;
  top: 69px;
  position: absolute;
  z-index: 1;
}
#consulting .services-img .img4 {
  position: absolute;
  z-index: 1;
  left: 6px;
  width: 135px;
  top: 9px;
}
#consulting .bloc-serv-txt {
  padding: 5px 80px 10px 30px;
}

#formations {
  left: -5%;
}
#formations .services-img {
  top: -50px;
  left: -80px;
}
#formations .services-img .img2 {
  width: 40px;
  left: 20px;
  top: 105px;
}
#formations .bloc-serv-txt {
  padding: 5px 30px 10px 80px;
}

@media screen and (max-width: 1000px) {
  .bloc-services {
    margin: 50px 15%;
  }
}

@media screen and (max-width: 790px) {
  .bloc-services {
    margin: 50px 5% 150px 5%;
    left: 0 !important;
  }
  .services-img {
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    top: 0;
    right: auto !important;
  }
  .bloc-serv-txt {
    padding: 5px 15px 10px 15px !important;
  }
  #formations {
    margin-bottom: 50px !important;
  }
}
@media screen and (max-width: 400px) {
  .bloc-services h3 {
    font-size: 25px;
    line-height: 1.2;
  }
}



  /*Robot parallax*/
#robot-parallax {
  background: url("/img/robot-parallax.svg") no-repeat center 60px fixed;
  background-size: cover;
  height: 500px;
  box-shadow: inset 0 0 5px rgb(0 0 0 / 20%);
}




/*-----------------*/
/*PROJETS*/
/*-----------------*/

#projets {
  background: var(--orange);
}

#projets #derniers-projets {
  display: flex;
  justify-content: space-around;
  align-items: center;
  text-align: center;
  flex-wrap: wrap;
}
#projets #derniers-projets div {
  width: 550px;
}

#projets #projets-img {
  z-index: 1;
}
#projets #projets-img:before {
  content: '';
  position: absolute;
  animation: 2.5s linear infinite bord-rad;
  box-shadow: 0 1px 0 0 #faede3, 0 -1px 0 0 #faede3, 1px 0 0 0 #faede3, -1px 0 0 0 #faede3, 1px -1px 0 0 #faede3, -1px 1px 0 0 #faede3, 2px 2px 0 0 white, -1px -1px 0 0 #faede3;
  height: 460px;
  width: 460px;
  border-radius: 50%;
  margin-left: -18px;
  margin-top: 97px;
  z-index: -1;
}
@media screen and (max-width: 550px) {
/*  #projets #derniers-projets div {
    width: 100%;
  }*/
  #projets #projets-img {
    width: 360px !important;
  }
  #projets #projets-img:before {
    height: 300px;
    width: 300px;
    margin-left: -11px;
    margin-top: 64px;
  }
  #projets #derniers-projets div:nth-child(2) figure, #projets #derniers-projets div:nth-child(2) figure figcaption {
    width: auto !important;
  }
}
@media screen and (max-width: 470px) {
  #projets .wrap-collabsible figure, #projets .wrap-collabsible figure img, #projets .wrap-collabsible figure figcaption {
    width: 280px !important;
    height: 140px !important;
    margin:  5px 5px 12px 5px !important
  }
}
@media screen and (max-width: 355px) {
  #projets #projets-img {
    width: 330px !important;
  }
  #projets #projets-img:before {
    height: 280px;
    width: 280px;
    margin-left: -12px;
    margin-top: 54px;
  }
}

#projets #derniers-projets div:nth-child(2) figure, #projets>div div:nth-child(2) figure img {
  width: 450px;
  max-width: 100%;
  height: auto;
}
#projets #derniers-projets div:nth-child(2) figure figcaption {
  width: 450px;
  height: calc(100% - 10px);
}




/*Bouton Autres projets*/
#projets .button {
  display: inline-block;
  text-decoration: none;
  position: relative;
}
#projets .button .bottom {
  position: absolute;
  left: 7px;
  top: 7px;
  width: 100%;
  height: 100%;
  background-color: var(--anthracite);
  display: block;
  transition: all .15s ease-out;
}
#projets .button .top {
  position: relative;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  padding: 24px 34px 22px 34px;
  border: 2px solid var(--bleu);
}
#projets .button-dark .top {
  border: 2px solid var(--blanc);
}
#projets .button .top .label {
  font-weight: 600;
  color: var(--blanc);
  line-height: 110%;
  letter-spacing: 2px;
  text-align: center;
  text-transform: uppercase;
  transition: all .15s ease-out;
}
#projets .button-dark .top .label {
  color: var(--blanc);
}
#projets .button:hover .bottom {
  left: 0;
  top: 0;
  background-color: var(--bleu-ciel);
}
#projets .button:hover .top .label {
  color: var(--anthracite);
}
#projets .button-border {
  position: absolute;
  background-color: #d1d2d4;
  transition: all .25s ease-out;
}
#projets .button:hover .top .button-border-left, #projets .button:hover .top .button-border-right {
  height: calc(100% + 2px);
}
#projets .button:hover .top .button-border-top, #projets .button:hover .top .button-border-bottom {
  width: calc(100% + 2px);
}
#projets .button-border-left {
  left: -2px;
  bottom: -2px;
  width: 2px;
  height: 0;
}
#projets .button-border-top {
  left: -2px;
  top: -2px;
  width: 0;
  height: 2px;
}
#projets .button-border-right {
  right: -2px;
  top: -2px;
  width: 2px;
  height: 0;
}
#projets .button-border-bottom {
  right: -2px;
  bottom: -2px;
  width: 0;
  height: 2px;
}



/*Accordéon*/
#projets input[type='checkbox'] {
  display: none;
}
.wrap-collabsible {
  margin-top: 100px;
  position: relative;
  z-index: 1;
}
.lbl-toggle {
  display: block;
  text-align: center;
  cursor: pointer;
  transition: all 0.5s ease-out;
  width: fit-content;
  margin: auto;
}
.collapsible-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 1s ease-in-out;
}
.toggle:checked + .lbl-toggle + .collapsible-content {
  max-height: 4000px;
  transition: max-height 2.5s ease-in-out;
}



/*Hover projets*/
#projets .wrap-collabsible .collapsible-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 30px;
}

#projets figure, #projets figure img {
  width: 350px;
  height: 175px;
  position: relative;
}
#projets figure img {
  text-align: center;
  box-shadow: 0 -15px 10px -15px rgb(17 17 17 / 40%), 0 17px 10px -15px rgb(17 17 17 / 40%) !important;
  border-radius: 5px;
}
#projets figure figcaption {
  position: absolute;
  top: 0;
  width: 350px;
  height: 175px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  font-weight: 900;
  opacity: 0;
  border-radius: 5px;
  /*backdrop-filter: brightness(0.1);*/
  background: rgb(65 62 74 / 92%);
  /*margin: 5px;*/
  transition: opacity 1s;
}
#projets figure:hover figcaption {
  opacity: 1;
  transition: opacity 1s;
}
#projets figure figcaption .titre {
  color: var(--blanc);
  transform: scale3d(1, 0, 1);
  transition: transform 0.5s;
}
#projets figure:hover figcaption .titre {
  transform: scale3d(1, 1, 1);
  transition: transform 0.5s;
}
#projets figure figcaption hr {
  transform: scaleX(0);
  width: 100%;
  border: 1px solid var(--blanc);
  transition: transform 0.5s;
}
#projets figure:hover figcaption hr {
  transform: scaleX(1);
  transition: transform 0.5s 0.2s;
}
#projets figure figcaption .lien a {
  border-radius: 50%;
  font-weight: 900;
  border: 1px solid var(--blanc);
  text-decoration: none;
  text-align: center;
  color: var(--blanc);
  transition: background-color 0.5s;
}
#projets figure figcaption .lien {
  transform: scale3d(0, 1, 0);
  transition: transform 0.5s;
}
#projets figure:hover figcaption .lien {
  transform: scale3d(1, 1, 1);
  transition: transform 0.5s 0.5s;
}
#projets figure figcaption .lien a:hover {
  color: var(--anthracite);
  background-color: var(--blanc);
  border: none;
  transition: background-color 0.5s;
}
#projets figure figcaption .lien a i {
  vertical-align: middle;
}
#projets figure:hover figcaption .lien a i {
  width: 30px;
}


/*-----------------*/
/*CONTACT*/
/*-----------------*/
/*Animation vagues*/
#vagues {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  min-height: 400px;
  background-color: var(--blanc);
  overflow: hidden;
  margin-top: -200px;
  margin-bottom: -100px;
}
#vagues:before,
#vagues:after {
   content: "";
   position: absolute;
   left: 50%;
   min-width: 300vw;
   min-height: 300vw;
   background-color: var(--orange);
   animation-name: vagues;
   animation-iteration-count: infinite;
   animation-timing-function: linear;
 }
#vagues:before {
   bottom: 15vh;
   border-radius: 45%;
   animation-duration: 10s;
 }
#vagues:after {
   bottom: 12vh;
   opacity: .5;
   border-radius: 47%;
   animation-duration: 10s;
 }
@keyframes vagues {
  0% {transform: translate(-50%, 0) rotateZ(0deg);}
  50% {transform: translate(-50%, -2%) rotateZ(180deg);}
  100% {transform: translate(-50%, 0%) rotateZ(360deg);}
}




#contact{
  display: flex;
  justify-content: space-around;
  align-items: center;
  text-align: center;
  flex-wrap: wrap;
  margin-bottom: 200px;
}


#coordonnees {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50%;
  position: relative;
  font-size: 30px;
}
#coordonnees img {
  width: 250px;
}
#coordonnees div:first-child {
  font-weight: bold;
  font-size: 15px;
  text-align: left;
  text-transform: uppercase;
  margin: 0;
  opacity: 0.6;
}
#coordonnees #tel, #coordonnees #mail {
  position: absolute;
  background: var(--orange);
  border-radius: 15px;
  padding: 15px;
  line-height: 1;
}
#coordonnees #tel {
  top: 110px;
  margin-left: 300px;
}
#coordonnees #mail {
  top: 275px;
  margin-left: -460px;
}
#coordonnees a {
  text-decoration: none;
  color: var(--anthracite);
}
#coordonnees a:hover {
  color: var(--bleu);
}


#contact #contact-img {
  width: 460px;
  position: relative;
}
#contact #contact-img:before {
  content: '';
  position: absolute;
  animation: 2.5s linear infinite bord-rad;
  box-shadow: 0 1px 0 0 rgb(255 255 255), 0 -1px 0 0 rgb(255 255 255), 1px 0 0 0 rgb(255 255 255), -1px 0 0 0 rgb(255 255 255), 1px -1px 0 0 rgb(255 255 255), -1px 1px 0 0 rgb(255 255 255), 1px 1px 0 0 #9cdaf1, -1px -1px 0 0 rgb(255 255 255);
  height: 420px;
  width: 420px;
  border-radius: 50%;
  left: 60px;
  top: -10px;
  z-index: -1;
}
@media screen and (min-width: 1100px) and (max-width: 1376px) {
  #coordonnees #mail {
    top: 360px;
    margin-left: -260px;
  }
}
@media screen and (max-width: 1100px) {
  #contact {
    flex-direction: column-reverse;
  }
  #contact-img {
    margin-top: 50px;
  }
}
@media screen and (max-width: 800px) {
  #coordonnees #mail {
    top: 358px;
    margin-left: -208px;
  }
}
@media screen and (max-width: 550px) {
  #contact #contact-img {
    width: 360px !important;
    padding: 0 15px;
  }
  #contact #contact-img:before {
    box-shadow: 0 1px 0 0 var(--bleu-ciel), 0 -1px 0 0 var(--bleu-ciel), 1px 0 0 0 var(--bleu-ciel), -1px 0 0 0 var(--bleu-ciel), 1px -1px 0 0 var(--bleu-ciel), -1px 1px 0 0 var(--bleu-ciel), 1px 1px 0 0 var(--anthracite), -1px -1px 0 0 var(--bleu-ciel);
    height: 30px;
    width: 30px;
    border-radius: 50%;
    left: 194px;
    top: 202px;
    z-index: 1;
    background-color: var(--bleu-ciel);
  }
  #coordonnees {
    width: 100%;
    font-size: 20px;
  }
  #coordonnees img {
    width: 195px;
  }
  #coordonnees #tel {
    top: 80px;
    margin-left: 185px;
  }
  #coordonnees #mail {
    top: 292px;
    margin-left: -105px;
  }
  #coordonnees div:first-child {
    font-size: 12px;
  }
}
@media screen and (max-width: 356px) {
  #contact #contact-img {
    width: 337px !important;
  }
  #coordonnees #tel {
    margin-left: 170px;
  }
}


/*-----------------*/
/*FOOTER*/
/*-----------------*/
footer {
  background: var(--anthracite);
  color: var(--blanc);
}
footer #footer-flex {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media screen and (max-width: 470px) {
  footer #footer-flex {
    justify-content: center;
  }
}
footer #robot-chien {
  bottom: 0;
  transform: scaleX(-1);
  width: 150px;
}
footer #robot-chien .img1 {
  height: 150px;
  position: absolute;
  bottom: 0;
  z-index: 1;
}
footer #robot-chien .img2 {
  height: 40px;
  position: absolute;
  bottom: 65px;
  right: 25px;
  transform-origin: center bottom;
  animation: 1s linear infinite chien-queue;
}
@keyframes chien-queue {
  0%   { transform: rotate(0deg); }
  50% { transform: rotate(20deg); }
  100% { transform: rotate(0deg); }
}
footer > p {
  text-align: center;
}
footer #footer-flex .btn-popup {
  margin: 20px;
}
footer #footer-flex .btn-popup:hover {
  color: var(--bleu) !important;
  cursor: pointer;
}
footer #footer-flex .btn-popup:visited {
  color: var(--blanc);
}






/*-----------------*/
/*MODAL*/
/*-----------------*/

footer .popup {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.4);
  overflow: auto;
  display: none;
  z-index: 50;
  padding: 30px 0 50px 0;
  transition: all .5s ease-in-out;
  opacity: 0;
}

footer .popup-content {
  width: 1000px;
  height: auto;
  background-color: #fff;
  color: var(--anthracite);
  border-radius: 10px;
  margin: auto;
  padding: 20px;
  box-shadow: 30px 30px var(--anthracite);
  position: relative;
}

footer .btn-close {
  color: var(--blanc);
  background-color: var(--anthracite);
  position: absolute;
  right: -42px;
  top: -10px;
  padding: 21px;
  transition: color .5s;
  line-height: 1rem;
  border-radius: 50%;
}
footer .btn-close:hover {
  color: var(--bleu);
  transition: color .5s;
  cursor: pointer;
}
footer .popup #header-flex {
  display: flex;
  align-items: center;
}
footer .popup img {
  width: 200px;
}
footer .popup a {
  color: var(--bleu);
}
footer .popup a:hover {
  text-decoration: underline;
}
@media screen and (max-width: 1100px) {
  footer .popup {
    padding: 30px 50px 50px 20px;
  }
}
@media screen and (max-width: 760px) {
  footer .popup #header-flex {
    flex-wrap: wrap;
    justify-content: center;
  }
}
