/* Shared Variables */
/* Shared Variables */
/* line 4, app/assets/stylesheets/admin_confirm_dialog.scss */
.admin-confirm-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(26, 42, 71, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 10000;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* line 20, app/assets/stylesheets/admin_confirm_dialog.scss */
.admin-confirm-overlay.show {
  opacity: 1;
}

/* line 23, app/assets/stylesheets/admin_confirm_dialog.scss */
.admin-confirm-overlay.show .admin-confirm-dialog {
  transform: scale(1) translateY(0);
  opacity: 1;
}

/* line 30, app/assets/stylesheets/admin_confirm_dialog.scss */
.admin-confirm-dialog {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(255, 255, 255, 0.1);
  max-width: 500px;
  width: 90%;
  overflow: hidden;
  transform: scale(0.9) translateY(20px);
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* line 45, app/assets/stylesheets/admin_confirm_dialog.scss */
.admin-confirm-header {
  background: linear-gradient(135deg, #ff9000 0%, #e6820a 100%);
  padding: 24px 28px;
  display: flex;
  align-items: center;
  gap: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* line 54, app/assets/stylesheets/admin_confirm_dialog.scss */
.admin-confirm-icon {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: white;
  flex-shrink: 0;
}

/* line 67, app/assets/stylesheets/admin_confirm_dialog.scss */
.admin-confirm-title {
  font-size: 24px;
  font-weight: 700;
  color: white;
  margin: 0;
  flex: 1;
}

/* line 75, app/assets/stylesheets/admin_confirm_dialog.scss */
.admin-confirm-body {
  padding: 32px 28px;
  background: white;
}

/* line 80, app/assets/stylesheets/admin_confirm_dialog.scss */
.admin-confirm-message {
  font-size: 16px;
  line-height: 1.6;
  color: #210707;
  margin: 0;
}

/* line 87, app/assets/stylesheets/admin_confirm_dialog.scss */
.admin-confirm-footer {
  padding: 20px 28px;
  background: rgba(0, 0, 0, 0.02);
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}

/* line 96, app/assets/stylesheets/admin_confirm_dialog.scss */
.admin-confirm-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border: none;
  border-radius: 12px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-family: inherit;
  white-space: nowrap;
}

/* line 110, app/assets/stylesheets/admin_confirm_dialog.scss */
.admin-confirm-btn i {
  font-size: 14px;
}

/* line 115, app/assets/stylesheets/admin_confirm_dialog.scss */
.admin-confirm-cancel {
  background: rgba(132, 46, 47, 0.1);
  color: #842e2f;
  border: 2px solid rgba(132, 46, 47, 0.2);
}

/* line 120, app/assets/stylesheets/admin_confirm_dialog.scss */
.admin-confirm-cancel:hover {
  background: rgba(132, 46, 47, 0.2);
  border-color: #842e2f;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(132, 46, 47, 0.2);
}

/* line 127, app/assets/stylesheets/admin_confirm_dialog.scss */
.admin-confirm-cancel:active {
  transform: translateY(0);
}

/* line 132, app/assets/stylesheets/admin_confirm_dialog.scss */
.admin-confirm-delete {
  background: linear-gradient(135deg, #f44336 0%, #d32f2f 100%);
  color: white;
  box-shadow: 0 2px 8px rgba(244, 67, 54, 0.3);
}

/* line 137, app/assets/stylesheets/admin_confirm_dialog.scss */
.admin-confirm-delete:hover {
  background: linear-gradient(135deg, #e53935 0%, #c62828 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(244, 67, 54, 0.4);
}

/* line 143, app/assets/stylesheets/admin_confirm_dialog.scss */
.admin-confirm-delete:active {
  transform: translateY(0);
}

/* line 149, app/assets/stylesheets/admin_confirm_dialog.scss */
.admin-confirm-icon {
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

@media (max-width: 576px) {
  /* line 164, app/assets/stylesheets/admin_confirm_dialog.scss */
  .admin-confirm-dialog {
    width: 95%;
    max-width: none;
  }
  /* line 169, app/assets/stylesheets/admin_confirm_dialog.scss */
  .admin-confirm-header {
    padding: 20px;
  }
  /* line 173, app/assets/stylesheets/admin_confirm_dialog.scss */
  .admin-confirm-icon {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }
  /* line 179, app/assets/stylesheets/admin_confirm_dialog.scss */
  .admin-confirm-title {
    font-size: 20px;
  }
  /* line 183, app/assets/stylesheets/admin_confirm_dialog.scss */
  .admin-confirm-body {
    padding: 24px 20px;
  }
  /* line 187, app/assets/stylesheets/admin_confirm_dialog.scss */
  .admin-confirm-message {
    font-size: 15px;
  }
  /* line 191, app/assets/stylesheets/admin_confirm_dialog.scss */
  .admin-confirm-footer {
    padding: 16px 20px;
    flex-direction: column;
  }
  /* line 196, app/assets/stylesheets/admin_confirm_dialog.scss */
  .admin-confirm-btn {
    width: 100%;
    justify-content: center;
  }
}
/* Drag & Drop File Upload Styles for Administrate */
.file-upload-dropzone {
  position: relative;
  border: 2px dashed #cbd5e0;
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 1rem;
  text-align: center;
  background-color: #f7fafc;
  transition: all 0.3s ease;
  cursor: pointer;
}

.file-upload-dropzone:hover {
  border-color: #4299e1;
  background-color: #ebf8ff;
}

.file-upload-dropzone.dragover {
  border-color: #3182ce;
  background-color: #bee3f8;
  transform: scale(1.01);
}

.dropzone-content {
  pointer-events: none;
}

.file-upload-dropzone i {
  font-size: 3rem;
  color: #a0aec0;
  margin-bottom: 1rem;
  display: block;
}

.file-upload-dropzone.dragover i {
  color: #3182ce;
}

.file-upload-text {
  color: #4a5568;
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.file-upload-hint {
  color: #a0aec0;
  font-size: 0.875rem;
}

/* Hide the actual file input but keep it functional */
.file-upload-dropzone .form-control {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

/* File selected state */
.file-upload-dropzone.has-files {
  border-color: #48bb78;
  background-color: #f0fff4;
}

.file-upload-dropzone.has-files i {
  color: #48bb78;
}

/* Ensure proper layout in Administrate */
.field-unit__field .file-upload-dropzone {
  margin-bottom: 0.5rem;
}

/* Make sure text is visible */
.file-upload-text strong {
  color: #2d3748;
}

.file-upload-text small {
  color: #718096;
  font-size: 0.875rem;
}

/* Accumulated Files Preview */
.accumulated-files-preview {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.accumulated-files-header {
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
  color: #4a5568;
}

.accumulated-files-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1rem;
}

.accumulated-file-item {
  position: relative;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  padding: 0.75rem;
  background: white;
  transition: all 0.2s;
}

.accumulated-file-item:hover {
  border-color: #cbd5e0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.file-preview-img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 0.5rem;
}

.file-icon {
  font-size: 3rem;
  color: #a0aec0;
  display: block;
  text-align: center;
  margin: 1rem 0;
}

.file-name {
  font-size: 0.85rem;
  color: #2d3748;
  font-weight: 500;
  margin-bottom: 0.25rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.file-size {
  font-size: 0.75rem;
  color: #718096;
  margin-bottom: 0.5rem;
}

.remove-file-btn {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  border: none;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  font-size: 0.9rem;
}

.remove-file-btn:hover {
  background: #e53e3e;
  transform: scale(1.1);
}

/* Shared Variables */
/* Shared Variables */
/* line 4, app/assets/stylesheets/admin_confirm_dialog.scss */
.admin-confirm-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(26, 42, 71, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 10000;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* line 20, app/assets/stylesheets/admin_confirm_dialog.scss */
.admin-confirm-overlay.show {
  opacity: 1;
}

/* line 23, app/assets/stylesheets/admin_confirm_dialog.scss */
.admin-confirm-overlay.show .admin-confirm-dialog {
  transform: scale(1) translateY(0);
  opacity: 1;
}

/* line 30, app/assets/stylesheets/admin_confirm_dialog.scss */
.admin-confirm-dialog {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(255, 255, 255, 0.1);
  max-width: 500px;
  width: 90%;
  overflow: hidden;
  transform: scale(0.9) translateY(20px);
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* line 45, app/assets/stylesheets/admin_confirm_dialog.scss */
.admin-confirm-header {
  background: linear-gradient(135deg, #ff9000 0%, #e6820a 100%);
  padding: 24px 28px;
  display: flex;
  align-items: center;
  gap: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* line 54, app/assets/stylesheets/admin_confirm_dialog.scss */
.admin-confirm-icon {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: white;
  flex-shrink: 0;
}

/* line 67, app/assets/stylesheets/admin_confirm_dialog.scss */
.admin-confirm-title {
  font-size: 24px;
  font-weight: 700;
  color: white;
  margin: 0;
  flex: 1;
}

/* line 75, app/assets/stylesheets/admin_confirm_dialog.scss */
.admin-confirm-body {
  padding: 32px 28px;
  background: white;
}

/* line 80, app/assets/stylesheets/admin_confirm_dialog.scss */
.admin-confirm-message {
  font-size: 16px;
  line-height: 1.6;
  color: #210707;
  margin: 0;
}

/* line 87, app/assets/stylesheets/admin_confirm_dialog.scss */
.admin-confirm-footer {
  padding: 20px 28px;
  background: rgba(0, 0, 0, 0.02);
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}

/* line 96, app/assets/stylesheets/admin_confirm_dialog.scss */
.admin-confirm-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border: none;
  border-radius: 12px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-family: inherit;
  white-space: nowrap;
}

/* line 110, app/assets/stylesheets/admin_confirm_dialog.scss */
.admin-confirm-btn i {
  font-size: 14px;
}

/* line 115, app/assets/stylesheets/admin_confirm_dialog.scss */
.admin-confirm-cancel {
  background: rgba(132, 46, 47, 0.1);
  color: #842e2f;
  border: 2px solid rgba(132, 46, 47, 0.2);
}

/* line 120, app/assets/stylesheets/admin_confirm_dialog.scss */
.admin-confirm-cancel:hover {
  background: rgba(132, 46, 47, 0.2);
  border-color: #842e2f;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(132, 46, 47, 0.2);
}

/* line 127, app/assets/stylesheets/admin_confirm_dialog.scss */
.admin-confirm-cancel:active {
  transform: translateY(0);
}

/* line 132, app/assets/stylesheets/admin_confirm_dialog.scss */
.admin-confirm-delete {
  background: linear-gradient(135deg, #f44336 0%, #d32f2f 100%);
  color: white;
  box-shadow: 0 2px 8px rgba(244, 67, 54, 0.3);
}

/* line 137, app/assets/stylesheets/admin_confirm_dialog.scss */
.admin-confirm-delete:hover {
  background: linear-gradient(135deg, #e53935 0%, #c62828 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(244, 67, 54, 0.4);
}

/* line 143, app/assets/stylesheets/admin_confirm_dialog.scss */
.admin-confirm-delete:active {
  transform: translateY(0);
}

/* line 149, app/assets/stylesheets/admin_confirm_dialog.scss */
.admin-confirm-icon {
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

@media (max-width: 576px) {
  /* line 164, app/assets/stylesheets/admin_confirm_dialog.scss */
  .admin-confirm-dialog {
    width: 95%;
    max-width: none;
  }
  /* line 169, app/assets/stylesheets/admin_confirm_dialog.scss */
  .admin-confirm-header {
    padding: 20px;
  }
  /* line 173, app/assets/stylesheets/admin_confirm_dialog.scss */
  .admin-confirm-icon {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }
  /* line 179, app/assets/stylesheets/admin_confirm_dialog.scss */
  .admin-confirm-title {
    font-size: 20px;
  }
  /* line 183, app/assets/stylesheets/admin_confirm_dialog.scss */
  .admin-confirm-body {
    padding: 24px 20px;
  }
  /* line 187, app/assets/stylesheets/admin_confirm_dialog.scss */
  .admin-confirm-message {
    font-size: 15px;
  }
  /* line 191, app/assets/stylesheets/admin_confirm_dialog.scss */
  .admin-confirm-footer {
    padding: 16px 20px;
    flex-direction: column;
  }
  /* line 196, app/assets/stylesheets/admin_confirm_dialog.scss */
  .admin-confirm-btn {
    width: 100%;
    justify-content: center;
  }
}

/* ============================================
   LIQUID GLASS ADMIN PANEL - MODERN 2025 DESIGN
   ============================================ */
/* Reset and Base Styles */
/* line 9, app/assets/stylesheets/admin_liquid_glass.scss */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* line 15, app/assets/stylesheets/admin_liquid_glass.scss */
* {
  margin: 0;
  padding: 0;
  line-height: 1.4;
}

/* line 21, app/assets/stylesheets/admin_liquid_glass.scss */
html,
body {
  height: 100%;
  font-size: 16px;
  scroll-behavior: smooth;
  font-family: "Nunito", sans-serif;
}

/* line 29, app/assets/stylesheets/admin_liquid_glass.scss */
body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* ============================================
   LOGIN PAGE - LIQUID GLASS STYLE
   ============================================ */
/* line 39, app/assets/stylesheets/admin_liquid_glass.scss */
.admin-login-wrapper {
  min-height: 100vh;
  background: linear-gradient(135deg, #210707 0%, #5B2021 50%, #842e2f 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  position: relative;
  overflow: hidden;
  /* Three.js Canvas Container */
  /* Animated Background Blobs - Fallback */
}

/* line 50, app/assets/stylesheets/admin_liquid_glass.scss */
.admin-login-wrapper #threejs-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.6;
}

/* line 61, app/assets/stylesheets/admin_liquid_glass.scss */
.admin-login-wrapper::before, .admin-login-wrapper::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.2;
  animation: float 25s ease-in-out infinite;
  z-index: 0;
}

/* line 72, app/assets/stylesheets/admin_liquid_glass.scss */
.admin-login-wrapper::before {
  width: 600px;
  height: 600px;
  background: linear-gradient(135deg, #ff9000 0%, rgba(255, 144, 0, 0.3) 100%);
  top: -150px;
  left: -150px;
  animation-delay: 0s;
}

/* line 81, app/assets/stylesheets/admin_liquid_glass.scss */
.admin-login-wrapper::after {
  width: 500px;
  height: 500px;
  background: linear-gradient(135deg, #842e2f 0%, rgba(132, 46, 47, 0.3) 100%);
  bottom: -150px;
  right: -150px;
  animation-delay: 12s;
}

@keyframes float {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(30px, -30px) scale(1.1);
  }
  66% {
    transform: translate(-20px, 20px) scale(0.9);
  }
}

/* line 103, app/assets/stylesheets/admin_liquid_glass.scss */
.admin-login-container {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 480px;
}

/* Logo Section */
/* line 111, app/assets/stylesheets/admin_liquid_glass.scss */
.admin-login-logo {
  text-align: center;
  margin-bottom: 40px;
}

/* line 115, app/assets/stylesheets/admin_liquid_glass.scss */
.admin-login-logo img {
  height: 60px;
  width: auto;
  margin: 0 auto 20px;
  filter: drop-shadow(0 4px 12px rgba(255, 144, 0, 0.3));
}

/* line 122, app/assets/stylesheets/admin_liquid_glass.scss */
.admin-login-logo h1 {
  font-size: 28px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

/* line 130, app/assets/stylesheets/admin_liquid_glass.scss */
.admin-login-logo p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 400;
}

/* Glass Card */
/* line 138, app/assets/stylesheets/admin_liquid_glass.scss */
.admin-login-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
  /* Subtle gradient overlay */
}

/* line 152, app/assets/stylesheets/admin_liquid_glass.scss */
.admin-login-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.3) 50%, transparent 100%);
}

/* Form Styles */
/* line 167, app/assets/stylesheets/admin_liquid_glass.scss */
.admin-form-group {
  margin-bottom: 24px;
}

/* line 170, app/assets/stylesheets/admin_liquid_glass.scss */
.admin-form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}

/* line 179, app/assets/stylesheets/admin_liquid_glass.scss */
.admin-form-group input[type="email"],
.admin-form-group input[type="password"],
.admin-form-group input[type="text"] {
  width: 100%;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  color: #ffffff;
  font-size: 15px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
}

/* line 192, app/assets/stylesheets/admin_liquid_glass.scss */
.admin-form-group input[type="email"]::placeholder,
.admin-form-group input[type="password"]::placeholder,
.admin-form-group input[type="text"]::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

/* line 196, app/assets/stylesheets/admin_liquid_glass.scss */
.admin-form-group input[type="email"]:focus,
.admin-form-group input[type="password"]:focus,
.admin-form-group input[type="text"]:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.08);
  border-color: #ff9000;
  box-shadow: 0 0 0 3px rgba(255, 144, 0, 0.15), 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* line 205, app/assets/stylesheets/admin_liquid_glass.scss */
.admin-form-group input[type="email"]:hover:not(:focus),
.admin-form-group input[type="password"]:hover:not(:focus),
.admin-form-group input[type="text"]:hover:not(:focus) {
  border-color: rgba(255, 255, 255, 0.25);
}

/* Remember Me Checkbox */
/* line 212, app/assets/stylesheets/admin_liquid_glass.scss */
.admin-remember-me {
  display: flex;
  align-items: center;
  margin-bottom: 24px;
}

/* line 217, app/assets/stylesheets/admin_liquid_glass.scss */
.admin-remember-me input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-right: 10px;
  cursor: pointer;
  accent-color: #ff9000;
}

/* line 225, app/assets/stylesheets/admin_liquid_glass.scss */
.admin-remember-me label {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  font-weight: 400;
  cursor: pointer;
  user-select: none;
}

/* Submit Button */
/* line 235, app/assets/stylesheets/admin_liquid_glass.scss */
.admin-submit-btn {
  width: 100%;
  padding: 14px 24px;
  background: linear-gradient(135deg, #ff9000 0%, #e6820a 100%);
  border: none;
  border-radius: 12px;
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 16px rgba(255, 144, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
}

/* line 252, app/assets/stylesheets/admin_liquid_glass.scss */
.admin-submit-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

/* line 266, app/assets/stylesheets/admin_liquid_glass.scss */
.admin-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 144, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

/* line 272, app/assets/stylesheets/admin_liquid_glass.scss */
.admin-submit-btn:hover::before {
  left: 100%;
}

/* line 277, app/assets/stylesheets/admin_liquid_glass.scss */
.admin-submit-btn:active {
  transform: translateY(0);
}

/* line 281, app/assets/stylesheets/admin_liquid_glass.scss */
.admin-submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* Links */
/* line 289, app/assets/stylesheets/admin_liquid_glass.scss */
.admin-links {
  margin-top: 24px;
  text-align: center;
}

/* line 293, app/assets/stylesheets/admin_liquid_glass.scss */
.admin-links a {
  color: #ff9000;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s;
}

/* line 300, app/assets/stylesheets/admin_liquid_glass.scss */
.admin-links a:hover {
  color: #ffa726;
  text-decoration: underline;
}

/* line 306, app/assets/stylesheets/admin_liquid_glass.scss */
.admin-links .separator {
  color: rgba(255, 255, 255, 0.3);
  margin: 0 12px;
}

/* Test Credentials Badge */
/* line 313, app/assets/stylesheets/admin_liquid_glass.scss */
.admin-test-credentials {
  margin-top: 24px;
  padding: 16px;
  background: rgba(76, 175, 80, 0.1);
  border: 1px solid rgba(76, 175, 80, 0.3);
  border-radius: 12px;
  backdrop-filter: blur(10px);
}

/* line 321, app/assets/stylesheets/admin_liquid_glass.scss */
.admin-test-credentials strong {
  color: #81c784;
  font-size: 13px;
  display: block;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* line 330, app/assets/stylesheets/admin_liquid_glass.scss */
.admin-test-credentials .credential-item {
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
  margin: 4px 0;
  font-family: 'Courier New', monospace;
}

/* Flash Messages */
/* line 339, app/assets/stylesheets/admin_liquid_glass.scss */
.admin-flash-messages {
  margin-bottom: 24px;
}

/* line 342, app/assets/stylesheets/admin_liquid_glass.scss */
.admin-flash-messages .flash-notice,
.admin-flash-messages .flash-alert {
  padding: 12px 16px;
  border-radius: 12px;
  font-size: 14px;
  margin-bottom: 12px;
  backdrop-filter: blur(10px);
  animation: slideIn 0.3s ease-out;
}

/* line 352, app/assets/stylesheets/admin_liquid_glass.scss */
.admin-flash-messages .flash-notice {
  background: rgba(76, 175, 80, 0.15);
  border: 1px solid rgba(76, 175, 80, 0.3);
  color: #81c784;
}

/* line 358, app/assets/stylesheets/admin_liquid_glass.scss */
.admin-flash-messages .flash-alert {
  background: rgba(244, 67, 54, 0.15);
  border: 1px solid rgba(244, 67, 54, 0.3);
  color: #ef5350;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================
   ADMIN PANEL LAYOUT
   ============================================ */
/* line 380, app/assets/stylesheets/admin_liquid_glass.scss */
.admin-panel-wrapper {
  display: flex;
  min-height: 100vh;
  background: linear-gradient(135deg, #faf8e8 0%, #efebe2 100%);
}

/* Sidebar Navigation */
/* line 387, app/assets/stylesheets/admin_liquid_glass.scss */
.admin-sidebar {
  width: 280px;
  background: linear-gradient(180deg, #210707 0%, #5B2021 100%);
  box-shadow: 2px 0 20px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  position: fixed;
  height: 100vh;
  z-index: 100;
  overflow-y: auto;
  /* Custom Scrollbar */
}

/* line 399, app/assets/stylesheets/admin_liquid_glass.scss */
.admin-sidebar::-webkit-scrollbar {
  width: 6px;
}

/* line 403, app/assets/stylesheets/admin_liquid_glass.scss */
.admin-sidebar::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
}

/* line 407, app/assets/stylesheets/admin_liquid_glass.scss */
.admin-sidebar::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 3px;
}

/* line 411, app/assets/stylesheets/admin_liquid_glass.scss */
.admin-sidebar::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.3);
}

/* Sidebar Header */
/* line 418, app/assets/stylesheets/admin_liquid_glass.scss */
.admin-sidebar-header {
  padding: 24px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* line 422, app/assets/stylesheets/admin_liquid_glass.scss */
.admin-sidebar-header .admin-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

/* line 428, app/assets/stylesheets/admin_liquid_glass.scss */
.admin-sidebar-header .admin-logo img {
  height: 40px;
  width: auto;
  filter: drop-shadow(0 2px 8px rgba(255, 144, 0, 0.3));
}

/* line 435, app/assets/stylesheets/admin_liquid_glass.scss */
.admin-sidebar-header .admin-logo .logo-text h2 {
  color: #ffffff;
  font-size: 18px;
  font-weight: 800;
  margin: 0;
  letter-spacing: -0.02em;
}

/* line 443, app/assets/stylesheets/admin_liquid_glass.scss */
.admin-sidebar-header .admin-logo .logo-text p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
  margin: 0;
}

/* User Info */
/* line 453, app/assets/stylesheets/admin_liquid_glass.scss */
.admin-user-info {
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* line 458, app/assets/stylesheets/admin_liquid_glass.scss */
.admin-user-info .user-avatar {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, #ff9000 0%, #842e2f 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

/* line 473, app/assets/stylesheets/admin_liquid_glass.scss */
.admin-user-info .user-details h3 {
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
  margin: 0 0 4px 0;
}

/* line 480, app/assets/stylesheets/admin_liquid_glass.scss */
.admin-user-info .user-details p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
  margin: 0;
}

/* Navigation Menu */
/* line 489, app/assets/stylesheets/admin_liquid_glass.scss */
.admin-nav {
  flex: 1;
  padding: 20px 0;
}

/* line 493, app/assets/stylesheets/admin_liquid_glass.scss */
.admin-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* line 499, app/assets/stylesheets/admin_liquid_glass.scss */
.admin-nav .nav-section-title {
  color: rgba(255, 255, 255, 0.4);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 12px 20px 8px;
  margin-top: 12px;
}

/* line 508, app/assets/stylesheets/admin_liquid_glass.scss */
.admin-nav .nav-section-title:first-child {
  margin-top: 0;
}

/* line 513, app/assets/stylesheets/admin_liquid_glass.scss */
.admin-nav .nav-item {
  margin: 2px 12px;
}

/* line 516, app/assets/stylesheets/admin_liquid_glass.scss */
.admin-nav .nav-item a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

/* line 529, app/assets/stylesheets/admin_liquid_glass.scss */
.admin-nav .nav-item a i {
  width: 20px;
  font-size: 16px;
  text-align: center;
}

/* line 535, app/assets/stylesheets/admin_liquid_glass.scss */
.admin-nav .nav-item a:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  transform: translateX(4px);
}

/* line 541, app/assets/stylesheets/admin_liquid_glass.scss */
.admin-nav .nav-item a.active {
  background: linear-gradient(135deg, rgba(255, 144, 0, 0.15) 0%, rgba(255, 144, 0, 0.08) 100%);
  color: #ff9000;
  font-weight: 600;
}

/* line 548, app/assets/stylesheets/admin_liquid_glass.scss */
.admin-nav .nav-item a.active::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 60%;
  background: #ff9000;
  border-radius: 0 3px 3px 0;
}

/* Sidebar Footer */
/* line 565, app/assets/stylesheets/admin_liquid_glass.scss */
.admin-sidebar-footer {
  padding: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* line 569, app/assets/stylesheets/admin_liquid_glass.scss */
.admin-sidebar-footer .logout-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 12px;
  background: rgba(244, 67, 54, 0.1);
  border: 1px solid rgba(244, 67, 54, 0.3);
  border-radius: 10px;
  color: #ef5350;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.2s;
}

/* line 585, app/assets/stylesheets/admin_liquid_glass.scss */
.admin-sidebar-footer .logout-btn:hover {
  background: rgba(244, 67, 54, 0.2);
  border-color: rgba(244, 67, 54, 0.5);
}

/* Main Content Area */
/* line 593, app/assets/stylesheets/admin_liquid_glass.scss */
.admin-main-content {
  margin-left: 280px;
  flex: 1;
  padding: 30px;
  min-height: 100vh;
}

/* Top Bar */
/* line 601, app/assets/stylesheets/admin_liquid_glass.scss */
.admin-topbar {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  border-radius: 16px;
  padding: 16px 24px;
  margin-bottom: 30px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* line 612, app/assets/stylesheets/admin_liquid_glass.scss */
.admin-topbar .topbar-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* line 617, app/assets/stylesheets/admin_liquid_glass.scss */
.admin-topbar .topbar-left h1 {
  font-size: 24px;
  font-weight: 800;
  color: #210707;
  margin: 0;
  letter-spacing: -0.02em;
}

/* line 625, app/assets/stylesheets/admin_liquid_glass.scss */
.admin-topbar .topbar-left .breadcrumb {
  font-size: 13px;
  color: rgba(33, 7, 7, 0.6);
  margin-top: 4px;
}

/* line 630, app/assets/stylesheets/admin_liquid_glass.scss */
.admin-topbar .topbar-left .breadcrumb a {
  color: #842e2f;
  text-decoration: none;
}

/* line 634, app/assets/stylesheets/admin_liquid_glass.scss */
.admin-topbar .topbar-left .breadcrumb a:hover {
  text-decoration: underline;
}

/* line 641, app/assets/stylesheets/admin_liquid_glass.scss */
.admin-topbar .topbar-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* line 646, app/assets/stylesheets/admin_liquid_glass.scss */
.admin-topbar .topbar-right .topbar-btn {
  padding: 8px 16px;
  background: rgba(255, 144, 0, 0.1);
  border: 1px solid rgba(255, 144, 0, 0.3);
  border-radius: 8px;
  color: #ff9000;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.2s;
}

/* line 657, app/assets/stylesheets/admin_liquid_glass.scss */
.admin-topbar .topbar-right .topbar-btn:hover {
  background: rgba(255, 144, 0, 0.2);
  transform: translateY(-2px);
}

/* Content Cards */
/* line 666, app/assets/stylesheets/admin_liquid_glass.scss */
.admin-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
  margin-bottom: 24px;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

/* line 675, app/assets/stylesheets/admin_liquid_glass.scss */
.admin-card .card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

/* line 683, app/assets/stylesheets/admin_liquid_glass.scss */
.admin-card .card-header h2 {
  font-size: 18px;
  font-weight: 700;
  color: #210707;
  margin: 0;
}

/* line 690, app/assets/stylesheets/admin_liquid_glass.scss */
.admin-card .card-header .card-actions {
  display: flex;
  gap: 8px;
}

/* line 696, app/assets/stylesheets/admin_liquid_glass.scss */
.admin-card .card-body {
  color: rgba(33, 7, 7, 0.8);
  font-size: 14px;
  line-height: 1.6;
}

/* Stats Grid */
/* line 704, app/assets/stylesheets/admin_liquid_glass.scss */
.admin-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}

/* line 711, app/assets/stylesheets/admin_liquid_glass.scss */
.stat-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.8) 100%);
  backdrop-filter: blur(20px);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* line 722, app/assets/stylesheets/admin_liquid_glass.scss */
.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

/* line 727, app/assets/stylesheets/admin_liquid_glass.scss */
.stat-card .stat-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 16px;
}

/* line 737, app/assets/stylesheets/admin_liquid_glass.scss */
.stat-card .stat-icon.stat-icon-primary {
  background: linear-gradient(135deg, rgba(255, 144, 0, 0.15) 0%, rgba(255, 144, 0, 0.08) 100%);
  color: #ff9000;
}

/* line 744, app/assets/stylesheets/admin_liquid_glass.scss */
.stat-card .stat-icon.stat-icon-secondary {
  background: linear-gradient(135deg, rgba(132, 46, 47, 0.15) 0%, rgba(132, 46, 47, 0.08) 100%);
  color: #842e2f;
}

/* line 751, app/assets/stylesheets/admin_liquid_glass.scss */
.stat-card .stat-icon.stat-icon-success {
  background: linear-gradient(135deg, rgba(76, 175, 80, 0.15) 0%, rgba(76, 175, 80, 0.08) 100%);
  color: #4caf50;
}

/* line 758, app/assets/stylesheets/admin_liquid_glass.scss */
.stat-card .stat-icon.stat-icon-info {
  background: linear-gradient(135deg, rgba(33, 150, 243, 0.15) 0%, rgba(33, 150, 243, 0.08) 100%);
  color: #2196f3;
}

/* line 766, app/assets/stylesheets/admin_liquid_glass.scss */
.stat-card .stat-value {
  font-size: 32px;
  font-weight: 800;
  color: #210707;
  margin-bottom: 4px;
  letter-spacing: -0.02em;
}

/* line 774, app/assets/stylesheets/admin_liquid_glass.scss */
.stat-card .stat-label {
  font-size: 13px;
  color: rgba(33, 7, 7, 0.6);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* line 782, app/assets/stylesheets/admin_liquid_glass.scss */
.stat-card .stat-change {
  font-size: 12px;
  margin-top: 8px;
  font-weight: 600;
}

/* line 787, app/assets/stylesheets/admin_liquid_glass.scss */
.stat-card .stat-change.positive {
  color: #4caf50;
}

/* line 791, app/assets/stylesheets/admin_liquid_glass.scss */
.stat-card .stat-change.negative {
  color: #f44336;
}

/* Responsive Design */
@media (max-width: 1024px) {
  /* line 799, app/assets/stylesheets/admin_liquid_glass.scss */
  .admin-sidebar {
    transform: translateX(-280px);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }
  /* line 803, app/assets/stylesheets/admin_liquid_glass.scss */
  .admin-sidebar.active {
    transform: translateX(0);
  }
  /* line 808, app/assets/stylesheets/admin_liquid_glass.scss */
  .admin-main-content {
    margin-left: 0;
  }
  /* line 813, app/assets/stylesheets/admin_liquid_glass.scss */
  .admin-topbar .topbar-left {
    display: flex;
    align-items: center;
    gap: 0;
  }
  /* line 819, app/assets/stylesheets/admin_liquid_glass.scss */
  .admin-topbar .hamburger-btn {
    display: block !important;
    background: none;
    border: none;
    font-size: 24px;
    color: #210707;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: all 0.2s;
  }
  /* line 830, app/assets/stylesheets/admin_liquid_glass.scss */
  .admin-topbar .hamburger-btn:hover {
    background: rgba(255, 144, 0, 0.1);
    color: #ff9000;
  }
  /* line 835, app/assets/stylesheets/admin_liquid_glass.scss */
  .admin-topbar .hamburger-btn:active {
    transform: scale(0.95);
  }
}

@media (max-width: 768px) {
  /* line 843, app/assets/stylesheets/admin_liquid_glass.scss */
  .admin-login-card {
    padding: 30px 24px;
  }
  /* line 847, app/assets/stylesheets/admin_liquid_glass.scss */
  .admin-stats-grid {
    grid-template-columns: 1fr;
  }
  /* line 851, app/assets/stylesheets/admin_liquid_glass.scss */
  .admin-main-content {
    padding: 20px;
  }
  /* line 855, app/assets/stylesheets/admin_liquid_glass.scss */
  .admin-topbar {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  /* line 860, app/assets/stylesheets/admin_liquid_glass.scss */
  .admin-topbar .topbar-right {
    width: 100%;
    justify-content: flex-start;
  }
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* line 879, app/assets/stylesheets/admin_liquid_glass.scss */
.fade-in {
  animation: fadeIn 0.4s ease-out;
}

/* Loading State */
/* line 884, app/assets/stylesheets/admin_liquid_glass.scss */
.admin-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
}

/* line 890, app/assets/stylesheets/admin_liquid_glass.scss */
.admin-loading .spinner {
  width: 40px;
  height: 40px;
  border: 4px solid rgba(255, 144, 0, 0.2);
  border-top-color: #ff9000;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Empty State */
/* line 907, app/assets/stylesheets/admin_liquid_glass.scss */
.admin-empty-state {
  text-align: center;
  padding: 60px 20px;
}

/* line 911, app/assets/stylesheets/admin_liquid_glass.scss */
.admin-empty-state .empty-icon {
  font-size: 64px;
  color: rgba(33, 7, 7, 0.2);
  margin-bottom: 16px;
}

/* line 917, app/assets/stylesheets/admin_liquid_glass.scss */
.admin-empty-state h3 {
  font-size: 18px;
  font-weight: 600;
  color: #210707;
  margin-bottom: 8px;
}

/* line 924, app/assets/stylesheets/admin_liquid_glass.scss */
.admin-empty-state p {
  font-size: 14px;
  color: rgba(33, 7, 7, 0.6);
  margin-bottom: 24px;
}

/* line 930, app/assets/stylesheets/admin_liquid_glass.scss */
.admin-empty-state .empty-action {
  display: inline-block;
  padding: 12px 24px;
  background: linear-gradient(135deg, #ff9000 0%, #e6820a 100%);
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.2s;
}

/* line 940, app/assets/stylesheets/admin_liquid_glass.scss */
.admin-empty-state .empty-action:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 144, 0, 0.3);
}

/* Pagination Styles (Administrate) */
/* line 948, app/assets/stylesheets/admin_liquid_glass.scss */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 30px 0;
  list-style: none;
  padding: 0;
}

/* line 957, app/assets/stylesheets/admin_liquid_glass.scss */
.pagination a, .pagination span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 8px 12px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

/* line 971, app/assets/stylesheets/admin_liquid_glass.scss */
.pagination a {
  background: rgba(255, 255, 255, 0.9);
  color: #842e2f;
  border: 1px solid rgba(132, 46, 47, 0.2);
}

/* line 976, app/assets/stylesheets/admin_liquid_glass.scss */
.pagination a:hover {
  background: rgba(255, 144, 0, 0.1);
  border-color: #ff9000;
  color: #ff9000;
  transform: translateY(-2px);
  box-shadow: 0 2px 8px rgba(255, 144, 0, 0.2);
}

/* line 985, app/assets/stylesheets/admin_liquid_glass.scss */
.pagination .current, .pagination .active {
  background: linear-gradient(135deg, #ff9000 0%, #e6820a 100%);
  color: #ffffff;
  border: 1px solid #ff9000;
  box-shadow: 0 2px 8px rgba(255, 144, 0, 0.3);
}

/* line 992, app/assets/stylesheets/admin_liquid_glass.scss */
.pagination .disabled {
  background: rgba(0, 0, 0, 0.05);
  color: rgba(33, 7, 7, 0.3);
  border: 1px solid rgba(0, 0, 0, 0.1);
  cursor: not-allowed;
}

/* line 999, app/assets/stylesheets/admin_liquid_glass.scss */
.pagination .prev, .pagination .next {
  font-weight: 700;
}

/* line 1002, app/assets/stylesheets/admin_liquid_glass.scss */
.pagination .prev a, .pagination .next a {
  background: rgba(255, 144, 0, 0.1);
  border-color: rgba(255, 144, 0, 0.3);
  color: #ff9000;
}

/* line 1007, app/assets/stylesheets/admin_liquid_glass.scss */
.pagination .prev a:hover, .pagination .next a:hover {
  background: rgba(255, 144, 0, 0.2);
  border-color: #ff9000;
}

/* line 1015, app/assets/stylesheets/admin_liquid_glass.scss */
.pagination .first a, .pagination .last a {
  background: rgba(132, 46, 47, 0.05);
  color: #842e2f;
}

/* line 1019, app/assets/stylesheets/admin_liquid_glass.scss */
.pagination .first a:hover, .pagination .last a:hover {
  background: rgba(132, 46, 47, 0.1);
  border-color: #842e2f;
}
/* Modern 2025 Admin Panel Customizations */

/* Form Field Enhancements */
.field-unit__field input[type="text"],
.field-unit__field input[type="email"],
.field-unit__field input[type="password"],
.field-unit__field input[type="number"],
.field-unit__field input[type="url"],
.field-unit__field select,
.field-unit__field textarea {
  font-size: 16px; /* Prevent zoom on iOS */
  padding: 12px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  background-color: #ffffff;
  width: 100%;
  box-sizing: border-box;
}

.field-unit__field input:focus,
.field-unit__field select:focus,
.field-unit__field textarea:focus {
  border-color: #4CAF50;
  box-shadow: 0 0 0 4px rgba(76, 175, 80, 0.1);
  outline: none;
  background-color: #fafafa;
}

/* Floating Label Effect */
.field-unit {
  position: relative;
  margin-bottom: 1.5rem;
}

.field-unit__label {
  font-weight: 600;
  color: #333;
  margin-bottom: 0.5rem;
  display: block;
  font-size: 0.95em;
  letter-spacing: 0.01em;
}

/* Required Field Indicator */
.field-unit__label[required]::after,
.field-unit__label:has(+ .field-unit__field [required])::after {
  content: " *";
  color: #f44336;
  font-weight: bold;
}

/* Input Groups */
.field-unit__field {
  position: relative;
}

/* Success State */
.field-unit__field input:valid:not(:placeholder-shown),
.field-unit__field textarea:valid:not(:placeholder-shown) {
  border-color: #4CAF50;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cpath fill='%234CAF50' d='M13.5 2.5l-7 7-3-3-1.5 1.5 4.5 4.5 8.5-8.5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 20px;
  padding-right: 40px;
}

/* Error State */
.field-unit__field input:invalid:not(:placeholder-shown):not(:focus),
.field-unit__field textarea:invalid:not(:placeholder-shown):not(:focus) {
  border-color: #f44336;
  background-color: #fff5f5;
}

/* Textarea Enhancements */
textarea {
  min-height: 120px;
  resize: vertical;
  font-family: inherit;
  line-height: 1.6;
}

/* Select Enhancements */
select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 12px;
  padding-right: 36px;
}

/* Checkbox and Radio Enhancements */
input[type="checkbox"],
input[type="radio"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
  accent-color: #4CAF50;
}

/* Button Enhancements */
button[type="submit"],
.btn-primary {
  background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 2px 8px rgba(76, 175, 80, 0.3);
}

button[type="submit"]:hover,
.btn-primary:hover {
  background: linear-gradient(135deg, #45a049 0%, #3d8b40 100%);
  box-shadow: 0 4px 12px rgba(76, 175, 80, 0.4);
  transform: translateY(-1px);
}

button[type="submit"]:active,
.btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 2px 4px rgba(76, 175, 80, 0.3);
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

/* Loading State */
.field-unit__field input:disabled,
.field-unit__field select:disabled,
.field-unit__field textarea:disabled {
  background-color: #f5f5f5;
  cursor: not-allowed;
  opacity: 0.6;
}

/* Helper Text */
.form-text {
  font-size: 0.875em;
  color: #666;
  margin-top: 0.25rem;
  display: block;
}

/* Validation Messages */
.field-unit__errors {
  color: #f44336;
  font-size: 0.875em;
  margin-top: 0.25rem;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.field-unit__errors::before {
  content: "⚠";
}

/* Card-like Form Sections */
fieldset {
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  background: #fafafa;
}

fieldset legend {
  font-weight: 700;
  font-size: 1.1em;
  color: #333;
  padding: 0 0.5rem;
}

/* Responsive Grid */
@media (min-width: 768px) {
  .form-group-inline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
  }
}

/* Animation for Field Errors */
@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-5px); }
  75% { transform: translateX(5px); }
}

.field-unit__field input:invalid:not(:focus) {
  animation: shake 0.3s;
}

/* Dark Mode Support (if needed in future) */
@media (prefers-color-scheme: dark) {
  .field-unit__field input,
  .field-unit__field select,
  .field-unit__field textarea {
    background-color: #2a2a2a;
    border-color: #404040;
    color: #e0e0e0;
  }
  
  .field-unit__label {
    color: #e0e0e0;
  }
}

/* Accessibility Enhancements */
*:focus-visible {
  outline: 3px solid #4CAF50;
  outline-offset: 2px;
}

/* Skip to Content Link */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: #4CAF50;
  color: white;
  padding: 8px;
  text-decoration: none;
  z-index: 100;
}

.skip-link:focus {
  top: 0;
}

/* Improved Table Styles */
.table {
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 8px;
  overflow: hidden;
}

.table th {
  background: #f5f5f5;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.85em;
  letter-spacing: 0.05em;
}

.table td,
.table th {
  padding: 12px 16px;
  border-bottom: 1px solid #e0e0e0;
}

.table tbody tr:hover {
  background-color: #f9f9f9;
  transition: background-color 0.2s;
}

/* Status Badges */
.badge {
  display: inline-block;
  padding: 0.25em 0.75em;
  border-radius: 12px;
  font-size: 0.875em;
  font-weight: 600;
  text-transform: capitalize;
}

.badge-active {
  background-color: #e8f5e9;
  color: #2e7d32;
}

.badge-inactive {
  background-color: #ffebee;
  color: #c62828;
}

.badge-featured {
  background-color: #fff3e0;
  color: #ef6c00;
}

/* Loading Spinner */
.spinner {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 3px solid rgba(76, 175, 80, 0.3);
  border-radius: 50%;
  border-top-color: #4CAF50;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@tailwind base;
@tailwind components;
@tailwind utilities;
/* Shared Variables */
/* Smooth scrolling for the entire page */
/* line 4, app/assets/stylesheets/back_to_top.scss */
html {
  scroll-behavior: smooth;
}

/* Back to Top Button */
/* line 9, app/assets/stylesheets/back_to_top.scss */
.back-to-top {
  position: fixed;
  right: 28px;
  bottom: 90px;
  width: 32px;
  height: 32px;
  background-color: #842e2f;
  color: #faf8e8;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 1.2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}

/* line 30, app/assets/stylesheets/back_to_top.scss */
.back-to-top:hover {
  background-color: #ff9000;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

/* line 35, app/assets/stylesheets/back_to_top.scss */
.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

/* line 40, app/assets/stylesheets/back_to_top.scss */
.back-to-top i {
  color: #faf8e8;
}

@media (max-width: 48em) {
  /* line 9, app/assets/stylesheets/back_to_top.scss */
  .back-to-top {
    right: 10px;
    bottom: 80px;
    width: 45px;
    height: 45px;
    font-size: 1.2rem;
  }
}
/* Shared Variables */
/* Reset and Base Styles */
/* line 4, app/assets/stylesheets/coming_soon.scss */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* line 10, app/assets/stylesheets/coming_soon.scss */
* {
  margin: 0;
  padding: 0;
  line-height: 1.4;
}

/* line 16, app/assets/stylesheets/coming_soon.scss */
html,
body {
  height: 100%;
  font-size: 1.1em;
  scroll-behavior: smooth;
  font-family: "Nunito", sans-serif;
}

/* line 24, app/assets/stylesheets/coming_soon.scss */
body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* line 30, app/assets/stylesheets/coming_soon.scss */
img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

/* line 39, app/assets/stylesheets/coming_soon.scss */
input,
button,
textarea,
select {
  font: inherit;
}

/* Coming Soon Styles */
/* line 47, app/assets/stylesheets/coming_soon.scss */
.coming-soon {
  height: 100vh;
  /* fallback */
  height: 100svh;
  /* modern small viewport */
  height: 100dvh;
  /* dynamic viewport on supported browsers */
  background: linear-gradient(135deg, #FAF8E8 0%, #efebe2 100%);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 300px 20px;
  /* requested top padding */
  overflow: hidden;
  /* remove vertical scroll */
}

/* line 59, app/assets/stylesheets/coming_soon.scss */
.coming-soon__container {
  max-width: 1000px;
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

/* Minimal variant */
/* line 70, app/assets/stylesheets/coming_soon.scss */
.coming-soon__container--minimal {
  gap: 22px;
}

/* Logo */
/* line 76, app/assets/stylesheets/coming_soon.scss */
.coming-soon__logo .logo-image {
  height: 70px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(132, 46, 47, 0.15));
}

/* Badge */
/* line 85, app/assets/stylesheets/coming_soon.scss */
.coming-soon__badge {
  background: linear-gradient(135deg, #FF9000 0%, #e6820a 100%);
  color: #FFFFFF;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  display: inline-block;
  box-shadow: 0 4px 15px rgba(255, 144, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

/* line 101, app/assets/stylesheets/coming_soon.scss */
.coming-soon__badge::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

/* line 112, app/assets/stylesheets/coming_soon.scss */
.coming-soon__badge:hover::before {
  left: 100%;
}

/* Main Content */
/* line 118, app/assets/stylesheets/coming_soon.scss */
.coming-soon__content {
  max-width: 800px;
  margin: 0 auto;
}

/* Slogan */
/* line 124, app/assets/stylesheets/coming_soon.scss */
.coming-soon__slogan {
  font-size: clamp(0.9rem, 2vw, 1rem);
  font-weight: 600;
  color: rgba(91, 32, 33, 0.7);
  letter-spacing: 0.04em;
}

/* line 131, app/assets/stylesheets/coming_soon.scss */
.coming-soon__title {
  font-size: clamp(2.2rem, 7vw, 4rem);
  font-weight: 900;
  line-height: 0.95;
  margin-bottom: 24px;
  color: #842E2F;
  letter-spacing: -0.02em;
  text-rendering: optimizeLegibility;
}

/* line 140, app/assets/stylesheets/coming_soon.scss */
.coming-soon__title .title-highlight {
  color: #842E2F;
  background: linear-gradient(135deg, #842E2F 0%, #5B2021 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* line 148, app/assets/stylesheets/coming_soon.scss */
.coming-soon__title .title-accent {
  color: #FF9000;
  display: block;
  background: linear-gradient(135deg, #FF9000 0%, #e6820a 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 2px 4px rgba(255, 144, 0, 0.1);
}

/* line 158, app/assets/stylesheets/coming_soon.scss */
.coming-soon__title .title-subtitle {
  color: #5B2021;
  font-size: clamp(1.6rem, 5vw, 2.8rem);
  font-weight: 700;
  display: block;
  margin-top: 12px;
  background: linear-gradient(135deg, #5B2021 0%, #3d1517 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
}

/* line 170, app/assets/stylesheets/coming_soon.scss */
.coming-soon__title .title-subtitle::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #FF9000 0%, #e6820a 100%);
  border-radius: 2px;
  box-shadow: 0 2px 8px rgba(255, 144, 0, 0.3);
}

/* line 185, app/assets/stylesheets/coming_soon.scss */
.coming-soon__description {
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  line-height: 1.65;
  color: rgba(91, 32, 33, 0.85);
  margin-bottom: 32px;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 400;
  letter-spacing: 0.01em;
  text-rendering: optimizeLegibility;
}

/* line 198, app/assets/stylesheets/coming_soon.scss */
.coming-soon__description--tight {
  margin-bottom: 0;
  max-width: 560px;
}

/* Stats */
/* line 204, app/assets/stylesheets/coming_soon.scss */
.coming-soon__stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  width: 100%;
  max-width: 750px;
  margin: 0 auto;
}

/* line 213, app/assets/stylesheets/coming_soon.scss */
.stat-item {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  padding: 24px 20px;
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(132, 46, 47, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

/* line 224, app/assets/stylesheets/coming_soon.scss */
.stat-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #FF9000, #e6820a);
  transform: scaleX(0);
  transition: transform 0.3s ease;
  transform-origin: left;
}

/* line 237, app/assets/stylesheets/coming_soon.scss */
.stat-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(132, 46, 47, 0.12);
  background: rgba(255, 255, 255, 0.95);
}

/* line 242, app/assets/stylesheets/coming_soon.scss */
.stat-item:hover::before {
  transform: scaleX(1);
}

/* line 248, app/assets/stylesheets/coming_soon.scss */
.stat-number {
  font-size: clamp(2rem, 4.5vw, 2.8rem);
  font-weight: 900;
  background: linear-gradient(135deg, #FF9000 0%, #e6820a 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

/* line 260, app/assets/stylesheets/coming_soon.scss */
.stat-label {
  font-size: 1rem;
  font-weight: 700;
  color: #842E2F;
  margin-bottom: 4px;
  letter-spacing: 0.02em;
}

/* line 268, app/assets/stylesheets/coming_soon.scss */
.stat-sublabel {
  font-size: 0.85rem;
  color: rgba(91, 32, 33, 0.75);
  font-weight: 400;
  letter-spacing: 0.01em;
}

/* Social Media */
/* line 276, app/assets/stylesheets/coming_soon.scss */
.coming-soon__social {
  display: flex;
  gap: 15px;
  justify-content: center;
  align-items: center;
}

/* line 283, app/assets/stylesheets/coming_soon.scss */
.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, #842E2F 0%, #5B2021 100%);
  color: #FFFFFF;
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(132, 46, 47, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* line 299, app/assets/stylesheets/coming_soon.scss */
.social-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* line 311, app/assets/stylesheets/coming_soon.scss */
.social-link:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 12px 25px rgba(132, 46, 47, 0.35);
}

/* line 315, app/assets/stylesheets/coming_soon.scss */
.social-link:hover::before {
  opacity: 1;
}

/* line 321, app/assets/stylesheets/coming_soon.scss */
.social-icon {
  width: 22px;
  height: 22px;
  z-index: 1;
  position: relative;
}

/* Responsive Design */
@media (max-width: 768px) {
  /* line 330, app/assets/stylesheets/coming_soon.scss */
  .coming-soon {
    padding: 120px 16px;
    overflow: hidden;
  }
  /* line 335, app/assets/stylesheets/coming_soon.scss */
  .coming-soon__container {
    gap: 18px;
  }
  /* line 340, app/assets/stylesheets/coming_soon.scss */
  .coming-soon__logo .logo-image {
    height: 55px;
  }
  /* line 345, app/assets/stylesheets/coming_soon.scss */
  .coming-soon__badge {
    font-size: 12px;
    padding: 6px 16px;
  }
  /* line 350, app/assets/stylesheets/coming_soon.scss */
  .coming-soon__title {
    margin-bottom: 18px;
  }
  /* line 353, app/assets/stylesheets/coming_soon.scss */
  .coming-soon__title .title-subtitle {
    margin-top: 10px;
  }
  /* line 356, app/assets/stylesheets/coming_soon.scss */
  .coming-soon__title .title-subtitle::after {
    width: 50px;
    height: 2px;
    bottom: -6px;
  }
  /* line 364, app/assets/stylesheets/coming_soon.scss */
  .coming-soon__description {
    margin-bottom: 24px;
  }
  /* line 368, app/assets/stylesheets/coming_soon.scss */
  .coming-soon__stats {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  /* line 373, app/assets/stylesheets/coming_soon.scss */
  .stat-item {
    padding: 20px 16px;
  }
  /* line 377, app/assets/stylesheets/coming_soon.scss */
  .social-link {
    width: 42px;
    height: 42px;
  }
  /* line 382, app/assets/stylesheets/coming_soon.scss */
  .social-icon {
    width: 20px;
    height: 20px;
  }
}

@media (max-width: 450px) {
  /* line 389, app/assets/stylesheets/coming_soon.scss */
  .coming-soon {
    padding: 10px;
  }
  /* line 393, app/assets/stylesheets/coming_soon.scss */
  .coming-soon__container {
    gap: 12px;
  }
  /* line 397, app/assets/stylesheets/coming_soon.scss */
  .stat-item {
    padding: 12px 10px;
  }
}

/* High Performance Optimizations */
/* line 403, app/assets/stylesheets/coming_soon.scss */
.coming-soon {
  will-change: auto;
}

/* line 407, app/assets/stylesheets/coming_soon.scss */
.stat-item,
.social-link {
  will-change: transform;
}

/* Print Styles */
@media print {
  /* line 414, app/assets/stylesheets/coming_soon.scss */
  .coming-soon {
    background: white;
    color: black;
  }
  /* line 419, app/assets/stylesheets/coming_soon.scss */
  .coming-soon__social {
    display: none;
  }
}
/* Shared Variables */
/* line 3, app/assets/stylesheets/courses.scss */
.course-details-page {
  padding: 80px 0;
  font-family: "Nunito";
  min-height: 100vh;
  margin-bottom: 180px;
}

/* line 9, app/assets/stylesheets/courses.scss */
.course-details-page .glide__slide {
  margin: 0 !important;
}

/* line 13, app/assets/stylesheets/courses.scss */
.course-details-page .course-header {
  display: flex;
  gap: 40px;
  margin-bottom: 60px;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(132, 46, 47, 0.1);
}

@media screen and (max-width: 768px) {
  /* line 13, app/assets/stylesheets/courses.scss */
  .course-details-page .course-header {
    flex-direction: column;
    gap: 30px;
    padding: 20px;
  }
}

/* line 28, app/assets/stylesheets/courses.scss */
.course-details-page .course-header .course-cover {
  flex: 1;
}

/* line 31, app/assets/stylesheets/courses.scss */
.course-details-page .course-header .course-cover .cover-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

/* line 39, app/assets/stylesheets/courses.scss */
.course-details-page .course-header .course-cover .cover-image:hover {
  transform: scale(1.02);
}

/* line 45, app/assets/stylesheets/courses.scss */
.course-details-page .course-header .course-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

/* line 52, app/assets/stylesheets/courses.scss */
.course-details-page .course-header .course-info .course-type .badge {
  background: linear-gradient(45deg, #842e2f, #5B2021);
  color: #faf8e8;
  padding: 10px 20px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  display: inline-block;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

/* line 63, app/assets/stylesheets/courses.scss */
.course-details-page .course-header .course-info .course-type .badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* line 70, app/assets/stylesheets/courses.scss */
.course-details-page .course-header .course-info h1 {
  font-size: 36px;
  color: #842e2f;
  margin: 0;
  line-height: 1.2;
  font-weight: 800;
}

@media screen and (max-width: 768px) {
  /* line 70, app/assets/stylesheets/courses.scss */
  .course-details-page .course-header .course-info h1 {
    font-size: 28px;
  }
}

/* line 82, app/assets/stylesheets/courses.scss */
.course-details-page .course-header .course-info .course-meta {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  background: rgba(239, 235, 226, 0.3);
  padding: 20px;
  border-radius: 15px;
}

@media screen and (max-width: 768px) {
  /* line 82, app/assets/stylesheets/courses.scss */
  .course-details-page .course-header .course-info .course-meta {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}

/* line 95, app/assets/stylesheets/courses.scss */
.course-details-page .course-header .course-info .course-meta .meta-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* line 100, app/assets/stylesheets/courses.scss */
.course-details-page .course-header .course-info .course-meta .meta-item i {
  color: #842e2f;
  font-size: 20px;
  background: #faf8e8;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* line 113, app/assets/stylesheets/courses.scss */
.course-details-page .course-header .course-info .course-meta .meta-item span {
  color: #842e2f;
  font-size: 16px;
  font-weight: 500;
}

/* line 121, app/assets/stylesheets/courses.scss */
.course-details-page .course-header .course-info .course-price {
  margin-top: 10px;
  background: linear-gradient(45deg, #842e2f, #5B2021);
  padding: 20px;
  border-radius: 15px;
  display: inline-block;
}

/* line 128, app/assets/stylesheets/courses.scss */
.course-details-page .course-header .course-info .course-price .price {
  font-size: 36px;
  font-weight: 800;
  color: #faf8e8;
  display: block;
  text-align: center;
}

/* line 137, app/assets/stylesheets/courses.scss */
.course-details-page .course-header .course-info .btn-matricula {
  margin-top: 10px;
  align-self: flex-start;
  font-size: 18px;
  padding: 15px 30px;
}

@media screen and (max-width: 768px) {
  /* line 137, app/assets/stylesheets/courses.scss */
  .course-details-page .course-header .course-info .btn-matricula {
    align-self: stretch;
    text-align: center;
  }
}

/* line 151, app/assets/stylesheets/courses.scss */
.course-details-page .course-content {
  display: flex;
  flex-direction: column;
  gap: 60px;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(132, 46, 47, 0.1);
}

@media screen and (max-width: 768px) {
  /* line 151, app/assets/stylesheets/courses.scss */
  .course-details-page .course-content {
    padding: 20px;
    gap: 40px;
  }
}

/* line 165, app/assets/stylesheets/courses.scss */
.course-details-page .course-content h2 {
  font-size: 28px;
  color: #842e2f;
  margin-bottom: 25px;
  font-weight: 700;
  position: relative;
  padding-bottom: 15px;
}

/* line 173, app/assets/stylesheets/courses.scss */
.course-details-page .course-content h2:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 4px;
  background: #ff9000;
  border-radius: 2px;
}

/* line 186, app/assets/stylesheets/courses.scss */
.course-details-page .course-content .course-description p {
  font-size: 16px;
  line-height: 1.8;
  color: #842e2f;
  margin-bottom: 15px;
}

/* line 195, app/assets/stylesheets/courses.scss */
.course-details-page .course-content .course-teachers .teachers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 25px;
}

/* line 200, app/assets/stylesheets/courses.scss */
.course-details-page .course-content .course-teachers .teachers-grid .teacher-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: rgba(239, 235, 226, 0.3);
  border-radius: 15px;
  transition: all 0.3s ease;
}

/* line 209, app/assets/stylesheets/courses.scss */
.course-details-page .course-content .course-teachers .teachers-grid .teacher-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  background: #faf8e8;
}

/* line 215, app/assets/stylesheets/courses.scss */
.course-details-page .course-content .course-teachers .teachers-grid .teacher-card .teacher-image {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #842e2f;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
}

/* line 225, app/assets/stylesheets/courses.scss */
.course-details-page .course-content .course-teachers .teachers-grid .teacher-card .teacher-info h3 {
  font-size: 18px;
  color: #842e2f;
  margin: 0;
  font-weight: 700;
}

/* line 232, app/assets/stylesheets/courses.scss */
.course-details-page .course-content .course-teachers .teachers-grid .teacher-card .teacher-info p {
  font-size: 14px;
  color: #842e2f;
  margin: 8px 0 0;
  font-style: italic;
}

/* line 244, app/assets/stylesheets/courses.scss */
.course-details-page .course-content .course-details-section .details-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 30px;
  background: rgba(239, 235, 226, 0.3);
  padding: 30px;
  border-radius: 15px;
}

@media screen and (max-width: 768px) {
  /* line 244, app/assets/stylesheets/courses.scss */
  .course-details-page .course-content .course-details-section .details-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* line 257, app/assets/stylesheets/courses.scss */
.course-details-page .course-content .course-details-section .details-grid .detail-item {
  background: #faf8e8;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

/* line 264, app/assets/stylesheets/courses.scss */
.course-details-page .course-content .course-details-section .details-grid .detail-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* line 269, app/assets/stylesheets/courses.scss */
.course-details-page .course-content .course-details-section .details-grid .detail-item h4 {
  font-size: 14px;
  color: #ff9000;
  margin: 0 0 8px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* line 278, app/assets/stylesheets/courses.scss */
.course-details-page .course-content .course-details-section .details-grid .detail-item p {
  font-size: 16px;
  color: #842e2f;
  margin: 0;
  font-weight: 500;
}
/* Shared Variables */
/* Reset */
/*
  1. Use a more-intuitive box-sizing model.
*/
/* line 8, app/assets/stylesheets/home.scss */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/*
  2. Remove default margin
*/
/* line 16, app/assets/stylesheets/home.scss */
* {
  margin: 0;
  padding: 0;
  line-height: 1.4;
}

/*
  3. Allow percentage-based heights in the application
*/
/* line 24, app/assets/stylesheets/home.scss */
html,
body {
  height: 100%;
  font-size: 1.1em;
  scroll-behavior: smooth;
  font-family: "Nunito", sans-serif;
  scrollbar-color: #5B2021 #842e2f;
  scroll-behavior: smooth;
}

/*
  Typographic tweaks!
  4. Add accessible line-height
  5. Improve text rendering
*/
/* line 38, app/assets/stylesheets/home.scss */
body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
}

/*
  6. Improve media defaults
*/
/* line 47, app/assets/stylesheets/home.scss */
img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

/*
  7. Remove built-in form typography styles
*/
/* line 58, app/assets/stylesheets/home.scss */
input,
button,
textarea,
select {
  font: inherit;
}

/* line 65, app/assets/stylesheets/home.scss */
.input {
  display: none;
  background-color: #468847 !important;
}

/*
  8. Avoid text overflows
*/
/* line 72, app/assets/stylesheets/home.scss */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

/* line 82, app/assets/stylesheets/home.scss */
h1 {
  font-size: 56px;
}

/* line 86, app/assets/stylesheets/home.scss */
h2 {
  font-size: 38px;
}

/* line 90, app/assets/stylesheets/home.scss */
h3 {
  font-size: 24px;
}

/* line 94, app/assets/stylesheets/home.scss */
small {
  font-size: 12px;
}

@media only screen and (min-width: 1024px) {
  /* line 98, app/assets/stylesheets/home.scss */
  .container {
    max-width: 1200px;
    margin-right: auto;
    margin-left: auto;
    padding-right: 15px;
    padding-left: 15px;
  }
}

/* line 112, app/assets/stylesheets/home.scss */
.container-navbar {
  display: flex;
  align-items: center;
  max-width: 1200px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 15px;
  padding-left: 15px;
  width: 100%;
}

/* line 123, app/assets/stylesheets/home.scss */
.container-hero {
  min-height: 572px;
}

@media screen and (max-width: 768px) {
  /* line 123, app/assets/stylesheets/home.scss */
  .container-hero {
    padding: 0;
    background: linear-gradient(to bottom, #842e2f, #210707, rgba(255, 0, 0, 0), rgba(255, 0, 0, 0)), url(/assets/hero3-22ff62c16b0e6c9301ab09dd9cb768b7bd68205a349e039161a0c43c4759a799.jpg);
    background-position: right;
    background-size: cover;
    border-top: solid 2px #842e2f;
  }
}

/* line 143, app/assets/stylesheets/home.scss */
ul,
li {
  list-style: none;
}

/* line 147, app/assets/stylesheets/home.scss */
a {
  color: inherit;
  text-decoration: none;
}

/* line 151, app/assets/stylesheets/home.scss */
a:hover {
  transition: var(--transition);
}

/* Custom Styles */
/* line 157, app/assets/stylesheets/home.scss */
.btn {
  padding: 10px 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  width: max-content;
  align-items: center;
  outline: none;
  border-radius: 10px;
  z-index: 0;
  overflow: hidden;
  border: 2px solid #5B2021;
  color: #faf8e8;
  background: #842e2f;
  font-family: "Montserrat";
  font-weight: bold;
  font-size: 18px;
  box-sizing: border-box;
}

/* line 177, app/assets/stylesheets/home.scss */
.btn .fab {
  font-weight: 900;
}

/* line 182, app/assets/stylesheets/home.scss */
.btn:hover i {
  transition: all 0.4s ease-in-out;
  color: #ff9000;
}

/* line 188, app/assets/stylesheets/home.scss */
.btn p {
  padding-left: 8px;
}

/* line 193, app/assets/stylesheets/home.scss */
.btn:hover {
  color: #faf8e8;
  border: 2px solid #ff9000;
}

/* line 197, app/assets/stylesheets/home.scss */
.btn:hover:after {
  width: 100%;
}

/* line 200, app/assets/stylesheets/home.scss */
.btn:after {
  content: "";
  position: absolute;
  z-index: -1;
  transition: all 0.4s ease;
  left: 0;
  top: 0;
  width: 0;
  height: 100%;
  background: #5B2021;
}

/* line 212, app/assets/stylesheets/home.scss */
.btn-seg {
  color: #faf8e8;
  background-color: #842e2f;
}

/* line 216, app/assets/stylesheets/home.scss */
.btn-seg:hover {
  animation: jelly 0.5s;
}

/* line 221, app/assets/stylesheets/home.scss */
.btn-ter {
  color: #faf8e8;
  background-color: #ff9000;
}

/* line 226, app/assets/stylesheets/home.scss */
.btn-qua {
  color: #842e2f;
  background-color: #faf8e8;
}

/* line 231, app/assets/stylesheets/home.scss */
.btn-boxes {
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  /* line 231, app/assets/stylesheets/home.scss */
  .btn-boxes {
    padding-bottom: 40px;
  }
}

/* line 239, app/assets/stylesheets/home.scss */
.btn-matricula {
  padding: 10px 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  width: max-content;
  align-items: center;
  outline: none;
  border-radius: 10px;
  border: 2px solid #5B2021;
  color: #842e2f;
  background: #faf8e8;
  font-family: "Montserrat";
  font-weight: bold;
  font-size: 18px;
  min-width: 48px;
}

/* line 256, app/assets/stylesheets/home.scss */
.btn-matricula:hover {
  transition: all 0.4s ease-in-out;
  color: #faf8e8;
  background: #5B2021;
  border: 2px solid #842e2f;
}

/* line 264, app/assets/stylesheets/home.scss */
.top-bar {
  width: 100%;
  height: 40px;
  display: flex;
  flex-direction: row;
  align-items: center;
  background: linear-gradient(90deg, #842e2f, #56282a);
  color: #faf8e8;
  font-size: 16px;
  font-family: "Montserrat";
}

@media screen and (max-width: 768px) {
  /* line 264, app/assets/stylesheets/home.scss */
  .top-bar {
    display: none;
  }
}

/* line 280, app/assets/stylesheets/home.scss */
.bar {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

/* line 285, app/assets/stylesheets/home.scss */
.bar i {
  z-index: 1;
  padding: 0 0.5em;
  outline: none;
  border: none;
}

/* line 292, app/assets/stylesheets/home.scss */
.bar i:hover {
  cursor: pointer;
  animation: jelly 0.5s;
}

@keyframes jelly {
  0%,
100% {
    transform: scale(1, 1);
  }
  25% {
    transform: scale(0.9, 1.1);
  }
  50% {
    transform: scale(1.1, 0.9);
  }
  75% {
    transform: scale(0.95, 1.05);
  }
}

/* line 314, app/assets/stylesheets/home.scss */
.top-bar a {
  color: #ffffff;
}

/* line 318, app/assets/stylesheets/home.scss */
.header-middle {
  background-color: white;
  width: 100%;
  padding: 24px 0 24px 0;
}

@media screen and (max-width: 768px) {
  /* line 318, app/assets/stylesheets/home.scss */
  .header-middle {
    padding: 0 16px 16px 16px;
  }
}

/* line 327, app/assets/stylesheets/home.scss */
.header-middle .header-box {
  width: 100%;
  display: flex;
  justify-content: space-around;
  align-items: center;
}

@media screen and (max-width: 768px) {
  /* line 327, app/assets/stylesheets/home.scss */
  .header-middle .header-box {
    justify-content: space-between;
  }
}

/* line 338, app/assets/stylesheets/home.scss */
.header-middle .btn-box {
  display: flex;
  gap: 20px;
}

@media screen and (max-width: 768px) {
  /* line 338, app/assets/stylesheets/home.scss */
  .header-middle .btn-box {
    display: none;
  }
}

/* line 348, app/assets/stylesheets/home.scss */
.logo {
  width: 120px;
  height: 100%;
}

/* line 356, app/assets/stylesheets/home.scss */
nav {
  font-family: "Nunito";
  width: 100%;
  height: 80px;
  background: #210707;
  display: flex;
  align-items: center;
}

@media screen and (max-width: 768px) {
  /* line 356, app/assets/stylesheets/home.scss */
  nav {
    display: none;
  }
}

/* line 368, app/assets/stylesheets/home.scss */
nav ul {
  display: flex;
  align-items: center;
  gap: 40px;
}

/* line 374, app/assets/stylesheets/home.scss */
nav a {
  color: #faf8e8;
  position: relative;
  text-decoration: none;
  padding-bottom: 4px;
}

/* line 381, app/assets/stylesheets/home.scss */
nav a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 4px;
  border-radius: 4px;
  background-color: #ff9000;
  bottom: 0;
  left: 0;
  transform-origin: right;
  transform: scaleX(0);
  transition: transform 0.3s ease-in-out;
}

/* line 395, app/assets/stylesheets/home.scss */
nav a:hover::before {
  transform-origin: left;
  transform: scaleX(1);
}

/* line 401, app/assets/stylesheets/home.scss */
.nav-item {
  height: 100%;
}

/* line 405, app/assets/stylesheets/home.scss */
.boxes {
  font-family: "Nunito";
  margin-bottom: 100px;
}

/* line 409, app/assets/stylesheets/home.scss */
.boxes .content-row {
  display: flex;
  flex-direction: row;
  -webkit-box-shadow: -7px 14px 39px -11px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: -7px 14px 39px -11px rgba(0, 0, 0, 0.2);
  box-shadow: -7px 14px 39px -11px rgba(0, 0, 0, 0.2);
}

@media screen and (max-width: 768px) {
  /* line 409, app/assets/stylesheets/home.scss */
  .boxes .content-row {
    flex-direction: column;
    text-align: center;
  }
}

/* line 422, app/assets/stylesheets/home.scss */
.boxes .content-box {
  display: flex;
  flex-direction: column;
  width: 25%;
  min-height: 350px;
  border-right: rgba(33, 7, 7, 0.1) 1px solid;
}

@media screen and (max-width: 768px) {
  /* line 422, app/assets/stylesheets/home.scss */
  .boxes .content-box {
    width: 100%;
    border-right: none;
    min-height: 0;
  }
  /* line 434, app/assets/stylesheets/home.scss */
  .boxes .content-box h3 {
    padding: 0;
  }
}

/* line 440, app/assets/stylesheets/home.scss */
.boxes .text-box {
  width: 80%;
  margin: 0 auto 0 auto;
  display: flex;
  flex-direction: column;
}

@media screen and (max-width: 768px) {
  /* line 440, app/assets/stylesheets/home.scss */
  .boxes .text-box {
    width: 100%;
    align-items: center;
  }
}

/* line 451, app/assets/stylesheets/home.scss */
.boxes .text-box h3 {
  font-size: 20px;
  padding: 20px 0 20px 0;
}

/* line 456, app/assets/stylesheets/home.scss */
.boxes .text-box img {
  width: 108px;
  padding-top: 24px;
}

/* line 461, app/assets/stylesheets/home.scss */
.boxes .text-box p {
  font-size: 16px;
}

/* line 465, app/assets/stylesheets/home.scss */
.boxes .text-box .text-box-cta {
  font-size: 24px;
  padding-bottom: 40px;
  text-align: center;
}

@media screen and (max-width: 768px) {
  /* line 465, app/assets/stylesheets/home.scss */
  .boxes .text-box .text-box-cta {
    padding: 16px 8px 16px 8px;
  }
}

/* line 477, app/assets/stylesheets/home.scss */
.impulsione {
  padding-top: 40px !important;
}

/* line 481, app/assets/stylesheets/home.scss */
.content-box-pri {
  background-color: white;
  color: #210707;
}

/* line 486, app/assets/stylesheets/home.scss */
.content-box-seg {
  background-color: #842e2f;
  color: #faf8e8;
}

@media screen and (max-width: 768px) {
  /* line 486, app/assets/stylesheets/home.scss */
  .content-box-seg {
    margin-top: 40px;
  }
}

/* line 495, app/assets/stylesheets/home.scss */
.box-cta {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

/* line 501, app/assets/stylesheets/home.scss */
.box-cta input {
  display: none;
}

/* line 506, app/assets/stylesheets/home.scss */
.hero {
  height: 100%;
  background: linear-gradient(to right, #efebe2, #efebe2, rgba(255, 0, 0, 0), rgba(255, 0, 0, 0)), url(/assets/hero3-22ff62c16b0e6c9301ab09dd9cb768b7bd68205a349e039161a0c43c4759a799.jpg);
  background-size: 100%;
  background-position: 0px -382px;
}

@media screen and (max-width: 768px) {
  /* line 506, app/assets/stylesheets/home.scss */
  .hero {
    background: linear-gradient(to right, #efebe2, #efebe2, rgba(255, 0, 0, 0), rgba(255, 0, 0, 0));
  }
}

/* line 530, app/assets/stylesheets/home.scss */
.hero-wrapper-01 {
  display: flex;
}

/* line 534, app/assets/stylesheets/home.scss */
.hero-wrapper-02 {
  display: flex;
}

/* line 538, app/assets/stylesheets/home.scss */
.hero-wrapper-03 {
  display: flex;
}

/* line 542, app/assets/stylesheets/home.scss */
.box-hero {
  display: flex;
  margin: auto;
}

/* line 547, app/assets/stylesheets/home.scss */
.col-hero {
  display: flex;
  padding-top: 60px;
}

@media screen and (max-width: 768px) {
  /* line 547, app/assets/stylesheets/home.scss */
  .col-hero {
    padding-top: 30px;
    justify-content: center;
    align-items: center;
  }
}

/* line 558, app/assets/stylesheets/home.scss */
.hero-text {
  color: #210707;
}

/* line 561, app/assets/stylesheets/home.scss */
.hero-text h1 {
  width: max-content;
  font-family: "Nunito";
}

/* line 566, app/assets/stylesheets/home.scss */
.hero-text h2 {
  width: max-content;
  font-family: "Nunito";
  font-weight: 300;
}

/* line 572, app/assets/stylesheets/home.scss */
.hero-text h3 {
  width: max-content;
  font-family: "Roboto Slab";
  opacity: 0.8;
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: 500;
  padding-bottom: 10px;
}

/* line 582, app/assets/stylesheets/home.scss */
.hero-text p {
  font-family: "Nunito";
  margin-bottom: 40px;
  max-width: 50ch;
  min-height: 102px;
}

/* line 589, app/assets/stylesheets/home.scss */
.hero-text button {
  background-color: #ff9000;
  color: #faf8e8;
  border-radius: 15px;
  border: transparent;
  padding: 10px;
  font-weight: bold;
}

/* line 598, app/assets/stylesheets/home.scss */
.hero-text button:hover {
  background-color: #842e2f;
  cursor: pointer;
  transition: all 0.4s ease-in-out;
}

@media screen and (max-width: 768px) {
  /* line 558, app/assets/stylesheets/home.scss */
  .hero-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 88vw;
    color: #faf8e8;
    /* Targeting h2 within .hero-text */
  }
  /* line 612, app/assets/stylesheets/home.scss */
  .hero-text h1 {
    font-size: 32px;
  }
  /* line 617, app/assets/stylesheets/home.scss */
  .hero-text h2 {
    font-size: 32px;
  }
  /* line 621, app/assets/stylesheets/home.scss */
  .hero-text h3 {
    font-size: 20px;
  }
}

/* line 627, app/assets/stylesheets/home.scss */
.hero-img {
  background-size: cover;
  background-position: center;
  width: 880px;
  min-height: 100%;
}

@media screen and (max-width: 768px) {
  /* line 627, app/assets/stylesheets/home.scss */
  .hero-img {
    display: none;
  }
}

/* line 637, app/assets/stylesheets/home.scss */
.hero-img img {
  min-height: auto;
}

/* line 642, app/assets/stylesheets/home.scss */
.hero-btn-box {
  display: flex;
  gap: 20px;
}

@media screen and (max-width: 768px) {
  /* line 642, app/assets/stylesheets/home.scss */
  .hero-btn-box {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
}

/* line 653, app/assets/stylesheets/home.scss */
.animate__animated.animate__fadeIn {
  --animate-duration: 2s;
}

/* line 657, app/assets/stylesheets/home.scss */
.about {
  margin-bottom: 80px;
}

/* line 661, app/assets/stylesheets/home.scss */
.about-content {
  display: flex;
  font-family: "Nunito";
}

@media screen and (max-width: 768px) {
  /* line 661, app/assets/stylesheets/home.scss */
  .about-content {
    flex-direction: column;
    text-align: center;
  }
}

/* line 670, app/assets/stylesheets/home.scss */
.about-content p {
  font-weight: 300;
}

/* line 675, app/assets/stylesheets/home.scss */
.about-img-box {
  width: 60%;
}

@media screen and (max-width: 768px) {
  /* line 675, app/assets/stylesheets/home.scss */
  .about-img-box {
    width: 100%;
    padding-bottom: 40px;
  }
}

/* line 684, app/assets/stylesheets/home.scss */
.about-text-box {
  width: 50%;
  margin: 0 32px 40px 34px;
}

@media screen and (max-width: 768px) {
  /* line 684, app/assets/stylesheets/home.scss */
  .about-text-box {
    width: 100%;
    margin: 0 0 40px 0;
    padding: 0 16px;
  }
}

@media screen and (max-width: 768px) {
  /* line 695, app/assets/stylesheets/home.scss */
  .about-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

/* line 703, app/assets/stylesheets/home.scss */
.about-text-heading {
  margin-bottom: 15px;
}

/* line 706, app/assets/stylesheets/home.scss */
.about-text-heading h3 {
  font-size: 36px;
}

/* line 710, app/assets/stylesheets/home.scss */
.about-text-heading h4 {
  font-size: 18px;
  padding-bottom: 10px;
  color: #ff9000;
  font-family: "Roboto Slab";
}

@media screen and (max-width: 768px) {
  /* line 718, app/assets/stylesheets/home.scss */
  .about-text-content {
    margin-bottom: 20px;
  }
}

/* line 724, app/assets/stylesheets/home.scss */
.matricula-banner {
  height: 550px;
  margin-bottom: 80px;
}

@media screen and (max-width: 768px) {
  /* line 724, app/assets/stylesheets/home.scss */
  .matricula-banner {
    height: 800px;
  }
}

/* line 733, app/assets/stylesheets/home.scss */
.matricula-box {
  display: flex;
  background-color: #842e2f;
  justify-content: space-between;
  height: 100%;
  width: 100%;
}

@media screen and (max-width: 768px) {
  /* line 733, app/assets/stylesheets/home.scss */
  .matricula-box {
    flex-direction: column;
    width: 100%;
  }
}

/* line 746, app/assets/stylesheets/home.scss */
.matricula-img {
  background: url(/assets/formatura-46e29654c6bab0bb1761f5c47c9965c8ca560fa39e528ab74f3dad5e4f44394d.jpg);
  background-size: 1200px;
  background-position: 30% 98%;
  background-repeat: no-repeat;
  min-width: 50vw;
  height: 100%;
}

@media screen and (max-width: 768px) {
  /* line 746, app/assets/stylesheets/home.scss */
  .matricula-img {
    min-width: 100%;
    background-size: 100%;
    background-position: 0% 0%;
  }
}

/* line 761, app/assets/stylesheets/home.scss */
.matricula-info {
  font-family: "Montserrat";
  font-size: 18px;
}

/* line 765, app/assets/stylesheets/home.scss */
.matricula-info h4 {
  color: #ff9000;
}

/* line 769, app/assets/stylesheets/home.scss */
.matricula-info h3 {
  font-size: 36px;
}

/* line 773, app/assets/stylesheets/home.scss */
.matricula-info h3,
.matricula-info p {
  color: #faf8e8;
}

/* line 778, app/assets/stylesheets/home.scss */
.matricula-info p {
  font-family: "Roboto Slab" !important;
  font-size: 18px;
}

/* line 784, app/assets/stylesheets/home.scss */
.matricula-info-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  gap: 15px;
  padding: 100px 80px;
}

@media screen and (max-width: 768px) {
  /* line 784, app/assets/stylesheets/home.scss */
  .matricula-info-content {
    width: 100%;
    padding: 40px 30px;
    align-items: center;
    text-align: center;
  }
  /* line 798, app/assets/stylesheets/home.scss */
  .matricula-info-content p {
    width: 100% !important;
    padding-bottom: 20px;
  }
  /* line 803, app/assets/stylesheets/home.scss */
  .matricula-info-content h4, .matricula-info-content h3 {
    padding-bottom: 20px;
  }
  /* line 807, app/assets/stylesheets/home.scss */
  .matricula-info-content h3 {
    font-size: 30px;
  }
}

/* line 812, app/assets/stylesheets/home.scss */
.matricula-info-content p {
  width: 74%;
}

/* line 817, app/assets/stylesheets/home.scss */
.courses {
  height: 100%;
  margin-bottom: 100px;
  background: linear-gradient(135deg, #210707 0%, #5B2021 50%, #842e2f 100%);
  background-size: cover;
  background-repeat: no-repeat;
  font-family: "Nunito";
  padding: 60px 0;
}

@media screen and (max-width: 768px) {
  /* line 817, app/assets/stylesheets/home.scss */
  .courses {
    padding: 40px 15px;
  }
}

/* line 830, app/assets/stylesheets/home.scss */
.courses .title {
  text-align: center;
  margin-bottom: 40px;
}

/* line 834, app/assets/stylesheets/home.scss */
.courses .title h2 {
  font-weight: 800;
  color: #faf8e8;
}

/* line 839, app/assets/stylesheets/home.scss */
.courses .title h3 {
  color: #ff9000;
  font-size: 24px;
  padding-bottom: 8px;
}

/* line 846, app/assets/stylesheets/home.scss */
.courses .glide {
  width: 100%;
  height: 100%;
  padding: 20px;
  position: relative;
}

/* line 852, app/assets/stylesheets/home.scss */
.courses .glide__track {
  overflow: hidden;
}

/* line 856, app/assets/stylesheets/home.scss */
.courses .glide__slides {
  display: flex;
}

/* line 860, app/assets/stylesheets/home.scss */
.courses .glide__slide {
  text-align: center;
  height: auto;
  background: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* line 870, app/assets/stylesheets/home.scss */
.courses .glide__arrows .glide__arrow {
  background-color: #faf8e8;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid #842e2f;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 2;
}

/* line 886, app/assets/stylesheets/home.scss */
.courses .glide__arrows .glide__arrow--left {
  left: -50px;
}

/* line 890, app/assets/stylesheets/home.scss */
.courses .glide__arrows .glide__arrow--right {
  right: -50px;
}

/* line 894, app/assets/stylesheets/home.scss */
.courses .glide__arrows .glide__arrow i {
  font-size: 16px;
  color: #842e2f;
  transition: all 0.3s ease;
}

/* line 900, app/assets/stylesheets/home.scss */
.courses .glide__arrows .glide__arrow:hover {
  transform: translateY(-50%) scale(1.2);
  background-color: #842e2f;
}

/* line 903, app/assets/stylesheets/home.scss */
.courses .glide__arrows .glide__arrow:hover i {
  color: #faf8e8;
}

@media screen and (max-width: 768px) {
  /* line 870, app/assets/stylesheets/home.scss */
  .courses .glide__arrows .glide__arrow {
    border: 2px solid #842e2f;
  }
  /* line 911, app/assets/stylesheets/home.scss */
  .courses .glide__arrows .glide__arrow--left {
    left: 10px;
  }
  /* line 915, app/assets/stylesheets/home.scss */
  .courses .glide__arrows .glide__arrow--right {
    right: 10px;
  }
  /* line 919, app/assets/stylesheets/home.scss */
  .courses .glide__arrows .glide__arrow i {
    font-size: 20px;
    color: #842e2f;
  }
  /* line 925, app/assets/stylesheets/home.scss */
  .courses .glide__arrows .glide__arrow:hover i {
    color: #faf8e8;
  }
}

/* line 933, app/assets/stylesheets/home.scss */
.courses .glide__bullets {
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}

/* line 941, app/assets/stylesheets/home.scss */
.courses .glide__bullets .glide__bullet {
  width: 10px;
  height: 10px;
  background-color: #faf8e8;
  border: 2px solid #842e2f;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

/* line 951, app/assets/stylesheets/home.scss */
.courses .glide__bullets .glide__bullet--active {
  background-color: #842e2f;
}

/* line 955, app/assets/stylesheets/home.scss */
.courses .glide__bullets .glide__bullet:hover {
  background-color: #842e2f;
}

/* line 963, app/assets/stylesheets/home.scss */
.course-box {
  width: 100%;
  height: 500px;
  -webkit-box-shadow: -7px 14px 39px -11px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: -7px 14px 39px -11px rgba(0, 0, 0, 0.2);
  box-shadow: -7px 14px 39px -11px rgba(0, 0, 0, 0.2);
  border: 1px solid #faf8e8;
  border-radius: 12px;
  margin: 0 10px;
  background-color: white;
  display: flex;
  flex-direction: column;
}

@media screen and (max-width: 768px) {
  /* line 963, app/assets/stylesheets/home.scss */
  .course-box {
    width: 100%;
    margin: 0;
    height: auto;
  }
}

/* line 982, app/assets/stylesheets/home.scss */
.course-box:hover {
  transform: scale(1.02);
  transition: all 0.4s ease-in-out;
  border-width: 1px 1px 5px 1px;
  border-style: solid;
  border-color: #ff9000;
  border-radius: 8px;
}

/* line 991, app/assets/stylesheets/home.scss */
.course-box .course-img {
  height: 200px;
}

/* line 994, app/assets/stylesheets/home.scss */
.course-box .course-img img {
  border-radius: 12px 12px 0 0;
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* line 1004, app/assets/stylesheets/home.scss */
.course-box .course-text {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-family: "Roboto Slab";
  text-align: center;
  flex: 1;
  padding: 20px;
}

/* line 1013, app/assets/stylesheets/home.scss */
.course-box .course-text-top {
  margin-bottom: 20px;
}

/* line 1017, app/assets/stylesheets/home.scss */
.course-box .course-text h2 {
  font-size: 20px;
  margin-bottom: 10px;
  font-weight: 700;
}

/* line 1023, app/assets/stylesheets/home.scss */
.course-box .course-text h3 {
  font-weight: 400;
  font-size: 14px;
  margin-bottom: 20px;
  color: #842e2f;
}

/* line 1030, app/assets/stylesheets/home.scss */
.course-box .course-text p {
  font-family: "Roboto Slab";
  padding: 0;
  margin: 0;
}

/* line 1036, app/assets/stylesheets/home.scss */
.course-box .course-text i {
  color: #ff9000;
  min-width: 20px;
}

/* line 1041, app/assets/stylesheets/home.scss */
.course-box .course-text .course-details {
  font-size: 14px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: auto;
}

/* line 1048, app/assets/stylesheets/home.scss */
.course-box .course-text .course-details > div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

/* line 1057, app/assets/stylesheets/home.scss */
.course-box .course-cta {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  border-top: 1px solid rgba(132, 46, 47, 0.1);
}

/* line 1066, app/assets/stylesheets/home.scss */
.features {
  display: flex;
  margin-bottom: 100px;
}

/* line 1070, app/assets/stylesheets/home.scss */
.features h2 {
  padding-bottom: 60px;
  text-align: center;
  color: #210707;
  font-family: "Nunito";
  font-weight: 800;
}

/* line 1078, app/assets/stylesheets/home.scss */
.features .box-features {
  display: flex;
  justify-content: space-around;
  flex-direction: row;
  text-align: center;
  font-family: "Nunito";
}

@media screen and (max-width: 768px) {
  /* line 1078, app/assets/stylesheets/home.scss */
  .features .box-features {
    flex-direction: column;
    align-items: center;
  }
}

/* line 1092, app/assets/stylesheets/home.scss */
.features .col-features {
  text-align: center;
  width: 300px;
  border-radius: 20px;
}

/* line 1098, app/assets/stylesheets/home.scss */
.features img {
  width: 108px;
  margin: 0 auto 12px auto;
}

/* line 1103, app/assets/stylesheets/home.scss */
.features p {
  font-size: 18px;
  margin-bottom: 40px;
  color: #210707;
  font-family: "Nunito";
}

/* line 1111, app/assets/stylesheets/home.scss */
.hidden {
  display: none;
}

/*flash*/
/* line 1117, app/assets/stylesheets/home.scss */
.alert-error {
  background-color: #f2dede;
  border-color: #eed3d7;
  color: #b94a48;
  text-align: left;
}

/* line 1124, app/assets/stylesheets/home.scss */
.alert-alert {
  background-color: #f2dede;
  border-color: #eed3d7;
  color: #b94a48;
  text-align: left;
}

/* line 1131, app/assets/stylesheets/home.scss */
.alert-success {
  background-color: #dff0d8;
  border-color: #d6e9c6;
  color: #468847;
  text-align: left;
}

/* line 1138, app/assets/stylesheets/home.scss */
.alert-notice {
  background-color: #dff0d8;
  border-color: #d6e9c6;
  color: #468847;
  text-align: left;
}

/* line 1145, app/assets/stylesheets/home.scss */
.cta {
  display: flex;
  align-items: center;
  width: 100%;
  height: 150px;
  margin-bottom: 100px;
  background-color: #56282a;
  background-image: linear-gradient(0deg, #210707 0%, #56282a 100%);
}

/* line 1155, app/assets/stylesheets/home.scss */
.cta-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #faf8e8;
}

/* line 1161, app/assets/stylesheets/home.scss */
.cta-box input {
  outline: none;
}

/* line 1165, app/assets/stylesheets/home.scss */
.cta-box input[type="submit"] {
  margin-left: 10px;
}

/* line 1169, app/assets/stylesheets/home.scss */
.cta-box h2 {
  max-width: 600px;
}

/* line 1173, app/assets/stylesheets/home.scss */
.cta-box p {
  font-family: "Roboto Slab";
}

/* line 1177, app/assets/stylesheets/home.scss */
.cta-box form {
  display: flex;
}

/* line 1182, app/assets/stylesheets/home.scss */
.blog {
  font-family: "Nunito";
}

@media screen and (max-width: 768px) {
  /* line 1182, app/assets/stylesheets/home.scss */
  .blog {
    height: 100%;
    text-align: center;
    margin-bottom: 40px;
  }
}

/* line 1192, app/assets/stylesheets/home.scss */
.blog .box .title {
  text-align: center;
  padding-bottom: 60px;
}

/* line 1196, app/assets/stylesheets/home.scss */
.blog .box .title h2 {
  font-weight: 800;
}

/* line 1200, app/assets/stylesheets/home.scss */
.blog .box .title h3 {
  color: #ff9000;
  font-size: 24px;
  padding-bottom: 8px;
}

/* line 1206, app/assets/stylesheets/home.scss */
.blog .box .content {
  display: flex;
  gap: 20px;
}

@media screen and (max-width: 768px) {
  /* line 1206, app/assets/stylesheets/home.scss */
  .blog .box .content {
    flex-direction: column;
  }
}

/* line 1214, app/assets/stylesheets/home.scss */
.blog .box .content .card {
  height: 558px;
  width: 33%;
  -webkit-box-shadow: -7px 14px 39px -11px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: -7px 14px 39px -11px rgba(0, 0, 0, 0.2);
  box-shadow: -7px 14px 39px -11px rgba(0, 0, 0, 0.2);
}

@media screen and (max-width: 768px) {
  /* line 1214, app/assets/stylesheets/home.scss */
  .blog .box .content .card {
    width: 100%;
    height: 100%;
  }
}

/* line 1226, app/assets/stylesheets/home.scss */
.blog .box .content .card p {
  font-size: 16px;
  padding: 16px;
}

/* line 1232, app/assets/stylesheets/home.scss */
.blog .box .content .card .banner img {
  height: 200px;
  min-width: 100%;
}

/* line 1238, app/assets/stylesheets/home.scss */
.blog .box .content .card .text {
  padding: 24px;
}

/* line 1244, app/assets/stylesheets/home.scss */
.blog .box .content .card .cta-blog a {
  background-color: #842e2f;
  color: #faf8e8 !important;
  padding: 10px 16px;
  border-radius: 10px;
}

/* line 1252, app/assets/stylesheets/home.scss */
.blog .box .content .card .cta-blog a {
  color: #842e2f;
  text-decoration: none;
  font-weight: bold;
}

/* line 1257, app/assets/stylesheets/home.scss */
.blog .box .content .card .cta-blog a:hover {
  color: #ff9000;
  transition: all 0.4s ease-in-out;
}

/* line 1268, app/assets/stylesheets/home.scss */
.box-location {
  padding-top: 128px;
}

@media screen and (max-width: 768px) {
  /* line 1268, app/assets/stylesheets/home.scss */
  .box-location {
    padding-top: 40px;
  }
}

/* line 1277, app/assets/stylesheets/home.scss */
.location {
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  height: 100%;
  margin-bottom: 100px;
  background-size: cover;
  background-repeat: no-repeat;
  font-family: "Nunito";
}

/* line 1290, app/assets/stylesheets/home.scss */
.location .content iframe {
  height: 500px;
  width: 100%;
  margin: auto;
}

@media screen and (max-width: 768px) {
  /* line 1297, app/assets/stylesheets/home.scss */
  .location .content iframe {
    height: 100%;
    width: 100vw;
  }
}

/* line 1304, app/assets/stylesheets/home.scss */
.location .title {
  text-align: center;
}

/* line 1307, app/assets/stylesheets/home.scss */
.location .title h2 {
  font-weight: 800;
}

/* line 1311, app/assets/stylesheets/home.scss */
.location .title h3 {
  color: #ff9000;
  font-size: 24px;
  padding-bottom: 8px;
}

/* line 1318, app/assets/stylesheets/home.scss */
.location h2 {
  text-align: center;
  font-family: "Nunito";
  padding-bottom: 60px;
}

/* line 1324, app/assets/stylesheets/home.scss */
.location .row {
  display: flex;
  justify-content: space-around;
  text-align: center;
}

@media screen and (max-width: 768px) {
  /* line 1324, app/assets/stylesheets/home.scss */
  .location .row {
    flex-direction: column;
  }
  /* line 1332, app/assets/stylesheets/home.scss */
  .location .row .box-info {
    width: initial !important;
  }
}

/* line 1337, app/assets/stylesheets/home.scss */
.location .row .box-info {
  margin-top: 60px;
  width: 300px;
}

/* line 1341, app/assets/stylesheets/home.scss */
.location .row .box-info .text {
  display: flex;
  flex-direction: column;
}

/* line 1345, app/assets/stylesheets/home.scss */
.location .row .box-info .text h3 {
  padding-bottom: 20px;
}

/* line 1349, app/assets/stylesheets/home.scss */
.location .row .box-info .text a:hover {
  color: #842e2f;
  transition: all 0.4s ease-in-out;
}

/* line 1358, app/assets/stylesheets/home.scss */
.footer {
  height: 400px;
  background-color: #efebe2;
  font-size: 16px;
  font-family: "Nunito";
  display: flex;
  align-content: space-around;
  flex-wrap: nowrap;
  flex-direction: column;
  justify-content: flex-end;
}

@media screen and (max-width: 768px) {
  /* line 1358, app/assets/stylesheets/home.scss */
  .footer {
    height: 100%;
    text-align: center;
  }
  /* line 1374, app/assets/stylesheets/home.scss */
  .footer h4 {
    padding-top: 40px;
  }
}

@media screen and (max-width: 1024px) {
  /* line 1358, app/assets/stylesheets/home.scss */
  .footer {
    height: 100%;
    text-align: center;
  }
  /* line 1384, app/assets/stylesheets/home.scss */
  .footer h4 {
    padding-top: 40px;
  }
}

/* line 1389, app/assets/stylesheets/home.scss */
.footer .wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  margin-bottom: 80px;
}

/* line 1397, app/assets/stylesheets/home.scss */
.footer .copyright {
  background-color: #210707;
  padding-bottom: 5px;
  color: #faf8e8;
  height: 60px;
}

@media screen and (max-width: 768px) {
  /* line 1397, app/assets/stylesheets/home.scss */
  .footer .copyright {
    height: 100%;
  }
  /* line 1406, app/assets/stylesheets/home.scss */
  .footer .copyright p {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}

/* line 1413, app/assets/stylesheets/home.scss */
.footer .copyright p {
  text-align: center;
  padding-top: 20px;
}

/* line 1419, app/assets/stylesheets/home.scss */
.footer .row {
  display: flex;
  justify-content: space-between;
}

@media screen and (max-width: 768px) {
  /* line 1419, app/assets/stylesheets/home.scss */
  .footer .row {
    flex-direction: column;
  }
}

/* line 1427, app/assets/stylesheets/home.scss */
.footer .row a:hover {
  color: #842e2f;
  transition: all 0.4s ease-in-out;
}

/* line 1432, app/assets/stylesheets/home.scss */
.footer .row h4 {
  padding-bottom: 20px;
  font-weight: 800;
  font-size: 20px;
  color: #842e2f;
}

/* line 1439, app/assets/stylesheets/home.scss */
.footer .row li {
  padding-bottom: 8px;
}

/* line 1443, app/assets/stylesheets/home.scss */
.footer .row .logo-box {
  width: 33%;
}

@media screen and (max-width: 768px) {
  /* line 1443, app/assets/stylesheets/home.scss */
  .footer .row .logo-box {
    width: 100%;
    padding: 48px 16px 0 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

/* line 1454, app/assets/stylesheets/home.scss */
.footer .row .logo-box .logo {
  height: max-content;
  padding-bottom: 20px;
}

/* line 1459, app/assets/stylesheets/home.scss */
.footer .row .logo-box .logo-text {
  max-width: 400px;
}

/* line 1464, app/assets/stylesheets/home.scss */
.footer .row .links-box {
  width: 22%;
}

@media screen and (max-width: 768px) {
  /* line 1464, app/assets/stylesheets/home.scss */
  .footer .row .links-box {
    width: 100%;
  }
}

/* line 1472, app/assets/stylesheets/home.scss */
.footer .row .services-box {
  width: 22%;
}

@media screen and (max-width: 768px) {
  /* line 1472, app/assets/stylesheets/home.scss */
  .footer .row .services-box {
    width: 100%;
  }
}

/* line 1480, app/assets/stylesheets/home.scss */
.footer .row .contacts-box {
  width: 22%;
}

@media screen and (max-width: 768px) {
  /* line 1480, app/assets/stylesheets/home.scss */
  .footer .row .contacts-box {
    width: 100%;
  }
}

/* line 1488, app/assets/stylesheets/home.scss */
.footer .row .contacts-content {
  display: flex;
  flex-direction: column;
}

@media screen and (max-width: 768px) {
  /* line 1488, app/assets/stylesheets/home.scss */
  .footer .row .contacts-content {
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  /* line 1497, app/assets/stylesheets/home.scss */
  .footer .row .contacts-content span {
    flex-direction: column;
  }
}

/* line 1502, app/assets/stylesheets/home.scss */
.footer .row .contacts-content span {
  display: flex;
  gap: 15px;
  width: 100%;
  padding-bottom: 20px;
}

/* line 1508, app/assets/stylesheets/home.scss */
.footer .row .contacts-content span i {
  align-self: center;
  background-color: #842e2f;
  color: #faf8e8;
  min-width: 40px;
  min-height: 40px;
  border-radius: 50%;
  font-size: 24px;
  line-height: 41px;
  text-align: center;
}

/* line 1520, app/assets/stylesheets/home.scss */
.footer .row .contacts-content span div {
  display: flex;
  flex-direction: column;
}

/* Hamburger Menu for Mobile */
/* line 1530, app/assets/stylesheets/home.scss */
.hamburger {
  display: none;
  position: absolute;
  top: 20px;
  right: 20px;
  cursor: pointer;
  z-index: 10;
}

/* line 1538, app/assets/stylesheets/home.scss */
.hamburger .bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px 0;
  background-color: #210707;
  transition: all 0.3s ease-in-out;
}

/* line 1547, app/assets/stylesheets/home.scss */
.hamburger.active .bar:nth-child(2) {
  opacity: 0;
}

/* line 1551, app/assets/stylesheets/home.scss */
.hamburger.active .bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

/* line 1555, app/assets/stylesheets/home.scss */
.hamburger.active .bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Show the hamburger menu on mobile */
@media screen and (max-width: 768px) {
  /* line 1562, app/assets/stylesheets/home.scss */
  .hamburger {
    display: block;
  }
  /* line 1566, app/assets/stylesheets/home.scss */
  nav ul {
    display: none;
    flex-direction: column;
    align-items: center;
    position: absolute;
    top: 80px;
    right: 0;
    width: 100%;
    background-color: #210707;
    padding: 20px;
    transition: all 0.3s ease-in-out;
    z-index: 9;
  }
  /* line 1580, app/assets/stylesheets/home.scss */
  nav ul.show {
    display: flex;
  }
  /* line 1584, app/assets/stylesheets/home.scss */
  nav ul li {
    margin: 10px 0;
  }
}

/* Logo adjustment */
@media screen and (max-width: 768px) {
  /* line 1591, app/assets/stylesheets/home.scss */
  .logo {
    padding-top: 20px;
    width: 104px;
  }
}

/* Sidebar styles */
/* line 1598, app/assets/stylesheets/home.scss */
.sidebar {
  height: 100%;
  width: 300px;
  /* Set the width of the sidebar */
  position: fixed;
  top: 0;
  right: -300px;
  /* Start off-screen */
  background: linear-gradient(180deg, #faf8e8 0%, #ffffff 100%);
  box-shadow: -2px 0 5px rgba(0, 0, 0, 0.2);
  overflow-x: hidden;
  transition: right 0.3s ease;
  /* Sliding animation */
  z-index: 1000;
  /* Ensure it's on top */
}

/* line 1612, app/assets/stylesheets/home.scss */
.sidebar.open {
  right: 0;
  /* Slide the sidebar into view */
}

/* line 1616, app/assets/stylesheets/home.scss */
.sidebar .close-btn {
  position: absolute;
  top: 20px;
  left: 20px;
  background-color: transparent;
  color: #842e2f;
  border: none;
  font-size: 24px;
  cursor: pointer;
}

/* Sidebar menu items */
/* line 1628, app/assets/stylesheets/home.scss */
.sidebar ul {
  list-style-type: none;
  padding: 50px 20px;
  /* Add padding for better layout */
}

/* line 1633, app/assets/stylesheets/home.scss */
.sidebar ul li {
  padding: 15px 0;
  color: #5B2021;
  border-bottom: 1px solid #210707;
}

/* Style for the hamburger menu */
/* line 1640, app/assets/stylesheets/home.scss */
.hamburger-menu {
  display: none;
  /* Hide by default */
  cursor: pointer;
}

/* line 1645, app/assets/stylesheets/home.scss */
.hamburger-menu .bar {
  width: 25px;
  height: 3px;
  background-color: #842e2f;
  margin: 4px 0;
}

/* Responsive styling */
@media (max-width: 768px) {
  /* line 1654, app/assets/stylesheets/home.scss */
  .hamburger-menu {
    display: block;
    /* Show on smaller screens */
  }
}

@media (min-width: 769px) {
  /* line 1660, app/assets/stylesheets/home.scss */
  .hamburger-menu {
    display: none;
    /* Hide hamburger menu on larger screens */
  }
}

@media screen and (max-width: 768px) {
  /* line 1665, app/assets/stylesheets/home.scss */
  .fa-chevron-right, .fa-chevron-left {
    color: #faf8e8 !important;
  }
}
/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
.owl-carousel,.owl-carousel .owl-item{-webkit-tap-highlight-color:transparent;position:relative}.arrows{padding: 60px 0 20px 0;display:flex;justify-content:center;gap:60px;font-size:30px;}.owl-carousel{display:none;width:100%;z-index:1}.owl-carousel .owl-stage{position:relative;-ms-touch-action:pan-Y;touch-action:manipulation;-moz-backface-visibility:hidden}.owl-carousel .owl-stage:after{content:".";display:block;clear:both;visibility:hidden;line-height:0;height:0}.owl-carousel .owl-stage-outer{position:relative;overflow:hidden;-webkit-transform:translate3d(0,0,0)}.owl-carousel .owl-item,.owl-carousel .owl-wrapper{-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;-ms-backface-visibility:hidden;-webkit-transform:translate3d(0,0,0);-moz-transform:translate3d(0,0,0);-ms-transform:translate3d(0,0,0)}.owl-carousel .owl-item{min-height:1px;float:left;-webkit-backface-visibility:hidden;-webkit-touch-callout:none}.owl-carousel .owl-item img{display:block;width:100%}.owl-carousel .owl-dots.disabled,.owl-carousel .owl-nav.disabled{display:none}.no-js .owl-carousel,.owl-carousel.owl-loaded{display:block}.owl-carousel .owl-dot,.owl-carousel .owl-nav .owl-next,.owl-carousel .owl-nav .owl-prev{cursor:pointer;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.owl-carousel .owl-nav button.owl-next,.owl-carousel .owl-nav button.owl-prev,.owl-carousel button.owl-dot{background:0 0;color:inherit;border:none;padding:0!important;font:inherit}.owl-carousel.owl-loading{opacity:0;display:block}.owl-carousel.owl-hidden{opacity:0}.owl-carousel.owl-refresh .owl-item{visibility:hidden}.owl-carousel.owl-drag .owl-item{-ms-touch-action:pan-y;touch-action:pan-y;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.owl-carousel.owl-grab{cursor:move;cursor:grab}.owl-carousel.owl-rtl{direction:rtl}.owl-carousel.owl-rtl .owl-item{float:right}.owl-carousel .animated{animation-duration:1s;animation-fill-mode:both}.owl-carousel .owl-animated-in{z-index:0}.owl-carousel .owl-animated-out{z-index:1}.owl-carousel .fadeOut{animation-name:fadeOut}@keyframes fadeOut{0%{opacity:1}100%{opacity:0}}.owl-height{transition:height .5s ease-in-out}.owl-carousel .owl-item .owl-lazy{opacity:0;transition:opacity .4s ease}.owl-carousel .owl-item .owl-lazy:not([src]),.owl-carousel .owl-item .owl-lazy[src^=""]{max-height:0}.owl-carousel .owl-item img.owl-lazy{transform-style:preserve-3d}.owl-carousel .owl-video-wrapper{position:relative;height:100%;background:#000}.owl-carousel .owl-video-play-icon{position:absolute;height:80px;width:80px;left:50%;top:50%;margin-left:-40px;margin-top:-40px;background:url(/owl.video.play.png) no-repeat;cursor:pointer;z-index:1;-webkit-backface-visibility:hidden;transition:transform .1s ease}.owl-carousel .owl-video-play-icon:hover{-ms-transform:scale(1.3,1.3);transform:scale(1.3,1.3)}.owl-carousel .owl-video-playing .owl-video-play-icon,.owl-carousel .owl-video-playing .owl-video-tn{display:none}.owl-carousel .owl-video-tn{opacity:0;height:100%;background-position:center center;background-repeat:no-repeat;background-size:contain;transition:opacity .4s ease}.owl-carousel .owl-video-frame{position:relative;z-index:1;height:100%;width:100%}
/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
.owl-theme .owl-dots,.owl-theme .owl-nav{text-align:center;-webkit-tap-highlight-color:transparent}.owl-theme .owl-nav{margin-top:10px}.owl-theme .owl-nav [class*=owl-]{color:#FFF;font-size:14px;margin:5px;padding:4px 7px;background:#D6D6D6;display:inline-block;cursor:pointer;border-radius:3px}.owl-theme .owl-nav [class*=owl-]:hover{background:#869791;color:#FFF;text-decoration:none}.owl-theme .owl-nav .disabled{opacity:.5;cursor:default}.owl-theme .owl-nav.disabled+.owl-dots{margin-top:10px}.owl-theme .owl-dots .owl-dot{display:inline-block;zoom:1}.owl-theme .owl-dots .owl-dot span{width:10px;height:10px;margin:5px 7px;background:#D6D6D6;display:block;-webkit-backface-visibility:visible;transition:opacity .2s ease;border-radius:30px}.owl-theme .owl-dots .owl-dot.active span,.owl-theme .owl-dots .owl-dot:hover span{background:#869791}
/* Shared Variables */
/* Teachers styles */
/* line 5, app/assets/stylesheets/teachers.scss */
.teachers {
  font-family: "Nunito";
  background: url(/assets/layered_waves-f59b93ecdf3331448dedf1bd22fb5630e21f262e353431848125a990781f4d09.svg);
  background-size: cover;
  background-repeat: no-repeat;
  height: 100vh;
}

@media screen and (max-width: 768px) {
  /* line 5, app/assets/stylesheets/teachers.scss */
  .teachers {
    height: 100%;
  }
}

/* line 16, app/assets/stylesheets/teachers.scss */
.teachers .bio-popover {
  position: absolute;
  background: white;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  max-width: 300px;
  z-index: 1000;
  right: -320px;
  top: 50%;
  transform: translateY(-50%);
  border: 1px solid #842e2f;
}

/* line 29, app/assets/stylesheets/teachers.scss */
.teachers .bio-popover p {
  font-size: 14px;
  line-height: 1.5;
  color: #842e2f;
  margin: 0;
}

/* line 37, app/assets/stylesheets/teachers.scss */
.teachers .box {
  align-items: center;
  display: flex;
  flex-direction: column;
  width: 100%;
}

/* line 43, app/assets/stylesheets/teachers.scss */
.teachers .box .glide {
  width: 100%;
  height: 100%;
  padding: 20px;
  position: relative;
}

/* line 49, app/assets/stylesheets/teachers.scss */
.teachers .box .glide__track {
  overflow: hidden;
}

/* line 53, app/assets/stylesheets/teachers.scss */
.teachers .box .glide__slides {
  display: flex;
}

/* line 57, app/assets/stylesheets/teachers.scss */
.teachers .box .glide__slide {
  text-align: center;
  height: auto;
  background: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* line 67, app/assets/stylesheets/teachers.scss */
.teachers .box .glide__arrows .glide__arrow {
  background-color: #faf8e8;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid #842e2f;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 2;
}

/* line 83, app/assets/stylesheets/teachers.scss */
.teachers .box .glide__arrows .glide__arrow--left {
  left: -50px;
}

/* line 87, app/assets/stylesheets/teachers.scss */
.teachers .box .glide__arrows .glide__arrow--right {
  right: -50px;
}

/* line 91, app/assets/stylesheets/teachers.scss */
.teachers .box .glide__arrows .glide__arrow i {
  font-size: 16px;
  color: #842e2f;
  transition: all 0.3s ease;
}

/* line 97, app/assets/stylesheets/teachers.scss */
.teachers .box .glide__arrows .glide__arrow:hover {
  transform: translateY(-50%) scale(1.2);
  background-color: #842e2f;
}

/* line 100, app/assets/stylesheets/teachers.scss */
.teachers .box .glide__arrows .glide__arrow:hover i {
  color: #faf8e8;
}

@media screen and (max-width: 768px) {
  /* line 67, app/assets/stylesheets/teachers.scss */
  .teachers .box .glide__arrows .glide__arrow {
    border: 2px solid #842e2f;
  }
  /* line 108, app/assets/stylesheets/teachers.scss */
  .teachers .box .glide__arrows .glide__arrow--left {
    left: 10px;
  }
  /* line 112, app/assets/stylesheets/teachers.scss */
  .teachers .box .glide__arrows .glide__arrow--right {
    right: 10px;
  }
  /* line 116, app/assets/stylesheets/teachers.scss */
  .teachers .box .glide__arrows .glide__arrow i {
    font-size: 20px;
    color: #842e2f;
  }
  /* line 122, app/assets/stylesheets/teachers.scss */
  .teachers .box .glide__arrows .glide__arrow:hover i {
    color: #faf8e8;
  }
}

/* line 131, app/assets/stylesheets/teachers.scss */
.teachers .box .card {
  background-color: #f7f7f7;
  width: 100%;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  border: 2px solid #842e2f;
  height: 100%;
  transition: all 0.3s ease;
  -webkit-box-shadow: -7px 14px 39px -11px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: -7px 14px 39px -11px rgba(0, 0, 0, 0.2);
  box-shadow: -7px 14px 39px -11px rgba(0, 0, 0, 0.2);
}

@media screen and (max-width: 900px) {
  /* line 131, app/assets/stylesheets/teachers.scss */
  .teachers .box .card {
    max-width: 100%;
  }
}

/* line 150, app/assets/stylesheets/teachers.scss */
.teachers .box .card .teacher-image-box {
  display: flex;
  height: 400px;
  overflow: hidden;
}

/* line 155, app/assets/stylesheets/teachers.scss */
.teachers .box .card .teacher-image-box img {
  border-radius: 12px 12px 0 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

/* line 163, app/assets/stylesheets/teachers.scss */
.teachers .box .card .teacher-image-box .teacher-image-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #f5f7fa 0%, #e8eef5 100%);
  border-radius: 12px 12px 0 0;
}

/* line 173, app/assets/stylesheets/teachers.scss */
.teachers .box .card .teacher-image-box .teacher-image-placeholder i {
  font-size: 80px;
  color: #842e2f;
  opacity: 0.3;
  margin-bottom: 20px;
}

/* line 180, app/assets/stylesheets/teachers.scss */
.teachers .box .card .teacher-image-box .teacher-image-placeholder .placeholder-text {
  font-size: 18px;
  color: #842e2f;
  opacity: 0.6;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* line 191, app/assets/stylesheets/teachers.scss */
.teachers .box .card .text {
  padding: 20px;
  display: flex;
  flex-direction: column;
}

/* line 196, app/assets/stylesheets/teachers.scss */
.teachers .box .card .text .content {
  flex-grow: 1;
}

/* line 200, app/assets/stylesheets/teachers.scss */
.teachers .box .card .text h2 {
  font-size: 24px;
  padding-bottom: 12px;
  color: #842e2f;
}

/* line 206, app/assets/stylesheets/teachers.scss */
.teachers .box .card .text h3 {
  font-size: 18px;
  padding-bottom: 30px;
}

/* line 211, app/assets/stylesheets/teachers.scss */
.teachers .box .card .text p {
  font-size: 16px;
  margin-bottom: 30px;
}

/* line 216, app/assets/stylesheets/teachers.scss */
.teachers .box .card .text .bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 20px;
  font-size: 16px;
}

/* line 226, app/assets/stylesheets/teachers.scss */
.teachers .box .card .text .social-icons i {
  padding-right: 5px;
  color: #842e2f;
  transition: transform 0.3s ease;
}

/* line 231, app/assets/stylesheets/teachers.scss */
.teachers .box .card .text .social-icons i:hover {
  color: #ff9000;
  transform: translateY(-2px);
}

/* line 239, app/assets/stylesheets/teachers.scss */
.teachers .box .card .text .cta-profile a {
  color: #842e2f;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* line 244, app/assets/stylesheets/teachers.scss */
.teachers .box .card .text .cta-profile a:hover {
  color: #ff9000;
}

/* line 251, app/assets/stylesheets/teachers.scss */
.teachers .box .card:hover {
  transform: translateY(-5px);
  border: 2px solid #ff9000;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* line 256, app/assets/stylesheets/teachers.scss */
.teachers .box .card:hover .teacher-image-box img {
  transform: scale(1.05);
}

/* line 262, app/assets/stylesheets/teachers.scss */
.teachers .box .title {
  text-align: center;
  padding-bottom: 60px;
}

/* line 266, app/assets/stylesheets/teachers.scss */
.teachers .box .title h2 {
  font-weight: 800;
}

/* line 270, app/assets/stylesheets/teachers.scss */
.teachers .box .title h3 {
  color: #ff9000;
  font-size: 24px;
  padding-bottom: 8px;
}

/* line 277, app/assets/stylesheets/teachers.scss */
.teachers .box .cta-teachers {
  padding-top: 48px;
}

@media screen and (max-width: 768px) {
  /* line 283, app/assets/stylesheets/teachers.scss */
  .fa-chevron-right, .fa-chevron-left {
    color: #5B2021 !important;
  }
}
/*
Whatsapp
*/
/* line 7, app/assets/stylesheets/wpp-department.scss */
.whatsapp p {
  margin: 1px 0;
}

/* line 11, app/assets/stylesheets/wpp-department.scss */
.whatsapp {
  font-family: "Roboto Slab";
  width: 380px;
  max-width: calc(100% - 40px);
  position: fixed;
  right: 20px;
  bottom: 90px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  border-radius: 15px;
  -webkit-box-shadow: 0 0 4px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0 0 4px rgba(0, 0, 0, 0.3);
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  z-index: 999999999;
}

/* line 28, app/assets/stylesheets/wpp-department.scss */
.whatsapp__content {
  display: none;
  max-height: calc(100vh - 160px);
  background-color: #ffffff;
  overflow: auto;
}

/* line 35, app/assets/stylesheets/wpp-department.scss */
.whatsapp__content::-webkit-scrollbar {
  width: 7px;
  background-color: #d1d803;
}

/* line 40, app/assets/stylesheets/wpp-department.scss */
.whatsapp__content::-webkit-scrollbar-thumb {
  background-color: transparent;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  -o-box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.3);
  -o-box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.3);
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.3);
}

/* line 55, app/assets/stylesheets/wpp-department.scss */
.whatsapp__header {
  padding: 20px 25px 90px 25px;
  background: linear-gradient(180deg, #842e2f 0%, #56282a 100%);
}

/* line 60, app/assets/stylesheets/wpp-department.scss */
.whatsapp__title {
  font-size: 1.5em;
  color: #ffffff;
  font-weight: 500;
  text-shadow: 0 0.02rem 0.08rem rgba(0, 0, 0, 0.08);
  margin-bottom: 10px;
  margin-top: 0;
}

/* line 69, app/assets/stylesheets/wpp-department.scss */
.whatsapp__description {
  font-size: 0.9em;
  color: #ffffff;
  text-shadow: 0 0.02rem 0.08rem rgba(0, 0, 0, 0.08);
  margin-top: 0;
}

/* line 76, app/assets/stylesheets/wpp-department.scss */
.whatsapp__header.is-scroll .whatsapp__title,
.whatsapp__header.is-scroll .whatsapp__description {
  opacity: 0.9;
}

/* line 81, app/assets/stylesheets/wpp-department.scss */
.whatsapp__contact {
  width: 80%;
  padding: 15px;
  margin: 15px auto;
  background-color: #ffffff;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  -webkit-box-shadow: 0 0 4px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0 0 4px rgba(0, 0, 0, 0.3);
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.3);
}

/* line 94, app/assets/stylesheets/wpp-department.scss */
.whatsapp__contact--float {
  margin-top: -70px;
}

/* line 98, app/assets/stylesheets/wpp-department.scss */
.whatsapp__wrap {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  margin-bottom: 20px;
}

/* line 109, app/assets/stylesheets/wpp-department.scss */
.whatsapp__avatar {
  width: 50px;
  margin-right: 15px;
  border: 4px solid #842e2f;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}

/* line 118, app/assets/stylesheets/wpp-department.scss */
.whatsapp__name {
  font-size: 0.9em;
  color: #333333;
  font-weight: 500;
}

/* line 124, app/assets/stylesheets/wpp-department.scss */
.whatsapp__legend {
  font-size: 0.875em;
  color: #666666;
}

/* line 129, app/assets/stylesheets/wpp-department.scss */
.whatsapp__link {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  font-size: 0.875em;
  text-decoration: none;
  padding: 10px 0;
  width: 180px;
  background-color: #25d366;
}

/* line 146, app/assets/stylesheets/wpp-department.scss */
.whatsapp__icon--link {
  font-size: 1.4rem;
  margin-right: 10px;
}

/* line 151, app/assets/stylesheets/wpp-department.scss */
.whatsapp__button {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  position: fixed;
  right: 20px;
  bottom: 20px;
  font-size: 0.875em;
  text-decoration: none;
  background-color: #25d366;
  color: white;
  border-radius: 10px;
  padding: 5px 8px;
  -webkit-transition: width 0.2s ease-in-out, height 0.2s ease-in-out, border-radius 0.2s ease-in-out;
  -moz-transition: width 0.2s ease-in-out, height 0.2s ease-in-out, border-radius 0.2s ease-in-out;
  -o-transition: width 0.2s ease-in-out, height 0.2s ease-in-out, border-radius 0.2s ease-in-out;
  transition: width 0.2s ease-in-out, height 0.2s ease-in-out, border-radius 0.2s ease-in-out;
}

/* line 181, app/assets/stylesheets/wpp-department.scss */
.whatsapp__icon--button {
  font-size: 2rem;
}

/* 768px */
@media (max-width: 48em) {
  /* line 187, app/assets/stylesheets/wpp-department.scss */
  .whatsapp {
    right: 10px;
    bottom: 80px;
  }
  /* line 192, app/assets/stylesheets/wpp-department.scss */
  .whatsapp__button {
    width: 60px;
    height: 60px;
    right: 10px;
    bottom: 10px;
  }
  /* line 199, app/assets/stylesheets/wpp-department.scss */
  .whatsapp__icon--button {
    margin-right: 0;
  }
  /* line 203, app/assets/stylesheets/wpp-department.scss */
  .whatsapp__hidden {
    display: none;
  }
}
/*
 * This is a manifest file that'll be compiled into application.css, which will include all the files
 * listed below.
 *
 * Any CSS (and SCSS, if configured) file within this directory, lib/assets/stylesheets, or any plugin's
 * vendor/assets/stylesheets directory can be referenced here using a relative path.
 *
 * You're free to add application-wide styles to this file and they'll appear at the bottom of the
 * compiled file so the styles you add here take precedence over styles defined in any other CSS
 * files in this directory. Styles in this file should be added after the last require_* statement.
 * It is generally better to create a new file per style scope.
 *


 */
/* Shared Variables */
/* Teachers styles */
/* line 5, app/assets/stylesheets/teachers.scss */
.teachers {
  font-family: "Nunito";
  background: url(/assets/layered_waves-f59b93ecdf3331448dedf1bd22fb5630e21f262e353431848125a990781f4d09.svg);
  background-size: cover;
  background-repeat: no-repeat;
  height: 100vh;
}

@media screen and (max-width: 768px) {
  /* line 5, app/assets/stylesheets/teachers.scss */
  .teachers {
    height: 100%;
  }
}

/* line 16, app/assets/stylesheets/teachers.scss */
.teachers .bio-popover {
  position: absolute;
  background: white;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  max-width: 300px;
  z-index: 1000;
  right: -320px;
  top: 50%;
  transform: translateY(-50%);
  border: 1px solid #842e2f;
}

/* line 29, app/assets/stylesheets/teachers.scss */
.teachers .bio-popover p {
  font-size: 14px;
  line-height: 1.5;
  color: #842e2f;
  margin: 0;
}

/* line 37, app/assets/stylesheets/teachers.scss */
.teachers .box {
  align-items: center;
  display: flex;
  flex-direction: column;
  width: 100%;
}

/* line 43, app/assets/stylesheets/teachers.scss */
.teachers .box .glide {
  width: 100%;
  height: 100%;
  padding: 20px;
  position: relative;
}

/* line 49, app/assets/stylesheets/teachers.scss */
.teachers .box .glide__track {
  overflow: hidden;
}

/* line 53, app/assets/stylesheets/teachers.scss */
.teachers .box .glide__slides {
  display: flex;
}

/* line 57, app/assets/stylesheets/teachers.scss */
.teachers .box .glide__slide {
  text-align: center;
  height: auto;
  background: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* line 67, app/assets/stylesheets/teachers.scss */
.teachers .box .glide__arrows .glide__arrow {
  background-color: #faf8e8;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid #842e2f;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 2;
}

/* line 83, app/assets/stylesheets/teachers.scss */
.teachers .box .glide__arrows .glide__arrow--left {
  left: -50px;
}

/* line 87, app/assets/stylesheets/teachers.scss */
.teachers .box .glide__arrows .glide__arrow--right {
  right: -50px;
}

/* line 91, app/assets/stylesheets/teachers.scss */
.teachers .box .glide__arrows .glide__arrow i {
  font-size: 16px;
  color: #842e2f;
  transition: all 0.3s ease;
}

/* line 97, app/assets/stylesheets/teachers.scss */
.teachers .box .glide__arrows .glide__arrow:hover {
  transform: translateY(-50%) scale(1.2);
  background-color: #842e2f;
}

/* line 100, app/assets/stylesheets/teachers.scss */
.teachers .box .glide__arrows .glide__arrow:hover i {
  color: #faf8e8;
}

@media screen and (max-width: 768px) {
  /* line 67, app/assets/stylesheets/teachers.scss */
  .teachers .box .glide__arrows .glide__arrow {
    border: 2px solid #842e2f;
  }
  /* line 108, app/assets/stylesheets/teachers.scss */
  .teachers .box .glide__arrows .glide__arrow--left {
    left: 10px;
  }
  /* line 112, app/assets/stylesheets/teachers.scss */
  .teachers .box .glide__arrows .glide__arrow--right {
    right: 10px;
  }
  /* line 116, app/assets/stylesheets/teachers.scss */
  .teachers .box .glide__arrows .glide__arrow i {
    font-size: 20px;
    color: #842e2f;
  }
  /* line 122, app/assets/stylesheets/teachers.scss */
  .teachers .box .glide__arrows .glide__arrow:hover i {
    color: #faf8e8;
  }
}

/* line 131, app/assets/stylesheets/teachers.scss */
.teachers .box .card {
  background-color: #f7f7f7;
  width: 100%;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  border: 2px solid #842e2f;
  height: 100%;
  transition: all 0.3s ease;
  -webkit-box-shadow: -7px 14px 39px -11px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: -7px 14px 39px -11px rgba(0, 0, 0, 0.2);
  box-shadow: -7px 14px 39px -11px rgba(0, 0, 0, 0.2);
}

@media screen and (max-width: 900px) {
  /* line 131, app/assets/stylesheets/teachers.scss */
  .teachers .box .card {
    max-width: 100%;
  }
}

/* line 150, app/assets/stylesheets/teachers.scss */
.teachers .box .card .teacher-image-box {
  display: flex;
  height: 400px;
  overflow: hidden;
}

/* line 155, app/assets/stylesheets/teachers.scss */
.teachers .box .card .teacher-image-box img {
  border-radius: 12px 12px 0 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

/* line 163, app/assets/stylesheets/teachers.scss */
.teachers .box .card .teacher-image-box .teacher-image-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #f5f7fa 0%, #e8eef5 100%);
  border-radius: 12px 12px 0 0;
}

/* line 173, app/assets/stylesheets/teachers.scss */
.teachers .box .card .teacher-image-box .teacher-image-placeholder i {
  font-size: 80px;
  color: #842e2f;
  opacity: 0.3;
  margin-bottom: 20px;
}

/* line 180, app/assets/stylesheets/teachers.scss */
.teachers .box .card .teacher-image-box .teacher-image-placeholder .placeholder-text {
  font-size: 18px;
  color: #842e2f;
  opacity: 0.6;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* line 191, app/assets/stylesheets/teachers.scss */
.teachers .box .card .text {
  padding: 20px;
  display: flex;
  flex-direction: column;
}

/* line 196, app/assets/stylesheets/teachers.scss */
.teachers .box .card .text .content {
  flex-grow: 1;
}

/* line 200, app/assets/stylesheets/teachers.scss */
.teachers .box .card .text h2 {
  font-size: 24px;
  padding-bottom: 12px;
  color: #842e2f;
}

/* line 206, app/assets/stylesheets/teachers.scss */
.teachers .box .card .text h3 {
  font-size: 18px;
  padding-bottom: 30px;
}

/* line 211, app/assets/stylesheets/teachers.scss */
.teachers .box .card .text p {
  font-size: 16px;
  margin-bottom: 30px;
}

/* line 216, app/assets/stylesheets/teachers.scss */
.teachers .box .card .text .bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 20px;
  font-size: 16px;
}

/* line 226, app/assets/stylesheets/teachers.scss */
.teachers .box .card .text .social-icons i {
  padding-right: 5px;
  color: #842e2f;
  transition: transform 0.3s ease;
}

/* line 231, app/assets/stylesheets/teachers.scss */
.teachers .box .card .text .social-icons i:hover {
  color: #ff9000;
  transform: translateY(-2px);
}

/* line 239, app/assets/stylesheets/teachers.scss */
.teachers .box .card .text .cta-profile a {
  color: #842e2f;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* line 244, app/assets/stylesheets/teachers.scss */
.teachers .box .card .text .cta-profile a:hover {
  color: #ff9000;
}

/* line 251, app/assets/stylesheets/teachers.scss */
.teachers .box .card:hover {
  transform: translateY(-5px);
  border: 2px solid #ff9000;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* line 256, app/assets/stylesheets/teachers.scss */
.teachers .box .card:hover .teacher-image-box img {
  transform: scale(1.05);
}

/* line 262, app/assets/stylesheets/teachers.scss */
.teachers .box .title {
  text-align: center;
  padding-bottom: 60px;
}

/* line 266, app/assets/stylesheets/teachers.scss */
.teachers .box .title h2 {
  font-weight: 800;
}

/* line 270, app/assets/stylesheets/teachers.scss */
.teachers .box .title h3 {
  color: #ff9000;
  font-size: 24px;
  padding-bottom: 8px;
}

/* line 277, app/assets/stylesheets/teachers.scss */
.teachers .box .cta-teachers {
  padding-top: 48px;
}

@media screen and (max-width: 768px) {
  /* line 283, app/assets/stylesheets/teachers.scss */
  .fa-chevron-right, .fa-chevron-left {
    color: #5B2021 !important;
  }
}
