.custom-form-contatti-container {
  font-family: 'Manrope', sans-serif !important;
  position: relative;
}
.custom-form-contatti-container .contact-cards-wrapper {
  position: relative;
  z-index: 2;
  margin-bottom: -120px;
  padding: 0 20px;
}
.custom-form-contatti-container .contact-cards-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .custom-form-contatti-container .contact-cards-container {
    grid-template-columns: 1fr;
  }
}
.custom-form-contatti-container .contact-card {
  background-color: #1C1C1C;
  color: #fff;
  padding: 40px;
  border-radius: 8px;
}
@media (max-width: 768px) {
  .custom-form-contatti-container .contact-card {
    padding: 24px;
  }
}
.custom-form-contatti-container .card-icon {
  width: 180px;
  height: 180px;
  margin-bottom: 80px;
}
@media (max-width: 768px) {
  .custom-form-contatti-container .card-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 24px;
  }
}
.custom-form-contatti-container .card-content .card-subtitle {
  font-family: 'Manrope', sans-serif;
  display: block;
  font-size: 16px;
  color: #a9a9a9;
  margin-bottom: 24px;
  letter-spacing: 0.5px;
}
.custom-form-contatti-container .card-content .card-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 32px;
  font-weight: 500;
  line-height: 1.5;
  color: #fff;
}
@media (max-width: 768px) {
  .custom-form-contatti-container .card-content .card-title {
    font-size: 24px;
  }
}
.custom-form-contatti-container .card-content .card-title p {
  margin: 0;
}
.custom-form-contatti-container .form-wrapper {
  background-color: #fff;
  padding: 200px 20px 80px 20px;
  position: relative;
  z-index: 1;
}
.custom-form-contatti-container .form-message {
  padding: 15px 20px;
  border-radius: 5px;
  margin: 30px auto 30px auto;
  max-width: 760px;
  text-align: center;
}
.custom-form-contatti-container .form-message.success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}
.custom-form-contatti-container .form-message.error {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}
.custom-form-contatti-container .custom-form-title {
  font-family: 'Space Grotesk', sans-serif;
  max-width: 898px;
  text-align: center;
  font-size: 56px;
  font-weight: 500;
  line-height: 1.3;
  margin: 0 auto 60px auto;
  color: #333;
}
@media (max-width: 768px) {
  .custom-form-contatti-container .custom-form-title {
    font-size: 40px;
    margin-bottom: 40px;
  }
}
.custom-form-contatti-container .custom-form {
  max-width: 760px;
  margin: 0 auto;
}
.custom-form-contatti-container .custom-form .form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  margin-bottom: 25px;
}
.custom-form-contatti-container .custom-form .form-group {
  flex: 1 1 45%;
  min-width: 250px;
}
.custom-form-contatti-container .custom-form input[type="text"],
.custom-form-contatti-container .custom-form input[type="email"],
.custom-form-contatti-container .custom-form input[type="tel"],
.custom-form-contatti-container .custom-form select,
.custom-form-contatti-container .custom-form textarea {
  width: 100%;
  padding: 15px;
  font-size: 16px;
  color: #333;
  border: 1px solid #E0E0E0;
  background-color: #fff;
  border-radius: 0;
  box-sizing: border-box;
  font-family: 'Manrope', sans-serif;
}
.custom-form-contatti-container .custom-form input[type="text"]::placeholder,
.custom-form-contatti-container .custom-form input[type="email"]::placeholder,
.custom-form-contatti-container .custom-form input[type="tel"]::placeholder,
.custom-form-contatti-container .custom-form select::placeholder,
.custom-form-contatti-container .custom-form textarea::placeholder {
  color: #757575;
}
.custom-form-contatti-container .custom-form input[type="text"]:focus,
.custom-form-contatti-container .custom-form input[type="email"]:focus,
.custom-form-contatti-container .custom-form input[type="tel"]:focus,
.custom-form-contatti-container .custom-form select:focus,
.custom-form-contatti-container .custom-form textarea:focus {
  outline: none;
  border-color: #000;
}
.custom-form-contatti-container .custom-form textarea {
  resize: vertical;
}
.custom-form-contatti-container .custom-form .phone-group {
  display: flex;
  gap: 10px;
}
.custom-form-contatti-container .custom-form .phone-group select {
  flex: 0 0 80px;
}
.custom-form-contatti-container .custom-form .phone-group .phone-input-wrapper {
  flex: 1;
  position: relative;
}
.custom-form-contatti-container .custom-form .form-check {
  display: flex;
  align-items: flex-start;
  margin: 20px 0 10px 0;
}
.custom-form-contatti-container .custom-form .form-check input[type="checkbox"] {
  margin-top: 3px;
  margin-right: 12px;
  flex-shrink: 0;
  width: 16px;
  height: 16px;
}
.custom-form-contatti-container .custom-form .form-check label {
  font-size: 13px;
  color: #555;
  line-height: 1.6;
}
.custom-form-contatti-container .custom-form .form-check a {
  color: #000;
  text-decoration: underline;
}
.custom-form-contatti-container .custom-form .form-check a:hover {
  text-decoration: none;
}
.custom-form-contatti-container .custom-form .required-note {
  font-size: 13px;
  color: #757575;
  margin-bottom: 30px;
}
.custom-form-contatti-container .custom-form .submit-container {
  text-align: center;
  padding-top: 50px;
}
.custom-form-contatti-container .custom-form button[type="submit"] {
  background: #fff;
  color: #000;
  border: 1px solid rgba(0, 0, 0, 0.6);
  padding: 14px 35px;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.custom-form-contatti-container .custom-form button[type="submit"]:hover {
  background: #000;
  color: #fff;
}
.custom-form-contatti-container .custom-form .field-error input,
.custom-form-contatti-container .custom-form .field-error select,
.custom-form-contatti-container .custom-form .field-error textarea,
.custom-form-contatti-container .custom-form .field-error.file-upload-group {
  border: 1px solid #B30000 !important;
}
.custom-form-contatti-container .custom-form .field-error input[type="checkbox"] {
  outline: 1px solid #B30000;
}
.custom-form-contatti-container .custom-form .error_mail,
.custom-form-contatti-container .custom-form .error_phone {
  display: none;
  color: #B30000;
  font-size: 14px;
}
@media (max-width: 992px) {
  .custom-form-contatti-container .custom-form .contact-cards-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .custom-form-contatti-container .custom-form .contact-cards-wrapper {
    margin-bottom: 40px;
  }
  .custom-form-contatti-container .custom-form .form-wrapper {
    padding-top: 60px;
  }
}
@media (max-width: 768px) {
  .custom-form-contatti-container .custom-form .custom-form-title {
    font-size: 40px;
    margin-bottom: 40px;
  }
  .custom-form-contatti-container .custom-form .form-row {
    flex-direction: column;
    gap: 0;
    margin-bottom: 0;
  }
  .custom-form-contatti-container .custom-form .form-group {
    margin-bottom: 25px;
  }
  .custom-form-contatti-container .custom-form .submit-container {
    padding-top: 30px;
  }
}
/*# sourceMappingURL=./custom-form-contatti.css.map */