/* Colors */
:root {
    --color-default: #364d59;
    --color-primary: #37a875;
    --color-black: #000;
    --color-white: #fff;
  }

.contact-img{
    width: 100%;
    height: 40vh;
    background-image: linear-gradient(#0c0c0c8b,#0b0b0b84),url(../images/smc-img-02.jpeg);
    background-size: cover;
    background-position-y: center;
    
}
.contact-img .txt-contact h1{
    margin-top: 65px;
    color: var(--color-white);
}
.contact-img .txt-contact p{
    color: var(--color-white);

}
.contact-img .txt-contact p a{
    text-decoration: none;
    font-family: 500;
}

/* =========================================info address ============================================= */

.contact .info-item {
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.08);
    padding: 20px 0 30px 0;
    margin-bottom: 40px;
  }
  
  .contact .info-item i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    font-size: 24px;
    line-height: 0;
    color: var(--color-primary);
    border-radius: 50%;
    border: 2px dotted var(--color-primary);
  }
  
  .contact .info-item h3 {
    font-size: 20px;
    color: #6c757d;
    font-weight: 700;
    margin: 10px 0;
  }
  
  .contact .info-item p {
    padding: 0;
    line-height: 24px;
    font-size: 14px;
    margin-bottom: 0;
  }

  