.contact-main {
  border-radius: 8px;
}
.contact-main h1 {
  font-size: 18px;
  border-bottom: 1px solid #dddddd;
  padding-bottom: 16px;
  margin-bottom: 16px;
}
.contact-main h1 span {
  font-weight: 700;
}
.contact-main h3 {
  font-size: 16px;
  margin-bottom: 24px;
}

.contact_form .contact-header h2 {
  font-size: 24px;
  font-weight: 600;
  color: #333;
  margin-bottom: 15px;
}
.contact_form .contact-header .description {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}
.contact_form .form .row {
  margin-left: -15px;
  margin-right: -15px;
}
.contact_form .form .form-group {
  margin-bottom: 24px;
}
.contact_form .form .form-group label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #333;
  margin-bottom: 8px;
}
.contact_form .form .form-group label span {
  color: #e74c3c;
}
.contact_form .form .form-group .form_control.error,
.contact_form .form .form-group textarea.error {
  border-color: #e74c3c !important;
  box-shadow: 0 0 0 2px rgba(231, 76, 60, 0.1) !important;
}
.contact_form .form .form-group .label_error {
  color: #e74c3c;
  font-size: 12px;
  margin-top: 5px;
  display: block;
}
.contact_form .form .form-group .form_control {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
  color: #333;
  background-color: #fff;
  transition: border-color 0.3s ease;
}
.contact_form .form .form-group .form_control:focus {
  outline: none;
  border-color: #8b4513;
  box-shadow: 0 0 0 2px rgba(139, 69, 19, 0.1);
}
.contact_form .form .form-group .form_control::-moz-placeholder {
  color: #999;
}
.contact_form .form .form-group .form_control::placeholder {
  color: #999;
}
.contact_form .form .form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
  color: #333;
  background-color: #fff;
  resize: vertical;
  min-height: 120px;
  font-family: inherit;
  transition: border-color 0.3s ease;
}
.contact_form .form .form-group textarea:focus {
  outline: none;
  border-color: #8b4513;
  box-shadow: 0 0 0 2px rgba(139, 69, 19, 0.1);
}
.contact_form .form .form-group textarea::-moz-placeholder {
  color: #999;
}
.contact_form .form .form-group textarea::placeholder {
  color: #999;
}
.contact_form .form .txtCaptcha {
  max-width: 100%;
  width: 300px !important;
}
.contact_form .form .submitbt {
  background-color: #8b4513;
  color: #fff;
  padding: 12px 25px;
  border: none;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background-color 0.3s ease;
}
.contact_form .form .submitbt:hover {
  background-color: #a0522d;
  color: #fff;
  text-decoration: none;
}
.contact_form .form .submitbt:active {
  background-color: #704214;
}
@media (max-width: 767px) {
  .contact_form {
    padding: 20px;
  }
  .contact_form .form .col-sm-6 {
    width: 100%;
    float: none;
  }
  .contact_form .form .form-group:last-of-type {
    flex-direction: column;
    align-items: stretch;
  }
  .contact_form .form .form-group:last-of-type .txtCaptcha {
    max-width: 100%;
    margin-right: 0;
    margin-bottom: 10px;
  }
  .contact_form .form .form-group:last-of-type .code-view {
    align-self: center;
    margin-bottom: 15px;
  }
  .contact_form .form .form-group:last-of-type .submitbt {
    margin-left: 0;
    width: 100%;
    text-align: center;
  }
}

.g-recaptcha {
  margin: 15px 0;
}
@media (max-width: 767px) {
  .g-recaptcha {
    transform: scale(0.85);
    transform-origin: 0 0;
  }
}

.fl-left {
  float: left;
}

.fl-right {
  float: right;
}

.clearfix::after,
.clear::after {
  content: "";
  display: table;
  clear: both;
}

.clear {
  clear: both;
}

.col-xs-12 {
  width: 100%;
  float: left;
  position: relative;
}

@media (min-width: 768px) {
  .col-sm-6 {
    width: 50%;
    float: left;
  }
}

.contact_form .error .form_control,
.contact_form .error textarea {
  border-color: #e74c3c;
  box-shadow: 0 0 0 2px rgba(231, 76, 60, 0.1);
}
.contact_form .success .form_control,
.contact_form .success textarea {
  border-color: #27ae60;
  box-shadow: 0 0 0 2px rgba(39, 174, 96, 0.1);
}
.contact_form .submitbt.loading {
  opacity: 0.7;
  cursor: not-allowed;
  position: relative;
}
.contact_form .submitbt.loading::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  margin: auto;
  border: 2px solid transparent;
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

.c-box_map .title-map {
  font-size: 18px;
  border-bottom: 1px solid #dddddd;
}
.c-box_map iframe {
  width: 100%;
  min-height: 300px;
  border: none;
  border-radius: 8px;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}/*# sourceMappingURL=contact.css.map */