
/*---------------------------
** Contact Page CSS
---------------------------*/
  
  .contact-section {
    padding: 10px;
  }
    .message {
        border-radius: 10px;
        font-size: 1.25rem;
        text-align: justify;
        background: #1f415f;
        font-weight: 500;
    }
  .contact-section .single-info {
    margin-bottom: 30px;
    padding: 40px 42px;
  }
  
  .contact-section .single-info::after {
    content: "";
    display: block;
    clear: both;
  }
  
  .contact-section .single-info:last-child {
    margin-bottom: 0px;
  }
  
  .contact-section .single-info .icon-wrapper {
    border: 1px solid #58bed3;
    height: 50px;
    width: 50px;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    margin-right: 15px;
    background-color: #fff;
    float: left;
    -webkit-transform: rotateY(0deg);
    transform: rotateY(0deg);
    -webkit-transition: background-color .5s;
    -o-transition: background-color .5s;
    transition: background-color .5s;
  }
  
  .contact-section .single-info:hover .icon-wrapper {
    -webkit-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
    background-color: #58bed3;
    -webkit-transform: rotateY(360deg);
    transform: rotateY(360deg);
  }
  
  .contact-section .single-info .icon-wrapper i {
    font-size: 20px;
    color: #58bed3;
    -webkit-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
  }
  
  .contact-section .single-info:hover .icon-wrapper i {
    color: #fff;
  }
  
  .contact-section .single-info .info-txt {
    float: left;
    width: 73%;
  }
  
  .contact-section .single-info p {
    margin-bottom: 0px;
    font-size: 18px;
    line-height: 28px;
  }
  
  .contact-section .single-info-col:first-child {
    border: 1px solid #f1f1f1;
  }
  
  .contact-section .single-info-col:nth-child(2) {
    border-top: 1px solid #f1f1f1;
    border-bottom: 1px solid #f1f1f1;
  }
  
  .contact-section .single-info-col:last-child {
    border: 1px solid #f1f1f1;
  }
  
  .contact-form-section .form-element input {
    border: 1px solid #e3e3e3;
  }
  
  .contact-form-section {
    margin-top: 90px;
  }
  
  .contact-form-section h2.subtitle {
    margin-bottom: 94px;
  }
  
  .contact-form-section .form-element textarea {
    border: 1px solid #e3e3e3;
  }
  
  .contact-form-section .form-element button[type="submit"],
  .contact-form-section .form-element input[type="submit"] {
    padding: 10px 30px;
  }
  