body{
    background-color: #02c100;
    font-family:'poppins';
}

.wrapper{
    display: flex;
    justify-content: center;
    color: rgba(0,0,0,0.7);
    max-width: 85%;
}

.wrapper .card{
    /* width: 33.333%; */
    width: 90%;
    background-color: white;
    padding: 30px;
    margin: 30px 15px;
    border-radius: 10px;
    box-shadow: 10px 10px 10px -1px rgba(10,99,169,0.16);
    transition: .5s;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.wrapper .card h3{
    margin-bottom: 15px;
    text-align: center;
}

.wrapper .card h1{
    margin-bottom: 10px;
    color: rgba(0,0,0,1);
    text-align: center;
}

.wrapper .card h4{
    margin-bottom: 10px;
    color: rgba(0,0,0,1);
    text-align: center;
}

.wrapper .card h1 span{
    font-size: 12px;
    color: rgba(0,0,0,0.7);
}

.wrapper .card p{
    margin: 20px 0;
    color: rgba(0,0,0,0.6);
    font-size: 14px;
    line-height: 1.5;
} 

.wrapper .card ul{
    list-style: none;
    padding-left: 0;
    font-size: 14px;
}

.wrapper .card ul li{
    line-height: 3;
    color: rgba(0,0,0,0.9);
}

.wrapper .card ul li i{
    color: rgba(0,0,0,0.4);
    margin-right: 10px;
}

.wrapper .card:hover ul li i{
    color: #02C100;
}

.wrapper .card button, .wrapper .card a{
    margin: 20px 0;
    display: block;
    text-align: center;
    text-decoration: none;
    background: transparent;
    width: 100%;
    border: 1px solid #02c100;
    color: #02c100;
    padding: 15px;
    border-radius: 5px;
    font-weight: bold;
    transition: 0.4s;
}

.wrapper .card button:hover, .wrapper .card a:hover{
    background-color: #02c100;
    color: white;
}

@media (max-width: 992px){
    .wrapper{
        flex-direction: column;
        max-width: 95%;
    }
    .wrapper .card{
        max-width: 100%;
    }
}


.contact-alert{
    position: fixed;
    display: none;
    top: 110px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.75rem 0 0.85rem;
    border-radius: 10px;
    background: #000;
    z-index: 99999;
    text-align: center;
  }
  
  .contact-alert p{
    font-size: 17px;
    margin: 0 1.5rem;
  }
  
  .contact-loader{
    position: absolute;
    width: 30%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 999999;
  }
  
  .text-success{
    color: #02C100;
  }
  
  .text-danger{
    color: #f00;
  }