main {
  margin-top: 150px;
}
main section {
  display: flex;
  justify-content: center;
}
main section .content {
  background-color: rgba(0, 0, 0, 0.8);
  border-radius: 10px;
  width: 30%;
  color: #fff;
  text-align: center;
  padding: 35px 0;
}
main section .content img {
  display: flex;
  width: 45px;
  height: 45px;
  margin: auto;
  margin-top: -30px;
}
main section .content h1 {
  font-size: 3rem;
}
main section .content div h2:first-child {
  padding-top: 25px;
  font-size: 1.8rem;
  padding-bottom: 15px;
}
main section .content div .tel {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  margin: auto;
  gap: 10px;
}
main section .content div .tel i {
  color: red;
  margin-bottom: 2px;
}
main section .content div .tel a {
  color: orange;
  text-decoration: none;
  font-size: 1.4em;
}
main section .content .blink {
  animation: blink 4s infinite;
}
@keyframes blink {
  0% {
    opacity: 0.1;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0.1;
  }
}

@media screen and (max-width: 920px) {
  main section {
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
  }
  main section .content {
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 10px;
    width: 70%;
    color: #fff;
    text-align: center;
    padding: 50px 0;
  }
  main section .content img {
    display: flex;
    width: 45px;
    height: 45px;
    margin: auto;
    margin-top: -40px;
  }
  main section .content h1 {
    font-size: 3rem;
    padding-bottom: 30px;
  }
  main section .content div h2:first-child {
    padding-top: 25px;
    font-size: 1.8rem;
    padding-bottom: 15px;
  }
  main section .content .blink {
    animation: blink 4s infinite;
  }
  @keyframes blink {
    0% {
      opacity: 0.1;
    }
    50% {
      opacity: 1;
    }
    100% {
      opacity: 0.1;
    }
  }
}
@media screen and (max-width: 570px) {
  main section {
    display: flex;
    justify-content: center;
  }
  main section .content {
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 10px;
    width: 90%;
    color: #fff;
    text-align: center;
    margin-bottom: 10px;
    padding: 50px 0;
  }
  main section .content img {
    display: flex;
    width: 45px;
    height: 45px;
    margin: auto;
    margin-top: -40px;
  }
  main section .content h1 {
    font-size: 3rem;
    padding-bottom: 30px;
  }
  main section .content div h2:first-child {
    padding-top: 25px;
    font-size: 1.8rem;
    padding-bottom: 15px;
  }
  main section .content .blink {
    animation: blink 4s infinite;
  }
  @keyframes blink {
    0% {
      opacity: 0.1;
    }
    50% {
      opacity: 1;
    }
    100% {
      opacity: 0.1;
    }
  }
}/*# sourceMappingURL=accueil.css.map */