#mecontacter{
   background-color: #003d99;
     width: 100%;
  height: 100%;
}
#contact{
  width: 100%;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 0 20% 0;

}

#contact-info{
  display: flex;
  width: 100%;
  height: 100%;
  max-width: 1200px;
  align-items: center;
  justify-content: center;
  
}


.card{
  background: #A9A9A9;
  padding: 0 20px;
  margin: 0 10px;
  width: calc(33% - 20px);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  cursor: pointer;
}

.card-icon{
  font-size: 28px;
  background: #66a3ff;
  color: #fff;
  width: 60px;
  height: 60px;
  top: 4%;
  text-align: center;
  line-height: 60px !important;
  border-radius: 50%;
  transition: 0.3s linear;
}

.card:hover .card-icon{
  background: none;
  color: #2f3542;
  transform: scale(1.6);
}

.nov{
  margin-top: 30px;
  top: 4%;
  font-size: 14px;
  letter-spacing: 2px;
  max-height: 0;
  opacity: 0;
  transition: 0.3s linear;
}

.card:hover a{
  max-height: 40px;
  opacity: 1;
}

a{
  text-decoration: none;
  color : #2f3542;
}

.Titre{
  padding-left: 120px;  
  padding-top: 35px;
  font-size: 35px;
  text-shadow: #696969 1px 0 10px;
  letter-spacing: 1px;
}
.couverture img{
  display: none;
}


@media screen and (max-width:900px) {
  #contact-info{
    flex-direction: column;
  }
  .card{
    width: 80%;
    margin: 10px 0;
  }
  .Titre{
    font-size: 30px;
    padding-left: 25px;
  }
}

