.contact-content {
    text-align: center;
    margin-bottom: 32px;
  }
  
  .contact-content p {
    font-size: 14px;
    font-weight: bold;
  }
  
  .container-loader {
    width: 100%;
    height: 100vh;
    position: fixed;
    display: none;
    background-color: rgba(0,0,0,0.3);
    z-index: 9999;
  }
  
  .loader {
    border: 8px solid #f3f3f3;
    border-radius: 50%;
    border-top: 8px solid #00574B;
    width: 60px;
    height: 60px;
    z-index: 9999;
    margin: auto;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
  }
  
  @-webkit-keyframes spin {
    0%  {-webkit-transform: rotate(0deg);}
    100% {-webkit-transform: rotate(360deg);}   
  }