.defaultPolice {
  font-family: proxima-nova, sans-serif;
  font-style: normal;
  font-weight: 200;
}
@keyframes oscillate {
  0% {
    color: #e6007e;
  }
  50% {
    color: #0095db;
  }
  100% {
    color: #e6007e;
  }
}
@keyframes bgOscillate {
  0% {
    background-color: #e6007e;
  }
  50% {
    background-color: #0095db;
  }
  100% {
    background-color: #e6007e;
  }
}
#contacts {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 40px;
}
#contacts h1 {
  font-weight: 600;
  margin: 0;
}
#contacts .listeContacts {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 30px;
}
#contacts .listeContacts .bloc280 {
  width: 280px;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  position: relative;
  padding: 10px;
  text-align: left;
  color: #36335c;
  box-sizing: border-box;
}
#contacts .listeContacts .bloc280:before {
  content: "";
  width: 280px;
  height: 2px;
  line-height: 1px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  background: linear-gradient(90deg, #0095db 0%, #e6007e 100%);
}
#contacts .listeContacts .bloc280 h1 {
  margin: 0;
  padding: 0;
  display: block;
  font-size: 30px;
  font-family: proxima-nova, sans-serif;
  font-style: normal;
  font-weight: 200;
  font-weight: 500;
  transition: 0.2s ease;
}
#contacts .listeContacts .bloc280 h2 {
  width: auto;
  margin: 0;
  padding: 1px 3px;
  display: inline;
  background: linear-gradient(90deg, #0095db 0%, #e6007e 100%);
  color: #ffffff;
  text-transform: uppercase;
  border-radius: 3px;
  font-size: 15px;
  font-family: proxima-nova, sans-serif;
  font-style: normal;
  font-weight: 200;
  font-weight: 500;
  transition: 0.2s ease;
}
#contacts .listeContacts .bloc280 #adresse,
#contacts .listeContacts .bloc280 #mail,
#contacts .listeContacts .bloc280 #tel {
  width: 100%;
  float: left;
  position: relative;
  padding: 0 0 0 25px;
  transition: 0.2s ease;
}
#contacts .listeContacts .bloc280 #adresse {
  text-decoration: none;
  color: #000000;
  margin: 0;
}
#contacts .listeContacts .bloc280 #adresse:before {
  content: "";
  width: 18px;
  height: 21px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background: transparent url('/media/img/adresse.png') left top no-repeat;
  background-size: 100%;
  transition: 0.2s ease;
}
#contacts .listeContacts .bloc280 #mail {
  color: #000000;
  text-decoration: none;
}
#contacts .listeContacts .bloc280 #mail.pt {
  padding: 0 0 0 15px;
  font-size: 15px;
}
#contacts .listeContacts .bloc280 #mail.pt:before {
  content: "";
  width: 12px;
  height: 12px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background: transparent url('/media/img/mail.png') left top no-repeat;
  background-size: 100%;
  transition: 0.2s ease;
}
#contacts .listeContacts .bloc280 #mail:before {
  content: "";
  width: 18px;
  height: 18px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background: transparent url('/media/img/mail.png') left top no-repeat;
  background-size: 100%;
  transition: 0.2s ease;
}
#contacts .listeContacts .bloc280 #mail:hover {
  color: #e6007e;
  filter: alpha(opacity=100);
  opacity: 1;
}
#contacts .listeContacts .bloc280 #tel.pt {
  padding: 0 0 0 15px;
  font-size: 15px;
}
#contacts .listeContacts .bloc280 #tel.pt:before {
  content: "";
  width: 12px;
  height: 12px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background: transparent url('/media/img/tel.png') left top no-repeat;
  background-size: 100%;
  transition: 0.2s ease;
}
#contacts .listeContacts .bloc280 #tel:before {
  content: "";
  width: 18px;
  height: 18px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background: transparent url('/media/img/tel.png') left top no-repeat;
  background-size: 100%;
  transition: 0.2s ease;
}
#contacts .listeContacts .bloc280#equipe {
  width: 280px;
  border-image: linear-gradient(to right, #0095db 0%, #e6007e 100%) 1;
  border-width: 3px;
  border-style: solid;
  border-right: none;
  border-left: none;
  padding: 30px 0;
  font-size: 20px;
}
#contacts .listeContacts .bloc280#equipe:before {
  content: "";
  width: 112px !important;
  height: 72px !important;
  display: block !important;
  position: relative !important;
  text-align: left !important;
  right: inherit;
  margin: 0;
  background: transparent url('/media/img/equipe.png') left top no-repeat;
  background-size: 100%;
  transition: 0.2s ease;
}
@media screen and (max-width: 1000px) {
  .bloc280 {
    float: none;
    display: inline-block;
  }
  .bloc280.special:before {
    filter: alpha(opacity=100);
    opacity: 0;
  }
  .bloc280#equipe {
    border-top: none;
    border-bottom: none;
  }
}
