.contact__title{
    color: black;
    font-size: 36px;
    margin-bottom: 10px;
}
.template-contact .contact__text p{
    text-align: center;
}
.template-contact form input{

    height: 49px;
}
.template-contact form input,
.template-contact form textarea{
    padding: 10px 30px;
    border: 1px solid #EAEBF1;
    border-radius: 30px;
    width: 100%;
    font-size: 16px;
    font-weight: 400;
    color: gray;
}
.template-contact form textarea {
    padding: 22px 30px;
}
.template-contact form .form-group{
    margin-bottom: 18px;
}

.contact-info .icon{
    font-size: 24px;
    text-align: center;
    border-radius: 50%;
    /* border: 1px solid #DBDDE8; */
    display: flex;
    height: 70px;
    width: 70px;
    justify-content: center;
    align-items: center;
    position: relative;
}
.contact-info .icon::before {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    border: 1px solid #D9DCE7;
    border-radius: 50%;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
.contact-info:hover .icon::before {
    border-style: dashed;
    border-color: #F95B33;
    -ms-animation: rotate 12s linear infinite;
    -o-animation: rotate 12s linear infinite;
    -moz-animation: rotate 12s linear infinite;
    -webkit-animation: rotate 12s linear infinite;
    animation: rotate 12s linear infinite;
  }
  @keyframes rotate  {
    0%{
       transform: rotate(0deg);
      }
   100%{
       transform: rotate(360deg);
      }
   }
   
.contact-info .icon svg{
    height: 20px;
  fill: #F95B33;
}
.contact-info  .info-meta {
    margin-left: 15px;
}
.contact-info  .info-meta label{
    font-size: 20px;
    color: black;
    margin-bottom: 10px;
}
.contact-info  .info-meta span{
    display: block;
    color: #727070;
  font-size: 16px;
}
.contact-info{
    border-left: 1px dashed #0B0B0B1A;
    padding-left: 40px;
}

.contact-info ul li:not(:last-child){
    border-bottom: 1px dashed #0B0B0B1A;
    margin-bottom: 30px;
    padding-bottom: 30px;
}
.contact-map iframe{
    height: 500px;
    width: 100%;
    border-radius: 50px;
    border: 0px;
}
@media (max-width: 992px) {
    .contact-info ul li{
        flex-direction: column;
    }
    .contact-info .info-meta label {
        text-align: center;
    }
    .contact-info .info-meta span{
        text-align: center;
    }
    .contact-info .icon {
    
      margin-bottom: 12px;
    
    }
    .template-contact .contact__text p {
        text-align: center;
        padding-bottom: 20px;
      }
    .contact__title {
        color: black;
        font-size: 33px;
        margin-bottom: 10px;
        font-weight: 500;
      }
      .template-contact form h4{
        text-align: center;
  font-weight: 600;
  margin-bottom: 5px;
      }
      .template-contact form p{
        text-align: center;
      }
      .template-contact.pt{
        padding-top: 25px;
      }
      .contact-info {
        border-left: 0px;
        padding-left: 0px;
      }
      .contact-map iframe {
        height: 350px;
        width: 100%;
        border-radius: 20px;
        border: 0px;
      }
}