.custom-form-jobs-block-container {
  font-family: 'Manrope', sans-serif !important;
  overflow: hidden;
}
.jobs-section {
  background-color: #000000;
  padding: 5px 0;
  position: relative;
  z-index: 10;
}
.jobs-slider-header {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 50px;
  display: flex;
  justify-content: flex-end;
  margin-bottom: 20px;
}
.jobs-slider-nav {
  display: flex;
  gap: 10px;
}
.jobs-slider-nav button {
  background: transparent;
  border: 1px solid #333;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}
.jobs-slider-nav button:hover {
  background-color: #fff;
  border-color: #fff;
}
.jobs-slider-nav button:hover svg path {
  stroke: #000;
}
.jobs-slider-nav button svg {
  width: 24px;
  height: 24px;
}
.jobs-slider-nav button svg path {
  transition: stroke 0.3s ease;
}
.jobs-slider-wrapper {
  overflow: hidden;
  cursor: grab;
  margin-bottom: -280px;
}
.jobs-slider-track {
  display: flex;
  gap: 30px;
  padding: 0 50px;
  will-change: transform;
  user-select: none;
}
.job-card {
  background-color: #1C1C1C;
  color: #ffffff;
  padding: 30px;
  width: 350px;
  height: 450px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  border: 1px solid #333;
}
.job-card .job-location {
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  color: #a9a9a9;
  margin-bottom: 12px;
}
.job-card .job-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 32px;
  font-weight: 500;
  color: #fff;
  margin: 0 0 20px 0;
  line-height: 1.3;
}
.job-card .job-details {
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  color: #a9a9a9;
  margin: 0;
  flex-grow: 1;
}
.job-card .job-apply-btn {
  border: 1px solid rgba(255, 255, 255, 0.6);
  width: 180px;
  padding: 16px 24px;
  color: #fff;
  text-decoration: none;
  margin-top: 25px;
  font-weight: 500;
  transition: opacity 0.3s ease;
}
.job-card .job-apply-btn:hover {
  opacity: 0.7;
}
.form-section-wrapper {
  background-color: #ffffff;
  color: #000000;
  padding: 340px 50px 100px;
  position: relative;
  z-index: 5;
}
.custom-form-jobs-block-container.no-jobs .form-section-wrapper {
  padding-top: 100px;
}
.form-section-wrapper .custom-form-title {
  font-size: 56px;
  font-weight: 500;
  line-height: 1.4;
  margin: 0 auto 100px auto;
  text-align: center;
  max-width: 650px;
}
.form-section-wrapper .form-message {
  padding: 15px 20px;
  border-radius: 5px;
  margin: 30px auto 30px auto;
  max-width: 760px;
  text-align: center;
  font-family: sans-serif;
}
.form-section-wrapper .form-message.success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}
.form-section-wrapper .form-message.error {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}
.form-section-wrapper .custom-form {
  max-width: 800px;
  margin: 0 auto;
}
.form-section-wrapper .custom-form .error-message {
  padding-top: 5px;
}
.form-section-wrapper .custom-form .form-row {
  display: flex;
  gap: 30px;
  margin-bottom: 30px;
}
.form-section-wrapper .custom-form .form-row.upload-file {
  display: block;
}
.form-section-wrapper .custom-form .form-row.upload-file .form-group {
  display: flex;
}
.form-section-wrapper .custom-form .form-group {
  flex: 1 1 100%;
  position: relative;
}
.form-section-wrapper .custom-form .form-group .floating-label {
  position: absolute;
  top: 20px;
  left: 15px;
  font-size: 16px;
  color: #666;
  pointer-events: none;
  transition: all 0.2s ease-in-out;
}
.form-section-wrapper .custom-form label {
  position: absolute;
  top: 20px;
  left: 15px;
  font-size: 16px;
  color: #666;
  pointer-events: none;
  transition: all 0.2s ease-in-out;
}
.form-section-wrapper .custom-form input:not([type="checkbox"]):not([type="file"]),
.form-section-wrapper .custom-form select,
.form-section-wrapper .custom-form textarea {
  width: 100%;
  padding: 15px;
  font-size: 16px;
  font-family: 'Manrope', sans-serif;
  color: #333;
  border: 1px solid #E0E0E0;
  background-color: #fff;
  border-radius: 0;
  box-sizing: border-box;
}
.form-section-wrapper .custom-form input:not([type="checkbox"]):not([type="file"]):focus,
.form-section-wrapper .custom-form select:focus,
.form-section-wrapper .custom-form textarea:focus {
  outline: none;
  border-color: #000;
}
.form-section-wrapper .custom-form input:not([type="checkbox"]):not([type="file"]):focus + label,
.form-section-wrapper .custom-form select:focus + label,
.form-section-wrapper .custom-form textarea:focus + label,
.form-section-wrapper .custom-form input:not([type="checkbox"]):not([type="file"]):not(:placeholder-shown) + label,
.form-section-wrapper .custom-form select:not(:placeholder-shown) + label,
.form-section-wrapper .custom-form textarea:not(:placeholder-shown) + label,
.form-section-wrapper .custom-form input:not([type="checkbox"]):not([type="file"]).has-value + label,
.form-section-wrapper .custom-form select.has-value + label,
.form-section-wrapper .custom-form textarea.has-value + label {
  top: -10px;
  left: 10px;
  font-size: 12px;
  color: #666;
  background: #fff;
  padding: 0 5px;
}
.form-section-wrapper .custom-form select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23333' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 1em;
}
.form-section-wrapper .custom-form select:required:invalid {
  color: #666;
}
.form-section-wrapper .custom-form select:focus + .floating-label,
.form-section-wrapper .custom-form select:valid + .floating-label {
  top: -10px;
  left: 10px;
  font-size: 12px;
  background: #fff;
  padding: 0 5px;
}
.form-section-wrapper .custom-form textarea {
  padding-top: 15px;
}
.form-section-wrapper .custom-form .phone-group {
  display: flex;
  gap: 15px;
}
.form-section-wrapper .custom-form .phone-group select {
  flex: 0 0 90px;
}
.form-section-wrapper .custom-form .phone-group .phone-input-wrapper {
  flex: 1;
  position: relative;
}
.form-section-wrapper .custom-form .file-upload-group {
  display: flex;
  border: 1px solid #eaeaea;
  align-items: center;
  position: relative;
  transition: border-color 0.3s;
  padding: 16px;
}
.form-section-wrapper .custom-form .file-upload-group:hover {
  border-color: #999;
}
.form-section-wrapper .custom-form .file-upload-group input[type="file"] {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}
.form-section-wrapper .custom-form .file-upload-group .file-label-button {
  position: static;
  pointer-events: none;
  padding: 15px 20px;
  background-color: #f9f9f9;
  color: #000;
  white-space: nowrap;
  border-right: 1px solid #eaeaea;
}
.form-section-wrapper .custom-form .file-upload-group .file-name-display {
  padding: 15px;
  color: #666;
  flex-grow: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.form-section-wrapper .custom-form .form-check {
  display: flex;
  align-items: flex-start;
  margin: 20px 0 10px 0;
}
.form-section-wrapper .custom-form .form-check input[type="checkbox"] {
  margin-top: 4px;
  margin-right: 12px;
  flex-shrink: 0;
  width: 16px;
  height: 16px;
}
.form-section-wrapper .custom-form .form-check label {
  position: static;
  font-size: 13px;
  line-height: 1.6;
  color: #666;
  pointer-events: auto;
}
.form-section-wrapper .custom-form .form-check label a {
  color: #000;
  text-decoration: underline;
}
.form-section-wrapper .custom-form .required-note {
  font-size: 13px;
  color: #666;
  margin: 0 0 30px 0;
}
.form-section-wrapper .custom-form .submit-container {
  text-align: center;
  padding-top: 50px;
}
.form-section-wrapper .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;
}
.form-section-wrapper .custom-form button[type="submit"]:hover {
  background: #000;
  color: #fff;
}
.form-section-wrapper .custom-form .field-error input,
.form-section-wrapper .custom-form .field-error select,
.form-section-wrapper .custom-form .field-error textarea,
.form-section-wrapper .custom-form .field-error.file-upload-group {
  border: 1px solid #B30000 !important;
}
.form-section-wrapper .custom-form .field-error input[type="checkbox"] {
  outline: 1px solid #B30000;
}
.form-section-wrapper .custom-form .error_max_size_file,
.form-section-wrapper .custom-form .error_upload_file,
.form-section-wrapper .custom-form .error_mail,
.form-section-wrapper .custom-form .error_phone {
  display: none;
  color: #B30000;
  font-size: 14px;
}
@media (max-width: 768px) {
  .jobs-slider-header,
  .jobs-slider-track {
    padding: 0 20px;
  }
  .jobs-slider-wrapper {
    margin-bottom: -300px;
  }
  .form-section-wrapper {
    padding: 360px 20px 60px;
  }
  .custom-form-jobs-block-container.no-jobs .form-section-wrapper {
    padding-top: 60px;
  }
  .form-section-wrapper .custom-form-title {
    font-size: 40px;
  }
  .form-section-wrapper .custom-form .form-row {
    flex-direction: column;
    margin-bottom: 0;
    gap: 30px;
  }
  .form-section-wrapper .custom-form .form-row:not(:last-of-type) {
    margin-bottom: 30px;
  }
  .form-section-wrapper .custom-form .submit-container {
    padding-top: 30px;
  }
}
/*# sourceMappingURL=./custom-form-jobs.css.map */