
/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact_contact_style1 .info-wrap {
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
    padding: 30px;
    height: 100%;
    background: var(--primary-color);
    border-radius:25px;
    color: white;
  }


  .contact_contact_style1 .info-wrap h3{
        color:white !important;
    }

  @media (max-width: 575px) {
    .contact_contact_style1 .info-wrap {
      padding: 20px;
    }
  }

  .contact_contact_style1 .info-item {
    margin-bottom: 40px;
  }

  .contact_contact_style1 .info-item i {
    font-size: 20px;
    color: var(--accent-color);
    background: color-mix(in srgb, var(--accent-color), transparent 92%);
    width: 44px;
    height: 44px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
    transition: all 0.3s ease-in-out;
    margin-right: 15px;
  }

  .contact_contact_style1 .info-item h3 {
    padding: 0;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
    color:white;
  }

  .contact_contact_style1 .info-item p {
    padding: 0;
    margin-bottom: 0;
    font-size: 14px;
  }

  .contact_contact_style1 .info-item:hover i {
    background: var(--accent-color);
    color: var(--contrast-color);
  }

  .contact_contact_style1 .php-email-form {
    background-color: var(--surface-color);
    height: 100%;
    padding: 30px;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  }

  @media (max-width: 575px) {
    .contact_contact_style1 .php-email-form {
      padding: 20px;
    }
  }

  .contact_contact_style1 .php-email-form input[type=text],
  .contact_contact_style1 .php-email-form input[type=email],
  .contact_contact_style1 .php-email-form textarea {
    font-size: 14px;
    padding: 10px 15px;
    box-shadow: none;
    border-radius: 0;
    color: var(--default-color);
    background-color: var(--surface-color);
    border-color: color-mix(in srgb, var(--default-color), transparent 80%);
  }

  .contact_contact_style1 .php-email-form input[type=text]:focus,
  .contact_contact_style1 .php-email-form input[type=email]:focus,
  .contact_contact_style1 .php-email-form textarea:focus {
    border-color: var(--accent-color);
  }

  .contact_contact_style1 .php-email-form input[type=text]::placeholder,
  .contact_contact_style1 .php-email-form input[type=email]::placeholder,
  .contact_contact_style1 .php-email-form textarea::placeholder {
    color: color-mix(in srgb, var(--default-color), transparent 70%);
  }

  .contact_contact_style1 .php-email-form button[type=submit] {
    color: white;
    background: green;
    border: 0;
    padding: 10px 30px;
    transition: 0.4s;
    border-radius: 4px;
  }

  .contact_contact_style1 .php-email-form button[type=submit]:hover {
    background: color-mix(in srgb, green, transparent 25%);
  }


  .contact_contact_style1  section#contact h3 {
    font-size: 18px;
}

.contact_contact_style1   section#contact .info-wrap {
    box-shadow: 0px 0px 3px 3px #e9e9e9;
    padding: 28px;

    
}

.contact_contact_style1   section#contact  form.php-email-form{
    padding: auto 15px;
}




/* PHP Email Form Messages
------------------------------*/
.contact_contact_style1  .error-message {
    display: none;
    background: #df1529;
    color: #ffffff;
    text-align: left;
    padding: 15px;
    margin-bottom: 24px;
    font-weight: 600;
  }

  .contact_contact_style1  .sent-message {
    display: none;
    color: #ffffff;
    background: #059652;
    text-align: center;
    padding: 15px;
    margin-bottom: 24px;
    font-weight: 600;
  }

  .contact_contact_style1  .loading {
    display: none;
    background: #eeeeee;
    text-align: center;
    padding: 15px;
    margin-bottom: 24px;
  }

  .contact_contact_style1  .loading:before {
    content: "";
    display: inline-block;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    margin: 0 10px -6px 0;
    border: 3px solid #0d83fd;
    border-top-color: #eeeeee;
    animation: php-email-form-loading 1s linear infinite;
  }

  @keyframes php-email-form-loading {
    0% {
      transform: rotate(0deg);
    }

    100% {
      transform: rotate(360deg);
    }
  }
