/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/

/* couleur de base : #09639f */


.contact {
    /* background: url("../img/backgrounds/bg-map-2.png") left center no-repeat; */
    position: relative;
  }
  .contact:before {
    content: "";
    background: rgba(255, 255, 255, 0.7);
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
  }
  .contact .container {
    position: relative;
  }
  .contact .info {
    width: 100%;
  }
  .contact .info i {
    font-size: 20px;
    background: #09639f;
    color: #fff;
    float: left;
    width: 44px;
    height: 44px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    transition: all 0.3s ease-in-out;
  }
  .contact .info h4 {
    padding: 0 0 0 60px;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 5px;
    color: #09639f;
  }
  .contact .info p {
    padding: 0 0 0 60px;
    margin-bottom: 0;
    font-size: 14px;
    color: #444444;
  }
  .contact .info .email{
    margin-top: 40px;
  }

  .contact .message-submit-btn {
    border: 0;
    padding: 10px 32px;
    color: #09639f;
    transition: 0.4s;
    border-radius: 50px;
    border: 2px solid #09639f;
    background: #fff;
  }
  .contact .message-submit-btn:hover {
    background: #09639f;
    color: #fff;
  }
  @-webkit-keyframes animate-loading {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }
  @keyframes animate-loading {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }