html,
body{
    overflow-x: hidden;
}
.contact-header {
  background: #18864a;
  padding: 70px 0;
  color: #fff;
}
.text-center {
  text-align: center !important;
}
.contact-section{
    background:#f8fbf8;
}

.contact-title{
    color:#198754;
    font-weight:500;
    font-size:30px;
    margin-bottom:15px;
}

.contact-text{
    color:#666;
    margin-bottom:40px;
    line-height:1.8;
}

.info-box{
    display:flex;
    gap:20px;
    margin-bottom:30px;
}

.icon{
    width:40px;
    height:40px;
    background:#198754;
    color:#fff;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
   /* font-size:22px;*/
    flex-shrink:0;
}

.info-box h5{
    font-weight:450;
    margin-bottom:8px;
}

.info-box p{
    margin:0;
    color:#666;
    line-height:1.8;
}

.contact-form{
    background:#fff;
    padding:40px;
    border-radius:15px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.contact-form h4{
    color:#198754;
    font-weight:500;
}

.contact-form p{
    color:#777;
    /*margin-bottom:25px;*/
}

.form-control{
   /* height:50px;*/
    border-radius:8px;
    border:1px solid #ddd;
}

textarea.form-control{
    height:auto;
}

.form-control:focus{
    border-color:#198754;
    box-shadow:none;
}

.btn-success{
    background:#198754;
    border:none;
    padding:12px 30px;
    border-radius:8px;
    font-weight:600;
}

.btn-success:hover{
    background:#146c43;
}

@media(max-width:991px){

.contact-title{
    text-align:center;
}

.contact-text{
    text-align:center;
}

.info-box{
    margin-bottom:25px;
}

.contact-form{
    margin-top:20px;
}

}