@charset "UTF-8";

/* ========== ACCESSIBILITY UTILITIES ========== */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media screen and (max-width: 767px) {
  #content-box-fd {
    margin-top: 50px;
  }
}

/* ========== MEGA MENU COURSES ========== */
.header .header-menu .mega {
  width: auto;
  max-width: 650px;
  min-height: auto;
  padding: 24px;
}

.header .header-menu .mega__menu {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.header .header-menu .mega__columns {
  display: flex;
  gap: 40px;
  flex: 1;
}

.header .header-menu .mega__column {
  display: flex;
  flex-direction: column;
  gap: 28px;
  min-width: 200px;
}

.header .header-menu .mega__category {
  display: flex;
  flex-direction: column;
}

.header .header-menu .mega__category-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-fd-green-4);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.header .header-menu .mega__category-title i {
  font-size: 12px;
  width: 16px;
}

.header .header-menu .mega__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.header .header-menu .mega__list li {
  margin-bottom: 6px;
}

.header .header-menu .mega__list a {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.3;
  color: var(--color-fd-blue-4) !important;
  transition: color 0.15s ease;
  display: inline-block;
}

.header .header-menu .mega__list a:hover {
  color: var(--color-fd-blue-2) !important;
}

.header .header-menu .mega__footer {
  width: 100%;
  padding-top: 12px;
  border-top: 1px solid var(--color-light-6);
  display: flex;
  justify-content: center;
}

.header .header-menu .mega__view-all {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-fd-green-4) !important;
  display: inline-flex;
  align-items: center;
}

.header .header-menu .mega__view-all:hover {
  color: var(--color-fd-green-3) !important;
}

/* ========== MOBILE MENU SECTIONS ========== */
.mobile-menu-header {
  padding: 20px;
  background: var(--color-fd-blue-3);
}

.mobile-menu-tools {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 20px;
  background: var(--color-fd-light-1);
  border-bottom: 1px solid var(--color-fd-gray-4);
}

/* ========== MOBILE AUTH BUTTONS ========== */
.mobile-auth-buttons {
  display: flex;
  gap: 10px;
  width: 100%;
}

.mobile-auth-buttons .mobile-auth-btn {
  flex: 1;
}

/* Light button variant for dark backgrounds */
.btn-outline-light {
  background: white;
  color: var(--color-fd-blue-3);
  border-color: white;
}

.btn-outline-light:hover {
  background: transparent;
  color: white;
  border-color: white;
}

.mobile-user-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.15);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  color: white;
  font-weight: 600;
  text-decoration: none;
  width: 100%;
}

.mobile-user-btn:hover {
  background: rgba(255, 255, 255, 0.25);
}

.mobile-user-btn__avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid white;
}

/* ========== MOBILE ICON BUTTONS ========== */
.mobile-icon-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: white;
  border-radius: 8px;
  color: var(--color-fd-blue-3);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
  cursor: pointer;
  position: relative;
  transition: all 0.2s ease;
  text-decoration: none;
  border: 1px solid var(--color-fd-gray-4);
}

.mobile-icon-btn:hover {
  background: var(--color-fd-light-1);
  color: var(--color-fd-blue-4);
}

.mobile-icon-btn__badge {
  position: absolute;
  top: -5px;
  right: -5px;
  background: var(--color-fd-green-3);
  color: white;
  font-size: 11px;
  font-weight: 600;
  min-width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-lang-selector {
  position: relative;
  cursor: pointer;
}

.mobile-lang-arrow {
  transition: transform 0.2s ease;
}

.mobile-lang-selector.-open .mobile-lang-arrow {
  transform: rotate(180deg);
}

.mobile-lang-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  margin-top: 5px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
  overflow: hidden;
  z-index: 10;
}

.mobile-lang-selector.-open .mobile-lang-dropdown {
  display: block;
}

.mobile-lang-dropdown a {
  display: block;
  padding: 10px 16px;
  color: var(--color-fd-blue-4);
  font-size: 14px;
  transition: background 0.15s ease;
}

.mobile-lang-dropdown a:hover {
  background: var(--color-light-4);
}

.mobile-lang-dropdown a.-active {
  background: var(--color-fd-green-1);
  color: var(--color-fd-green-4);
  font-weight: 600;
}

.gap-20 {
  gap: 20px;
}

/* ========== MOBILE NAV (Accordion Menu) ========== */
.mobile-nav {
  display: flex;
  flex-direction: column;
  padding: 15px 0;
}

.mobile-nav__item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  margin: 2px 12px;
  border-radius: 10px;
  color: var(--color-fd-blue-4);
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  border: none;
  background: transparent;
  width: calc(100% - 24px);
  text-align: left;
  cursor: pointer;
  transition: all 0.15s ease;
}

.mobile-nav__icon {
  width: 20px;
  text-align: center;
  font-size: 16px;
  color: var(--color-fd-green-4);
}

.mobile-nav__item span {
  flex: 1;
}

.mobile-nav__item:hover {
  background: var(--color-light-4);
}

.mobile-nav__arrow {
  font-size: 11px;
  color: var(--color-light-6);
  transition: transform 0.2s ease;
}

.mobile-nav__accordion.-open .mobile-nav__arrow {
  transform: rotate(180deg);
  color: var(--color-fd-green-3);
}

.mobile-nav__submenu {
  display: flex;
  flex-direction: column;
  background: var(--color-light-4);
  border-left: 3px solid var(--color-fd-green-3);
  margin: 5px 12px 5px 32px;
  border-radius: 0 8px 8px 0;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.3s ease, opacity 0.2s ease;
}

.mobile-nav__accordion.-open .mobile-nav__submenu {
  max-height: 500px;
  opacity: 1;
}

.mobile-nav__submenu a {
  padding: 12px 20px;
  color: var(--color-fd-blue-4);
  font-size: 15px;
  text-decoration: none;
  transition: background 0.15s ease;
}

.mobile-nav__submenu a:hover {
  background: var(--color-light-5);
}

.mobile-nav__view-all {
  font-weight: 600;
  color: var(--color-fd-green-4) !important;
  border-top: 1px solid var(--color-light-5);
  margin-top: 5px;
  padding-top: 15px !important;
}

.mobile-menu-container {
  display: none;
  flex: 1;
  overflow-y: auto;
}

@media (max-width: 1199px) {
  .mobile-menu-container {
    display: block;
  }

  .menu.js-navList {
    display: none !important;
  }
}

/* ========== HAMBURGER BUTTON (Unified for all headers) ========== */
.header .header__hamburger {
  display: none;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.15);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s ease;
  margin-right: 12px;
}

.header .header__hamburger:hover {
  background: rgba(255, 255, 255, 0.25);
}

.header .header__hamburger i,
.header .header__hamburger svg {
  color: #ffffff !important;
  fill: #ffffff !important;
  font-size: 20px;
  width: 20px;
  height: 20px;
}

.header .header__hamburger.is-active {
  background: rgba(255, 255, 255, 0.3);
}

.header .header__hamburger.is-active i::before {
  content: "\f00d";
}

.header__hamburger-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--color-fd-green-3);
  color: white;
  font-size: 10px;
  font-weight: 700;
  min-width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

@media (max-width: 991px) {
  .header.-dashboard .header__hamburger {
    display: flex;
  }
}

@media (max-width: 1199px) {
  .header.-main .header__hamburger {
    display: flex;
  }
}

@media (max-width: 575px) {
  .header .header__hamburger {
    width: 36px;
    height: 36px;
    margin-right: 10px;
  }

  .header .header__hamburger i,
  .header .header__hamburger svg {
    font-size: 18px;
    width: 18px;
    height: 18px;
  }
}

/* Mobile Avatar in Header */
.header-mobile-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  overflow: hidden;
  margin-left: 12px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  transition: border-color 0.2s ease;
}

.header-mobile-avatar:hover {
  border-color: white;
}

.header-mobile-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 575px) {
  .header-mobile-avatar {
    width: 32px;
    height: 32px;
    margin-left: 10px;
  }
}

/* ========== MOBILE FOOTER (Social Icons) ========== */
.mobile-footer {
  padding: 20px;
  background: var(--color-fd-light-1);
  border-top: 1px solid var(--color-fd-gray-4);
  margin-top: auto;
}

.mobile-footer .mobile-socials-label {
  text-align: center;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-fd-gray-1);
  margin-bottom: 12px;
  font-weight: 600;
}

.mobile-footer .mobile-socials {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.mobile-footer .mobile-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: white;
  color: var(--color-fd-blue-3);
  font-size: 16px;
  transition: all 0.2s ease;
  border: 1px solid var(--color-fd-gray-4);
}

.mobile-footer .mobile-socials a:hover {
  background: var(--color-fd-green-4);
  border-color: var(--color-fd-green-4);
  color: white;
}

/* ========================================
   Loading Animation - Airplane
   ======================================== */
.fd-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

.fd-loading__plane {
  font-size: 48px;
  color: var(--color-fd-blue-3);
  animation: planeFloat 1.5s ease-in-out infinite;
  position: relative;
  z-index: 2;
}

.fd-loading__plane i {
  transform: rotate(-45deg);
}

.fd-loading__clouds {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
}

.fd-loading__cloud {
  position: absolute;
  color: var(--color-fd-gray-4);
  opacity: 0.5;
}

.fd-loading__cloud--1 {
  font-size: 24px;
  top: 30%;
  animation: cloudMove 3s linear infinite;
}

.fd-loading__cloud--2 {
  font-size: 18px;
  top: 50%;
  animation: cloudMove 2.5s linear infinite;
  animation-delay: -1s;
}

.fd-loading__cloud--3 {
  font-size: 28px;
  top: 70%;
  animation: cloudMove 3.5s linear infinite;
  animation-delay: -2s;
}

.fd-loading__text {
  margin-top: 20px;
  font-size: 15px;
  font-weight: 500;
  color: var(--color-light-1);
  letter-spacing: 0.5px;
}

@keyframes planeFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes cloudMove {
  0% {
    left: 100%;
    opacity: 0;
  }
  10% {
    opacity: 0.5;
  }
  90% {
    opacity: 0.5;
  }
  100% {
    left: -30%;
    opacity: 0;
  }
}

/* Cookie Consent Banner - Floating Card */
#cookie-consent-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  width: 320px;
  background: var(--color-fd-blue-3);
  color: #fff;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px;
  z-index: 10000;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
  opacity: 0;
  transform: translateY(20px);
  visibility: hidden;
  transition: all 0.4s ease;
}

#cookie-consent-banner.show {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}

#cookie-consent-banner .cc-title {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 8px 0;
  color: #fff;
}

#cookie-consent-banner .cc-text {
  font-size: 14px;
  line-height: 1.5;
  margin: 0 0 12px 0;
  color: rgba(255, 255, 255, 0.85);
}

#cookie-consent-banner .cc-link {
  display: inline-block;
  font-size: 13px;
  color: var(--color-fd-green-3);
  text-decoration: underline;
  margin-bottom: 16px;
}

#cookie-consent-banner .cc-link:hover {
  color: var(--color-fd-green-2);
}

#cookie-consent-banner .cc-buttons {
  display: flex;
  gap: 10px;
}

#cookie-consent-banner .cc-buttons .btn {
  flex: 1;
}

#cookie-consent-banner .cc-buttons .btn-ghost {
  color: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

#cookie-consent-banner .cc-buttons .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

@media (max-width: 575px) {
  #cookie-consent-banner {
    left: 10px;
    right: 10px;
    bottom: 10px;
    width: auto;
    padding: 20px;
  }

  #cookie-consent-banner .cc-icon {
    font-size: 28px;
    margin-bottom: 10px;
  }

  #cookie-consent-banner .cc-title {
    font-size: 16px;
  }

  #cookie-consent-banner .cc-text {
    font-size: 13px;
    margin-bottom: 16px;
  }
}

/* ========================================
   Button System - Global
   ======================================== */

/* Base Button Styles */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
  border: 2px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  line-height: 1;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn:active {
  transform: translateY(0);
}

.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* Button Variants */
.btn-primary {
  background: var(--color-fd-green-4);
  color: white;
  border-color: var(--color-fd-green-4);
}

.btn-primary:hover {
  background: var(--color-fd-green-5);
  border-color: var(--color-fd-green-5);
  color: white;
}

.btn-secondary {
  background: var(--color-fd-blue-3);
  color: white;
  border-color: var(--color-fd-blue-3);
}

.btn-secondary:hover {
  background: var(--color-fd-blue-4);
  border-color: var(--color-fd-blue-4);
  color: white;
}

.btn-soft {
  background: rgba(181, 214, 65, 0.15);
  color: var(--color-fd-green-5);
  border-color: transparent;
}

.btn-soft:hover {
  background: rgba(181, 214, 65, 0.25);
  color: var(--color-fd-green-5);
}

.btn-outline {
  background: transparent;
  color: var(--color-fd-green-4);
  border-color: var(--color-fd-green-4);
}

.btn-outline:hover {
  background: var(--color-fd-green-4);
  color: white;
}

.btn-ghost {
  background: transparent;
  color: var(--color-fd-green-4);
  border-color: transparent;
}

.btn-ghost:hover {
  background: rgba(181, 214, 65, 0.1);
  color: var(--color-fd-green-5);
  box-shadow: none;
}

.btn-danger {
  background: var(--color-error-2);
  color: white;
  border-color: var(--color-error-2);
}

.btn-danger:hover {
  background: #c0392b;
  border-color: #c0392b;
  color: white;
}

.btn-warning {
  background: #f59e0b;
  color: white;
  border-color: #f59e0b;
}

.btn-warning:hover {
  background: #d97706;
  border-color: #d97706;
  color: white;
}

.btn-gold {
  background: #f59e0b;
  color: white;
  border-color: #f59e0b;
}

.btn-gold:hover {
  background: #d97706;
  border-color: #d97706;
  color: white;
}

/* Button Sizes */
.btn-sm {
  padding: 8px 16px;
  font-size: 13px;
  border-radius: 6px;
}

.btn-md {
  padding: 12px 24px;
  font-size: 14px;
}

.btn-lg {
  padding: 16px 32px;
  font-size: 16px;
  border-radius: 10px;
}

/* Button Modifiers */
.btn-block {
  width: 100%;
}

.btn-icon {
  padding: 12px;
  aspect-ratio: 1;
}

.btn-icon.btn-sm {
  padding: 8px;
}

.btn-icon.btn-lg {
  padding: 16px;
}

#loadingBtn {
  width: 18px;
  height: 18px;
  margin-left: 8px;
  flex-shrink: 0;
}

/* Payment Provider Buttons */
.btn-payment {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 6px;
  color: white !important;
  text-decoration: none !important;
  font-size: 14px;
  transition: all 0.2s ease;
}

.btn-payment:hover {
  transform: translateY(-1px);
  color: white !important;
}

.btn-payment--stripe {
  background: #635bff;
}

.btn-payment--stripe:hover {
  background: #4b44c9;
}

.btn-payment--dlocalgo {
  background: #006cfa;
}

.btn-payment--dlocalgo:hover {
  background: #0055c7;
}

/* Custom dLocalGo icon (replaces FontAwesome) */
.icon-dlocalgo {
  display: inline-block;
  width: 18px;
  height: 18px;
  background-color: currentColor;
  -webkit-mask-image: url('/https/flightdemy.com/img/icons/dlocalgo.svg');
  mask-image: url('/https/flightdemy.com/img/icons/dlocalgo.svg');
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
}

.icon-dlocalgo--lg {
  width: 24px;
  height: 24px;
}

/* ========================================
   Form System - Global
   ======================================== */

/* Form Section Headers */
.form-section {
  margin-bottom: 20px;
}

.form-section-header {
  display: flex;
  align-items: center;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--color-light-5);
}

.form-section-header .section-icon {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--color-fd-green-3) 0%, var(--color-fd-green-4) 100%);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
}

.form-section-header .section-icon i {
  color: white;
  font-size: 15px;
}

.form-section-header h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--color-fd-blue-3);
  margin: 0;
}

/* Form Inputs with Icons */
.input-with-icon {
  position: relative;
  width: 100%;
}

.input-with-icon .input-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-light-1);
  font-size: 16px;
  z-index: 1;
}

.input-with-icon input,
.input-with-icon select {
  width: 100%;
  padding-left: 48px !important;
}

/* Enhanced Input Focus States */
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--color-fd-green-3) !important;
  box-shadow: 0 0 0 3px rgba(165, 190, 0, 0.15);
}

/* Input Validation States */
.contact-form input.input-error,
.contact-form select.input-error,
.contact-form textarea.input-error {
  border-color: var(--color-error-2) !important;
  box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.15);
}

.contact-form input.input-valid,
.contact-form select.input-valid,
.contact-form textarea.input-valid {
  border-color: var(--color-success-2) !important;
}

/* Readonly Input Styles */
.contact-form input[readonly] {
  background-color: var(--color-fd-light-1);
  color: var(--color-light-1);
  cursor: not-allowed;
}

/* Contact Page Social Links */
.contact-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--color-fd-light-1);
  color: var(--color-fd-blue-3);
  font-size: 18px;
  transition: all 0.2s ease;
}

.contact-social-link:hover {
  background-color: var(--color-fd-green-4);
  color: white;
  transform: translateY(-2px);
}

/* Contact Info Cards with Circular Icons */
.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: white;
  border-radius: 12px;
  border: 1px solid #e8e8e8;
  transition: all 0.2s ease;
}

.contact-info-card:hover {
  box-shadow: 0 4px 12px rgba(0, 51, 102, 0.08);
  transform: translateY(-2px);
}

.contact-info-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 50%;
  background: var(--color-fd-green-4);
  color: white;
  font-size: 18px;
}

.contact-info-card__content {
  flex: 1;
}

.contact-info-card__title {
  font-size: 16px;
  font-weight: 600;
  color: var(--color-fd-blue-3);
  margin-bottom: 6px;
}

.contact-info-card__text {
  font-size: 14px;
  color: var(--color-light-1);
  line-height: 1.6;
}

.contact-info-card__link {
  font-size: 14px;
  color: var(--color-fd-green-4);
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-info-card__link:hover {
  color: var(--color-fd-green-3);
  text-decoration: underline;
}

/* Contact Divider */
.contact-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, #e0e0e0 50%, transparent 100%);
  margin: 30px 0;
}

/* Contact Social Section */
.contact-social-section {
  padding: 0 5px;
}

/* Contact Info Compact (Right column) */
.contact-info-compact {
  background: white;
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 4px 20px rgba(0, 51, 102, 0.08);
  border: 1px solid #e8e8e8;
}

.contact-info-compact__item {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid #f0f0f0;
}

.contact-info-compact__item:first-child {
  padding-top: 0;
}

.contact-info-compact__item:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.contact-info-compact__item > i {
  width: 20px;
  color: var(--color-fd-green-4);
  font-size: 18px;
  margin-top: 2px;
}

.contact-info-compact__title {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-fd-blue-3);
  margin-bottom: 4px;
}

.contact-info-compact__text {
  font-size: 14px;
  color: var(--color-light-1);
  line-height: 1.5;
}

.contact-info-compact__link {
  font-size: 14px;
  color: var(--color-fd-green-4);
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-info-compact__link:hover {
  color: var(--color-fd-green-3);
  text-decoration: underline;
}

/* Contact Form Social (inside form footer) */
.contact-form-social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  padding-top: 15px;
  border-top: 1px solid #f0f0f0;
}

.contact-social-link.-sm {
  width: 36px;
  height: 36px;
  font-size: 14px;
}

/* Contact Form Card */
.contact-form-card {
  background: white;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 51, 102, 0.1);
  overflow: hidden;
}

.contact-form-card__header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px 32px;
  background: linear-gradient(135deg, var(--color-fd-blue-4) 0%, var(--color-fd-blue-3) 100%);
  color: white;
}

.contact-form-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.15);
  font-size: 22px;
}

.contact-form-card__title {
  font-size: 22px;
  font-weight: 700;
  margin: 0;
  line-height: 1.3;
  color: white;
}

.contact-form-card__subtitle {
  font-size: 14px;
  opacity: 0.85;
  margin: 4px 0 0;
}

.contact-form-card > form,
.contact-form-card > .msg-box {
  margin: 0 32px;
}

.contact-form-card > form {
  padding-bottom: 32px;
}

.contact-form-card > .msg-box:first-of-type {
  margin-top: 24px;
}

/* Contact Response Badge */
.contact-response-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 20px 32px 0;
  padding: 10px 16px;
  background: linear-gradient(135deg, rgba(165, 190, 0, 0.1) 0%, rgba(165, 190, 0, 0.05) 100%);
  border: 1px solid rgba(165, 190, 0, 0.3);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 500;
  color: var(--color-fd-green-3);
}

.contact-response-badge i {
  font-size: 14px;
}

/* Contact Page Responsive Styles */
@media (max-width: 991px) {
  .contact-form-card__header {
    padding: 20px 24px;
  }

  .contact-form-card__icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    font-size: 18px;
  }

  .contact-form-card__title {
    font-size: 20px;
  }

  .contact-form-card > form,
  .contact-form-card > .msg-box {
    margin: 0 24px;
  }

  .contact-form-card > form {
    padding-bottom: 24px;
  }

  .contact-response-badge {
    margin: 16px 24px 0;
  }

  .contact-illustration {
    display: none;
  }

  /* Info compact as horizontal grid on tablet */
  .contact-info-compact {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    padding: 20px;
  }

  .contact-info-compact__item {
    padding: 16px;
    border-bottom: none;
    border-right: 1px solid #f0f0f0;
  }

  .contact-info-compact__item:nth-child(2n) {
    border-right: none;
  }

  .contact-info-compact__item:nth-child(1),
  .contact-info-compact__item:nth-child(2) {
    border-bottom: 1px solid #f0f0f0;
  }

  .contact-info-compact__item:first-child {
    padding-top: 16px;
  }
}

@media (max-width: 767px) {
  /* Extra top margin for contact page on mobile */
  .contact-form-card {
    margin-top: 15px;
  }

  .contact-info-card {
    padding: 16px;
  }

  .contact-info-card__icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    font-size: 16px;
  }

  .contact-info-card__title {
    font-size: 15px;
  }

  .contact-form-card__header {
    padding: 16px 20px;
    gap: 12px;
  }

  .contact-form-card__icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    font-size: 16px;
    border-radius: 8px;
  }

  .contact-form-card__title {
    font-size: 18px;
  }

  .contact-form-card__subtitle {
    font-size: 13px;
  }

  .contact-form-card > form,
  .contact-form-card > .msg-box {
    margin: 0 16px;
  }

  .contact-form-card > form {
    padding-bottom: 20px;
  }

  .contact-response-badge {
    margin: 12px 16px 0;
    padding: 8px 12px;
    font-size: 12px;
  }

  .contact-divider {
    margin: 20px 0;
  }

  .contact-social-link {
    width: 38px;
    height: 38px;
    font-size: 16px;
  }

  /* Info compact as single column on mobile */
  .contact-info-compact {
    display: block;
    padding: 16px;
  }

  .contact-info-compact__item {
    padding: 14px 0;
    border-right: none;
    border-bottom: 1px solid #f0f0f0;
  }

  .contact-info-compact__item:first-child {
    padding-top: 0;
  }

  .contact-info-compact__item:last-child {
    padding-bottom: 0;
    border-bottom: none;
  }

  .contact-info-compact__item > i {
    font-size: 16px;
  }

  .contact-info-compact__title {
    font-size: 13px;
  }

  .contact-info-compact__text,
  .contact-info-compact__link {
    font-size: 13px;
  }

  /* Social links stacked on small screens */
  .contact-form-social {
    flex-direction: column;
    gap: 12px;
  }

  /* Help suggestions responsive */
  .help-suggestions-container {
    margin-top: 12px;
  }

  .help-suggestions-header {
    padding: 10px 14px;
    font-size: 13px;
  }

  #help-suggestions-content {
    padding: 12px;
  }

  .suggestion-faq-question {
    padding: 10px 12px;
    font-size: 13px;
  }

  .suggestion-faq-answer {
    padding: 0 12px 12px;
    font-size: 12px;
  }

  .suggestion-guide-item {
    padding: 10px 12px;
  }

  .suggestion-guide-title {
    font-size: 13px;
  }

  .suggestion-guide-subtitle {
    font-size: 11px;
  }
}

/* Help Suggestions Container */
.help-suggestions-container {
  margin-top: 15px;
  background: #f8f9fa;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
}

.help-suggestions-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: #f0f2f4;
  border-bottom: 1px solid #e0e0e0;
  font-weight: 600;
  font-size: 14px;
  color: var(--color-fd-blue-3);
}

.help-suggestions-header i {
  font-size: 16px;
  color: var(--color-fd-green-4);
}

#help-suggestions-content {
  padding: 16px;
}

.suggestions-section {
  margin-bottom: 16px;
}

.suggestions-section:last-child {
  margin-bottom: 0;
}

.suggestions-section-title {
  font-size: 11px;
  font-weight: 600;
  color: var(--color-light-1);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.suggestions-section-title i {
  font-size: 11px;
}

/* FAQ Items */
.suggestion-faq-item {
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  margin-bottom: 8px;
  cursor: pointer;
  transition: border-color 0.2s ease;
}

.suggestion-faq-item:last-child {
  margin-bottom: 0;
}

.suggestion-faq-item:hover {
  border-color: var(--color-fd-green-3);
}

.suggestion-faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-fd-blue-3);
}

.suggestion-faq-question span {
  flex: 1;
  line-height: 1.4;
}

.suggestion-faq-toggle {
  flex-shrink: 0;
  font-size: 12px;
  color: var(--color-light-1);
  transition: transform 0.2s ease;
}

.suggestion-faq-toggle.rotated {
  transform: rotate(180deg);
}

.suggestion-faq-answer {
  display: none;
  padding: 0 14px 14px;
  font-size: 13px;
  line-height: 1.6;
  color: var(--color-light-1);
  border-top: 1px solid #f0f0f0;
  padding-top: 12px;
  margin-top: -2px;
}

/* Help Center Guide Items */
.suggestion-guide-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  padding: 12px 14px;
  margin-bottom: 8px;
  text-decoration: none;
  transition: border-color 0.2s ease;
}

.suggestion-guide-item:last-child {
  margin-bottom: 0;
}

.suggestion-guide-item:hover {
  border-color: var(--color-fd-green-3);
}

.suggestion-guide-info {
  flex: 1;
  min-width: 0;
}

.suggestion-guide-item > i {
  flex-shrink: 0;
  font-size: 12px;
  color: var(--color-fd-green-4);
}

.suggestion-guide-title {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-fd-blue-3);
  line-height: 1.3;
}

.suggestion-guide-subtitle {
  font-size: 12px;
  color: var(--color-light-1);
  margin-top: 3px;
  line-height: 1.4;
}

/* Phone Group */
.contact-form .phone-group {
  display: flex;
  justify-content: start;
  align-items: center;
  outline: none;
  width: 100%;
  border-radius: 8px;
  border: 1px solid #DDDDDD;
  padding: 10px 14px;
  transition: all 0.2s ease;
  background: #fff;
}

.contact-form .phone-group:focus-within {
  border-color: var(--color-fd-green-3);
  box-shadow: 0 0 0 3px rgba(132, 189, 0, 0.15);
}

.contact-form .phone-group input,
.contact-form .phone-group select {
  border: none;
  box-shadow: none;
  padding: 0;
  background: transparent;
}

.contact-form .phone-group input:focus {
  box-shadow: none !important;
}

.contact-form .phone-group input {
  padding-left: 15px;
  flex: 1;
}

.contact-form .phone-group .country-flag img {
  width: 24px;
  height: auto;
  border-radius: 2px;
}

.contact-form .phone-group .country-code {
  margin-left: 8px;
  padding-left: 8px;
  border-left: 1px solid #e5e7eb;
}

.contact-form .phone-group .country-code select {
  color: var(--color-fd-blue-4);
  font-weight: 500;
  cursor: pointer;
  min-width: 75px;
  font-size: 13px;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%239ca3af' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E") no-repeat right center;
  padding-right: 14px;
}

/* Password Toggle Button */
.contact-form .password-group {
  position: relative;
}

.contact-form .password-group input {
  padding-right: 42px;
}

.contact-form .toggle-password {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  color: var(--color-light-1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s ease;
}

.contact-form .toggle-password .eye-icon {
  width: 16px;
  height: 16px;
}

.contact-form .toggle-password:hover {
  color: var(--color-fd-blue-4);
}

.contact-form .toggle-password:focus {
  outline: none;
}

/* Form Section Hints */
.form-section p.text-12 {
  display: inline;
  line-height: 1.4;
}

.form-section p.text-12 i {
  vertical-align: middle;
}

.form-section p.text-12 i.text-yellow-1,
.form-section p.text-12 i.icon-star {
  color: #f59e0b !important;
}

/* Form Hint - Small helper text below inputs */
.form-hint {
  display: block;
  font-size: 11px;
  color: #94a3b8;
  margin-top: 6px;
  line-height: 1.4;
}

.form-hint i,
.form-hint svg {
  color: #94a3b8 !important;
  margin-right: 4px !important;
}

/* Form Responsive */
@media (max-width: 767px) {
  .form-section-header .section-icon {
    width: 28px;
    height: 28px;
    margin-right: 10px;
  }

  .form-section-header .section-icon i {
    font-size: 13px;
  }

  .form-section-header h4 {
    font-size: 15px;
  }

  .input-with-icon .input-icon {
    left: 12px;
    font-size: 14px;
  }

  .input-with-icon input,
  .input-with-icon select {
    padding-left: 40px !important;
    font-size: 14px;
  }
}

.CntVw_Tooltip {
  width:200px;
}

.lang-selector{
  background: var(--color-fd-green-3);
  position: fixed;
  top: 30%;
  right: 0;
}


.sim-exercise {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
}

.sim-exercise:before{
  content: "\f072";
}

.flag {
  max-width: 25px;
}

.input-pretty {
  border: 0;
  outline: none;
  width: 100%;
  background-color: transparent;
  border-radius: 8px;
  border: 1px solid #DDDDDD;
  font-size: 15px;
  line-height: 1.5;
  padding: 15px 22px;
  transition: all 0.15s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.animAvatar.loading{
  display: block;
}

.animAvatar.loading .loading-gr{
  display: block;
  background: url(../img/media/waves.svg);
  background-size: cover;
  height: 100%;
  animation: wave 5s cubic-bezier( 0.36, 0.45, 0.63, 0.53) infinite;
}

.animAvatar.loading .icon-cloud{
  display: none;
}

@keyframes wave {
  0% {
    background-position-x: 0;
  }
  100% {
    background-position-x: 1600px;
  }
}

.bg-fd-lines {
  background-image: url('../img/media/map_lines_light.svg');
}

@media (max-width: 1199px) {
  .menu__nav {
    color: var(--color-fd-blue-4);
  }

  .mobile-menu-fd {
    background: var(--color-fd-blue-3);
    padding: 10px 0;
  }
}

.aboutSec .coursesCard {
  min-height: 270px;
}

.header__logo a{
  display: block;
}

.header__logo img {
  height:45px;
}

.tickets-wdw {
  max-height: 700px;
  overflow-y: scroll;
}

.ticket.active {
  background-color: var(--color-fd-light-2);
}

.ticket.pending {
  background-color: var(--color-error-1);
}

.ticket.pending.active {
  background-color: var(--color-error-1);
  border-left: 3px solid var(--color-fd-green-3);
}

.content-item .iconBox{
  background-color: var(--color-fd-light-1);
}

.content-item.active .iconBox{
  background-color: var(--color-fd-blue-3);
  color: var(--color-white);
}

.content-item.active .content-Title{
  font-weight: bolder;
}

.hideit{
  display: none;
}
.contentClicker,
.clickable{
  cursor: pointer;
}

.forum-attach-img{
  display:block;
  max-width: 300px;
  max-height: 300px;
  margin: 10px;
}

.tutor-avatar-home{
  border-radius: 100%;
  overflow: hidden;
  width:30px;
  height: 30px;
}

.msg-box{
  display: none;
}

.animAvatar{
  display: none;
  transition: ease-in-out 1s;
}
#avatarUser{
  cursor:pointer;
}

#avatarUser img{
  max-width: 100%;
  min-height: 100%;
}

#avatarUser:hover .animAvatar {
  display: flex;
}

.show-more__content.more-content__reviews{
  max-height: 600px;
}

.button.button-sm{
  height: 30px !important;
  padding: 15px !important;
}

.modal-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1040;
  background-color: #000;
  opacity: 0;
}
.fade {
  opacity: 0;
  transition: opacity .15s linear;
}
.fade.show {
  opacity: 1;
}
.modal-backdrop.show {
  opacity: .4;
}

/* Prevent body scroll when modal is open */
body.modal-open {
  overflow: hidden;
}

.modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1050;
  display: none;
  overflow: hidden;
}

.modal-dialog {
  position: relative;
  width: auto;
  pointer-events: none;
  margin: auto;
  display: flex;
  align-items: center;
  min-height: calc(100% - (0.5rem * 2));
  max-width: 90vw;
}
.modal-content {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0,0,0,.2);
  border-radius: 0.3rem;
  outline: 0;
}

.modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: 1px solid #e9ecef;
  border-top-left-radius: 0.3rem;
  border-top-right-radius: 0.3rem;
}

.modal-body {
  position: relative;
  flex: 1 1 auto;
  padding: 1rem;
}

.modal-footer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 1rem;
  border-top: 1px solid #e9ecef;
}


/* CUSTOM CSS*/
.ratio {
  position: relative;
  display: block;
  overflow: hidden;
}

.ratio::before {
  display: block;
  width: 100%;
  content: "";
}

.ratio-1\:1::before {
  padding-bottom: 100%;
}

.ratio-2\:1::before {
  padding-bottom: 50%;
}

.ratio-2\:3::before {
  padding-bottom: 150%;
}

.ratio-3\:2::before {
  padding-bottom: 66.66667%;
}

.ratio-3\:4::before {
  padding-bottom: 133.33333%;
}

.ratio-4\:3::before {
  padding-bottom: 75%;
}

.ratio-5\:4::before {
  padding-bottom: 80%;
}

.ratio-8\:5::before {
  padding-bottom: 62.5%;
}

.ratio-16\:9::before {
  padding-bottom: 56.25%;
}

.ratio-30\:16::before {
  padding-bottom: 53.33333%;
}

.ratio-30\:35::before {
  padding-bottom: 116.66667%;
}

.ratio-63\:57::before {
  padding-bottom: 90.47619%;
}

:root {
  --font-primary: "Work Sans", sans-serif;
  --text-6: 6px;
  --text-9: 9px;
  --text-11: 11px;
  --text-13: 13px;
  --text-14: 14px;
  --text-15: 15px;
  --text-16: 16px;
  --text-17: 17px;
  --text-18: 18px;
  --text-20: 20px;
  --text-24: 24px;
  --text-30: 30px;
  --text-35: 35px;
  --text-40: 40px;
  --text-45: 45px;
  --text-50: 50px;
  --text-55: 55px;
  --text-60: 60px;
  --text-64: 64px;
}

:root {
  --color-white: #FFFFFF;
  --color-black: #000000;
  --color-info-1: #CDE9F6;
  --color-info-2: #4780AA;
  --color-warning-1: #F7F3D7;
  --color-warning-2: #927238;
  --color-error-1: #ECC8C5;
  --color-error-2: #AB3331;
  --color-success-1: #DEF2D7;
  --color-success-2: #5B7052;

  /*  FD Colors */
  --color-fd-green-1: #f0f769;
  --color-fd-green-2: #c7d632;
  --color-fd-green-3: #a5be00;
  --color-fd-green-4: #859300;
  --color-fd-green-5: #5b6000;
  --color-fd-green-6: #333300;

  --color-fd-beige-1: #f9e3d2;
  --color-fd-beige-2: #f7d7bc;
  --color-fd-beige-3: #e6bd8f;
  --color-fd-beige-4: #c4ad92;
  --color-fd-beige-5: #9b8976;
  --color-fd-beige-6: #736569;

  --color-fd-aqua-1: #c6f3f4;
  --color-fd-aqua-2: #b1e1e5;
  --color-fd-aqua-3: #9bd3dd;
  --color-fd-aqua-4: #6ba3b7;
  --color-fd-aqua-5: #458293;
  --color-fd-aqua-6: #255b68;

  --color-fd-blue-1: #507acc;
  --color-fd-blue-2: #314984;
  --color-fd-blue-3: #112151;
  --color-fd-blue-4: #081433;
  --color-fd-blue-5: #010714;

  --color-fd-light-1: #f6f9ff;
  --color-fd-light-2: #f9ffe6 ;

  --color-fd-gray-1: #595959 ;
  --color-fd-gray-2: #989898;
  --color-fd-gray-3: #cbd5e1;
  --color-fd-gray-4: #e2e8f0;
  --color-fd-gray-5: #f1f5f9;
  --color-fd-gray-6: #f8fafc;

  --color-fd-gold-1: #FFD700;
  --color-fd-gold-2: #7e732b;

  --color-light-1: #a5a5a5;
  --color-light-2: #e4e7ea;
  --color-light-5: #ededed;
}

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: var(--font-primary);
  min-height: 100%;
  font-size: 15px;
  line-height: 1;
}

body {
  overflow-x: hidden;
  padding: 0;
  font-family: var(--font-primary);
  width: 100%;
  max-width: 100%;
  background-color: white;
  font-size: 15px;
  line-height: 1.7;
}

.barba-container {
  /*overflow: hidden;*/
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
  transition: color 0.2s ease-in-out;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
  color: var(--color-fd-green-4);
}

ul, li {
  list-style: none;
  margin: 0;
  padding: 0;
}

p {
  margin: 0;
  font-size: 15px;
  line-height: 26px;
}

button {
  padding: 0;
  margin: 0;
  border: 0;
  border-radius: 0;
  background-color: transparent;
  text-decoration: none;
}

button:focus {
  outline: 0;
}

.button {
  display: flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
  text-align: center;
  border-radius: 8px;
  line-height: 1;
  font-weight: 400;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  cursor: pointer;
}

.button.-sm {
  padding: 6px 34px;
  font-size: 15px;
  height: 40px;
}

.button.-md {
  padding: 12px 55px;
  font-size: 16px;
  line-height: 18px;
  font-weight: 500;
  height: 60px;
}

.button.-icon {
  min-width: 120px;
  padding: 14px 30px;
  font-size: 15px;
  height: 50px;
}

.button.-single-icon {
  display: flex;
  justify-content: center;
  align-items: center;
}

.button.-narrow {
  min-width: unset;
  padding-left: 25px;
  padding-right: 25px;
  height: 50px;
}

.button.-rounded {
  border-radius: 100px;
}

.button.-underline:hover {
  text-decoration: underline;
}

.button.-white {
  background-color: var(--color-white);
  border: 2px solid var(--color-white);
}

.button.-white:hover {
  background-color: transparent !important;
  color: var(--color-white);
}

.button.-outline-white {
  border: 2px solid var(--color-white);
}

.button.-outline-white:hover {
  background-color: var(--color-white);
  border-color: transparent;
  color: white !important;
}

.button.-black {
  background-color: var(--color-black);
  border: 2px solid var(--color-black);
}

.button.-black:hover {
  background-color: transparent !important;
  color: var(--color-black);
}

.button.-outline-black {
  border: 2px solid var(--color-black);
}

.button.-outline-black:hover {
  background-color: var(--color-black);
  border-color: transparent;
  color: white !important;
}

.button.-dark-1 {
  background-color: var(--color-fd-blue-5);
  border: 2px solid var(--color-fd-blue-5);
}

.button.-dark-1:hover {
  background-color: transparent !important;
  color: var(--color-fd-blue-5);
}

.button.-outline-dark-1 {
  border: 2px solid var(--color-fd-blue-5);
}

.button.-outline-dark-1:hover {
  background-color: var(--color-fd-blue-3);
  border-color: transparent;
  color: white !important;
}

.button.-dark-2 {
  background-color: var(--color-fd-blue-4);
  border: 2px solid var(--color-fd-blue-4);
}

.button.-dark-2:hover {
  background-color: transparent !important;
  color: var(--color-fd-blue-3);
}

.button.-outline-dark-2 {
  border: 2px solid var(--color-fd-blue-4);
}

.button.-outline-dark-2:hover {
  background-color: var(--color-fd-blue-4);
  border-color: transparent;
  color: white !important;
}

.button.-dark-3 {
  background-color: var(--color-fd-blue-3);
  border: 2px solid var(--color-fd-blue-3);
}

.button.-dark-3:hover {
  background-color: transparent !important;
  color: var(--color-fd-blue-3);
}

.button.-outline-dark-3 {
  border: 2px solid var(--color-fd-blue-3);
}

.button.-outline-dark-3:hover {
  background-color: var(--color-fd-blue-3);
  border-color: transparent;
  color: white !important;
}

.button.-light-1 {
  background-color: var(--color-light-1);
  border: 2px solid var(--color-light-1);
}

.button.-light-1:hover {
  background-color: transparent !important;
  color: var(--color-light-1);
}

.button.-outline-light-1 {
  border: 2px solid var(--color-light-1);
}

.button.-outline-light-1:hover {
  background-color: var(--color-light-1);
  border-color: transparent;
  color: white !important;
}

.button.-light-2 {
  background-color: var(--color-fd-light-2);
  border: 2px solid var(--color-fd-light-2);
}

.button.-light-2:hover {
  background-color: transparent !important;
  color: var(--color-fd-green-5);
}

.button.-outline-light-2 {
  border: 2px solid var(--color-fd-light-2);
}

.button.-outline-light-2:hover {
  background-color: var(--color-fd-light-2);
  border-color: transparent;
  color: white !important;
}

.button.-light-5 {
  background-color: var(--color-light-5);
  border: 2px solid var(--color-light-5);
}

.button.-light-5:hover {
  background-color: transparent !important;
  color: var(--color-light-5);
}

.button.-outline-light-5 {
  border: 2px solid var(--color-light-5);
}

.button.-outline-light-5:hover {
  background-color: var(--color-light-5);
  border-color: transparent;
  color: white !important;
}

.button.-green-3 {
  background-color: var(--color-fd-green-3);
  border: 2px solid var(--color-fd-green-3);
  color: var(--color-fd-green-6);
}

.button.-green-3:hover {
  background-color: transparent !important;
  color: var(--color-fd-green-3);
}

.button.-gold-1 {
  background-color: var(--color-fd-gold-1);
  border: 2px solid var(--color-fd-gold-1);
}

.button.-gold-1:hover {
  background-color: transparent !important;
  color: var(--color-fd-gold-1);
}

.button.-green-1 {
  background-color: var(--color-fd-green-1);
  border: 2px solid var(--color-fd-green-1);
}

.button.-green-1:hover {
  background-color: transparent !important;
  color: var(--color-fd-green-1);
}

.button.-outline-green-1 {
  border: 2px solid var(--color-fd-green-1);
}

.button.-outline-green-1:hover {
  background-color: var(--color-fd-green-1);
  border-color: transparent;
  color: white !important;
}

.button.-green-2 {
  background-color: var(--color-fd-green-2);
  border: 2px solid var(--color-fd-green-2);
}

.button.-green-2:hover {
  background-color: transparent !important;
  color: var(--color-fd-green-2);
}

.button.-outline-green-2 {
  border: 2px solid var(--color-fd-green-2);
}

.button.-outline-green-2:hover {
  background-color: var(--color-fd-green-2);
  border-color: transparent;
  color: white !important;
}


.button.-outline-green-3 {
  border: 2px solid var(--color-fd-green-3);
}

.button.-outline-green-3:hover {
  background-color: var(--color-fd-green-3);
  border-color: transparent;
  color: white !important;
}

.button.-green-4 {
  background-color: var(--color-fd-green-4);
  border: 2px solid var(--color-fd-green-4);
}

.button.-green-4:hover {
  background-color: transparent !important;
  color: var(--color-fd-green-4);
}

.button.-outline-green-4 {
  border: 2px solid var(--color-fd-green-4);
}

.button.-outline-green-4:hover {
  background-color: var(--color-fd-green-4);
  border-color: transparent;
  color: white !important;
}

.button.-green-5 {
  background-color: var(--color-fd-green-5);
  border: 2px solid var(--color-fd-green-5);
}

.button.-green-5:hover {
  background-color: transparent !important;
  color: var(--color-fd-green-5);
}

.button.-outline-green-5 {
  border: 2px solid var(--color-fd-green-5);
}

.button.-outline-green-5:hover {
  background-color: var(--color-fd-green-5);
  border-color: transparent;
  color: white !important;
}

.button.-green-6 {
  background-color: var(--color-fd-green-6);
  border: 2px solid var(--color-fd-green-6);
}

.button.-green-6:hover {
  background-color: transparent !important;
  color: var(--color-fd-green-6);
}

.button.-outline-green-6 {
  border: 2px solid var(--color-fd-green-6);
}

.button.-outline-green-6:hover {
  background-color: var(--color-fd-green-6);
  border-color: transparent;
  color: white !important;
}




.button.-blue-3 {
  background-color: var(--color-fd-blue-3);
  border: 2px solid var(--color-fd-blue-3);
}

.button.-blue-3:hover {
  background-color: transparent !important;
  color: var(--color-fd-blue-3);
}

.button.-outline-blue-3 {
  border: 2px solid var(--color-fd-blue-3);
}

.button.-outline-blue-3:hover {
  background-color: var(--color-fd-blue-3);
  border-color: transparent;
  color: white !important;
}

.button.-info-1 {
  background-color: var(--color-info-1);
  border: 2px solid var(--color-info-1);
}

.button.-info-1:hover {
  background-color: transparent !important;
  color: var(--color-info-1);
}

.button.-outline-info-1 {
  border: 2px solid var(--color-info-1);
}

.button.-outline-info-1:hover {
  background-color: var(--color-info-1);
  border-color: transparent;
  color: white !important;
}

.button.-info-2 {
  background-color: var(--color-info-2);
  border: 2px solid var(--color-info-2);
}

.button.-info-2:hover {
  background-color: transparent !important;
  color: var(--color-info-2);
}

.button.-outline-info-2 {
  border: 2px solid var(--color-info-2);
}

.button.-outline-info-2:hover {
  background-color: var(--color-info-2);
  border-color: transparent;
  color: white !important;
}

.button.-warning-1 {
  background-color: var(--color-warning-1);
  border: 2px solid var(--color-warning-1);
}

.button.-warning-1:hover {
  background-color: transparent !important;
  color: var(--color-warning-1);
}

.button.-outline-warning-1 {
  border: 2px solid var(--color-warning-1);
}

.button.-outline-warning-1:hover {
  background-color: var(--color-warning-1);
  border-color: transparent;
  color: white !important;
}

.button.-warning-2 {
  background-color: var(--color-warning-2);
  border: 2px solid var(--color-warning-2);
}

.button.-warning-2:hover {
  background-color: transparent !important;
  color: var(--color-warning-2);
}

.button.-outline-warning-2 {
  border: 2px solid var(--color-warning-2);
}

.button.-outline-warning-2:hover {
  background-color: var(--color-warning-2);
  border-color: transparent;
  color: white !important;
}

.button.-error-1 {
  background-color: var(--color-error-1);
  border: 2px solid var(--color-error-1);
}

.button.-error-1:hover {
  background-color: transparent !important;
  color: var(--color-error-1);
}

.button.-outline-error-1 {
  border: 2px solid var(--color-error-1);
}

.button.-outline-error-1:hover {
  background-color: var(--color-error-1);
  border-color: transparent;
  color: white !important;
}

.button.-error-2 {
  background-color: var(--color-error-2);
  border: 2px solid var(--color-error-2);
}

.button.-error-2:hover {
  background-color: transparent !important;
  color: var(--color-error-2);
}

.button.-outline-error-2 {
  border: 2px solid var(--color-error-2);
}

.button.-outline-error-2:hover {
  background-color: var(--color-error-2);
  border-color: transparent;
  color: white !important;
}

.button.-success-1 {
  background-color: var(--color-success-1);
  border: 2px solid var(--color-success-1);
}

.button.-success-1:hover {
  background-color: transparent !important;
  color: var(--color-success-1);
}

.button.-outline-success-1 {
  border: 2px solid var(--color-success-1);
}

.button.-outline-success-1:hover {
  background-color: var(--color-success-1);
  border-color: transparent;
  color: white !important;
}

.button.-success-2 {
  background-color: var(--color-success-2);
  border: 2px solid var(--color-success-2);
}

.button.-success-2:hover {
  background-color: transparent !important;
  color: var(--color-success-2);
}

.button.-outline-success-2 {
  border: 2px solid var(--color-success-2);
}

.button.-outline-success-2:hover {
  background-color: var(--color-success-2);
  border-color: transparent;
  color: white !important;
}

.button.-white-20 {
  background-color: rgba(255, 255, 255, 0.2);
}

.button.-white-20:hover {
  background-color: white;
}

.button.-gradient-1 {
  background: linear-gradient(90deg, #6440FB 0%, #E8543E 108.34%);
}

.button.-light-7:hover {
  color: white !important;
  background-color: var(--color-fd-blue-3) !important;
  border-color: var(--color-fd-blue-3) !important;
}

.dropdown {
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  border-radius: 8px;
}


select,
input[type="text"],
input[type="search"],
textarea,
input[type="email"] {
  border: 0;
}

.contact-form select,
.contact-form input[type="text"],
.contact-form input[type="number"],
.contact-form input[type="date"],
.contact-form input[type="password"],
.contact-form input[type="search"],
.contact-form textarea,
.contact-form input[type="email"] {
  outline: none;
  width: 100%;
  border-radius: 8px;
  border: 1px solid #DDDDDD;
  font-size: 15px;
  line-height: 1.5;
  padding: 15px 22px;
  transition: all 0.15s cubic-bezier(0.165, 0.84, 0.44, 1);
}

form.contact-form select.-border-dark,
form.contact-form input[type="text"].-border-dark,
form.contact-form input[type="password"].-border-dark,
form.contact-form input[type="search"].-border-dark,
form.contact-form textarea.-border-dark,
form.contact-form input[type="email"].-border-dark {
  border: 1px solid rgba(0, 0, 0, 0.15) !important;
}

form.contact-form ::-moz-placeholder {
  font-weight: 400;
}

form.contact-form :-ms-input-placeholder {
  font-weight: 400;
}

form.contact-form ::placeholder {
  font-weight: 400;
}

form.contact-form.-light label,
form.contact-form.-light p {
  color: white;
}

form.contact-form.-light select,
form.contact-form.-light input[type="text"],
form.contact-form.-light input[type="search"],
form.contact-form.-light textarea,
form.contact-form.-light input[type="email"] {
  color: white;
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
}

form.contact-form.-light ::-moz-placeholder {
  color: rgba(255, 255, 255, 0.7);
}

form.contact-form.-light :-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.7);
}

form.contact-form.-light ::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.form-switch .switch {
  position: relative;
  width: 50px;
  height: 20px;
}

.form-switch .switch__slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  box-shadow: 0px 10px 50px rgba(13, 38, 59, 0.1);
  background-color: rgba(255, 255, 255, 0.2);
  transition: .3s;
  border-radius: 30px;
  border: 1px solid #E7E7EC;
}

.form-switch .switch__slider::before {
  position: absolute;
  content: "";
  height: 10px;
  width: 10px;
  left: 5px;
  bottom: 4px;
  background-color: var(--color-light-2);
  border-radius: 50%;
  transition: .3s;
}

.form-switch .switch input {
  z-index: 5;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.form-switch .switch input:checked + .switch__slider {
  background-color: var(--color-fd-green-3);
}

.form-switch .switch input:checked + .switch__slider::before {
  transform: translateX(29px);
  background-color: #FFFFFF;
}

.form-single-field.-base {
  position: relative;
  height: 70px;
}

.form-single-field.-base > input {
  width: 100%;
  height: 100%;
}

.form-single-field.-base > input.text-white::-moz-placeholder {
  color: white;
}

.form-single-field.-base > input.text-white:-ms-input-placeholder {
  color: white;
}

.form-single-field.-base > input.text-white::placeholder {
  color: white;
}

.form-single-field.-base > input.text-dark-1::-moz-placeholder {
  color: var(--color-fd-blue-4);
}

.form-single-field.-base > input.text-dark-1:-ms-input-placeholder {
  color: var(--color-fd-blue-4);
}

.form-single-field.-base > input.text-dark-1::placeholder {
  color: var(--color-fd-blue-4);
}

.form-single-field.-base > button {
  position: absolute;
  top: 10px;
  bottom: 10px;
  right: 10px;
  min-width: calc(70px - 20px);
}

.form-single-field.-help {
  position: relative;
  height: 70px;
}

.form-single-field.-help > input {
  width: 100%;
  height: 100%;
  border: 1px solid var(--color-light-5);
  padding: 24px;
  border-radius: 8px;
}

.form-single-field.-help > button {
  position: absolute;
  top: 10px;
  bottom: 10px;
  right: 10px;
  width: 144px;
}

.form-upload__wrap {
  position: relative;
}

.form-upload button {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  display: flex;
  align-items: center;
  padding: 0 28px;
  border-top-left-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
}

.nice-select {
  cursor: pointer;
  position: relative;
  transition: all 0.2s ease-in-out;
  height: 55px;
  display: flex;
  align-items: center;
  border-radius: 8px;
  padding: 0 24px;
  border: 1px solid #DDDDDD;
}

.nice-select:active,
.nice-select.open,
.nice-select:focus {
  border-color: grey;
}

.nice-select:after {
  border-bottom: 2px solid #999;
  border-right: 2px solid #999;
  content: '';
  display: block;
  height: 5px;
  margin-top: -4px;
  pointer-events: none;
  position: absolute;
  right: 12px;
  top: 50%;
  transform-origin: 66% 66%;
  transform: rotate(45deg);
  transition: all 0.15s ease-in-out;
  width: 5px;
}

.nice-select.open:after {
  transform: rotate(-135deg);
}

.nice-select.open .nice-select-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: scaleY(1) translateY(0);
}

.nice-select.disabled {
  border-color: #ededed;
  color: #999;
  pointer-events: none;
}

.nice-select.disabled:after {
  border-color: #cccccc;
}

.nice-select.wide {
  width: 100%;
}

.nice-select.wide .nice-select-dropdown {
  left: 0 !important;
  right: 0 !important;
}

.nice-select .nice-select-dropdown {
  pointer-events: none;
  position: absolute;
  top: 100%;
  left: 0;
  transform-origin: top;
  transform: scaleY(0.8) translateY(0);
  transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
  z-index: 9;
  opacity: 0;
  background-color: white;
  margin-top: 10px;
  border: 1px solid #DDDDDD;
  border-radius: 8px;
}

.nice-select .list {
  overflow: hidden;
  padding: 0;
  overflow-y: auto;
  padding: 10px 0;
}

.nice-select .list:hover .option:not(:hover) {
  background-color: transparent !important;
}

.nice-select .option {
  cursor: pointer;
  margin-top: 5px;
  padding: 5px 25px;
  transition: all 0.2s;
}

.nice-select .option:last-child {
  border-bottom: none;
}

.nice-select .option:hover,
.nice-select .option.focus,
.nice-select .option.selected.focus {
  background-color: #DDDDDD;
}

.nice-select .option.selected {
  color: var(--color-fd-blue-3);
}

.nice-select .option.disabled {
  background-color: transparent;
  color: #999;
  cursor: default;
}

.no-csspointerevents .nice-select .nice-select-dropdown {
  display: none;
}

.no-csspointerevents .nice-select.open .nice-select-dropdown {
  display: block;
}

.nice-select .list::-webkit-scrollbar {
  width: 0;
}

.nice-select .has-multiple {
  white-space: inherit;
  height: auto;
  padding: 7px 12px;
}

.nice-select.has-multiple span.current {
  display: inline-block;
}

.nice-select.has-multiple span.current:not(:first-child)::before {
  content: ", ";
}

.nice-select.has-multiple .multiple-options {
  display: block;
}

.nice-select .nice-select-search-box {
  padding: 0 25px;
  margin-top: 25px;
}

.nice-select .nice-select-search {
  border: none !important;
  background-color: var(--color-light-2) !important;
}

h1, h2, h3, h4, h5, h6 {
  line-height: 1.2;
  font-weight: 700;
  margin: 0;
  color: var(--color-fd-blue-4);
}

.text-6 {
  font-size: var(--text-6) !important;
}

.text-9 {
  font-size: var(--text-9) !important;
}

.text-11 {
  font-size: var(--text-11) !important;
}

.text-13 {
  font-size: var(--text-13) !important;
}

.text-14 {
  font-size: var(--text-14) !important;
}

.text-15 {
  font-size: var(--text-15) !important;
}

.text-16 {
  font-size: var(--text-16) !important;
}

.text-17 {
  font-size: var(--text-17) !important;
}

.text-18 {
  font-size: var(--text-18) !important;
}

.text-20 {
  font-size: var(--text-20) !important;
}

.text-24 {
  font-size: var(--text-24) !important;
}

.text-30 {
  font-size: var(--text-30) !important;
}

.text-35 {
  font-size: var(--text-35) !important;
}

.text-40 {
  font-size: var(--text-40) !important;
}

.text-45 {
  font-size: var(--text-45) !important;
}

.text-50 {
  font-size: var(--text-50) !important;
}

.text-55 {
  font-size: var(--text-55) !important;
}

.text-60 {
  font-size: var(--text-60) !important;
}

.text-64 {
  font-size: var(--text-64) !important;
}

@media (max-width: 1199px) {
  .xl\:text-6 {
    font-size: var(--text-6) !important;
  }
  .xl\:text-9 {
    font-size: var(--text-9) !important;
  }
  .xl\:text-11 {
    font-size: var(--text-11) !important;
  }
  .xl\:text-13 {
    font-size: var(--text-13) !important;
  }
  .xl\:text-14 {
    font-size: var(--text-14) !important;
  }
  .xl\:text-15 {
    font-size: var(--text-15) !important;
  }
  .xl\:text-16 {
    font-size: var(--text-16) !important;
  }
  .xl\:text-17 {
    font-size: var(--text-17) !important;
  }
  .xl\:text-18 {
    font-size: var(--text-18) !important;
  }
  .xl\:text-20 {
    font-size: var(--text-20) !important;
  }
  .xl\:text-24 {
    font-size: var(--text-24) !important;
  }
  .xl\:text-30 {
    font-size: var(--text-30) !important;
  }
  .xl\:text-35 {
    font-size: var(--text-35) !important;
  }
  .xl\:text-40 {
    font-size: var(--text-40) !important;
  }
  .xl\:text-45 {
    font-size: var(--text-45) !important;
  }
  .xl\:text-50 {
    font-size: var(--text-50) !important;
  }
  .xl\:text-55 {
    font-size: var(--text-55) !important;
  }
  .xl\:text-60 {
    font-size: var(--text-60) !important;
  }
  .xl\:text-64 {
    font-size: var(--text-64) !important;
  }
}

@media (max-width: 991px) {
  .lg\:text-6 {
    font-size: var(--text-6) !important;
  }
  .lg\:text-9 {
    font-size: var(--text-9) !important;
  }
  .lg\:text-11 {
    font-size: var(--text-11) !important;
  }
  .lg\:text-13 {
    font-size: var(--text-13) !important;
  }
  .lg\:text-14 {
    font-size: var(--text-14) !important;
  }
  .lg\:text-15 {
    font-size: var(--text-15) !important;
  }
  .lg\:text-16 {
    font-size: var(--text-16) !important;
  }
  .lg\:text-17 {
    font-size: var(--text-17) !important;
  }
  .lg\:text-18 {
    font-size: var(--text-18) !important;
  }
  .lg\:text-20 {
    font-size: var(--text-20) !important;
  }
  .lg\:text-24 {
    font-size: var(--text-24) !important;
  }
  .lg\:text-30 {
    font-size: var(--text-30) !important;
  }
  .lg\:text-35 {
    font-size: var(--text-35) !important;
  }
  .lg\:text-40 {
    font-size: var(--text-40) !important;
  }
  .lg\:text-45 {
    font-size: var(--text-45) !important;
  }
  .lg\:text-50 {
    font-size: var(--text-50) !important;
  }
  .lg\:text-55 {
    font-size: var(--text-55) !important;
  }
  .lg\:text-60 {
    font-size: var(--text-60) !important;
  }
  .lg\:text-64 {
    font-size: var(--text-64) !important;
  }
}

@media (max-width: 767px) {
  .md\:text-6 {
    font-size: var(--text-6) !important;
  }
  .md\:text-9 {
    font-size: var(--text-9) !important;
  }
  .md\:text-11 {
    font-size: var(--text-11) !important;
  }
  .md\:text-13 {
    font-size: var(--text-13) !important;
  }
  .md\:text-14 {
    font-size: var(--text-14) !important;
  }
  .md\:text-15 {
    font-size: var(--text-15) !important;
  }
  .md\:text-16 {
    font-size: var(--text-16) !important;
  }
  .md\:text-17 {
    font-size: var(--text-17) !important;
  }
  .md\:text-18 {
    font-size: var(--text-18) !important;
  }
  .md\:text-20 {
    font-size: var(--text-20) !important;
  }
  .md\:text-24 {
    font-size: var(--text-24) !important;
  }
  .md\:text-30 {
    font-size: var(--text-30) !important;
  }
  .md\:text-35 {
    font-size: var(--text-35) !important;
  }
  .md\:text-40 {
    font-size: var(--text-40) !important;
  }
  .md\:text-45 {
    font-size: var(--text-45) !important;
  }
  .md\:text-50 {
    font-size: var(--text-50) !important;
  }
  .md\:text-55 {
    font-size: var(--text-55) !important;
  }
  .md\:text-60 {
    font-size: var(--text-60) !important;
  }
  .md\:text-64 {
    font-size: var(--text-64) !important;
  }
}

@media (max-width: 575px) {
  .sm\:text-6 {
    font-size: var(--text-6) !important;
  }
  .sm\:text-9 {
    font-size: var(--text-9) !important;
  }
  .sm\:text-11 {
    font-size: var(--text-11) !important;
  }
  .sm\:text-13 {
    font-size: var(--text-13) !important;
  }
  .sm\:text-14 {
    font-size: var(--text-14) !important;
  }
  .sm\:text-15 {
    font-size: var(--text-15) !important;
  }
  .sm\:text-16 {
    font-size: var(--text-16) !important;
  }
  .sm\:text-17 {
    font-size: var(--text-17) !important;
  }
  .sm\:text-18 {
    font-size: var(--text-18) !important;
  }
  .sm\:text-20 {
    font-size: var(--text-20) !important;
  }
  .sm\:text-24 {
    font-size: var(--text-24) !important;
  }
  .sm\:text-30 {
    font-size: var(--text-30) !important;
  }
  .sm\:text-35 {
    font-size: var(--text-35) !important;
  }
  .sm\:text-40 {
    font-size: var(--text-40) !important;
  }
  .sm\:text-45 {
    font-size: var(--text-45) !important;
  }
  .sm\:text-50 {
    font-size: var(--text-50) !important;
  }
  .sm\:text-55 {
    font-size: var(--text-55) !important;
  }
  .sm\:text-60 {
    font-size: var(--text-60) !important;
  }
  .sm\:text-64 {
    font-size: var(--text-64) !important;
  }
}

@media (max-width: 479px) {
  .xs\:text-6 {
    font-size: var(--text-6) !important;
  }
  .xs\:text-9 {
    font-size: var(--text-9) !important;
  }
  .xs\:text-11 {
    font-size: var(--text-11) !important;
  }
  .xs\:text-13 {
    font-size: var(--text-13) !important;
  }
  .xs\:text-14 {
    font-size: var(--text-14) !important;
  }
  .xs\:text-15 {
    font-size: var(--text-15) !important;
  }
  .xs\:text-16 {
    font-size: var(--text-16) !important;
  }
  .xs\:text-17 {
    font-size: var(--text-17) !important;
  }
  .xs\:text-18 {
    font-size: var(--text-18) !important;
  }
  .xs\:text-20 {
    font-size: var(--text-20) !important;
  }
  .xs\:text-24 {
    font-size: var(--text-24) !important;
  }
  .xs\:text-30 {
    font-size: var(--text-30) !important;
  }
  .xs\:text-35 {
    font-size: var(--text-35) !important;
  }
  .xs\:text-40 {
    font-size: var(--text-40) !important;
  }
  .xs\:text-45 {
    font-size: var(--text-45) !important;
  }
  .xs\:text-50 {
    font-size: var(--text-50) !important;
  }
  .xs\:text-55 {
    font-size: var(--text-55) !important;
  }
  .xs\:text-60 {
    font-size: var(--text-60) !important;
  }
  .xs\:text-64 {
    font-size: var(--text-64) !important;
  }
}

.lh-1 {
  line-height: 1 !important;
}

.lh-11 {
  line-height: 1.1 !important;
}

.lh-12 {
  line-height: 1.2 !important;
}

.lh-13 {
  line-height: 1.3 !important;
}

.lh-14 {
  line-height: 1.4 !important;
}

.lh-15 {
  line-height: 1.5 !important;
}

.lh-16 {
  line-height: 1.6 !important;
}

.lh-17 {
  line-height: 1.7 !important;
}

.lh-18 {
  line-height: 1.8 !important;
}

.lh-19 {
  line-height: 1.9 !important;
}

.lh-2 {
  line-height: 2 !important;
}

.app-content {
  padding-left: 40px;
}

@media (max-width: 767px) {
  .app-content {
    padding-left: 0;
  }
}

.app-content__title {
  font-size: 45px;
  line-height: 52px;
  font-weight: 700;
  color: var(--color-fd-blue-3);
}

.app-content__text {
  margin-top: 20px;
  color: var(--color-fd-blue-4);
  font-size: 15px;
  line-height: 26px;
  font-weight: 500;
}

.app-content__buttons {
  margin-top: 30px;
  display: flex;
}

.app-content__buttons > * + * {
  margin-left: 20px;
}

.coursesCard.-type-1 {
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.coursesCard.-type-1 .coursesCard__image {
  overflow: hidden;
}

.coursesCard.-type-1 .coursesCard__image_overlay {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  background-color: var(--color-fd-blue-4);
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.coursesCard.-type-1 .coursesCard__image img {
  z-index: 1;
  transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.coursesCard.-type-1 .coursesCard-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid #EDEDED;
}

.coursesCard.-type-1 .coursesCard-footer__author {
  display: flex;
  align-items: center;
}

.coursesCard.-type-1 .coursesCard-footer__author img {
  width: 30px;
  height: 30px;
  border-radius: 100%;
}

.coursesCard.-type-1 .coursesCard-footer__author div {
  margin-left: 10px;
  font-size: 14px;
  line-height: 16px;
  font-weight: 400;
  color: var(--color-light-1);
}

.coursesCard.-type-1 .coursesCard-footer__price {
  display: flex;
  align-items: center;
}

.coursesCard.-type-1 .coursesCard-footer__price > div:nth-child(1) {
  font-size: 15px;
  line-height: 17px;
  font-weight: 500;
  margin-right: 10px;
  color: var(--color-light-1);
  text-decoration: line-through;
}

.coursesCard.-type-1 .coursesCard-footer__price > div:nth-child(2) {
  font-size: 18px;
  line-height: 21px;
  font-weight: 500;
  color: var(--color-fd-blue-4);
}

.coursesCard.-type-1.-hover-shadow:hover {
  box-shadow: 0px 6px 15px 0px #404F680D;
}

.coursesCard.-type-1:hover {
  color: inherit;
}

.coursesCard.-type-1:hover .coursesCard__image_overlay {
  opacity: 0.5;
}

.coursesCard.-type-1:hover .coursesCard__image img {
  transform: scale(1.12);
}

.coursesCard.-type-2 {
  transition: all 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.coursesCard.-type-2:hover {
  box-shadow: 0px 25px 70px 0px #01213A12;
}

.coursesCard.-type-3 {
  padding: 0 40px;
}

@media (max-width: 991px) {
  .coursesCard.-type-3 {
    padding: 0;
  }
}

.coursesCard.-type-3 .coursesCard__icon {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100%;
  width: 120px;
  height: 120px;
  margin: 0 auto;
  font-size: 50px;
  transition: 0.2s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.coursesCard.-type-3 .coursesCard__icon .icon {
  transition: 0.2s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.coursesCard.-type-3:hover .coursesCard__icon {
  background-color: var(--color-fd-green-3) !important;
}

.coursesCard.-type-3:hover .coursesCard__icon .icon {
  color: white !important;
}

.coursesCard.-type-4 {
  transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.coursesCard.-type-4 .coursesCard__image {
  position: relative;
  overflow: hidden;
}

.coursesCard.-type-4 .coursesCard__image_overlay {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  background-color: var(--color-fd-blue-4);
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.coursesCard.-type-4 .coursesCard__image img {
  z-index: 1;
  transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.coursesCard.-type-4:hover {
  color: inherit;
}

.coursesCard.-type-4:hover .coursesCard__image_overlay {
  opacity: 0.5;
}

.coursesCard.-type-4:hover .coursesCard__image img {
  transform: scale(1.12);
}

.cta.-type-1 {
  z-index: 0;
  position: relative;
  padding-top: 208px;
  padding-bottom: 168px;
}

@media (max-width: 767px) {
  .cta.-type-1 {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}

@media (max-width: 575px) {
  .cta.-type-1 {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

.cta.-type-1 .cta__bg {
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Footer Social Icons */
.footer.-type-5 .footer-socials {
  gap: 20px;
}

.footer.-type-5 .footer-social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  font-size: 20px;
  transition: all 0.2s ease;
}

.footer.-type-5 .footer-social-icon:hover {
  background: var(--color-fd-green-4);
  transform: translateY(-2px);
}

.footer.-type-5 .hover-underline:hover {
  text-decoration: underline;
}

.header {
  transition: all 0.2s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.header__explore > a {
  position: relative;
  z-index: 1;
}

.header__explore > a::before {
  content: "";
  position: absolute;
  top: -6px;
  bottom: -6px;
  left: -14px;
  right: -14px;
  z-index: -1;
  background-color: rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  transition: all 0.2s cubic-bezier(0.165, 0.84, 0.44, 1);
  opacity: 0;
}

.header__explore > a:hover {
  color: var(--color-green-1) !important;
}

.header__explore > a:hover::before {
  opacity: 1;
}

/* ========================================
   Header - Main (Unified)
   ======================================== */
.header.-main {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 70px;
  background-color: var(--color-fd-blue-3);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 0 60px;
  z-index: 100;
}

@media (max-width: 1199px) {
  .header.-main {
    padding: 0 45px;
  }
}

@media (max-width: 991px) {
  .header.-main {
    padding: 0 20px;
  }
}

@media (max-width: 575px) {
  .header.-main {
    height: 60px;
    padding: 0 12px;
  }
}

.header.-main .header__container {
  height: 100%;
  display: flex;
  align-items: center;
}

/* Logo responsive sizing */
@media (max-width: 991px) {
  .header.-main .header__logo img {
    width: 110px;
    height: auto;
  }
}

@media (max-width: 575px) {
  .header.-main .header__logo img {
    width: 95px;
    height: auto;
  }
}

.header.-main .header__container .row {
  flex-wrap: nowrap;
  width: 100%;
}

.header.-main .header-left {
  display: flex;
  align-items: center;
}

/* Fix mobile alignment - remove extra padding from col-auto */
@media (max-width: 1199px) {
  .header.-main .header__container .row > .col-auto:last-child {
    padding-right: 0;
  }

  .header.-main .header-right {
    padding-right: 0;
  }
}

@media (max-width: 991px) {
  .header.-dashboard .header__container .row > .col-auto:last-child {
    padding-right: 0;
  }

  .header.-dashboard .header-right {
    padding-right: 0;
  }
}

.header.-main .header-menu {
  position: relative;
}

.header.-main .header-menu .menu {
  position: relative;
  left: unset;
  transform: none;
}

@media (min-width: 1200px) {
  .header .header-menu {
    position: absolute;
    left: 0;
    z-index: 5;
  }
  .header .header-menu .header-menu__content {
    display: flex;
    align-items: center;
  }
  .header .header-menu-close {
    display: none;
  }
  .header .header-menu-bg {
    display: none;
  }
  .header .header-menu .menu {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
  .header .header-menu .menu__nav {
    display: flex;
  }
  .header .header-menu .menu__nav a {
    display: flex;
    align-items: center;
    padding: 7px 16px;
    border-radius: 8px;
    transition: all 0.2s cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  
  .menu-lms{
    display: none;
    overflow: hidden;
  }
}

@media (min-width: 1200px) and (max-width: 1399px) {
  .header .header-menu .menu__nav a {
    padding: 6px 6px;
  }
}

@media (min-width: 1200px) {
  .header .header-menu .menu__nav li.menu-item-has-children a {
    display: flex;
    align-items: center;
  }
  .header .header-menu .menu__nav > li.menu-item-has-children > a .icon-chevron-right {
    transform: rotate(90deg);
  }
  .header .header-menu .menu__nav > li {
    padding: 17px 0;
  }
  .header .header-menu .menu__nav > li:hover > a {
    color: var(--color-green-1);
    background-color: rgba(255, 255, 255, 0.15);
  }
  .header .header-menu .menu__nav > li > .subnav::before {
    content: '';
    position: absolute;
    top: -5px;
    left: 20px;
    width: 10px;
    height: 10px;
    background-color: white;
    transform: rotate(45deg);
  }
  .header .header-menu .menu li.-has-mega-menu:hover > .mega {
    opacity: 1 !important;
    pointer-events: auto !important;
  }
  .header .header-menu .menu li:hover > .subnav {
    opacity: 1;
    pointer-events: auto;
  }
  .header .header-menu .menu .subnav {
    position: absolute;
    top: 100%;
    background-color: white;
    border-radius: 8px;
    color: var(--color-fd-blue-4) !important;
    font-weight: 500;
    min-width: 230px;
    padding-top: 20px;
    padding-bottom: 20px;
    box-shadow: 0px 25px 70px 0px #01213A12;
    opacity: 0;
    pointer-events: none;
    transition: all 0.2s cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  .header .header-menu .menu .subnav .subnav {
    top: 0;
    left: 97%;
  }
  .header .header-menu .menu .subnav > li {
    position: relative;
  }
  .header .header-menu .menu .subnav > li > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 30px;
  }
  .header .header-menu .menu .subnav > li > a:hover {
    color: var(--color-fd-blue-2);
  }
  .header .header-menu .menu .subnav .menu__backButton {
    display: none;
  }
  .header .header-menu .menu > .subnav {
    top: 100%;
    left: 0;
  }
  .header .header-menu .mobile-bg {
    display: none;
  }
  .header .header-menu .mobile-back-button {
    display: none;
  }
  .header .header-menu .mobile-footer {
    display: none;
  }
}

@media (max-width: 1199px) {
  .header .header-menu {
    position: fixed !important;
    top: 0;
    left: 0;
    z-index: 2000;
    max-width: calc(100vw - 80px);
    width: 60vw;
    height: 100vh;
    padding: 0 !important;
    transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
    opacity: 0;
    pointer-events: none;
  }
  .header .header-menu .header-menu__content {
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translateX(-20%);
  }
  .header .header-menu ul {
    overflow-y: hidden;
    overflow-x: hidden;
  }
  .header .header-menu.-is-el-visible {
    opacity: 1;
    pointer-events: auto;
  }
  .header .header-menu.-is-el-visible .-is-active {
    pointer-events: auto !important;
    overflow-y: scroll;
    overflow-x: hidden;
  }
  .header .header-menu.-is-el-visible .header-menu__content {
    transform: none;
  }
}

@media (max-width: 1199px) and (max-width: 767px) {
  .header .header-menu {
    width: 80vw;
  }
}

@media (max-width: 1199px) and (max-width: 575px) {
  .header .header-menu {
    width: calc(100vw - 60px);
    max-width: 100%;
  }
}

@media (max-width: 1199px) {
  .header .header-menu-close {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: -1;
  }
}

@media (max-width: 1199px) and (max-width: 575px) {
  .header .header-menu-close {
    top: 10px;
    right: 10px;
  }
}

@media (max-width: 1199px) {
  .header .header-menu-bg {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(24, 24, 26, 0.7);
    z-index: -2;
  }
  .header .header-menu .menu {
    overflow-y: hidden;
    overflow-x: hidden;
    position: relative;
    padding: 20px;
    height: 100%;
  }
  .header .header-menu .menu ul {
    pointer-events: none;
  }
  .header .header-menu .menu__nav {
    display: flex;
    flex-direction: column;
  }
  .header .header-menu .menu__nav a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 60px;
    padding: 0 20px;
    border-radius: 8px;
    color: var(--color-fd-blue-4) !important;
    transition: all 0.2s cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  .header .header-menu .menu__nav a:hover {
    color: var(--color-fd-blue-3) !important;
    background-color: var(--color-fd-light-1);
  }
  .header .header-menu .menu__nav > li > a {
    font-weight: 500;
    font-size: 16px;
  }
  .header .header-menu .menu__nav li {
    overflow: hidden;
  }
  .header .header-menu .menu .subnav {
    position: absolute;
    top: 0;
    left: 0;
    color: black !important;
    padding: 20px;
    width: 100%;
    height: 100%;
  }
  .header .header-menu .menu .subnav a {
    transform: translateY(100%);
  }
  .header .header-menu .menu .subnav > li > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 45px;
    padding: 0 20px;
    color: var(--color-fd-blue-4) !important;
    transition: color 0.2s cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  .header .header-menu .menu .subnav > li > a:hover {
    color: var(--color-fd-blue-2) !important;
  }
  .header .header-menu .menu .subnav .menu__backButton a {
    justify-content: flex-start !important;
    height: 60px !important;
    font-weight: 600 !important;
    color: var(--color-fd-blue-3) !important;
    font-size: 16px;
    background-color: var(--color-fd-light-2);
  }
  .header .header-menu .mobile-bg {
    position: fixed;
    top: 0;
    left: 0;
    max-width: calc(100vw - 80px);
    width: 60vw;
    height: 100vh;
    z-index: -1;
    background-color: white;
  }
}

@media (max-width: 1199px) and (max-width: 767px) {
  .header .header-menu .mobile-bg {
    width: 80vw;
  }
}

@media (max-width: 1199px) and (max-width: 575px) {
  .header .header-menu .mobile-bg {
    width: calc(100vw - 60px);
    max-width: 100%;
  }
}

@media (max-width: 1199px) {
  .header .header-menu .mobile-footer .mobile-socials {
    display: flex;
    margin-left: -15px;
  }
  .header .header-menu .mobile-footer .mobile-socials a {
    transition: all 0.2s cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  .header .header-menu .mobile-footer .mobile-socials a:hover {
    background-color: var(--color-light-4);
    color: var(--color-fd-blue-3) !important;
  }
}

.header.-base {
  z-index: 100;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
}

.header.-base .header__container {
  position: relative;
  padding: 0 60px;
}

@media (max-width: 991px) {
  .header.-base .header__container {
    padding: 0 40px;
  }
}

@media (max-width: 767px) {
  .header.-base .header__container {
    padding: 0 15px;
  }
}

.header.-base .header-menu {
  position: relative;
}

.header.-base .header-menu .menu {
  position: relative;
  left: unset;
  transform: none;
}

.header.-base-sidebar {
  z-index: 100;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 0 20px;
}

.header.-base-sidebar .row {
  flex-wrap: nowrap;
}

@media (max-width: 767px) {
  .header.-base-sidebar .row {
    margin: 0;
  }
  .header.-base-sidebar .col-auto {
    padding: 0;
  }
}

@media (max-width: 575px) {
  .header.-base-sidebar .header__logo img {
    width: 80%;
  }
}

@media (max-width: 991px) {
  .dashboard.-home-9 {
    margin-top: 30px;
  }
}

@media (max-width: 767px) {
  .dashboard.-home-9 {
    margin-top: 60px;
  }
}

.dashboard.-home-9 .dashboard__sidebar {
  will-change: transform;
  transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
}

@media (max-width: 991px) {
  .dashboard.-home-9 .dashboard__sidebar {
    z-index: 110;
    position: fixed;
    top: 0;
    bottom: 0;
    width: 300px;
    margin-top: 90px;
  }
}

@media (max-width: 767px) {
  .dashboard.-home-9 .dashboard__sidebar {
    width: 80%;
  }
}

.dashboard.-home-9 .dashboard__main {
  will-change: padding-left;
  transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
}

@media (max-width: 991px) {
  .dashboard.-home-9 .dashboard__main::after {
    content: "";
    position: fixed;
    z-index: 50;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.5);
    pointer-events: auto;
    opacity: 1;
    transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  }
}

.dashboard.-home-9.-is-sidebar-hidden .dashboard__sidebar {
  transform: translateX(-100%);
}

.dashboard.-home-9.-is-sidebar-hidden .dashboard__main {
  padding-left: 0;
}

.dashboard.-home-9.-is-sidebar-hidden .dashboard__main::after {
  pointer-events: none;
  opacity: 0;
}

/* Mobile sidebar - hidden by default */
@media (max-width: 991px) {
  .dashboard.-home-9 .dashboard__sidebar {
    transform: translateX(-100%);
  }

  .dashboard.-home-9 .dashboard__main::after {
    display: none;
  }

  .dashboard.-home-9.-sidebar-open .dashboard__sidebar {
    transform: translateX(0);
  }
}

/* Mobile sidebar overlay */
.sidebar-mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.dashboard.-home-9.-sidebar-open .sidebar-mobile-overlay {
  opacity: 1;
  visibility: visible;
}

.sidebar.-base-sidebar .sidebar__inner {
  padding-top: 40px;
}

.sidebar.-base-sidebar .sidebar__item {
  display: flex;
  align-items: center;
  border-radius: 16px;
  padding: 0 20px;
  height: 55px;
}

@media (max-width: 575px) {
  .sidebar.-base-sidebar .sidebar__item {
    border-radius: 0;
    height: 45px;
  }
}

.sidebar.-base-sidebar .sidebar__item.-is-active {
  background-color: var(--color-fd-light-2);
  color: var(--color-fd-blue-3) !important;
}

.sidebar.-base-sidebar .sidebar__links > div > a {
  display: flex;
  align-items: center;
}

.sidebar.-base-sidebar .sidebar__links > div > a::before {
  content: "";
  display: inline-block;
  margin-right: 10px;
  background-color: currentColor;
  border-radius: 100%;
  width: 5px;
  height: 5px;
}

.sidebar.-base-sidebar .sidebar__links > div > a:hover {
  color: var(--color-fd-blue-4);
}

.sidebar.-base-sidebar .sidebar__links > div > a:hover::before {
  background-color: var(--color-fd-blue-4);
}

.header .header-search {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  height: 590px;
}

.header .header-search__field {
  position: relative;
}

.header .header-search__field input {
  padding: 18px 36px;
  border-bottom: 1px solid #EDEDED;
}

.header .header-search__field input:focus {
  outline: none;
  border-bottom: 1px solid var(--color-fd-blue-4);
}

.header .header-search__field input::-moz-placeholder {
  color: var(--color-fd-blue-4);
}

.header .header-search__field input:-ms-input-placeholder {
  color: var(--color-fd-blue-4);
}

.header .header-search__field input::placeholder {
  color: var(--color-fd-blue-4);
}

.header .header-search__field .icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  font-size: 20px;
}

.header .header-search__field button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
}

.header .header-search__bg {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 8;
  width: 100%;
  height: 100%;
  background-color: rgba(24, 24, 26, 0.7);
}

.header .header-cart {
  position: absolute;
  top: calc(100% + 24px);
  right: -16px;
  z-index: 10;
  min-width: 410px;
  box-shadow: 0px 0px 70px 0px #01213A12;
}

.header .header-langselector {
  position: absolute;
  top: calc(100% + 24px);
  right: -16px;
  z-index: 10;
  min-width: 150px;
  box-shadow: 0px 0px 70px 0px #01213A12;
}

/* Cart mobile: drag handle and overlay (mobile only) */
.cart-drag-handle {
  display: none;
}

.cart-overlay {
  display: none;
}

@media (max-width: 575px) {
  .js-cart-toggle .header-cart {
    position: fixed;
    top: auto;
    bottom: 0;
    right: 0;
    left: 0;
    width: 100vw;
    min-width: 100vw;
    border-radius: 16px 16px 0 0;
    max-height: 85vh;
    overflow-y: auto;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    z-index: 1001;
  }

  .js-cart-toggle.-is-el-visible .header-cart {
    transform: translateY(0);
  }

  .cart-drag-handle {
    display: block;
    width: 40px;
    height: 4px;
    background: #d0d0d0;
    border-radius: 2px;
    margin: 12px auto 8px;
  }

  .cart-overlay {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
  }

  .js-cart-toggle.-is-el-visible .cart-overlay {
    opacity: 1;
    pointer-events: auto;
  }
}

.header .explore-content {
  position: absolute;
  top: 100%;
  box-shadow: inset 0px 0px 0px 1px #DDDDDD;
  min-width: 300px;
}

.header .explore-content::before {
  content: '';
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: 0px 25px 70px 0px #01213A12;
}

.header .explore-content a {
  display: flex;
  padding: 5px 0;
}

.header .explore-content .explore__subnav {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 95%;
  min-width: 300px;
  padding: 22px 40px;
  box-shadow: 0px 25px 70px 0px #01213A12;
  background-color: white;
  z-index: -1;
  transition: all 0.2s cubic-bezier(0.215, 0.61, 0.355, 1);
  opacity: 0;
  pointer-events: none;
}

.header .explore-content .explore__item {
  z-index: -1;
  padding: 0 30px;
}

.header .explore-content .explore__item:hover .explore__subnav {
  opacity: 1;
  pointer-events: auto;
}

.header .header-menu .mega {
  position: fixed;
  left: 50%;
  background-color: white;
  padding: 30px;
  width: 1500px;
  margin-top: 10px;
  min-height: 430px;
  transform: translate(-50%);
  border-radius: 8px;
  box-shadow: 0px 25px 70px 0px #01213A12;
  opacity: 0;
  pointer-events: none;
  transition: all 0.2s cubic-bezier(0.215, 0.61, 0.355, 1);
}

@media screen and (max-width: 1580px) {
  .header .header-menu .mega {
    width: 100vw;
  }
}

.header .header-menu .mega__menu {
  display: flex;
  height: 100%;
}

.header .header-menu .mega__menu .row {
  width: 100%;
}

.header .header-menu .mega__menu .mega__list a {
  padding: 4px 0;
  color: var(--color-fd-blue-4) !important;
  font-weight: 500;
}

.header .header-menu .mega__menu a:hover {
  color: var(--color-fd-blue-2) !important;
}

.header .header-menu .mega .mega-banner {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-left: auto;
  height: 100%;
  max-width: 310px;
  padding: 30px;
  border-radius: 8px;
}


.sectionTitle__title {
  font-size: 30px;
  line-height: 34px;
  font-weight: 700;
  color: var(--color-fd-blue-3);
}

.sectionTitle__text {
  margin-top: 10px;
  color: var(--color-fd-blue-2);
}

.sectionTitle.-light .sectionTitle__title {
  color: white;
}

.sectionTitle.-light .sectionTitle__text {
  color: white;
}

.mainSlider.-type-1 {
  position: relative;
  z-index: 0;
}

.mainSlider.-type-1 .swiper-wrapper {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.mainSlider.-type-1 .swiper-slide {
  z-index: 1;
  position: relative;
  padding-top: 232px;
  padding-bottom: 34px;
}

@media (max-width: 991px) {
  .mainSlider.-type-1 .swiper-slide {
    padding-top: 180px;
    padding-bottom: 40px;
  }
}

@media (max-width: 767px) {
  .mainSlider.-type-1 .swiper-slide {
    padding-top: 160px;
    padding-bottom: 50px;
  }
}

.mainSlider.-type-1 .swiper-prev {
  z-index: 2;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 60px;
}

@media (max-width: 991px) {
  .mainSlider.-type-1 .swiper-prev {
    left: 15px;
  }
}

@media (max-width: 767px) {
  .mainSlider.-type-1 .swiper-prev {
    display: none !important;
  }
}

.mainSlider.-type-1 .swiper-next {
  z-index: 2;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 60px;
}

@media (max-width: 991px) {
  .mainSlider.-type-1 .swiper-next {
    right: 15px;
  }
}

@media (max-width: 767px) {
  .mainSlider.-type-1 .swiper-next {
    display: none !important;
  }
}

.mainSlider.-type-1 .mainSlider__bg {
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.mainSlider.-type-1 .mainSlider__bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-fd-blue-4);
  opacity: 0.5;
}

.mainSlider.-type-1 .mainSlider__content {
  padding-top: 260px;
}

@media (max-width: 991px) {
  .mainSlider.-type-1 .mainSlider__content {
    padding-top: 140px;
  }
}

@media (max-width: 767px) {
  .mainSlider.-type-1 .mainSlider__content {
    padding-top: 180px;
  }
}

.mainSlider.-type-1 .mainSlider__title {
  font-size: 55px;
  line-height: 80px;
}

@media (max-width: 991px) {
  .mainSlider.-type-1 .mainSlider__title {
    font-size: 45px;
    line-height: 1.3;
  }
}

@media (max-width: 767px) {
  .mainSlider.-type-1 .mainSlider__title {
    font-size: 40px;
  }
}

.mainSlider.-type-1 .mainSlider__text {
  font-size: 17px;
  line-height: 36px;
  margin-top: 13px;
}

@media (max-width: 991px) {
  .mainSlider.-type-1 .mainSlider__text {
    margin-top: 15px;
    font-size: 16px;
    line-height: 1.6;
  }
}

.mainSlider.-type-1 .mainSlider__form {
  position: relative;
  margin-top: 43px;
}

@media (max-width: 991px) {
  .mainSlider.-type-1 .mainSlider__form {
    margin-top: 35px;
  }
}

.mainSlider.-type-1 .mainSlider__form input {
  width: 100%;
  height: 70px;
  font-size: 15px;
  line-height: 26px;
  background-color: white;
  color: var(--color-light-1);
  border-radius: 100px;
  padding: 22px 35px;
}

@media (max-width: 767px) {
  .mainSlider.-type-1 .mainSlider__form input {
    padding: 14px 24px;
    height: 50px;
  }
}

.mainSlider.-type-1 .mainSlider__form input::-moz-placeholder {
  color: inherit;
}

.mainSlider.-type-1 .mainSlider__form input:-ms-input-placeholder {
  color: inherit;
}

.mainSlider.-type-1 .mainSlider__form input::placeholder {
  color: inherit;
}

.mainSlider.-type-1 .mainSlider__form button {
  position: absolute;
  top: 10px;
  bottom: 10px;
  right: 10px;
  height: auto;
  min-width: auto;
  padding: 15px 32px;
  border-radius: 100px;
}

@media (max-width: 767px) {
  .mainSlider.-type-1 .mainSlider__form button {
    top: unset;
    bottom: unset;
    right: unset;
    position: relative;
    height: 50px;
    width: 100%;
    margin-top: 15px;
  }
}

.mainSlider.-type-1 .mainSlider__items {
  padding-top: 120px;
  padding-bottom: 30px;
}

@media (max-width: 1199px) {
  .mainSlider.-type-1 .mainSlider__items {
    padding-top: 80px;
  }
}

@media (max-width: 991px) {
  .mainSlider.-type-1 .mainSlider__items {
    padding-top: 50px;
  }
}

.pagination.-arrows {
  display: flex;
  color: var(--color-fd-blue-4);
}

.pagination.-arrows > * + * {
  margin-left: 12px;
}

.pagination.-arrows .pagination__item {
  background-color: currentColor;
  height: 8px;
  width: 8px;
  border-radius: 100%;
  transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.pagination.-arrows .pagination__item.is-active {
  background-color: var(--color-fd-green-4);
}

.arrow-left-hover {
  transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.arrow-left-hover:hover {
  color: var(--color-fd-blue-3);
  transform: translateX(-5px) scale(1.25);
}

.arrow-right-hover {
  transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.arrow-right-hover:hover {
  color: var(--color-fd-blue-3);
  transform: translateX(5px) scale(1.25);
}

.pagination.-buttons {
  display: flex;
  align-items: center;
}

.pagination.-buttons > * + * {
  margin-left: 40px;
}

.pagination.-buttons .pagination__button {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 45px;
  width: 45px;
  border-radius: 100%;
  background-color: var(--color-light-7);
  color: var(--color-fd-blue-3);
  transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.pagination.-buttons .pagination__button .icon {
  font-size: 12px;
}

.pagination.-buttons .pagination__button:hover {
  background-color: var(--color-fd-blue-3);
  color: white;
}

.pagination.-buttons .pagination__count > * {
  position: relative;
  font-size: 14px;
  font-weight: 400;
  line-height: 16px;
  color: var(--color-fd-blue-4);
}

.pagination.-buttons .pagination__count > * + * {
  margin-left: 30px;
}

.pagination.-buttons .pagination__count a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 50%;
  width: 16px;
  height: 2px;
  transform: translateX(-50%);
  background-color: var(--color-fd-blue-3);
  transition: all 0.2s cubic-bezier(0.215, 0.61, 0.355, 1);
  opacity: 0;
}

.pagination.-buttons .pagination__count a.-count-is-active {
  color: var(--color-fd-blue-3);
}

.pagination.-buttons .pagination__count a.-count-is-active::after {
  opacity: 1;
}

.pagination.-avatars {
  display: flex;
  align-items: center;
}

.pagination.-avatars .pagination__item {
  display: flex;
  align-items: center;
  justify-content: center;
}

.pagination.-avatars .pagination__item::before {
  content: "";
  position: absolute;
  border-radius: 100%;
  width: 92px;
  height: 92px;
  border: 2px solid var(--color-fd-blue-4);
  transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
  opacity: 0;
}

.pagination.-avatars .pagination__item.is-active::before {
  opacity: 1;
}

.featureIcon.-type-1 {
  display: flex;
}

.featureIcon.-type-1 .featureIcon__icon {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  border-radius: 100%;
}

@media (max-width: 767px) {
  .featureIcon.-type-1 .featureIcon__icon {
    width: 60px;
    height: 60px;
  }
}

.featureIcon.-type-1 .featureIcon__icon .icon {
  font-size: 38px;
}

@media (max-width: 767px) {
  .featureIcon.-type-1 .featureIcon__icon .icon {
    font-size: 32px;
  }
}

.page-header.-type-1 {
  padding-top: 90px;
  padding-bottom: 40px;
}

@media (max-width: 767px) {
  .page-header.-type-1 {
    padding-top: 60px;
    padding-bottom: 40px;
  }
}

.page-header.-type-1 .page-header__title {
  font-size: 40px;
  line-height: 45px;
}

@media (max-width: 991px) {
  .page-header.-type-1 .page-header__title {
    font-size: 35px;
    line-height: 40px;
  }
}

.page-header.-type-1 .page-header__text {
  font-size: 17px;
  line-height: 36px;
  margin-top: 5px;
}

@media (max-width: 991px) {
  .page-header.-type-1 .page-header__text {
    font-size: 16px;
    line-height: 1.5;
  }
}

.page-header.-type-2 {
  position: relative;
  padding-top: 135px;
  padding-bottom: 135px;
  margin-top: 90px;
  z-index: 0;
}

@media (max-width: 767px) {
  .page-header.-type-2 {
    margin-top: 0px;
    padding-top: 70px;
    padding-bottom: 70px;
  }
}

.page-header.-type-2 .page-header__bg {
  position: absolute;
  top: 0;
  left: 50%;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: black;
  max-width: 1500px;
  transform: translateX(-50%);
  border-radius: 8px;
}

@media (max-width: 767px) {
  .page-header.-type-2 .page-header__bg {
    border-radius: 0;
  }
}

.page-header.-type-2 .page-header__bg div {
  border-radius: 8px;
}

@media (max-width: 767px) {
  .page-header.-type-2 .page-header__bg div {
    border-radius: 0;
  }
}

.page-header.-type-2 .page-header__title {
  font-size: 40px;
  line-height: 45px;
}

@media (max-width: 991px) {
  .page-header.-type-2 .page-header__title {
    font-size: 35px;
    line-height: 40px;
  }
}

.page-header.-type-3 {
  position: relative;
  margin-top: 90px;
  padding-top: 75px;
  padding-bottom: 75px;
}

@media (max-width: 767px) {
  .page-header.-type-3 {
    margin-top: 50px;
    padding-top: 50px;
    padding-bottom: 50px;
  }
}

.page-header.-type-3 .page-header__bg {
  position: absolute;
  top: 0;
  left: 180px;
  right: 180px;
  z-index: -1;
  height: 100%;
  border-radius: 8px;
}

@media (max-width: 1199px) {
  .page-header.-type-3 .page-header__bg {
    left: 100px;
    right: 100px;
  }
}

@media (max-width: 991px) {
  .page-header.-type-3 .page-header__bg {
    left: 50px;
    right: 50px;
  }
}

@media (max-width: 767px) {
  .page-header.-type-3 .page-header__bg {
    left: 30px;
    right: 30px;
  }
}

@media (max-width: 575px) {
  .page-header.-type-3 .page-header__bg {
    left: 0;
    right: 0;
    border-radius: 0;
  }
}

.page-header.-type-3 .page-header__title {
  font-size: 40px;
  line-height: 45px;
}

@media (max-width: 991px) {
  .page-header.-type-3 .page-header__title {
    font-size: 35px;
    line-height: 40px;
  }
}

.page-header.-type-3 .page-header__text {
  font-size: 17px;
  line-height: 36px;
  margin-top: 5px;
}

@media (max-width: 991px) {
  .page-header.-type-3 .page-header__text {
    font-size: 16px;
    line-height: 1.5;
  }
}

.page-header.-type-4 {
  position: relative;
  margin-top: 90px;
  padding-top: 210px;
  padding-bottom: 175px;
}

@media (max-width: 991px) {
  .page-header.-type-4 {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}

@media (max-width: 767px) {
  .page-header.-type-4 {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}

.page-header.-type-4 .page-header__title {
  font-size: 40px;
  line-height: 45px;
}

@media (max-width: 991px) {
  .page-header.-type-4 .page-header__title {
    font-size: 35px;
    line-height: 40px;
  }
}

.page-header.-type-4 .page-header__text {
  font-size: 17px;
  line-height: 36px;
  margin-top: 5px;
}

@media (max-width: 991px) {
  .page-header.-type-4 .page-header__text {
    font-size: 16px;
    line-height: 1.5;
  }
}

.page-header.-type-6 {
  position: relative;
  margin-top: 90px;
  padding-top: 90px;
  padding-bottom: 90px;
}

@media (max-width: 991px) {
  .page-header.-type-6 {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}

@media (max-width: 767px) {
  .page-header.-type-6 {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}

.page-header.-type-6 .page-header {
  position: relative;
}

.page-header.-type-6 .page-header__bg {
  position: absolute;
  top: 0;
  left: 60px;
  right: 60px;
  z-index: -1;
  height: 100%;
  border-radius: 8px;
}

@media (max-width: 1300px) {
  .page-header.-type-6 .page-header__bg {
    left: 40px;
    right: 40px;
  }
}

@media (max-width: 1199px) {
  .page-header.-type-6 .page-header__bg {
    left: 40px;
    right: 40px;
  }
}

@media (max-width: 767px) {
  .page-header.-type-6 .page-header__bg {
    left: 20px;
    right: 20px;
  }
}

@media (max-width: 575px) {
  .page-header.-type-6 .page-header__bg {
    left: 0;
    right: 0;
    border-radius: 0;
  }
}

.breadcrumbs {
  margin-top: 83px;
  padding: 16px 0;
  display: flex;
  align-items: center;
  background-color: var(--color-light-6);
}

.breadcrumbs__content {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -4px;
  align-items: center;
}

.breadcrumbs__content > * {
  padding: 0 4px;
}

.breadcrumbs__content > * + *::before {
  content: "•";
  display: inline-block;
  margin-right: 8px;
}

.breadcrumbs__content > * + *:last-child a {
  color: var(--color-fd-blue-4);
}

.breadcrumbs__item a {
  font-size: 13px;
  line-height: 1;
}

@media (max-width: 767px) {
  .breadcrumbs {
    margin-top: 76px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .breadcrumbs {
    margin-top: 56px;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .breadcrumbs {
    margin-top: 61px;
  }
}

/* ========== FD BREADCRUMB (Standard) ========== */
.fd-breadcrumb {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 0;
  flex-wrap: wrap;
}

.fd-breadcrumb__item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 500;
  color: var(--color-light-1);
  text-decoration: none;
  transition: color 0.2s ease;
}

.fd-breadcrumb__item:hover {
  color: var(--color-fd-green-4);
}

.fd-breadcrumb__item.-active {
  color: var(--color-fd-blue-3);
  font-weight: 600;
}

.fd-breadcrumb__item.-active:hover {
  color: var(--color-fd-blue-3);
}

.fd-breadcrumb__item i {
  font-size: 14px;
}

.fd-breadcrumb__arrow {
  font-size: 11px;
  color: var(--color-light-1);
}

@media (max-width: 767px) {
  .fd-breadcrumb {
    gap: 6px;
  }
  .fd-breadcrumb__item {
    font-size: 13px;
  }
  .fd-breadcrumb__item.-active {
    max-width: 140px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: inline-block;
  }
  .fd-breadcrumb__arrow {
    font-size: 8px;
  }
}

.accordion__icon {
  position: relative;
}

.accordion__icon .icon {
  transition: all 0.2s ease-out;
}

.accordion__icon .icon:nth-child(1) {
  position: absolute;
  top: 0;
  left: 0;
}

.accordion__icon .icon:nth-child(2) {
  position: relative;
  transform: rotate(-90deg);
  opacity: 0;
}

.accordion__item.is-active .accordion__icon > *:nth-child(1) {
  transform: rotate(90deg);
  opacity: 0;
}

.accordion__item.is-active .accordion__icon > *:nth-child(2) {
  transform: none;
  opacity: 1;
}

.accordion__content {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.2s ease-out;
}

.accordion__button {
  cursor: pointer;
  border: none;
  outline: none;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transition: 0.4s;
}

.accordion__button button {
  color: #454545;
}

.accordion__button:active {
  color: #454545;
}

.accordion.-simple .accordion__item {
  padding: 0;
}

.accordion.-simple .accordion__content {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.2s ease-out;
}

.accordion.-simple .accordion__content__inner {
  padding-bottom: 1.33333rem;
}

.accordion.-simple .accordion__button {
  cursor: pointer;
  color: var(--text-dark-1);
  padding: 1.26667rem 0;
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  border: none;
  outline: none;
  transition: 0.4s;
}

.accordion.-simple .accordion__button button {
  color: var(--text-dark-1);
}

.accordion.-simple .accordion__icon {
  position: relative;
  margin-right: 1rem;
}

.accordion.-simple .accordion__icon .icon {
  width: 1.6rem;
  height: 1.6rem;
  stroke-width: 2;
  transition: all 0.2s ease-out;
}

.accordion.-simple .accordion__icon .icon:nth-child(1) {
  position: absolute;
  top: 0;
  left: 0;
}

.accordion.-simple .accordion__icon .icon:nth-child(2) {
  position: relative;
  transform: rotate(-90deg);
  opacity: 0;
}

.accordion.-simple .accordion__item.is-active .accordion__icon > *:nth-child(1) {
  transform: rotate(90deg);
  opacity: 0;
}

.accordion.-simple .accordion__item.is-active .accordion__icon > *:nth-child(2) {
  transform: none;
  opacity: 1;
}

.accordion.-simple.-light .accordion__item + .accordion__item {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.accordion.-block .accordion__item {
  box-shadow: 0px 1px 4px rgba(20, 3, 66, 0.07);
  border-radius: 16px;
  padding: 0;
}

.accordion.-block .accordion__item + .accordion__item {
  margin-top: 20px;
}

.accordion.-block .accordion__content {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.2s ease-out;
}

.accordion.-block .accordion__content__inner {
  padding: 0 85px 35px 82px;
}

@media (max-width: 575px) {
  .accordion.-block .accordion__content__inner {
    padding: 0 25px 35px 82px;
  }
}

.accordion.-block .accordion__button {
  border: none;
  outline: none;
  cursor: pointer;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 20px;
  width: 100%;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.accordion.-block .accordion__icon {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background-color: var(--color-fd-green-3);
  border-radius: 100%;
  margin-right: 22px;
  transition: all 0.2s ease-out;
}

.accordion.-block .accordion__icon .icon {
  position: absolute;
  width: 18px;
  height: 18px;
  stroke-width: 2;
  color: #fff;
  transition: all 0.2s ease-out;
}

.accordion.-block .accordion__icon .icon:nth-child(1) {
  top: unset;
  left: unset;
}

.accordion.-block .accordion__icon .icon:nth-child(2) {
  transform: rotate(-90deg);
  opacity: 0;
}

.accordion.-block .accordion__item.is-active .accordion__icon {
  background-color: var(--color-fd-blue-3);
}

.accordion.-block .accordion__item.is-active .accordion__icon .icon {
  color: white;
}

.accordion.-block .accordion__item.is-active .accordion__icon > *:nth-child(1) {
  transform: rotate(90deg);
  opacity: 0;
}

.accordion.-block .accordion__item.is-active .accordion__icon > *:nth-child(2) {
  transform: none;
  opacity: 1;
}

.accordion.-block-2 .accordion__item {
  background-color: #FFFFFF;
  border-radius: 16px;
  padding: 0;
  border: 1px solid #EDEDED;
}

.accordion.-block-2 .accordion__item + .accordion__item {
  margin-top: 1.33333rem;
}

.accordion.-block-2 .accordion__content {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.2s ease-out;
}

.accordion.-block-2 .accordion__button {
  border-radius: 16px;
  border: none;
  outline: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.accordion.-block-2 .accordion__icon {
  position: relative;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  margin-right: 14px;
  transition: all 0.2s ease-out;
}

.accordion.-block-2 .accordion__icon .icon {
  position: absolute;
  width: 24px;
  height: 24px;
  stroke-width: 2;
  transition: all 0.2s ease-out;
}

.accordion.-block-2 .accordion__icon .icon:nth-child(2) {
  transform: rotate(-90deg);
  opacity: 0;
}

.accordion.-block-2 .accordion__item.is-active .accordion__icon > *:nth-child(1) {
  transform: rotate(90deg);
  opacity: 0;
}

.accordion.-block-2 .accordion__item.is-active .accordion__icon > *:nth-child(2) {
  transform: none;
  opacity: 1;
}

.tabs__content {
  position: relative;
}

.tabs__pane {
  position: absolute;
  top: 0;
  visibility: hidden;
  transition: none;
  opacity: 0;
}

.tabs__pane.is-active {
  transition: opacity 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) 0.1s;
  position: relative;
  opacity: 1;
  visibility: visible;
}

.tabs.-buttons .tabs__button {
  padding: 0.53333rem 1.6rem;
  border-radius: 0.53333rem;
  transition: all 0.15s cubic-bezier(0.165, 0.84, 0.44, 1);
  background-color: var(--bg-light-4);
}

.tabs.-buttons .tabs__button.is-active {
  color: white !important;
  background-color: var(--accent-color) !important;
}

.tabs.-buttons .tabs__button:not(:first-child) {
  margin-left: 0.8rem;
}

.tabs.-buttons .tabs__pane {
  display: none;
  opacity: 0;
  transition: all 0.15s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.tabs.-buttons .tabs__pane.is-active {
  display: block;
  opacity: 1;
}

.tabs.-active-1 .tabs__controls button.is-active {
  color: black !important;
  background-color: white !important;
}

.tabs.-active-2 .tabs__controls .tabs__button.is-active {
  background-color: var(--bg-dark-5) !important;
}

.tabs.-active-3 .tabs__controls .tabs__button.is-active .-tab-active {
  background-color: var(--dark-blue-color) !important;
  color: white !important;
}

.tabs.-pills .tabs__controls .tabs__button.is-active {
  color: var(--color-fd-blue-3) !important;
  font-weight: 500;
  background-color: var(--color-fd-light-2);
}

.tabs.-pills-2 .tabs__controls .tabs__button.is-active {
  color: var(--color-fd-blue-3) !important;
  background-color: white !important;
}

.tabs.-side .tabs__controls {
  border-left: 1px solid var(--color-light-5);
}

.tabs.-side .tabs__controls .tabs__button {
  position: relative;
  padding-left: 22px;
}

.tabs.-side .tabs__controls .tabs__button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -1px;
  height: 100%;
  width: 2px;
  background-color: var(--color-fd-blue-3);
  transition: all 0.2s cubic-bezier(0.165, 0.84, 0.44, 1);
  opacity: 0;
}

.tabs.-side .tabs__controls .tabs__button.is-active {
  color: var(--color-fd-blue-3) !important;
}

.tabs.-side .tabs__controls .tabs__button.is-active::before {
  opacity: 1;
}

.tabs.-lines .tabs__controls {
  border-bottom: 1px solid #EEEEEE;
  display: flex;
}

.tabs.-lines .tabs__button {
  margin-bottom: -1px;
  padding: 0.66667rem 0.8rem;
  padding-bottom: 2.26667rem;
  font-weight: 600;
  transition: all 0.15s cubic-bezier(0.165, 0.84, 0.44, 1);
  width: 100%;
}

.tabs.-lines .tabs__button.is-active {
  color: var(--accent-color);
  border-bottom: 1px solid var(--accent-color);
}

.tabs.-lines .tabs__button + .tabs__button {
  margin-left: 0.53333rem;
}

.tabs.-lines-small .tabs__controls {
  border-bottom: 1px solid #EEEEEE;
  display: flex;
}

.tabs.-lines-small .tabs__button {
  margin-bottom: -1px;
  padding: 0.66667rem 0.8rem;
  font-weight: 600;
  transition: all 0.15s cubic-bezier(0.165, 0.84, 0.44, 1);
  border-bottom: 2px solid transparent;
}

.tabs.-lines-small .tabs__button.is-active {
  color: var(--accent-color) !important;
  border-bottom: 2px solid var(--accent-color);
}

.tabs.-lines-small .tabs__button + .tabs__button {
  margin-left: 0.53333rem;
}

.tabs.-lines-small .tabs__pane {
  display: none;
  opacity: 0;
  transition: all 0.15s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.tabs.-lines-small .tabs__pane.is-active {
  display: block;
  opacity: 1;
}

.tabs.-button-bg-white .tabs__button.is-active {
  background-color: white !important;
  box-shadow: 0px 5px 70px rgba(1, 33, 58, 0.03);
}

.tabs.-button-bg-white .tabs__pane {
  display: none;
  opacity: 0;
  transition: all 0.15s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.tabs.-button-bg-white .tabs__pane.is-active {
  display: block;
  opacity: 1;
}

.badge {
  border-radius: 200px;
  font-weight: 500;
  line-height: 1;
  transition: all 0.15s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.badge.-sm {
  padding: 8px 17px;
}

.badge.-light-3 {
  background-color: var(--color-light-2);
}

.badge.-light-3:hover {
  background-color: var(--color-fd-blue-3);
  color: white !important;
}

.related-nav {
  text-decoration: none !important;
}

.priceCard.-type-1 {
  box-shadow: 0px 20px 30px 0px #19192E0A;
}

.priceCard.-type-1 .priceCard__list > * {
  display: flex;
  align-items: center;
}

.priceCard.-type-1 .priceCard__list > * + * {
  margin-top: 10px;
}

.productCard.-type-1 .productCard__image {
  position: relative;
}

.productCard.-type-1 .productCard__image img {
  width: 100%;
}

.productCard.-type-1 .productCard__controls {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  width: 100%;
  height: 100%;
  padding-bottom: 20px;
}

.productCard.-type-1 .productCard__icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 100%;
  background: white;
  box-shadow: 0px 1px 4px 0px #14034212;
  margin: 0 5px;
  transition: all 0.2s cubic-bezier(0.215, 0.61, 0.355, 1);
  opacity: 0;
}

.productCard.-type-1 .productCard__icon .icon {
  color: black;
  width: 15px;
  height: 15px;
}

.productCard.-type-1 .productCard__button a {
  font-size: 15px;
  line-height: 1;
  height: 50px;
  padding: 16px 50px;
}

.productCard.-type-1:hover .productCard__icon {
  opacity: 1;
}

  display: flex;
}

@media (max-width: 767px) {
  .shopSingle-preview {
    flex-direction: column-reverse;
  }
}

.shopSingle-preview__imageList {
  width: 140px;
  margin: -5px -10px;
  padding-right: 10px;
}

.shopSingle-preview__imageList > * {
  padding: 5px 10px;
}

@media (max-width: 767px) {
  .shopSingle-preview__imageList {
    padding-right: 0;
    padding-top: 0.66667rem;
    display: flex;
    width: 100%;
    margin: -5px;
  }
  .shopSingle-preview__imageList > * {
    padding: 5px;
    width: 100%;
  }
}

.shopSingle-preview__image {
  overflow: hidden;
  width: 100%;
}

.shopSingle-info__subtitle {
  font-size: 0.93333rem;
  line-height: 1;
}

.shopSingle-info__title {
  font-size: 2.33333rem;
  line-height: 1.2;
  font-weight: 600;
}

.shopSingle-info__content p {
  font-size: 0.93333rem;
  line-height: 1.6;
}

.shopSingle-info__content p + p {
  margin-top: 1.06667rem;
}

.shopSingle-info__action {
  display: flex;
  flex-wrap: wrap;
}

.shopSingle-info__footer span {
  display: block;
  font-size: 0.93333rem;
  line-height: 1.6;
}

.dashboard {
  display: flex;
  align-items: start;
  margin-top: 90px;
}

@media (max-width: 991px) {
  .dashboard {
    flex-direction: column;
    padding: 30px;
  }
}

@media (max-width: 575px) {
  .dashboard {
    padding: 0;
  }
}

.sidebar.-courses > * + * {
  border-top: 1px solid #DDDDDD;
  padding-top: 30px;
  margin-top: 30px;
}

.sidebar.-courses .sidebar__title {
  font-size: 20px;
  font-weight: 500;
  line-height: 23px;
}

.sidebar.-courses .sidebar-checkbox {
  display: flex;
  flex-direction: column;
  margin-top: 30px;
}

.sidebar.-courses .sidebar-checkbox > * + * {
  margin-top: 15px;
}

.sidebar.-courses .sidebar-checkbox__item {
  display: flex;
  align-items: center;
  width: 100%;
}

.sidebar.-courses .sidebar-checkbox .form-checkbox {
  margin-right: 10px;
}

.sidebar.-courses .sidebar-checkbox__title {
  font-size: 14px;
  line-height: 1;
  color: var(--color-fd-blue-4);
}

.sidebar.-courses .sidebar-checkbox__count {
  font-size: 14px;
  line-height: 1;
  margin-left: auto;
  text-align: right;
}

.sidebar.-blog > * + * {
  border-top: 1px solid #DDDDDD;
  padding-top: 30px;
  margin-top: 30px;
}

.sidebar.-blog.-no-border > * + * {
  border-top: 0;
  padding-top: 0;
  margin-top: 30px;
}

.sidebar.-blog .sidebar__title {
  font-size: 20px;
  line-height: 23px;
  font-weight: 500;
}

.sidebar.-blog .sidebar-content {
  padding-top: 30px;
}

.sidebar.-blog .sidebar-content.-list {
  display: flex;
  flex-direction: column;
}

.sidebar.-blog .sidebar-content.-list a:hover {
  font-weight: 500;
  color: var(--color-fd-blue-3);
}

.sidebar.-blog .sidebar-content.-list > * + * {
  margin-top: 4px;
}

.sidebar.-blog .sidebar-content.-tags {
  display: flex;
  flex-wrap: wrap;
  margin: -5px;
}

.sidebar.-blog .sidebar-content.-tags > * {
  padding: 5px;
}

.sidebar.-blog .sidebar-content.-event > * + * {
  margin-top: 20px;
}

.sidebar.-blog .sidebar-recent__image {
  width: 65px;
  height: 65px;
  flex-shrink: 0;
}

.sidebar.-blog .sidebar-recent__image img {
  border-radius: 8px;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.sidebar.-blog .sidebar-tag a {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 8px 18px;
  background-color: var(--color-light-2);
  border-radius: 100px;
  transition: all 0.2s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.sidebar.-blog .sidebar-tag a:hover {
  color: white !important;
  background-color: var(--color-fd-blue-3);
}

.sidebar.-blog .sidebar-event {
  display: flex;
  justify-content: space-between;
  border: 1px solid #DDDDDD;
  border-radius: 8px;
  padding: 17px 20px;
}

.sidebar.-shop > * + * {
  border-top: 1px solid #DDDDDD;
  padding-top: 30px;
  margin-top: 30px;
}

.sidebar.-shop.-no-border > * + * {
  border-top: 0;
  padding-top: 0;
  margin-top: 30px;
}

.sidebar.-shop .sidebar__title {
  font-size: 20px;
  line-height: 23px;
  font-weight: 500;
}

.sidebar.-shop .sidebar__search .search > form {
  position: relative;
  display: flex;
  align-items: center;
}

.sidebar.-shop .sidebar__search .search .field {
  z-index: 1;
  width: 100%;
  font-size: 14px;
  line-height: 1;
  padding: 16px;
  padding-left: 56px;
  border-radius: 8px;
  border: 1px solid var(--color-light-8);
}

.sidebar.-shop .sidebar__search .search .submit {
  z-index: 5;
  position: absolute;
  left: 0;
  padding-left: 16px;
}

.sidebar.-shop .sidebar__search .search .submit::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  width: calc(100% + 8px);
  height: calc(100% + 8px);
}

.sidebar.-shop .sidebar__search .search .icon {
  width: 22px;
  height: 22px;
  stroke-width: 1.5;
}

.sidebar.-shop .sidebar-content {
  padding-top: 30px;
}

.sidebar.-shop .sidebar-content.-list {
  display: flex;
  flex-direction: column;
}

.sidebar.-shop .sidebar-content.-list a:hover {
  font-weight: 500;
  color: var(--color-fd-blue-3);
}

.sidebar.-shop .sidebar-content.-list > * + * {
  margin-top: 4px;
}

.sidebar.-shop .sidebar-content.-tags {
  display: flex;
  flex-wrap: wrap;
  margin: -5px;
}

.sidebar.-shop .sidebar-content.-tags > * {
  padding: 5px;
}

.sidebar.-shop .sidebar-content.-event > * + * {
  margin-top: 20px;
}

.sidebar.-shop .sidebar-recent__image {
  width: 65px;
  height: 65px;
  flex-shrink: 0;
}

.sidebar.-shop .sidebar-recent__image img {
  border-radius: 8px;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.sidebar.-shop .sidebar-tag a {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 8px 18px;
  background-color: var(--color-light-2);
  border-radius: 100px;
  transition: all 0.2s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.sidebar.-shop .sidebar-tag a:hover {
  color: white !important;
  background-color: var(--color-fd-blue-3);
}

.sidebar.-shop .sidebar-event {
  display: flex;
  justify-content: space-between;
  border: 1px solid #DDDDDD;
  border-radius: 8px;
  padding: 17px 20px;
}

[data-slider] > div > [data-sign] {
  background-color: unset;
  width: unset;
  height: unset;
  border-radius: unset;
  display: inline-block;
  text-align: unset;
  margin-top: 22px;
  color: black;
}

[data-slider] > div > [data-sign]:last-child {
  float: right;
}

[data-slider] > div > [data-sign] span::before {
  content: 'Min Price: $';
  display: inline-block;
  color: #615E5E;
}

[data-slider] > div > [data-sign]:last-child span::before {
  content: 'Max Price: $';
  display: inline-block;
  color: #615E5E;
}

[data-slider] > div > [data-sign] > span {
  font-size: 14px;
  line-height: 16px;
  color: black;
}

[data-slider] {
  position: relative;
  border-radius: 10px;
  text-align: left;
}

[data-slider] > div {
  width: 100%;
}

[data-slider] > div > [data-inverse-left] {
  position: absolute;
  left: 0;
  height: 5px;
  border-radius: 10px;
  background-color: var(--color-light-12);
}

[data-slider] > div > [data-inverse-right] {
  position: absolute;
  right: 0;
  height: 5px;
  border-radius: 10px;
  background-color: var(--color-light-12);
}

[data-slider] > div > [data-range] {
  position: absolute;
  left: 0;
  height: 5px;
  border-radius: 14px;
  background-color: var(--color-fd-blue-3);
}

[data-slider] > div > [data-thumb] {
  position: absolute;
  top: -7px;
  z-index: 2;
  height: 17px;
  width: 17px;
  text-align: left;
  margin-left: -11px;
  cursor: pointer;
  background-color: #FFF;
  border-radius: 50%;
  outline: none;
  border: 2px solid var(--color-fd-blue-3);
}

div[data-slider] > input[type=range]::-ms-thumb {
  pointer-events: all;
  width: 17px;
  height: 17px;
  border-radius: 0px;
  border: 0 none;
  background: red;
}

div[data-slider] > input[type=range]::-moz-range-thumb {
  pointer-events: all;
  width: 17px;
  height: 17px;
  border-radius: 0px;
  border: 0 none;
  background: red;
}

div[data-slider] > input[type=range]::-webkit-slider-thumb {
  pointer-events: all;
  width: 17px;
  height: 17px;
  border-radius: 0px;
  border: 0 none;
  background: red;
  -webkit-appearance: none;
}

div[data-slider] > input[type=range]::-ms-fill-lower {
  background: transparent;
  border: 0 none;
}

div[data-slider] > input[type=range]::-ms-fill-upper {
  background: transparent;
  border: 0 none;
}

[data-slider] > input[type=range] {
  position: absolute;
  pointer-events: none;
  -webkit-appearance: none;
  z-index: 3;
  height: 5px;
  top: -2px;
  width: 100%;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
  -moz-opacity: 0;
  -khtml-opacity: 0;
  opacity: 0;
}

div[data-slider] > input[type=range]::-ms-track {
  -webkit-appearance: none;
  background: transparent;
  color: transparent;
}

div[data-slider] > input[type=range]::-moz-range-track {
  -moz-appearance: none;
  background: transparent;
  color: transparent;
}

div[data-slider] > input[type=range]:focus::-webkit-slider-runnable-track {
  background: transparent;
  border: transparent;
}

div[data-slider] > input[type=range]:focus {
  outline: none;
}

div[data-slider] > input[type=range]::-ms-tooltip {
  display: none;
}

[data-slider] > div > [data-sign] {
  display: inline-block;
  text-align: center;
  padding: 4px 16px;
  border-radius: 8px;
  margin-top: 22px;
}

[data-slider] > div > [data-sign] > span {
  font-size: 12px;
  line-height: 28px;
}

[data-slider]:hover > div > [data-sign] {
  opacity: 1;
}

.form-page {
  position: relative;
  display: flex;
  align-items: end;
  height: 100vh;
}

@media (max-height: 900px) {
  .form-page {
    min-height: 130vh;
  }
}

@media (max-width: 991px) {
  .form-page {
    display: block;
    height: auto;
  }
}

.form-page__img {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 40vw;
}

@media (max-width: 991px) {
  .form-page__img {
    width: 100%;
    position: relative;
  }
}

.form-page__content {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60vw;
  height: 100%;
}

@media (max-width: 991px) {
  .form-page__content {
    width: 100%;
  }
}

.form-page-composition {
  position: relative;
}

.form-page-composition .-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 20;
}

.form-page-composition .-bg img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

.form-page-composition .-el-1 {
  width: 100%;
}

.form-page-composition .-el-2 {
  position: absolute;
  bottom: 33px;
  right: 90px;
}

.form-page-composition .-el-3 {
  position: absolute;
  bottom: 290px;
  left: 20px;
}

.form-page-composition .-el-4 {
  position: absolute;
  bottom: 300px;
  right: 52px;
}

.bg-white {
  background-color: var(--color-white);
}

.bg-black {
  background-color: var(--color-black);
}

.bg-info-1 {
  background-color: var(--color-info-1);
}

.bg-info-2 {
  background-color: var(--color-info-2);
}

.bg-warning-1 {
  background-color: var(--color-warning-1);
}

.bg-warning-2 {
  background-color: var(--color-warning-2);
}

.bg-error-1 {
  background-color: var(--color-error-1);
}

.bg-error-2 {
  background-color: var(--color-error-2);
}

.bg-success-1 {
  background-color: var(--color-success-1);
}

.bg-success-2 {
  background-color: var(--color-success-2);
}

.bg-fd-green-1{
  background-color: var(--color-fd-green-1);
}

.bg-fd-green-2{
  background-color: var(--color-fd-green-2);
}

.bg-fd-green-3{
  background-color: var(--color-fd-green-3);
}

.bg-fd-green-4{
  background-color: var(--color-fd-green-4);
}

.bg-fd-green-5{
  background-color: var(--color-fd-green-5);
}

.bg-fd-green-6{
  background-color: var(--color-fd-green-6);
}

.bg-fd-beige-1{
  background-color: var(--color-fd-beige-1);
}

.bg-fd-beige-2{
  background-color: var(--color-fd-beige-2);
}

.bg-fd-beige-3{
  background-color: var(--color-fd-beige-3);
}

.bg-fd-beige-4{
  background-color: var(--color-fd-beige-4);
}

.bg-fd-beige-5{
  background-color: var(--color-fd-beige-5);
}

.bg-fd-beige-6{
  background-color: var(--color-fd-beige-6);
}

.bg-fd-aqua-1{
  background-color: var(--color-fd-aqua-1);
}

.bg-fd-aqua-2{
  background-color: var(--color-fd-aqua-2);
}

.bg-fd-aqua-3{
  background-color: var(--color-fd-aqua-3);
}

.bg-fd-aqua-4{
  background-color: var(--color-fd-aqua-4);
}

.bg-fd-aqua-5{
  background-color: var(--color-fd-aqua-5);
}

.bg-fd-aqua-6{
  background-color: var(--color-fd-aqua-6);
}

.bg-fd-blue-1{
  background-color: var(--color-fd-blue-1);
}

.bg-fd-blue-2{
  background-color: var(--color-fd-blue-2);
}

.bg-fd-blue-3{
  background-color: var(--color-fd-blue-3);
}

.bg-fd-blue-4{
  background-color: var(--color-fd-blue-4);
}

.bg-fd-blue-5{
  background-color: var(--color-fd-blue-5);
}

.bg-fd-light-1{
  background-color: var(--color-fd-light-1);
}

.bg-fd-light-2{
  background-color: var(--color-fd-light-2);
}

.bg-fd-gray-1{
  background-color: var(--color-fd-gray-1);
}

.bg-fd-gray-3 {
  background-color: var(--color-fd-gray-3);
}

.bg-fd-gray-4 {
  background-color: var(--color-fd-gray-4);
}

.bg-fd-gray-5 {
  background-color: var(--color-fd-gray-5);
}

.bg-fd-gray-6 {
  background-color: var(--color-fd-gray-6);
}

.bg-fd-gold-1 {
  background-color: var(--color-fd-gold-1);
}

.bg-fd-gold-2 {
  background-color: var(--color-fd-gold-2);
}

.bg-info-1 {
  background-color: var(--color-info-1);
}

.bg-info-2 {
  background-color: var(--color-info-2);
}

.bg-warning-1 {
  background-color: var(--color-warning-1);
}

.bg-warning-2 {
  background-color: var(--color-warning-2);
}

.bg-error-1 {
  background-color: var(--color-error-1);
}

.bg-error-2 {
  background-color: var(--color-error-2);
}

.bg-success-1 {
  background-color: var(--color-success-1);
}

.bg-success-2 {
  background-color: var(--color-success-2);
}

.text-white {
  color: var(--color-white);
}

.text-black {
  color: var(--color-black);
}

.text-info-1 {
  color: var(--color-info-1);
}

.text-info-2 {
  color: var(--color-info-2);
}

.text-warning-1 {
  color: var(--color-warning-1);
}

.text-warning-2 {
  color: var(--color-warning-2);
}

.text-error-1 {
  color: var(--color-error-1);
}

.text-error-2 {
  color: var(--color-error-2);
}

.text-success-1 {
  color: var(--color-success-1);
}

.text-success-2 {
  color: var(--color-success-2);
}

.text-fd-green-1{
  color: var(--color-fd-green-1);
}

.text-fd-green-2{
  color: var(--color-fd-green-2);
}

.text-fd-green-3{
  color: var(--color-fd-green-3);
}

.text-fd-green-4{
  color: var(--color-fd-green-4);
}

.text-fd-green-5{
  color: var(--color-fd-green-5);
}

.text-fd-green-6{
  color: var(--color-fd-green-6);
}

.text-fd-beige-1{
  color: var(--color-fd-beige-1);
}

.text-fd-beige-2{
  color: var(--color-fd-beige-2);
}

.text-fd-beige-3{
  color: var(--color-fd-beige-3);
}

.text-fd-beige-4{
  color: var(--color-fd-beige-4);
}

.text-fd-beige-5{
  color: var(--color-fd-beige-5);
}

.text-fd-beige-6{
  color: var(--color-fd-beige-6);
}

.text-fd-aqua-1{
  color: var(--color-fd-aqua-1);
}

.text-fd-aqua-2{
  color: var(--color-fd-aqua-2);
}

.text-fd-aqua-3{
  color: var(--color-fd-aqua-3);
}

.text-fd-aqua-4{
  color: var(--color-fd-aqua-4);
}

.text-fd-aqua-5{
  color: var(--color-fd-aqua-5);
}

.text-fd-aqua-6{
  color: var(--color-fd-aqua-6);
}

.text-fd-blue-1{
  color: var(--color-fd-blue-1);
}

.text-fd-blue-2{
  color: var(--color-fd-blue-2);
}

.text-fd-blue-3{
  color: var(--color-fd-blue-3);
}

.text-fd-blue-4{
  color: var(--color-fd-blue-4);
}

.text-fd-blue-5{
  color: var(--color-fd-blue-5);
}

.text-fd-gold-1{
  color: var(--color-fd-gold-1);
}

.text-fd-gold-2{
  color: var(--color-fd-gold-2);
}

.text-info-1 {
  color: var(--color-info-1);
}

.text-info-2 {
  color: var(--color-info-2);
}

.text-warning-1 {
  color: var(--color-warning-1);
}

.text-warning-2 {
  color: var(--color-warning-2);
}

.text-error-1 {
  color: var(--color-error-1);
}

.text-error-2 {
  color: var(--color-error-2);
}

.text-success-1 {
  color: var(--color-success-1);
}

.text-success-2 {
  color: var(--color-success-2);
}

.text-light-2{
 color: var(--color-light-2);
}

.text-fd-gray-1{
  background-color: var(--color-fd-gray-1);
}

h3.text-primary{
  color: var(--color-fd-green-4) !important;
}

@media (max-width: 767px) {
  .md\:container {
    max-width: 48rem;
    padding-top: 0;
    padding-left: 1.06667rem;
    padding-right: 1.06667rem;
    margin: 0 auto;
  }
}

@media (max-width: 575px) {
  .md\:container {
    max-width: 36rem;
  }
}

@media (max-width: 479px) {
  .md\:container {
    max-width: 100%;
    padding-left: 1.6rem;
    padding-right: 1.6rem;
  }
}

@media (max-width: 575px) {
  .sm\:container {
    max-width: 36rem;
  }
}

@media (max-width: 479px) {
  .sm\:container {
    max-width: 100%;
    padding-left: 1.6rem;
    padding-right: 1.6rem;
  }
}

@media (max-width: 479px) {
  .xs\:container {
    max-width: 100%;
    padding-left: 1.6rem;
    padding-right: 1.6rem;
  }
}

.html-overflow-hidden {
  overflow: hidden !important;
}

.html-overflow-hidden body {
  overflow-y: scroll;
}

.smooth-scroll {
  scroll-behavior: smooth;
}

.origin-top {
  transform-origin: top !important;
}

.origin-left {
  transform-origin: left !important;
}

.overflow-hidden {
  overflow: hidden !important;
}

.overflow-normal {
  overflow: initial !important;
}

.overflow-visible {
  overflow: visible !important;
}

.pointer-events-auto {
  pointer-events: auto !important;
}

.pointer-events-none {
  pointer-events: none !important;
}

.bg-image {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  width: 100%;
  height: 100%;
}

.img-full {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.fit-cover {
  -o-object-fit: cover;
     object-fit: cover;
}

.img-ratio {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.overlay-black-30::after, .overlay-black-50::after, .overlay-black-60::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
}

.overlay-black-30::after {
  background-color: rgba(0, 0, 0, 0.3);
}

.overlay-black-50::after {
  background-color: rgba(0, 0, 0, 0.5);
}

.overlay-black-60::after {
  background-color: rgba(0, 0, 0, 0.6);
}

.container-1500 {
  max-width: 1530px;
  padding-left: 1rem;
  padding-right: 1rem;
  margin: 0 auto;
}

@media (max-width: 1199px) {
  .container-1500 {
    max-width: 960px;
  }
}

@media (max-width: 991px) {
  .container-1500 {
    max-width: 720px;
  }
}

@media (max-width: 767px) {
  .container-1500 {
    max-width: 540px;
  }
}

@media (max-width: 575px) {
  .container-1500 {
    max-width: 100%;
  }
}

@media (max-width: 479px) {
  .container-1500 {
    padding-left: 1.6rem;
    padding-right: 1.6rem;
  }
}

.container-wide {
  padding-left: 60px;
  padding-right: 60px;
  max-width: 1500px;
  margin: 0 auto;
}

@media (max-width: 575px) {
  .container-wide {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

.rounded-0 {
  border-radius: 0 !important;
}

.rounded-4 {
  border-radius: 4px !important;
}

.rounded-8 {
  border-radius: 8px !important;
}

.rounded-16 {
  border-radius: 16px !important;
}

.rounded-200 {
  border-radius: 200px !important;
}

.rounded-full {
  border-radius: 100% !important;
}

.rounded-top-8 {
  border-radius: 8px 8px 0 0 !important;
}

.z--1 {
  z-index: -1;
}

.z-0 {
  z-index: 0;
}

.z-1 {
  z-index: 1;
}

.z-2 {
  z-index: 2;
}

.z-3 {
  z-index: 3;
}

.z-4 {
  z-index: 4;
}

.z-5 {
  z-index: 5;
}

.line-through {
  text-decoration: line-through;
}

.underline {
  text-decoration: underline;
}

.italic {
  font-style: italic;
}

.uppercase {
  text-transform: uppercase;
}

.capitalize {
  text-transform: capitalize;
}

.normal {
  text-transform: none;
}

.line__item {
  width: 100%;
  height: 1px;
}

.fw-300 {
  font-weight: 300 !important;
}

.fw-400 {
  font-weight: 400 !important;
}

.fw-500 {
  font-weight: 500 !important;
}

.fw-600 {
  font-weight: 600 !important;
}

.fw-700 {
  font-weight: 700 !important;
}

.fw-800 {
  font-weight: 800 !important;
}

.fw-900 {
  font-weight: 900 !important;
}

.opac-10 {
  opacity: 0.1;
}

.opac-20 {
  opacity: 0.2;
}

.opac-30 {
  opacity: 0.3;
}

.opac-40 {
  opacity: 0.4;
}

.opac-50 {
  opacity: 0.5;
}

.opac-60 {
  opacity: 0.6;
}

.opac-70 {
  opacity: 0.7;
}

.opac-80 {
  opacity: 0.8;
}

.opac-90 {
  opacity: 0.9;
}

.ul-list {
  padding-left: 1.06667rem;
}

.ul-list li {
  list-style: disc;
}

.ol-list {
  padding-left: 1.06667rem;
}

.ol-list li {
  list-style: decimal;
}

.border-light {
  border: 1px solid var(--color-light-5);
}

.border-dark {
  border: 1px solid rgba(20, 3, 66, 0.07);
}

.border-dark-1-lg {
  border: 2px solid rgba(20, 3, 66, 0.07);
}

.border-bottom-light-2 {
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.border-bottom-light {
  border-bottom: 1px solid var(--color-light-5);
}

.border-right-light {
  border-right: 1px solid var(--color-light-5);
}

.border-top-light {
  border-top: 1px solid var(--color-light-5);
}

.border-top-light-15 {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.svg-shape {
  display: flex;
}

.svg-shape svg {
  width: 100%;
  height: auto;
}

.svg-shape.-r-180 {
  transform: rotate(180deg);
}

.section-bg {
  z-index: 1;
  position: relative;
}

.section-bg__item {
  z-index: -1;
  position: absolute;
  top: 0;
  left: 60px;
  right: 60px;
  height: 100%;
  border-radius: 16px;
}

.cta-section{
  background: var(--color-fd-blue-3);
  border-radius: 25px;
  padding: 30px 50px;
  max-width: 90%;
  margin: 60px auto;
  color: #fff;
  align-items: center;
}

.cta-section img{
  margin:15px 0;
}

@media (max-width: 767px) {
  .cta-section{
    padding: 30px 20px;
    margin: 10px auto;
  }
}

@media (max-width: 1400px) {
  .section-bg__item {
    left: 20px;
    right: 20px;
  }
}

@media (max-width: 767px) {
  .section-bg__item {
    left: 0;
    right: 0;
    border-radius: 0;
  }
}

.section-bg__item.-full {
  left: 0;
  right: 0;
  width: 100%;
  border-radius: 0;
}

.section-bg__item.-height-half {
  height: calc(100% - 150px);
}

.shadow-1 {
  box-shadow: 0px 20px 30px rgba(25, 25, 46, 0.04);
}

.shadow-2 {
  box-shadow: 0px 25px 70px 0px #01213A12;
}

.shadow-3 {
  box-shadow: 0px 20px 30px 0px #19192E0A;
}

.shadow-4 {
  box-shadow: 0px 1px 4px 0px #14034212;
}

.shadow-5 {
  box-shadow: 0px 6px 15px 0px #404F680D;
}

.shadow-6 {
  box-shadow: 0px 40px 30px 0px #19192E0A;
}

.h-100 {
  height: 100% !important;
}

.border-top-dark {
  border-top: 1px solid rgba(20, 3, 66, 0.07) !important;
}

.border-bottom-dark {
  border-bottom: 1px solid rgba(20, 3, 66, 0.07) !important;
}

.absolute-full-center {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.gallery__item {
  position: relative;
  display: block;
}

.gallery__item:hover .gallery__button {
  opacity: 1;
}

.gallery__button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  background-color: black;
  border-radius: 100%;
  width: 3.46667rem;
  height: 3.46667rem;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s cubic-bezier(0.165, 0.84, 0.44, 1);
  opacity: 0;
}

.gallery__button .icon {
  color: white;
  stroke-width: 1;
  width: 1.86667rem;
  height: 1.86667rem;
}

.gallery__button.-bottom-right {
  top: unset;
  left: unset;
  transform: unset;
  bottom: 2rem;
  right: 2rem;
}

.shrink-0 {
  flex-shrink: 0;
}

.flex-row {
  flex-direction: row;
}

.bg-transparent {
  background-color: transparent !important;
}

.line.-vertical.-h-120 {
  width: 1px;
  height: 120px;
}

.size-12 {
  flex-shrink: 0;
  width: 12px;
  height: 12px;
}

.size-120 {
  flex-shrink: 0;
  width: 120px;
  height: 120px;
}

.size-100 {
  flex-shrink: 0;
  width: 100px;
  height: 100px;
}

.size-180 {
  flex-shrink: 0;
  width: 180px;
  height: 180px;
}

.size-90 {
  flex-shrink: 0;
  width: 90px;
  height: 90px;
}

.size-70 {
  flex-shrink: 0;
  width: 70px;
  height: 70px;
}

.size-20 {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}

.size-25 {
  flex-shrink: 0;
  width: 25px;
  height: 25px;
}

.size-30 {
  flex-shrink: 0;
  width: 30px !important;
  height: 30px !important;
}

.size-35 {
  flex-shrink: 0;
  width: 35px;
  height: 35px;
}

.size-40 {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
}

.size-45 {
  flex-shrink: 0;
  width: 45px;
  height: 45px;
}

.size-50 {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
}

.size-60 {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
}

.size-16 {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
}

.map {
  margin-top: 90px;
  height: 510px;
  z-index: 0;
}

.relative {
  position: relative;
}

.side-image {
  position: absolute;
  bottom: 0;
  right: 0;
}

.event-info {
  position: relative;
  z-index: 5;
  margin-top: -130px;
}

@media (max-width: 767px) {
  .event-info {
    margin-top: 0;
  }
}

.contact-form-to-top {
  position: relative;
  z-index: 5;
  margin-top: -360px;
}

@media (max-width: 991px) {
  .contact-form-to-top {
    margin-top: 0;
  }
}

.no-page {
  margin-top: 90px;
}

.no-page__main {
  font-size: 200px;
  line-height: 1.2;
}

@media (max-width: 991px) {
  .no-page__main {
    font-size: 160px;
  }
}

@media (max-width: 767px) {
  .no-page__main {
    font-size: 140px;
  }
}

.courses-single-info {
  position: absolute;
  top: 0;
  right: 0;
  width: 360px;
  z-index: 20;
}

@media (max-width: 1199px) {
  .courses-single-info {
    width: 300px;
  }
}

@media (max-width: 991px) {
  .courses-single-info {
    position: relative;
    width: 100%;
  }
}

.courses-single-info__content {
  height: 57vh;
  overflow-y: scroll;
}

@media (max-width: 991px) {
  .courses-single-info__content {
    height: auto;
    overflow-y: unset;
  }
}

.flex-wrap {
  flex-wrap: wrap;
}

.lesson-image {
  width: calc(100% - 450px);
}

@media (max-width: 1199px) {
  .lesson-image {
    width: calc(100% - 320px);
  }
}

@media (max-width: 991px) {
  .lesson-image {
    margin-top: 50px;
    width: 100%;
  }
}

/* lesson-sidebar styles moved to css/custom/courseware.css */

.search-field {
  position: relative;
}

.search-field input {
  padding: 0px 20px 0px 52px;
  border-radius: 8px;
  width: 100%;
  line-height: 1.5;
  height: 100%;
}

.search-field button {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  padding: 0 16px;
}

.search-field.-w-340 input {
  width: 340px;
}

@media (max-width: 1199px) {
  .search-field.-w-340 input {
    width: 260px;
  }
}

.search-field.-reverse-button input {
  padding-left: 20px;
  padding-right: 52px;
}

.search-field.-reverse-button button {
  left: unset;
  right: 0;
}

.lesson-sidebar-search {
  position: relative;
}

.lesson-sidebar-search input {
  padding: 17px 20px 17px 52px;
  background-color: white;
  border-radius: 8px;
  width: 100%;
  line-height: 1.5;
}

.lesson-sidebar-search button {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  padding: 0 16px;
}

.max-w-250 {
  max-width: 250px;
}

.h-50 {
  height: 50px !important;
}

.h-60 {
  height: 60px !important;
}

.testimonials-slider-2 .swiper-slide.swiper-slide-active {
  opacity: 1;
}

.py-0 {
  padding-top: 0px !important;
  padding-bottom: 0px !important;
}

.px-0 {
  padding-left: 0px !important;
  padding-right: 0px !important;
}

.pt-0 {
  padding-top: 0px !important;
}

.pb-0 {
  padding-bottom: 0px !important;
}

.pl-0 {
  padding-left: 0px !important;
}

.pr-0 {
  padding-right: 0px !important;
}

.mt-0 {
  margin-top: 0px !important;
}

.mb-0 {
  margin-bottom: 0px !important;
}

.ml-0 {
  margin-left: 0px !important;
}

.mr-0 {
  margin-right: 0px !important;
}

.py-3 {
  padding-top: 3px !important;
  padding-bottom: 3px !important;
}

.px-3 {
  padding-left: 3px !important;
  padding-right: 3px !important;
}

.pt-3 {
  padding-top: 3px !important;
}

.pb-3 {
  padding-bottom: 3px !important;
}

.pl-3 {
  padding-left: 3px !important;
}

.pr-3 {
  padding-right: 3px !important;
}

.mt-3 {
  margin-top: 3px !important;
}

.mb-3 {
  margin-bottom: 3px !important;
}

.ml-3 {
  margin-left: 3px !important;
}

.mr-3 {
  margin-right: 3px !important;
}

.py-5 {
  padding-top: 5px !important;
  padding-bottom: 5px !important;
}

.px-5 {
  padding-left: 5px !important;
  padding-right: 5px !important;
}

.pt-5 {
  padding-top: 5px !important;
}

.pb-5 {
  padding-bottom: 5px !important;
}

.pl-5 {
  padding-left: 5px !important;
}

.pr-5 {
  padding-right: 5px !important;
}

.mt-5 {
  margin-top: 5px !important;
}

.mb-5 {
  margin-bottom: 5px !important;
}

.ml-5 {
  margin-left: 5px !important;
}

.mr-5 {
  margin-right: 5px !important;
}

.py-8 {
  padding-top: 8px !important;
  padding-bottom: 8px !important;
}

.px-8 {
  padding-left: 8px !important;
  padding-right: 8px !important;
}

.pt-8 {
  padding-top: 8px !important;
}

.pb-8 {
  padding-bottom: 8px !important;
}

.pl-8 {
  padding-left: 8px !important;
}

.pr-8 {
  padding-right: 8px !important;
}

.mt-8 {
  margin-top: 8px !important;
}

.mb-8 {
  margin-bottom: 8px !important;
}

.ml-8 {
  margin-left: 8px !important;
}

.mr-8 {
  margin-right: 8px !important;
}

.py-10 {
  padding-top: 10px !important;
  padding-bottom: 10px !important;
}

.px-10 {
  padding-left: 10px !important;
  padding-right: 10px !important;
}

.pt-10 {
  padding-top: 10px !important;
}

.pb-10 {
  padding-bottom: 10px !important;
}

.pl-10 {
  padding-left: 10px !important;
}

.pr-10 {
  padding-right: 10px !important;
}

.mt-10 {
  margin-top: 10px !important;
}

.mb-10 {
  margin-bottom: 10px !important;
}

.ml-10 {
  margin-left: 10px !important;
}

.mr-10 {
  margin-right: 10px !important;
}

.py-12 {
  padding-top: 12px !important;
  padding-bottom: 12px !important;
}

.px-12 {
  padding-left: 12px !important;
  padding-right: 12px !important;
}

.pt-12 {
  padding-top: 12px !important;
}

.pb-12 {
  padding-bottom: 12px !important;
}

.pl-12 {
  padding-left: 12px !important;
}

.pr-12 {
  padding-right: 12px !important;
}

.mt-12 {
  margin-top: 12px !important;
}

.mb-12 {
  margin-bottom: 12px !important;
}

.ml-12 {
  margin-left: 12px !important;
}

.mr-12 {
  margin-right: 12px !important;
}

.py-15 {
  padding-top: 15px !important;
  padding-bottom: 15px !important;
}

.px-15 {
  padding-left: 15px !important;
  padding-right: 15px !important;
}

.pt-15 {
  padding-top: 15px !important;
}

.pb-15 {
  padding-bottom: 15px !important;
}

.pl-15 {
  padding-left: 15px !important;
}

.pr-15 {
  padding-right: 15px !important;
}

.mt-15 {
  margin-top: 15px !important;
}

.mb-15 {
  margin-bottom: 15px !important;
}

.ml-15 {
  margin-left: 15px !important;
}

.mr-15 {
  margin-right: 15px !important;
}

.py-20 {
  padding-top: 20px !important;
  padding-bottom: 20px !important;
}

.px-20 {
  padding-left: 20px !important;
  padding-right: 20px !important;
}

.pt-20 {
  padding-top: 20px !important;
}

.pb-20 {
  padding-bottom: 20px !important;
}

.pl-20 {
  padding-left: 20px !important;
}

.pr-20 {
  padding-right: 20px !important;
}

.mt-20 {
  margin-top: 20px !important;
}

.mb-20 {
  margin-bottom: 20px !important;
}

.ml-20 {
  margin-left: 20px !important;
}

.mr-20 {
  margin-right: 20px !important;
}

.py-25 {
  padding-top: 25px !important;
  padding-bottom: 25px !important;
}

.px-25 {
  padding-left: 25px !important;
  padding-right: 25px !important;
}

.pt-25 {
  padding-top: 25px !important;
}

.pb-25 {
  padding-bottom: 25px !important;
}

.pl-25 {
  padding-left: 25px !important;
}

.pr-25 {
  padding-right: 25px !important;
}

.mt-25 {
  margin-top: 25px !important;
}

.mb-25 {
  margin-bottom: 25px !important;
}

.ml-25 {
  margin-left: 25px !important;
}

.mr-25 {
  margin-right: 25px !important;
}

.py-30 {
  padding-top: 30px !important;
  padding-bottom: 30px !important;
}

.px-30 {
  padding-left: 30px !important;
  padding-right: 30px !important;
}

.pt-30 {
  padding-top: 30px !important;
}

.pb-30 {
  padding-bottom: 30px !important;
}

.pl-30 {
  padding-left: 30px !important;
}

.pr-30 {
  padding-right: 30px !important;
}

.mt-30 {
  margin-top: 30px !important;
}

.mb-30 {
  margin-bottom: 30px !important;
}

.ml-30 {
  margin-left: 30px !important;
}

.mr-30 {
  margin-right: 30px !important;
}

.py-35 {
  padding-top: 35px !important;
  padding-bottom: 35px !important;
}

.px-35 {
  padding-left: 35px !important;
  padding-right: 35px !important;
}

.pt-35 {
  padding-top: 35px !important;
}

.pb-35 {
  padding-bottom: 35px !important;
}

.pl-35 {
  padding-left: 35px !important;
}

.pr-35 {
  padding-right: 35px !important;
}

.mt-35 {
  margin-top: 35px !important;
}

.mb-35 {
  margin-bottom: 35px !important;
}

.ml-35 {
  margin-left: 35px !important;
}

.mr-35 {
  margin-right: 35px !important;
}

.py-40 {
  padding-top: 40px !important;
  padding-bottom: 40px !important;
}

.px-40 {
  padding-left: 40px !important;
  padding-right: 40px !important;
}

.pt-40 {
  padding-top: 40px !important;
}

.pb-40 {
  padding-bottom: 40px !important;
}

.pl-40 {
  padding-left: 40px !important;
}

.pr-40 {
  padding-right: 40px !important;
}

.mt-40 {
  margin-top: 40px !important;
}

.mb-40 {
  margin-bottom: 40px !important;
}

.ml-40 {
  margin-left: 40px !important;
}

.mr-40 {
  margin-right: 40px !important;
}

.py-45 {
  padding-top: 45px !important;
  padding-bottom: 45px !important;
}

.px-45 {
  padding-left: 45px !important;
  padding-right: 45px !important;
}

.pt-45 {
  padding-top: 45px !important;
}

.pb-45 {
  padding-bottom: 45px !important;
}

.pl-45 {
  padding-left: 45px !important;
}

.pr-45 {
  padding-right: 45px !important;
}

.mt-45 {
  margin-top: 45px !important;
}

.mb-45 {
  margin-bottom: 45px !important;
}

.ml-45 {
  margin-left: 45px !important;
}

.mr-45 {
  margin-right: 45px !important;
}

.py-50 {
  padding-top: 50px !important;
  padding-bottom: 50px !important;
}

.px-50 {
  padding-left: 50px !important;
  padding-right: 50px !important;
}

.pt-50 {
  padding-top: 50px !important;
}

.pb-50 {
  padding-bottom: 50px !important;
}

.pl-50 {
  padding-left: 50px !important;
}

.pr-50 {
  padding-right: 50px !important;
}

.mt-50 {
  margin-top: 50px !important;
}

.mb-50 {
  margin-bottom: 50px !important;
}

.ml-50 {
  margin-left: 50px !important;
}

.mr-50 {
  margin-right: 50px !important;
}

.py-60 {
  padding-top: 60px !important;
  padding-bottom: 60px !important;
}

.px-60 {
  padding-left: 60px !important;
  padding-right: 60px !important;
}

.pt-60 {
  padding-top: 60px !important;
}

.pb-60 {
  padding-bottom: 60px !important;
}

.pl-60 {
  padding-left: 60px !important;
}

.pr-60 {
  padding-right: 60px !important;
}

.mt-60 {
  margin-top: 60px !important;
}

.mb-60 {
  margin-bottom: 60px !important;
}

.ml-60 {
  margin-left: 60px !important;
}

.mr-60 {
  margin-right: 60px !important;
}

.py-80 {
  padding-top: 80px !important;
  padding-bottom: 80px !important;
}

.px-80 {
  padding-left: 80px !important;
  padding-right: 80px !important;
}

.pt-80 {
  padding-top: 80px !important;
}

.pb-80 {
  padding-bottom: 80px !important;
}

.pl-80 {
  padding-left: 80px !important;
}

.pr-80 {
  padding-right: 80px !important;
}

.mt-80 {
  margin-top: 80px !important;
}

.mb-80 {
  margin-bottom: 80px !important;
}

.ml-80 {
  margin-left: 80px !important;
}

.mr-80 {
  margin-right: 80px !important;
}

.py-90 {
  padding-top: 90px !important;
  padding-bottom: 90px !important;
}

.px-90 {
  padding-left: 90px !important;
  padding-right: 90px !important;
}

.pt-90 {
  padding-top: 90px !important;
}

.pb-90 {
  padding-bottom: 90px !important;
}

.pl-90 {
  padding-left: 90px !important;
}

.pr-90 {
  padding-right: 90px !important;
}

.mt-90 {
  margin-top: 90px !important;
}

.mb-90 {
  margin-bottom: 90px !important;
}

.ml-90 {
  margin-left: 90px !important;
}

.mr-90 {
  margin-right: 90px !important;
}

@media (max-width: 1199px) {
  .xl\:py-0 {
    padding-top: 0px !important;
    padding-bottom: 0px !important;
  }
  .xl\:px-0 {
    padding-left: 0px !important;
    padding-right: 0px !important;
  }
  .xl\:pt-0 {
    padding-top: 0px !important;
  }
  .xl\:pb-0 {
    padding-bottom: 0px !important;
  }
  .xl\:pl-0 {
    padding-left: 0px !important;
  }
  .xl\:pr-0 {
    padding-right: 0px !important;
  }
  .xl\:mt-0 {
    margin-top: 0px !important;
  }
  .xl\:mb-0 {
    margin-bottom: 0px !important;
  }
  .xl\:ml-0 {
    margin-left: 0px !important;
  }
  .xl\:mr-0 {
    margin-right: 0px !important;
  }
  .xl\:py-3 {
    padding-top: 3px !important;
    padding-bottom: 3px !important;
  }
  .xl\:px-3 {
    padding-left: 3px !important;
    padding-right: 3px !important;
  }
  .xl\:pt-3 {
    padding-top: 3px !important;
  }
  .xl\:pb-3 {
    padding-bottom: 3px !important;
  }
  .xl\:pl-3 {
    padding-left: 3px !important;
  }
  .xl\:pr-3 {
    padding-right: 3px !important;
  }
  .xl\:mt-3 {
    margin-top: 3px !important;
  }
  .xl\:mb-3 {
    margin-bottom: 3px !important;
  }
  .xl\:ml-3 {
    margin-left: 3px !important;
  }
  .xl\:mr-3 {
    margin-right: 3px !important;
  }
  .xl\:py-5 {
    padding-top: 5px !important;
    padding-bottom: 5px !important;
  }
  .xl\:px-5 {
    padding-left: 5px !important;
    padding-right: 5px !important;
  }
  .xl\:pt-5 {
    padding-top: 5px !important;
  }
  .xl\:pb-5 {
    padding-bottom: 5px !important;
  }
  .xl\:pl-5 {
    padding-left: 5px !important;
  }
  .xl\:pr-5 {
    padding-right: 5px !important;
  }
  .xl\:mt-5 {
    margin-top: 5px !important;
  }
  .xl\:mb-5 {
    margin-bottom: 5px !important;
  }
  .xl\:ml-5 {
    margin-left: 5px !important;
  }
  .xl\:mr-5 {
    margin-right: 5px !important;
  }
  .xl\:py-8 {
    padding-top: 8px !important;
    padding-bottom: 8px !important;
  }
  .xl\:px-8 {
    padding-left: 8px !important;
    padding-right: 8px !important;
  }
  .xl\:pt-8 {
    padding-top: 8px !important;
  }
  .xl\:pb-8 {
    padding-bottom: 8px !important;
  }
  .xl\:pl-8 {
    padding-left: 8px !important;
  }
  .xl\:pr-8 {
    padding-right: 8px !important;
  }
  .xl\:mt-8 {
    margin-top: 8px !important;
  }
  .xl\:mb-8 {
    margin-bottom: 8px !important;
  }
  .xl\:ml-8 {
    margin-left: 8px !important;
  }
  .xl\:mr-8 {
    margin-right: 8px !important;
  }
  .xl\:py-10 {
    padding-top: 10px !important;
    padding-bottom: 10px !important;
  }
  .xl\:px-10 {
    padding-left: 10px !important;
    padding-right: 10px !important;
  }
  .xl\:pt-10 {
    padding-top: 10px !important;
  }
  .xl\:pb-10 {
    padding-bottom: 10px !important;
  }
  .xl\:pl-10 {
    padding-left: 10px !important;
  }
  .xl\:pr-10 {
    padding-right: 10px !important;
  }
  .xl\:mt-10 {
    margin-top: 10px !important;
  }
  .xl\:mb-10 {
    margin-bottom: 10px !important;
  }
  .xl\:ml-10 {
    margin-left: 10px !important;
  }
  .xl\:mr-10 {
    margin-right: 10px !important;
  }
  .xl\:py-12 {
    padding-top: 12px !important;
    padding-bottom: 12px !important;
  }
  .xl\:px-12 {
    padding-left: 12px !important;
    padding-right: 12px !important;
  }
  .xl\:pt-12 {
    padding-top: 12px !important;
  }
  .xl\:pb-12 {
    padding-bottom: 12px !important;
  }
  .xl\:pl-12 {
    padding-left: 12px !important;
  }
  .xl\:pr-12 {
    padding-right: 12px !important;
  }
  .xl\:mt-12 {
    margin-top: 12px !important;
  }
  .xl\:mb-12 {
    margin-bottom: 12px !important;
  }
  .xl\:ml-12 {
    margin-left: 12px !important;
  }
  .xl\:mr-12 {
    margin-right: 12px !important;
  }
  .xl\:py-15 {
    padding-top: 15px !important;
    padding-bottom: 15px !important;
  }
  .xl\:px-15 {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
  .xl\:pt-15 {
    padding-top: 15px !important;
  }
  .xl\:pb-15 {
    padding-bottom: 15px !important;
  }
  .xl\:pl-15 {
    padding-left: 15px !important;
  }
  .xl\:pr-15 {
    padding-right: 15px !important;
  }
  .xl\:mt-15 {
    margin-top: 15px !important;
  }
  .xl\:mb-15 {
    margin-bottom: 15px !important;
  }
  .xl\:ml-15 {
    margin-left: 15px !important;
  }
  .xl\:mr-15 {
    margin-right: 15px !important;
  }
  .xl\:py-20 {
    padding-top: 20px !important;
    padding-bottom: 20px !important;
  }
  .xl\:px-20 {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
  .xl\:pt-20 {
    padding-top: 20px !important;
  }
  .xl\:pb-20 {
    padding-bottom: 20px !important;
  }
  .xl\:pl-20 {
    padding-left: 20px !important;
  }
  .xl\:pr-20 {
    padding-right: 20px !important;
  }
  .xl\:mt-20 {
    margin-top: 20px !important;
  }
  .xl\:mb-20 {
    margin-bottom: 20px !important;
  }
  .xl\:ml-20 {
    margin-left: 20px !important;
  }
  .xl\:mr-20 {
    margin-right: 20px !important;
  }
  .xl\:py-25 {
    padding-top: 25px !important;
    padding-bottom: 25px !important;
  }
  .xl\:px-25 {
    padding-left: 25px !important;
    padding-right: 25px !important;
  }
  .xl\:pt-25 {
    padding-top: 25px !important;
  }
  .xl\:pb-25 {
    padding-bottom: 25px !important;
  }
  .xl\:pl-25 {
    padding-left: 25px !important;
  }
  .xl\:pr-25 {
    padding-right: 25px !important;
  }
  .xl\:mt-25 {
    margin-top: 25px !important;
  }
  .xl\:mb-25 {
    margin-bottom: 25px !important;
  }
  .xl\:ml-25 {
    margin-left: 25px !important;
  }
  .xl\:mr-25 {
    margin-right: 25px !important;
  }
  .xl\:py-30 {
    padding-top: 30px !important;
    padding-bottom: 30px !important;
  }
  .xl\:px-30 {
    padding-left: 30px !important;
    padding-right: 30px !important;
  }
  .xl\:pt-30 {
    padding-top: 30px !important;
  }
  .xl\:pb-30 {
    padding-bottom: 30px !important;
  }
  .xl\:pl-30 {
    padding-left: 30px !important;
  }
  .xl\:pr-30 {
    padding-right: 30px !important;
  }
  .xl\:mt-30 {
    margin-top: 30px !important;
  }
  .xl\:mb-30 {
    margin-bottom: 30px !important;
  }
  .xl\:ml-30 {
    margin-left: 30px !important;
  }
  .xl\:mr-30 {
    margin-right: 30px !important;
  }
  .xl\:py-35 {
    padding-top: 35px !important;
    padding-bottom: 35px !important;
  }
  .xl\:px-35 {
    padding-left: 35px !important;
    padding-right: 35px !important;
  }
  .xl\:pt-35 {
    padding-top: 35px !important;
  }
  .xl\:pb-35 {
    padding-bottom: 35px !important;
  }
  .xl\:pl-35 {
    padding-left: 35px !important;
  }
  .xl\:pr-35 {
    padding-right: 35px !important;
  }
  .xl\:mt-35 {
    margin-top: 35px !important;
  }
  .xl\:mb-35 {
    margin-bottom: 35px !important;
  }
  .xl\:ml-35 {
    margin-left: 35px !important;
  }
  .xl\:mr-35 {
    margin-right: 35px !important;
  }
  .xl\:py-40 {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }
  .xl\:px-40 {
    padding-left: 40px !important;
    padding-right: 40px !important;
  }
  .xl\:pt-40 {
    padding-top: 40px !important;
  }
  .xl\:pb-40 {
    padding-bottom: 40px !important;
  }
  .xl\:pl-40 {
    padding-left: 40px !important;
  }
  .xl\:pr-40 {
    padding-right: 40px !important;
  }
  .xl\:mt-40 {
    margin-top: 40px !important;
  }
  .xl\:mb-40 {
    margin-bottom: 40px !important;
  }
  .xl\:ml-40 {
    margin-left: 40px !important;
  }
  .xl\:mr-40 {
    margin-right: 40px !important;
  }
  .xl\:py-45 {
    padding-top: 45px !important;
    padding-bottom: 45px !important;
  }
  .xl\:px-45 {
    padding-left: 45px !important;
    padding-right: 45px !important;
  }
  .xl\:pt-45 {
    padding-top: 45px !important;
  }
  .xl\:pb-45 {
    padding-bottom: 45px !important;
  }
  .xl\:pl-45 {
    padding-left: 45px !important;
  }
  .xl\:pr-45 {
    padding-right: 45px !important;
  }
  .xl\:mt-45 {
    margin-top: 45px !important;
  }
  .xl\:mb-45 {
    margin-bottom: 45px !important;
  }
  .xl\:ml-45 {
    margin-left: 45px !important;
  }
  .xl\:mr-45 {
    margin-right: 45px !important;
  }
  .xl\:py-50 {
    padding-top: 50px !important;
    padding-bottom: 50px !important;
  }
  .xl\:px-50 {
    padding-left: 50px !important;
    padding-right: 50px !important;
  }
  .xl\:pt-50 {
    padding-top: 50px !important;
  }
  .xl\:pb-50 {
    padding-bottom: 50px !important;
  }
  .xl\:pl-50 {
    padding-left: 50px !important;
  }
  .xl\:pr-50 {
    padding-right: 50px !important;
  }
  .xl\:mt-50 {
    margin-top: 50px !important;
  }
  .xl\:mb-50 {
    margin-bottom: 50px !important;
  }
  .xl\:ml-50 {
    margin-left: 50px !important;
  }
  .xl\:mr-50 {
    margin-right: 50px !important;
  }
  .xl\:py-60 {
    padding-top: 60px !important;
    padding-bottom: 60px !important;
  }
  .xl\:px-60 {
    padding-left: 60px !important;
    padding-right: 60px !important;
  }
  .xl\:pt-60 {
    padding-top: 60px !important;
  }
  .xl\:pb-60 {
    padding-bottom: 60px !important;
  }
  .xl\:pl-60 {
    padding-left: 60px !important;
  }
  .xl\:pr-60 {
    padding-right: 60px !important;
  }
  .xl\:mt-60 {
    margin-top: 60px !important;
  }
  .xl\:mb-60 {
    margin-bottom: 60px !important;
  }
  .xl\:ml-60 {
    margin-left: 60px !important;
  }
  .xl\:mr-60 {
    margin-right: 60px !important;
  }
  .xl\:py-80 {
    padding-top: 80px !important;
    padding-bottom: 80px !important;
  }
  .xl\:px-80 {
    padding-left: 80px !important;
    padding-right: 80px !important;
  }
  .xl\:pt-80 {
    padding-top: 80px !important;
  }
  .xl\:pb-80 {
    padding-bottom: 80px !important;
  }
  .xl\:pl-80 {
    padding-left: 80px !important;
  }
  .xl\:pr-80 {
    padding-right: 80px !important;
  }
  .xl\:mt-80 {
    margin-top: 80px !important;
  }
  .xl\:mb-80 {
    margin-bottom: 80px !important;
  }
  .xl\:ml-80 {
    margin-left: 80px !important;
  }
  .xl\:mr-80 {
    margin-right: 80px !important;
  }
  .xl\:py-90 {
    padding-top: 90px !important;
    padding-bottom: 90px !important;
  }
  .xl\:px-90 {
    padding-left: 90px !important;
    padding-right: 90px !important;
  }
  .xl\:pt-90 {
    padding-top: 90px !important;
  }
  .xl\:pb-90 {
    padding-bottom: 90px !important;
  }
  .xl\:pl-90 {
    padding-left: 90px !important;
  }
  .xl\:pr-90 {
    padding-right: 90px !important;
  }
  .xl\:mt-90 {
    margin-top: 90px !important;
  }
  .xl\:mb-90 {
    margin-bottom: 90px !important;
  }
  .xl\:ml-90 {
    margin-left: 90px !important;
  }
  .xl\:mr-90 {
    margin-right: 90px !important;
  }
}

@media (max-width: 991px) {
  .lg\:py-0 {
    padding-top: 0px !important;
    padding-bottom: 0px !important;
  }
  .lg\:px-0 {
    padding-left: 0px !important;
    padding-right: 0px !important;
  }
  .lg\:pt-0 {
    padding-top: 0px !important;
  }
  .lg\:pb-0 {
    padding-bottom: 0px !important;
  }
  .lg\:pl-0 {
    padding-left: 0px !important;
  }
  .lg\:pr-0 {
    padding-right: 0px !important;
  }
  .lg\:mt-0 {
    margin-top: 0px !important;
  }
  .lg\:mb-0 {
    margin-bottom: 0px !important;
  }
  .lg\:ml-0 {
    margin-left: 0px !important;
  }
  .lg\:mr-0 {
    margin-right: 0px !important;
  }
  .lg\:py-3 {
    padding-top: 3px !important;
    padding-bottom: 3px !important;
  }
  .lg\:px-3 {
    padding-left: 3px !important;
    padding-right: 3px !important;
  }
  .lg\:pt-3 {
    padding-top: 3px !important;
  }
  .lg\:pb-3 {
    padding-bottom: 3px !important;
  }
  .lg\:pl-3 {
    padding-left: 3px !important;
  }
  .lg\:pr-3 {
    padding-right: 3px !important;
  }
  .lg\:mt-3 {
    margin-top: 3px !important;
  }
  .lg\:mb-3 {
    margin-bottom: 3px !important;
  }
  .lg\:ml-3 {
    margin-left: 3px !important;
  }
  .lg\:mr-3 {
    margin-right: 3px !important;
  }
  .lg\:py-5 {
    padding-top: 5px !important;
    padding-bottom: 5px !important;
  }
  .lg\:px-5 {
    padding-left: 5px !important;
    padding-right: 5px !important;
  }
  .lg\:pt-5 {
    padding-top: 5px !important;
  }
  .lg\:pb-5 {
    padding-bottom: 5px !important;
  }
  .lg\:pl-5 {
    padding-left: 5px !important;
  }
  .lg\:pr-5 {
    padding-right: 5px !important;
  }
  .lg\:mt-5 {
    margin-top: 5px !important;
  }
  .lg\:mb-5 {
    margin-bottom: 5px !important;
  }
  .lg\:ml-5 {
    margin-left: 5px !important;
  }
  .lg\:mr-5 {
    margin-right: 5px !important;
  }
  .lg\:py-8 {
    padding-top: 8px !important;
    padding-bottom: 8px !important;
  }
  .lg\:px-8 {
    padding-left: 8px !important;
    padding-right: 8px !important;
  }
  .lg\:pt-8 {
    padding-top: 8px !important;
  }
  .lg\:pb-8 {
    padding-bottom: 8px !important;
  }
  .lg\:pl-8 {
    padding-left: 8px !important;
  }
  .lg\:pr-8 {
    padding-right: 8px !important;
  }
  .lg\:mt-8 {
    margin-top: 8px !important;
  }
  .lg\:mb-8 {
    margin-bottom: 8px !important;
  }
  .lg\:ml-8 {
    margin-left: 8px !important;
  }
  .lg\:mr-8 {
    margin-right: 8px !important;
  }
  .lg\:py-10 {
    padding-top: 10px !important;
    padding-bottom: 10px !important;
  }
  .lg\:px-10 {
    padding-left: 10px !important;
    padding-right: 10px !important;
  }
  .lg\:pt-10 {
    padding-top: 10px !important;
  }
  .lg\:pb-10 {
    padding-bottom: 10px !important;
  }
  .lg\:pl-10 {
    padding-left: 10px !important;
  }
  .lg\:pr-10 {
    padding-right: 10px !important;
  }
  .lg\:mt-10 {
    margin-top: 10px !important;
  }
  .lg\:mb-10 {
    margin-bottom: 10px !important;
  }
  .lg\:ml-10 {
    margin-left: 10px !important;
  }
  .lg\:mr-10 {
    margin-right: 10px !important;
  }
  .lg\:py-12 {
    padding-top: 12px !important;
    padding-bottom: 12px !important;
  }
  .lg\:px-12 {
    padding-left: 12px !important;
    padding-right: 12px !important;
  }
  .lg\:pt-12 {
    padding-top: 12px !important;
  }
  .lg\:pb-12 {
    padding-bottom: 12px !important;
  }
  .lg\:pl-12 {
    padding-left: 12px !important;
  }
  .lg\:pr-12 {
    padding-right: 12px !important;
  }
  .lg\:mt-12 {
    margin-top: 12px !important;
  }
  .lg\:mb-12 {
    margin-bottom: 12px !important;
  }
  .lg\:ml-12 {
    margin-left: 12px !important;
  }
  .lg\:mr-12 {
    margin-right: 12px !important;
  }
  .lg\:py-15 {
    padding-top: 15px !important;
    padding-bottom: 15px !important;
  }
  .lg\:px-15 {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
  .lg\:pt-15 {
    padding-top: 15px !important;
  }
  .lg\:pb-15 {
    padding-bottom: 15px !important;
  }
  .lg\:pl-15 {
    padding-left: 15px !important;
  }
  .lg\:pr-15 {
    padding-right: 15px !important;
  }
  .lg\:mt-15 {
    margin-top: 15px !important;
  }
  .lg\:mb-15 {
    margin-bottom: 15px !important;
  }
  .lg\:ml-15 {
    margin-left: 15px !important;
  }
  .lg\:mr-15 {
    margin-right: 15px !important;
  }
  .lg\:py-20 {
    padding-top: 20px !important;
    padding-bottom: 20px !important;
  }
  .lg\:px-20 {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
  .lg\:pt-20 {
    padding-top: 20px !important;
  }
  .lg\:pb-20 {
    padding-bottom: 20px !important;
  }
  .lg\:pl-20 {
    padding-left: 20px !important;
  }
  .lg\:pr-20 {
    padding-right: 20px !important;
  }
  .lg\:mt-20 {
    margin-top: 20px !important;
  }
  .lg\:mb-20 {
    margin-bottom: 20px !important;
  }
  .lg\:ml-20 {
    margin-left: 20px !important;
  }
  .lg\:mr-20 {
    margin-right: 20px !important;
  }
  .lg\:py-25 {
    padding-top: 25px !important;
    padding-bottom: 25px !important;
  }
  .lg\:px-25 {
    padding-left: 25px !important;
    padding-right: 25px !important;
  }
  .lg\:pt-25 {
    padding-top: 25px !important;
  }
  .lg\:pb-25 {
    padding-bottom: 25px !important;
  }
  .lg\:pl-25 {
    padding-left: 25px !important;
  }
  .lg\:pr-25 {
    padding-right: 25px !important;
  }
  .lg\:mt-25 {
    margin-top: 25px !important;
  }
  .lg\:mb-25 {
    margin-bottom: 25px !important;
  }
  .lg\:ml-25 {
    margin-left: 25px !important;
  }
  .lg\:mr-25 {
    margin-right: 25px !important;
  }
  .lg\:py-30 {
    padding-top: 30px !important;
    padding-bottom: 30px !important;
  }
  .lg\:px-30 {
    padding-left: 30px !important;
    padding-right: 30px !important;
  }
  .lg\:pt-30 {
    padding-top: 30px !important;
  }
  .lg\:pb-30 {
    padding-bottom: 30px !important;
  }
  .lg\:pl-30 {
    padding-left: 30px !important;
  }
  .lg\:pr-30 {
    padding-right: 30px !important;
  }
  .lg\:mt-30 {
    margin-top: 30px !important;
  }
  .lg\:mb-30 {
    margin-bottom: 30px !important;
  }
  .lg\:ml-30 {
    margin-left: 30px !important;
  }
  .lg\:mr-30 {
    margin-right: 30px !important;
  }
  .lg\:py-35 {
    padding-top: 35px !important;
    padding-bottom: 35px !important;
  }
  .lg\:px-35 {
    padding-left: 35px !important;
    padding-right: 35px !important;
  }
  .lg\:pt-35 {
    padding-top: 35px !important;
  }
  .lg\:pb-35 {
    padding-bottom: 35px !important;
  }
  .lg\:pl-35 {
    padding-left: 35px !important;
  }
  .lg\:pr-35 {
    padding-right: 35px !important;
  }
  .lg\:mt-35 {
    margin-top: 35px !important;
  }
  .lg\:mb-35 {
    margin-bottom: 35px !important;
  }
  .lg\:ml-35 {
    margin-left: 35px !important;
  }
  .lg\:mr-35 {
    margin-right: 35px !important;
  }
  .lg\:py-40 {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }
  .lg\:px-40 {
    padding-left: 40px !important;
    padding-right: 40px !important;
  }
  .lg\:pt-40 {
    padding-top: 40px !important;
  }
  .lg\:pb-40 {
    padding-bottom: 40px !important;
  }
  .lg\:pl-40 {
    padding-left: 40px !important;
  }
  .lg\:pr-40 {
    padding-right: 40px !important;
  }
  .lg\:mt-40 {
    margin-top: 40px !important;
  }
  .lg\:mb-40 {
    margin-bottom: 40px !important;
  }
  .lg\:ml-40 {
    margin-left: 40px !important;
  }
  .lg\:mr-40 {
    margin-right: 40px !important;
  }
  .lg\:py-45 {
    padding-top: 45px !important;
    padding-bottom: 45px !important;
  }
  .lg\:px-45 {
    padding-left: 45px !important;
    padding-right: 45px !important;
  }
  .lg\:pt-45 {
    padding-top: 45px !important;
  }
  .lg\:pb-45 {
    padding-bottom: 45px !important;
  }
  .lg\:pl-45 {
    padding-left: 45px !important;
  }
  .lg\:pr-45 {
    padding-right: 45px !important;
  }
  .lg\:mt-45 {
    margin-top: 45px !important;
  }
  .lg\:mb-45 {
    margin-bottom: 45px !important;
  }
  .lg\:ml-45 {
    margin-left: 45px !important;
  }
  .lg\:mr-45 {
    margin-right: 45px !important;
  }
  .lg\:py-50 {
    padding-top: 50px !important;
    padding-bottom: 50px !important;
  }
  .lg\:px-50 {
    padding-left: 50px !important;
    padding-right: 50px !important;
  }
  .lg\:pt-50 {
    padding-top: 50px !important;
  }
  .lg\:pb-50 {
    padding-bottom: 50px !important;
  }
  .lg\:pl-50 {
    padding-left: 50px !important;
  }
  .lg\:pr-50 {
    padding-right: 50px !important;
  }
  .lg\:mt-50 {
    margin-top: 50px !important;
  }
  .lg\:mb-50 {
    margin-bottom: 50px !important;
  }
  .lg\:ml-50 {
    margin-left: 50px !important;
  }
  .lg\:mr-50 {
    margin-right: 50px !important;
  }
  .lg\:py-60 {
    padding-top: 60px !important;
    padding-bottom: 60px !important;
  }
  .lg\:px-60 {
    padding-left: 60px !important;
    padding-right: 60px !important;
  }
  .lg\:pt-60 {
    padding-top: 60px !important;
  }
  .lg\:pb-60 {
    padding-bottom: 60px !important;
  }
  .lg\:pl-60 {
    padding-left: 60px !important;
  }
  .lg\:pr-60 {
    padding-right: 60px !important;
  }
  .lg\:mt-60 {
    margin-top: 60px !important;
  }
  .lg\:mb-60 {
    margin-bottom: 60px !important;
  }
  .lg\:ml-60 {
    margin-left: 60px !important;
  }
  .lg\:mr-60 {
    margin-right: 60px !important;
  }
  .lg\:py-80 {
    padding-top: 80px !important;
    padding-bottom: 80px !important;
  }
  .lg\:px-80 {
    padding-left: 80px !important;
    padding-right: 80px !important;
  }
  .lg\:pt-80 {
    padding-top: 80px !important;
  }
  .lg\:pb-80 {
    padding-bottom: 80px !important;
  }
  .lg\:pl-80 {
    padding-left: 80px !important;
  }
  .lg\:pr-80 {
    padding-right: 80px !important;
  }
  .lg\:mt-80 {
    margin-top: 80px !important;
  }
  .lg\:mb-80 {
    margin-bottom: 80px !important;
  }
  .lg\:ml-80 {
    margin-left: 80px !important;
  }
  .lg\:mr-80 {
    margin-right: 80px !important;
  }
  .lg\:py-90 {
    padding-top: 90px !important;
    padding-bottom: 90px !important;
  }
  .lg\:px-90 {
    padding-left: 90px !important;
    padding-right: 90px !important;
  }
  .lg\:pt-90 {
    padding-top: 90px !important;
  }
  .lg\:pb-90 {
    padding-bottom: 90px !important;
  }
  .lg\:pl-90 {
    padding-left: 90px !important;
  }
  .lg\:pr-90 {
    padding-right: 90px !important;
  }
  .lg\:mt-90 {
    margin-top: 90px !important;
  }
  .lg\:mb-90 {
    margin-bottom: 90px !important;
  }
  .lg\:ml-90 {
    margin-left: 90px !important;
  }
  .lg\:mr-90 {
    margin-right: 90px !important;
  }
}

@media (max-width: 767px) {
  .md\:py-0 {
    padding-top: 0px !important;
    padding-bottom: 0px !important;
  }
  .md\:px-0 {
    padding-left: 0px !important;
    padding-right: 0px !important;
  }
  .md\:pt-0 {
    padding-top: 0px !important;
  }
  .md\:pb-0 {
    padding-bottom: 0px !important;
  }
  .md\:pl-0 {
    padding-left: 0px !important;
  }
  .md\:pr-0 {
    padding-right: 0px !important;
  }
  .md\:mt-0 {
    margin-top: 0px !important;
  }
  .md\:mb-0 {
    margin-bottom: 0px !important;
  }
  .md\:ml-0 {
    margin-left: 0px !important;
  }
  .md\:mr-0 {
    margin-right: 0px !important;
  }
  .md\:py-3 {
    padding-top: 3px !important;
    padding-bottom: 3px !important;
  }
  .md\:px-3 {
    padding-left: 3px !important;
    padding-right: 3px !important;
  }
  .md\:pt-3 {
    padding-top: 3px !important;
  }
  .md\:pb-3 {
    padding-bottom: 3px !important;
  }
  .md\:pl-3 {
    padding-left: 3px !important;
  }
  .md\:pr-3 {
    padding-right: 3px !important;
  }
  .md\:mt-3 {
    margin-top: 3px !important;
  }
  .md\:mb-3 {
    margin-bottom: 3px !important;
  }
  .md\:ml-3 {
    margin-left: 3px !important;
  }
  .md\:mr-3 {
    margin-right: 3px !important;
  }
  .md\:py-5 {
    padding-top: 5px !important;
    padding-bottom: 5px !important;
  }
  .md\:px-5 {
    padding-left: 5px !important;
    padding-right: 5px !important;
  }
  .md\:pt-5 {
    padding-top: 5px !important;
  }
  .md\:pb-5 {
    padding-bottom: 5px !important;
  }
  .md\:pl-5 {
    padding-left: 5px !important;
  }
  .md\:pr-5 {
    padding-right: 5px !important;
  }
  .md\:mt-5 {
    margin-top: 5px !important;
  }
  .md\:mb-5 {
    margin-bottom: 5px !important;
  }
  .md\:ml-5 {
    margin-left: 5px !important;
  }
  .md\:mr-5 {
    margin-right: 5px !important;
  }
  .md\:py-8 {
    padding-top: 8px !important;
    padding-bottom: 8px !important;
  }
  .md\:px-8 {
    padding-left: 8px !important;
    padding-right: 8px !important;
  }
  .md\:pt-8 {
    padding-top: 8px !important;
  }
  .md\:pb-8 {
    padding-bottom: 8px !important;
  }
  .md\:pl-8 {
    padding-left: 8px !important;
  }
  .md\:pr-8 {
    padding-right: 8px !important;
  }
  .md\:mt-8 {
    margin-top: 8px !important;
  }
  .md\:mb-8 {
    margin-bottom: 8px !important;
  }
  .md\:ml-8 {
    margin-left: 8px !important;
  }
  .md\:mr-8 {
    margin-right: 8px !important;
  }
  .md\:py-10 {
    padding-top: 10px !important;
    padding-bottom: 10px !important;
  }
  .md\:px-10 {
    padding-left: 10px !important;
    padding-right: 10px !important;
  }
  .md\:pt-10 {
    padding-top: 10px !important;
  }
  .md\:pb-10 {
    padding-bottom: 10px !important;
  }
  .md\:pl-10 {
    padding-left: 10px !important;
  }
  .md\:pr-10 {
    padding-right: 10px !important;
  }
  .md\:mt-10 {
    margin-top: 10px !important;
  }
  .md\:mb-10 {
    margin-bottom: 10px !important;
  }
  .md\:ml-10 {
    margin-left: 10px !important;
  }
  .md\:mr-10 {
    margin-right: 10px !important;
  }
  .md\:py-12 {
    padding-top: 12px !important;
    padding-bottom: 12px !important;
  }
  .md\:px-12 {
    padding-left: 12px !important;
    padding-right: 12px !important;
  }
  .md\:pt-12 {
    padding-top: 12px !important;
  }
  .md\:pb-12 {
    padding-bottom: 12px !important;
  }
  .md\:pl-12 {
    padding-left: 12px !important;
  }
  .md\:pr-12 {
    padding-right: 12px !important;
  }
  .md\:mt-12 {
    margin-top: 12px !important;
  }
  .md\:mb-12 {
    margin-bottom: 12px !important;
  }
  .md\:ml-12 {
    margin-left: 12px !important;
  }
  .md\:mr-12 {
    margin-right: 12px !important;
  }
  .md\:py-15 {
    padding-top: 15px !important;
    padding-bottom: 15px !important;
  }
  .md\:px-15 {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
  .md\:pt-15 {
    padding-top: 15px !important;
  }
  .md\:pb-15 {
    padding-bottom: 15px !important;
  }
  .md\:pl-15 {
    padding-left: 15px !important;
  }
  .md\:pr-15 {
    padding-right: 15px !important;
  }
  .md\:mt-15 {
    margin-top: 15px !important;
  }
  .md\:mb-15 {
    margin-bottom: 15px !important;
  }
  .md\:ml-15 {
    margin-left: 15px !important;
  }
  .md\:mr-15 {
    margin-right: 15px !important;
  }
  .md\:py-20 {
    padding-top: 20px !important;
    padding-bottom: 20px !important;
  }
  .md\:px-20 {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
  .md\:pt-20 {
    padding-top: 20px !important;
  }
  .md\:pb-20 {
    padding-bottom: 20px !important;
  }
  .md\:pl-20 {
    padding-left: 20px !important;
  }
  .md\:pr-20 {
    padding-right: 20px !important;
  }
  .md\:mt-20 {
    margin-top: 20px !important;
  }
  .md\:mb-20 {
    margin-bottom: 20px !important;
  }
  .md\:ml-20 {
    margin-left: 20px !important;
  }
  .md\:mr-20 {
    margin-right: 20px !important;
  }
  .md\:py-25 {
    padding-top: 25px !important;
    padding-bottom: 25px !important;
  }
  .md\:px-25 {
    padding-left: 25px !important;
    padding-right: 25px !important;
  }
  .md\:pt-25 {
    padding-top: 25px !important;
  }
  .md\:pb-25 {
    padding-bottom: 25px !important;
  }
  .md\:pl-25 {
    padding-left: 25px !important;
  }
  .md\:pr-25 {
    padding-right: 25px !important;
  }
  .md\:mt-25 {
    margin-top: 25px !important;
  }
  .md\:mb-25 {
    margin-bottom: 25px !important;
  }
  .md\:ml-25 {
    margin-left: 25px !important;
  }
  .md\:mr-25 {
    margin-right: 25px !important;
  }
  .md\:py-30 {
    padding-top: 30px !important;
    padding-bottom: 30px !important;
  }
  .md\:px-30 {
    padding-left: 30px !important;
    padding-right: 30px !important;
  }
  .md\:pt-30 {
    padding-top: 30px !important;
  }
  .md\:pb-30 {
    padding-bottom: 30px !important;
  }
  .md\:pl-30 {
    padding-left: 30px !important;
  }
  .md\:pr-30 {
    padding-right: 30px !important;
  }
  .md\:mt-30 {
    margin-top: 30px !important;
  }
  .md\:mb-30 {
    margin-bottom: 30px !important;
  }
  .md\:ml-30 {
    margin-left: 30px !important;
  }
  .md\:mr-30 {
    margin-right: 30px !important;
  }
  .md\:py-35 {
    padding-top: 35px !important;
    padding-bottom: 35px !important;
  }
  .md\:px-35 {
    padding-left: 35px !important;
    padding-right: 35px !important;
  }
  .md\:pt-35 {
    padding-top: 35px !important;
  }
  .md\:pb-35 {
    padding-bottom: 35px !important;
  }
  .md\:pl-35 {
    padding-left: 35px !important;
  }
  .md\:pr-35 {
    padding-right: 35px !important;
  }
  .md\:mt-35 {
    margin-top: 35px !important;
  }
  .md\:mb-35 {
    margin-bottom: 35px !important;
  }
  .md\:ml-35 {
    margin-left: 35px !important;
  }
  .md\:mr-35 {
    margin-right: 35px !important;
  }
  .md\:py-40 {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }
  .md\:px-40 {
    padding-left: 40px !important;
    padding-right: 40px !important;
  }
  .md\:pt-40 {
    padding-top: 40px !important;
  }
  .md\:pb-40 {
    padding-bottom: 40px !important;
  }
  .md\:pl-40 {
    padding-left: 40px !important;
  }
  .md\:pr-40 {
    padding-right: 40px !important;
  }
  .md\:mt-40 {
    margin-top: 40px !important;
  }
  .md\:mb-40 {
    margin-bottom: 40px !important;
  }
  .md\:ml-40 {
    margin-left: 40px !important;
  }
  .md\:mr-40 {
    margin-right: 40px !important;
  }
  .md\:py-45 {
    padding-top: 45px !important;
    padding-bottom: 45px !important;
  }
  .md\:px-45 {
    padding-left: 45px !important;
    padding-right: 45px !important;
  }
  .md\:pt-45 {
    padding-top: 45px !important;
  }
  .md\:pb-45 {
    padding-bottom: 45px !important;
  }
  .md\:pl-45 {
    padding-left: 45px !important;
  }
  .md\:pr-45 {
    padding-right: 45px !important;
  }
  .md\:mt-45 {
    margin-top: 45px !important;
  }
  .md\:mb-45 {
    margin-bottom: 45px !important;
  }
  .md\:ml-45 {
    margin-left: 45px !important;
  }
  .md\:mr-45 {
    margin-right: 45px !important;
  }
  .md\:py-50 {
    padding-top: 50px !important;
    padding-bottom: 50px !important;
  }
  .md\:px-50 {
    padding-left: 50px !important;
    padding-right: 50px !important;
  }
  .md\:pt-50 {
    padding-top: 50px !important;
  }
  .md\:pb-50 {
    padding-bottom: 50px !important;
  }
  .md\:pl-50 {
    padding-left: 50px !important;
  }
  .md\:pr-50 {
    padding-right: 50px !important;
  }
  .md\:mt-50 {
    margin-top: 50px !important;
  }
  .md\:mb-50 {
    margin-bottom: 50px !important;
  }
  .md\:ml-50 {
    margin-left: 50px !important;
  }
  .md\:mr-50 {
    margin-right: 50px !important;
  }
  .md\:py-60 {
    padding-top: 60px !important;
    padding-bottom: 60px !important;
  }
  .md\:px-60 {
    padding-left: 60px !important;
    padding-right: 60px !important;
  }
  .md\:pt-60 {
    padding-top: 60px !important;
  }
  .md\:pb-60 {
    padding-bottom: 60px !important;
  }
  .md\:pl-60 {
    padding-left: 60px !important;
  }
  .md\:pr-60 {
    padding-right: 60px !important;
  }
  .md\:mt-60 {
    margin-top: 60px !important;
  }
  .md\:mb-60 {
    margin-bottom: 60px !important;
  }
  .md\:ml-60 {
    margin-left: 60px !important;
  }
  .md\:mr-60 {
    margin-right: 60px !important;
  }
  .md\:py-80 {
    padding-top: 80px !important;
    padding-bottom: 80px !important;
  }
  .md\:px-80 {
    padding-left: 80px !important;
    padding-right: 80px !important;
  }
  .md\:pt-80 {
    padding-top: 80px !important;
  }
  .md\:pb-80 {
    padding-bottom: 80px !important;
  }
  .md\:pl-80 {
    padding-left: 80px !important;
  }
  .md\:pr-80 {
    padding-right: 80px !important;
  }
  .md\:mt-80 {
    margin-top: 80px !important;
  }
  .md\:mb-80 {
    margin-bottom: 80px !important;
  }
  .md\:ml-80 {
    margin-left: 80px !important;
  }
  .md\:mr-80 {
    margin-right: 80px !important;
  }
  .md\:py-90 {
    padding-top: 90px !important;
    padding-bottom: 90px !important;
  }
  .md\:px-90 {
    padding-left: 90px !important;
    padding-right: 90px !important;
  }
  .md\:pt-90 {
    padding-top: 90px !important;
  }
  .md\:pb-90 {
    padding-bottom: 90px !important;
  }
  .md\:pl-90 {
    padding-left: 90px !important;
  }
  .md\:pr-90 {
    padding-right: 90px !important;
  }
  .md\:mt-90 {
    margin-top: 90px !important;
  }
  .md\:mb-90 {
    margin-bottom: 90px !important;
  }
  .md\:ml-90 {
    margin-left: 90px !important;
  }
  .md\:mr-90 {
    margin-right: 90px !important;
  }
}

@media (max-width: 575px) {
  .sm\:py-0 {
    padding-top: 0px !important;
    padding-bottom: 0px !important;
  }
  .sm\:px-0 {
    padding-left: 0px !important;
    padding-right: 0px !important;
  }
  .sm\:pt-0 {
    padding-top: 0px !important;
  }
  .sm\:pb-0 {
    padding-bottom: 0px !important;
  }
  .sm\:pl-0 {
    padding-left: 0px !important;
  }
  .sm\:pr-0 {
    padding-right: 0px !important;
  }
  .sm\:mt-0 {
    margin-top: 0px !important;
  }
  .sm\:mb-0 {
    margin-bottom: 0px !important;
  }
  .sm\:ml-0 {
    margin-left: 0px !important;
  }
  .sm\:mr-0 {
    margin-right: 0px !important;
  }
  .sm\:py-3 {
    padding-top: 3px !important;
    padding-bottom: 3px !important;
  }
  .sm\:px-3 {
    padding-left: 3px !important;
    padding-right: 3px !important;
  }
  .sm\:pt-3 {
    padding-top: 3px !important;
  }
  .sm\:pb-3 {
    padding-bottom: 3px !important;
  }
  .sm\:pl-3 {
    padding-left: 3px !important;
  }
  .sm\:pr-3 {
    padding-right: 3px !important;
  }
  .sm\:mt-3 {
    margin-top: 3px !important;
  }
  .sm\:mb-3 {
    margin-bottom: 3px !important;
  }
  .sm\:ml-3 {
    margin-left: 3px !important;
  }
  .sm\:mr-3 {
    margin-right: 3px !important;
  }
  .sm\:py-5 {
    padding-top: 5px !important;
    padding-bottom: 5px !important;
  }
  .sm\:px-5 {
    padding-left: 5px !important;
    padding-right: 5px !important;
  }
  .sm\:pt-5 {
    padding-top: 5px !important;
  }
  .sm\:pb-5 {
    padding-bottom: 5px !important;
  }
  .sm\:pl-5 {
    padding-left: 5px !important;
  }
  .sm\:pr-5 {
    padding-right: 5px !important;
  }
  .sm\:mt-5 {
    margin-top: 5px !important;
  }
  .sm\:mb-5 {
    margin-bottom: 5px !important;
  }
  .sm\:ml-5 {
    margin-left: 5px !important;
  }
  .sm\:mr-5 {
    margin-right: 5px !important;
  }
  .sm\:py-8 {
    padding-top: 8px !important;
    padding-bottom: 8px !important;
  }
  .sm\:px-8 {
    padding-left: 8px !important;
    padding-right: 8px !important;
  }
  .sm\:pt-8 {
    padding-top: 8px !important;
  }
  .sm\:pb-8 {
    padding-bottom: 8px !important;
  }
  .sm\:pl-8 {
    padding-left: 8px !important;
  }
  .sm\:pr-8 {
    padding-right: 8px !important;
  }
  .sm\:mt-8 {
    margin-top: 8px !important;
  }
  .sm\:mb-8 {
    margin-bottom: 8px !important;
  }
  .sm\:ml-8 {
    margin-left: 8px !important;
  }
  .sm\:mr-8 {
    margin-right: 8px !important;
  }
  .sm\:py-10 {
    padding-top: 10px !important;
    padding-bottom: 10px !important;
  }
  .sm\:px-10 {
    padding-left: 10px !important;
    padding-right: 10px !important;
  }
  .sm\:pt-10 {
    padding-top: 10px !important;
  }
  .sm\:pb-10 {
    padding-bottom: 10px !important;
  }
  .sm\:pl-10 {
    padding-left: 10px !important;
  }
  .sm\:pr-10 {
    padding-right: 10px !important;
  }
  .sm\:mt-10 {
    margin-top: 10px !important;
  }
  .sm\:mb-10 {
    margin-bottom: 10px !important;
  }
  .sm\:ml-10 {
    margin-left: 10px !important;
  }
  .sm\:mr-10 {
    margin-right: 10px !important;
  }
  .sm\:py-12 {
    padding-top: 12px !important;
    padding-bottom: 12px !important;
  }
  .sm\:px-12 {
    padding-left: 12px !important;
    padding-right: 12px !important;
  }
  .sm\:pt-12 {
    padding-top: 12px !important;
  }
  .sm\:pb-12 {
    padding-bottom: 12px !important;
  }
  .sm\:pl-12 {
    padding-left: 12px !important;
  }
  .sm\:pr-12 {
    padding-right: 12px !important;
  }
  .sm\:mt-12 {
    margin-top: 12px !important;
  }
  .sm\:mb-12 {
    margin-bottom: 12px !important;
  }
  .sm\:ml-12 {
    margin-left: 12px !important;
  }
  .sm\:mr-12 {
    margin-right: 12px !important;
  }
  .sm\:py-15 {
    padding-top: 15px !important;
    padding-bottom: 15px !important;
  }
  .sm\:px-15 {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
  .sm\:pt-15 {
    padding-top: 15px !important;
  }
  .sm\:pb-15 {
    padding-bottom: 15px !important;
  }
  .sm\:pl-15 {
    padding-left: 15px !important;
  }
  .sm\:pr-15 {
    padding-right: 15px !important;
  }
  .sm\:mt-15 {
    margin-top: 15px !important;
  }
  .sm\:mb-15 {
    margin-bottom: 15px !important;
  }
  .sm\:ml-15 {
    margin-left: 15px !important;
  }
  .sm\:mr-15 {
    margin-right: 15px !important;
  }
  .sm\:py-20 {
    padding-top: 20px !important;
    padding-bottom: 20px !important;
  }
  .sm\:px-20 {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
  .sm\:pt-20 {
    padding-top: 20px !important;
  }
  .sm\:pb-20 {
    padding-bottom: 20px !important;
  }
  .sm\:pl-20 {
    padding-left: 20px !important;
  }
  .sm\:pr-20 {
    padding-right: 20px !important;
  }
  .sm\:mt-20 {
    margin-top: 20px !important;
  }
  .sm\:mb-20 {
    margin-bottom: 20px !important;
  }
  .sm\:ml-20 {
    margin-left: 20px !important;
  }
  .sm\:mr-20 {
    margin-right: 20px !important;
  }
  .sm\:py-25 {
    padding-top: 25px !important;
    padding-bottom: 25px !important;
  }
  .sm\:px-25 {
    padding-left: 25px !important;
    padding-right: 25px !important;
  }
  .sm\:pt-25 {
    padding-top: 25px !important;
  }
  .sm\:pb-25 {
    padding-bottom: 25px !important;
  }
  .sm\:pl-25 {
    padding-left: 25px !important;
  }
  .sm\:pr-25 {
    padding-right: 25px !important;
  }
  .sm\:mt-25 {
    margin-top: 25px !important;
  }
  .sm\:mb-25 {
    margin-bottom: 25px !important;
  }
  .sm\:ml-25 {
    margin-left: 25px !important;
  }
  .sm\:mr-25 {
    margin-right: 25px !important;
  }
  .sm\:py-30 {
    padding-top: 30px !important;
    padding-bottom: 30px !important;
  }
  .sm\:px-30 {
    padding-left: 30px !important;
    padding-right: 30px !important;
  }
  .sm\:pt-30 {
    padding-top: 30px !important;
  }
  .sm\:pb-30 {
    padding-bottom: 30px !important;
  }
  .sm\:pl-30 {
    padding-left: 30px !important;
  }
  .sm\:pr-30 {
    padding-right: 30px !important;
  }
  .sm\:mt-30 {
    margin-top: 30px !important;
  }
  .sm\:mb-30 {
    margin-bottom: 30px !important;
  }
  .sm\:ml-30 {
    margin-left: 30px !important;
  }
  .sm\:mr-30 {
    margin-right: 30px !important;
  }
  .sm\:py-35 {
    padding-top: 35px !important;
    padding-bottom: 35px !important;
  }
  .sm\:px-35 {
    padding-left: 35px !important;
    padding-right: 35px !important;
  }
  .sm\:pt-35 {
    padding-top: 35px !important;
  }
  .sm\:pb-35 {
    padding-bottom: 35px !important;
  }
  .sm\:pl-35 {
    padding-left: 35px !important;
  }
  .sm\:pr-35 {
    padding-right: 35px !important;
  }
  .sm\:mt-35 {
    margin-top: 35px !important;
  }
  .sm\:mb-35 {
    margin-bottom: 35px !important;
  }
  .sm\:ml-35 {
    margin-left: 35px !important;
  }
  .sm\:mr-35 {
    margin-right: 35px !important;
  }
  .sm\:py-40 {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }
  .sm\:px-40 {
    padding-left: 40px !important;
    padding-right: 40px !important;
  }
  .sm\:pt-40 {
    padding-top: 40px !important;
  }
  .sm\:pb-40 {
    padding-bottom: 40px !important;
  }
  .sm\:pl-40 {
    padding-left: 40px !important;
  }
  .sm\:pr-40 {
    padding-right: 40px !important;
  }
  .sm\:mt-40 {
    margin-top: 40px !important;
  }
  .sm\:mb-40 {
    margin-bottom: 40px !important;
  }
  .sm\:ml-40 {
    margin-left: 40px !important;
  }
  .sm\:mr-40 {
    margin-right: 40px !important;
  }
  .sm\:py-45 {
    padding-top: 45px !important;
    padding-bottom: 45px !important;
  }
  .sm\:px-45 {
    padding-left: 45px !important;
    padding-right: 45px !important;
  }
  .sm\:pt-45 {
    padding-top: 45px !important;
  }
  .sm\:pb-45 {
    padding-bottom: 45px !important;
  }
  .sm\:pl-45 {
    padding-left: 45px !important;
  }
  .sm\:pr-45 {
    padding-right: 45px !important;
  }
  .sm\:mt-45 {
    margin-top: 45px !important;
  }
  .sm\:mb-45 {
    margin-bottom: 45px !important;
  }
  .sm\:ml-45 {
    margin-left: 45px !important;
  }
  .sm\:mr-45 {
    margin-right: 45px !important;
  }
  .sm\:py-50 {
    padding-top: 50px !important;
    padding-bottom: 50px !important;
  }
  .sm\:px-50 {
    padding-left: 50px !important;
    padding-right: 50px !important;
  }
  .sm\:pt-50 {
    padding-top: 50px !important;
  }
  .sm\:pb-50 {
    padding-bottom: 50px !important;
  }
  .sm\:pl-50 {
    padding-left: 50px !important;
  }
  .sm\:pr-50 {
    padding-right: 50px !important;
  }
  .sm\:mt-50 {
    margin-top: 50px !important;
  }
  .sm\:mb-50 {
    margin-bottom: 50px !important;
  }
  .sm\:ml-50 {
    margin-left: 50px !important;
  }
  .sm\:mr-50 {
    margin-right: 50px !important;
  }
  .sm\:py-60 {
    padding-top: 60px !important;
    padding-bottom: 60px !important;
  }
  .sm\:px-60 {
    padding-left: 60px !important;
    padding-right: 60px !important;
  }
  .sm\:pt-60 {
    padding-top: 60px !important;
  }
  .sm\:pb-60 {
    padding-bottom: 60px !important;
  }
  .sm\:pl-60 {
    padding-left: 60px !important;
  }
  .sm\:pr-60 {
    padding-right: 60px !important;
  }
  .sm\:mt-60 {
    margin-top: 60px !important;
  }
  .sm\:mb-60 {
    margin-bottom: 60px !important;
  }
  .sm\:ml-60 {
    margin-left: 60px !important;
  }
  .sm\:mr-60 {
    margin-right: 60px !important;
  }
  .sm\:py-80 {
    padding-top: 80px !important;
    padding-bottom: 80px !important;
  }
  .sm\:px-80 {
    padding-left: 80px !important;
    padding-right: 80px !important;
  }
  .sm\:pt-80 {
    padding-top: 80px !important;
  }
  .sm\:pb-80 {
    padding-bottom: 80px !important;
  }
  .sm\:pl-80 {
    padding-left: 80px !important;
  }
  .sm\:pr-80 {
    padding-right: 80px !important;
  }
  .sm\:mt-80 {
    margin-top: 80px !important;
  }
  .sm\:mb-80 {
    margin-bottom: 80px !important;
  }
  .sm\:ml-80 {
    margin-left: 80px !important;
  }
  .sm\:mr-80 {
    margin-right: 80px !important;
  }
  .sm\:py-90 {
    padding-top: 90px !important;
    padding-bottom: 90px !important;
  }
  .sm\:px-90 {
    padding-left: 90px !important;
    padding-right: 90px !important;
  }
  .sm\:pt-90 {
    padding-top: 90px !important;
  }
  .sm\:pb-90 {
    padding-bottom: 90px !important;
  }
  .sm\:pl-90 {
    padding-left: 90px !important;
  }
  .sm\:pr-90 {
    padding-right: 90px !important;
  }
  .sm\:mt-90 {
    margin-top: 90px !important;
  }
  .sm\:mb-90 {
    margin-bottom: 90px !important;
  }
  .sm\:ml-90 {
    margin-left: 90px !important;
  }
  .sm\:mr-90 {
    margin-right: 90px !important;
  }
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.xl\:mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.lg\:mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.md\:mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.sm\:mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.x-gap-5 {
  margin-left: -2.5px;
  margin-right: -2.5px;
}

.x-gap-5 > * {
  padding-left: 2.5px;
  padding-right: 2.5px;
}

.y-gap-5 {
  margin-top: -2.5px;
  margin-bottom: -2.5px;
}

.y-gap-5 > * {
  padding-top: 2.5px;
  padding-bottom: 2.5px;
}

.x-gap-10 {
  margin-left: -5px;
  margin-right: -5px;
}

.x-gap-10 > * {
  padding-left: 5px;
  padding-right: 5px;
}

.y-gap-10 {
  margin-top: -5px;
  margin-bottom: -5px;
}

.y-gap-10 > * {
  padding-top: 5px;
  padding-bottom: 5px;
}

.x-gap-15 {
  margin-left: -7.5px;
  margin-right: -7.5px;
}

.x-gap-15 > * {
  padding-left: 7.5px;
  padding-right: 7.5px;
}

.y-gap-15 {
  margin-top: -7.5px;
  margin-bottom: -7.5px;
}

.y-gap-15 > * {
  padding-top: 7.5px;
  padding-bottom: 7.5px;
}

.x-gap-20 {
  margin-left: -10px;
  margin-right: -10px;
}

.x-gap-20 > * {
  padding-left: 10px;
  padding-right: 10px;
}

.y-gap-20 {
  margin-top: -10px;
  margin-bottom: -10px;
}

.y-gap-20 > * {
  padding-top: 10px;
  padding-bottom: 10px;
}

.x-gap-30 {
  margin-left: -15px;
  margin-right: -15px;
}

.x-gap-30 > * {
  padding-left: 15px;
  padding-right: 15px;
}

.y-gap-30 {
  margin-top: -15px;
  margin-bottom: -15px;
}

.y-gap-30 > * {
  padding-top: 15px;
  padding-bottom: 15px;
}

.x-gap-40 {
  margin-left: -20px;
  margin-right: -20px;
}

.x-gap-40 > * {
  padding-left: 20px;
  padding-right: 20px;
}

.y-gap-40 {
  margin-top: -20px;
  margin-bottom: -20px;
}

.y-gap-40 > * {
  padding-top: 20px;
  padding-bottom: 20px;
}

.x-gap-50 {
  margin-left: -25px;
  margin-right: -25px;
}

.x-gap-50 > * {
  padding-left: 25px;
  padding-right: 25px;
}

.y-gap-50 {
  margin-top: -25px;
  margin-bottom: -25px;
}

.y-gap-50 > * {
  padding-top: 25px;
  padding-bottom: 25px;
}

.x-gap-60 {
  margin-left: -30px;
  margin-right: -30px;
}

.x-gap-60 > * {
  padding-left: 30px;
  padding-right: 30px;
}

.y-gap-60 {
  margin-top: -30px;
  margin-bottom: -30px;
}

.y-gap-60 > * {
  padding-top: 30px;
  padding-bottom: 30px;
}

@media (max-width: 767px) {
  .md\:x-gap-5 {
    margin-left: -2.5px;
    margin-right: -2.5px;
  }
  .md\:x-gap-5 > * {
    padding-left: 2.5px;
    padding-right: 2.5px;
  }
  .md\:y-gap-5 {
    margin-top: -2.5px;
    margin-bottom: -2.5px;
  }
  .md\:y-gap-5 > * {
    padding-top: 2.5px;
    padding-bottom: 2.5px;
  }
  .md\:x-gap-10 {
    margin-left: -5px;
    margin-right: -5px;
  }
  .md\:x-gap-10 > * {
    padding-left: 5px;
    padding-right: 5px;
  }
  .md\:y-gap-10 {
    margin-top: -5px;
    margin-bottom: -5px;
  }
  .md\:y-gap-10 > * {
    padding-top: 5px;
    padding-bottom: 5px;
  }
  .md\:x-gap-15 {
    margin-left: -7.5px;
    margin-right: -7.5px;
  }
  .md\:x-gap-15 > * {
    padding-left: 7.5px;
    padding-right: 7.5px;
  }
  .md\:y-gap-15 {
    margin-top: -7.5px;
    margin-bottom: -7.5px;
  }
  .md\:y-gap-15 > * {
    padding-top: 7.5px;
    padding-bottom: 7.5px;
  }
  .md\:x-gap-20 {
    margin-left: -10px;
    margin-right: -10px;
  }
  .md\:x-gap-20 > * {
    padding-left: 10px;
    padding-right: 10px;
  }
  .md\:y-gap-20 {
    margin-top: -10px;
    margin-bottom: -10px;
  }
  .md\:y-gap-20 > * {
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .md\:x-gap-30 {
    margin-left: -15px;
    margin-right: -15px;
  }
  .md\:x-gap-30 > * {
    padding-left: 15px;
    padding-right: 15px;
  }
  .md\:y-gap-30 {
    margin-top: -15px;
    margin-bottom: -15px;
  }
  .md\:y-gap-30 > * {
    padding-top: 15px;
    padding-bottom: 15px;
  }
  .md\:x-gap-40 {
    margin-left: -20px;
    margin-right: -20px;
  }
  .md\:x-gap-40 > * {
    padding-left: 20px;
    padding-right: 20px;
  }
  .md\:y-gap-40 {
    margin-top: -20px;
    margin-bottom: -20px;
  }
  .md\:y-gap-40 > * {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .md\:x-gap-50 {
    margin-left: -25px;
    margin-right: -25px;
  }
  .md\:x-gap-50 > * {
    padding-left: 25px;
    padding-right: 25px;
  }
  .md\:y-gap-50 {
    margin-top: -25px;
    margin-bottom: -25px;
  }
  .md\:y-gap-50 > * {
    padding-top: 25px;
    padding-bottom: 25px;
  }
  .md\:x-gap-60 {
    margin-left: -30px;
    margin-right: -30px;
  }
  .md\:x-gap-60 > * {
    padding-left: 30px;
    padding-right: 30px;
  }
  .md\:y-gap-60 {
    margin-top: -30px;
    margin-bottom: -30px;
  }
  .md\:y-gap-60 > * {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}

@media (max-width: 767px) {
  .sm\:x-gap-5 {
    margin-left: -2.5px;
    margin-right: -2.5px;
  }
  .sm\:x-gap-5 > * {
    padding-left: 2.5px;
    padding-right: 2.5px;
  }
  .sm\:y-gap-5 {
    margin-top: -2.5px;
    margin-bottom: -2.5px;
  }
  .sm\:y-gap-5 > * {
    padding-top: 2.5px;
    padding-bottom: 2.5px;
  }
  .sm\:x-gap-10 {
    margin-left: -5px;
    margin-right: -5px;
  }
  .sm\:x-gap-10 > * {
    padding-left: 5px;
    padding-right: 5px;
  }
  .sm\:y-gap-10 {
    margin-top: -5px;
    margin-bottom: -5px;
  }
  .sm\:y-gap-10 > * {
    padding-top: 5px;
    padding-bottom: 5px;
  }
  .sm\:x-gap-15 {
    margin-left: -7.5px;
    margin-right: -7.5px;
  }
  .sm\:x-gap-15 > * {
    padding-left: 7.5px;
    padding-right: 7.5px;
  }
  .sm\:y-gap-15 {
    margin-top: -7.5px;
    margin-bottom: -7.5px;
  }
  .sm\:y-gap-15 > * {
    padding-top: 7.5px;
    padding-bottom: 7.5px;
  }
  .sm\:x-gap-20 {
    margin-left: -10px;
    margin-right: -10px;
  }
  .sm\:x-gap-20 > * {
    padding-left: 10px;
    padding-right: 10px;
  }
  .sm\:y-gap-20 {
    margin-top: -10px;
    margin-bottom: -10px;
  }
  .sm\:y-gap-20 > * {
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .sm\:x-gap-30 {
    margin-left: -15px;
    margin-right: -15px;
  }
  .sm\:x-gap-30 > * {
    padding-left: 15px;
    padding-right: 15px;
  }
  .sm\:y-gap-30 {
    margin-top: -15px;
    margin-bottom: -15px;
  }
  .sm\:y-gap-30 > * {
    padding-top: 15px;
    padding-bottom: 15px;
  }
  .sm\:x-gap-40 {
    margin-left: -20px;
    margin-right: -20px;
  }
  .sm\:x-gap-40 > * {
    padding-left: 20px;
    padding-right: 20px;
  }
  .sm\:y-gap-40 {
    margin-top: -20px;
    margin-bottom: -20px;
  }
  .sm\:y-gap-40 > * {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .sm\:x-gap-50 {
    margin-left: -25px;
    margin-right: -25px;
  }
  .sm\:x-gap-50 > * {
    padding-left: 25px;
    padding-right: 25px;
  }
  .sm\:y-gap-50 {
    margin-top: -25px;
    margin-bottom: -25px;
  }
  .sm\:y-gap-50 > * {
    padding-top: 25px;
    padding-bottom: 25px;
  }
  .sm\:x-gap-60 {
    margin-left: -30px;
    margin-right: -30px;
  }
  .sm\:x-gap-60 > * {
    padding-left: 30px;
    padding-right: 30px;
  }
  .sm\:y-gap-60 {
    margin-top: -30px;
    margin-bottom: -30px;
  }
  .sm\:y-gap-60 > * {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}

.layout-pt-sm {
  padding-top: 30px;
}

.layout-pb-sm {
  padding-bottom: 30px;
}

.layout-pt-md {
  padding-top: 60px;
}

.layout-pb-md {
  padding-bottom: 60px;
}

.layout-pt-lg {
  padding-top: 120px;
}

.layout-pb-lg {
  padding-bottom: 120px;
}

.layout-pt-xl {
  padding-top: 140px;
}

.layout-pb-xl {
  padding-bottom: 140px;
}

@media (max-width: 767px) {
  .layout-pt-sm {
    padding-top: 30px;
  }
  .layout-pb-sm {
    padding-bottom: 30px;
  }
}

@media (max-width: 767px) {
  .layout-pt-md {
    padding-top: 60px;
  }
  .layout-pb-md {
    padding-bottom: 60px;
  }
}

@media (max-width: 767px) {
  .layout-pt-lg {
    padding-top: 100px;
  }
  .layout-pb-lg {
    padding-bottom: 100px;
  }
}

@media (max-width: 767px) {
  .layout-pt-xl {
    padding-top: 120px;
  }
  .layout-pb-xl {
    padding-bottom: 120px;
  }
}

@media (max-width: 575px) {
  .layout-pt-sm {
    padding-top: 30px;
  }
  .layout-pb-sm {
    padding-bottom: 30px;
  }
}

@media (max-width: 575px) {
  .layout-pt-md {
    padding-top: 50px;
  }
  .layout-pb-md {
    padding-bottom: 50px;
  }
}

@media (max-width: 575px) {
  .layout-pt-lg {
    padding-top: 80px;
  }
  .layout-pb-lg {
    padding-bottom: 80px;
  }
}

@media (max-width: 575px) {
  .layout-pt-xl {
    padding-top: 80px;
  }
  .layout-pb-xl {
    padding-bottom: 80px;
  }
}

.w-1\/7 {
  width: 14.285714% !important;
}

.w-1\/5 {
  width: 20% !important;
}

.w-1\/4 {
  width: 25% !important;
}

.w-1\/3 {
  width: 33.333333% !important;
}

.w-1\/2 {
  width: 50% !important;
}

.w-90{
  width: 90% !important;
}

.w-80{
  width: 80% !important;
}

.w-70{
  width: 70% !important;
}

.w-60{
  width: 60% !important;
}

.w-50{
  width: 50% !important;
}

.w-1\/1 {
  width: 100% !important;
}

@media (max-width: 1199px) {
  .xl\:w-1\/5 {
    width: 20% !important;
  }
  .xl\:w-1\/4 {
    width: 25% !important;
  }
  .xl\:w-1\/3 {
    width: 33.333333% !important;
  }
  .xl\:w-1\/2 {
    width: 50% !important;
  }
  .xl\:w-1\/1 {
    width: 100% !important;
  }
}

@media (max-width: 991px) {
  .lg\:w-1\/5 {
    width: 20% !important;
  }
  .lg\:w-1\/4 {
    width: 25% !important;
  }
  .lg\:w-1\/3 {
    width: 33.333333% !important;
  }
  .lg\:w-1\/2 {
    width: 50% !important;
  }
  .lg\:w-1\/1 {
    width: 100% !important;
  }
}

@media (max-width: 767px) {
  .md\:w-1\/5 {
    width: 20% !important;
  }
  .md\:w-1\/4 {
    width: 25% !important;
  }
  .md\:w-1\/3 {
    width: 33.333333% !important;
  }
  .md\:w-1\/2 {
    width: 50% !important;
  }
  .md\:w-1\/1 {
    width: 100% !important;
  }
}

@media (max-width: 575px) {
  .sm\:w-1\/5 {
    width: 20% !important;
  }
  .sm\:w-1\/4 {
    width: 25% !important;
  }
  .sm\:w-1\/3 {
    width: 33.333333% !important;
  }
  .sm\:w-1\/2 {
    width: 50% !important;
  }
  .sm\:w-1\/1 {
    width: 100% !important;
  }
}

.flex-column {
  flex-direction: column;
}

@media (max-width: 1199px) {
  .xl\:flex-column {
    flex-direction: column !important;
  }
}

@media (max-width: 991px) {
  .lg\:flex-column {
    flex-direction: column !important;
  }
}

@media (max-width: 767px) {
  .md\:flex-column {
    flex-direction: column !important;
  }
}

@media (max-width: 575px) {
  .sm\:flex-column {
    flex-direction: column !important;
  }
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.text-left {
  text-align: left;
}

@media (max-width: 1199px) {
  .xl\:text-center {
    text-align: center !important;
  }
  .xl\:text-right {
    text-align: right !important;
  }
  .xl\:text-left {
    text-align: left !important;
  }
}

@media (max-width: 991px) {
  .lg\:text-center {
    text-align: center !important;
  }
  .lg\:text-right {
    text-align: right !important;
  }
  .lg\:text-left {
    text-align: left !important;
  }
}

@media (max-width: 767px) {
  .md\:text-center {
    text-align: center !important;
  }
  .md\:text-right {
    text-align: right !important;
  }
  .md\:text-left {
    text-align: left !important;
  }
}

@media (max-width: 575px) {
  .sm\:text-center {
    text-align: center !important;
  }
  .sm\:text-right {
    text-align: right !important;
  }
  .sm\:text-left {
    text-align: left !important;
  }
}

.justify-start {
  justify-content: flex-start !important;
}

.justify-end {
  justify-content: flex-end !important;
}

.justify-center {
  justify-content: center !important;
}

.justify-between {
  justify-content: space-between !important;
}

.items-start {
  align-items: flex-start !important;
}

.items-end {
  align-items: flex-end !important;
}

.items-center {
  align-items: center !important;
}

.hc-box{
  min-height: 330px;
}

.hc-box:hover {
  box-shadow: 0 0 10px rgba(0,0,0,0.5);
  transition: all 0.3s ease-in-out;
}

a .hc-box:hover {
  color: initial;
}

@media (max-width: 1199px) {
  .xl\:justify-start {
    justify-content: flex-start !important;
  }
  .xl\:justify-end {
    justify-content: flex-end !important;
  }
  .xl\:justify-center {
    justify-content: center !important;
  }
  .xl\:justify-between {
    justify-content: space-between !important;
  }
  .xl\:items-start {
    align-items: flex-start !important;
  }
  .xl\:items-end {
    align-items: flex-end !important;
  }
  .xl\:items-center {
    align-items: center !important;
  }
}

@media (max-width: 991px) {
  .lg\:justify-start {
    justify-content: flex-start !important;
  }
  .lg\:justify-end {
    justify-content: flex-end !important;
  }
  .lg\:justify-center {
    justify-content: center !important;
  }
  .lg\:justify-between {
    justify-content: space-between !important;
  }
  .lg\:items-start {
    align-items: flex-start !important;
  }
  .lg\:items-end {
    align-items: flex-end !important;
  }
  .lg\:items-center {
    align-items: center !important;
  }
}

@media (max-width: 767px) {
  .md\:justify-start {
    justify-content: flex-start !important;
  }
  .md\:justify-end {
    justify-content: flex-end !important;
  }
  .md\:justify-center {
    justify-content: center !important;
  }
  .md\:justify-between {
    justify-content: space-between !important;
  }
  .md\:items-start {
    align-items: flex-start !important;
  }
  .md\:items-end {
    align-items: flex-end !important;
  }
  .md\:items-center {
    align-items: center !important;
  }
}

@media (max-width: 575px) {
  .sm\:justify-start {
    justify-content: flex-start !important;
  }
  .sm\:justify-end {
    justify-content: flex-end !important;
  }
  .sm\:justify-center {
    justify-content: center !important;
  }
  .sm\:justify-between {
    justify-content: space-between !important;
  }
  .sm\:items-start {
    align-items: flex-start !important;
  }
  .sm\:items-end {
    align-items: flex-end !important;
  }
  .sm\:items-center {
    align-items: center !important;
  }
}

.d-none {
  display: none !important;
}

.d-flex {
  display: flex !important;
}

.d-block {
  display: block !important;
}

.d-inline-block {
  display: inline-block !important;
}

@media (max-width: 1199px) {
  .xl\:d-none {
    display: none !important;
  }
  .xl\:d-inline-block {
    display: inline-block !important;
  }
  .xl\:d-block {
    display: block !important;
  }
  .xl\:d-flex {
    display: flex !important;
  }
}

@media (max-width: 991px) {
  .lg\:d-none {
    display: none !important;
  }
  .lg\:d-inline-block {
    display: inline-block !important;
  }
  .lg\:d-block {
    display: block !important;
  }
  .lg\:d-flex {
    display: flex !important;
  }
}

@media (max-width: 767px) {
  .md\:d-none {
    display: none !important;
  }
  .md\:d-inline-block {
    display: inline-block !important;
  }
  .md\:d-block {
    display: block !important;
  }
  .md\:d-flex {
    display: flex !important;
  }
}

@media (max-width: 575px) {
  .sm\:d-none {
    display: none !important;
  }
  .sm\:d-inline-block {
    display: inline-block !important;
  }
  .sm\:d-block {
    display: block !important;
  }
  .sm\:d-flex {
    display: flex !important;
  }
}

.order-1 {
  order: 1;
}

.order-2 {
  order: 2;
}

.order-3 {
  order: 3;
}

.order-4 {
  order: 4;
}

.order-5 {
  order: 5;
}

.order-6 {
  order: 6;
}

@media (max-width: 1199px) {
  .xl\:order-1 {
    order: 1;
  }
  .xl\:order-2 {
    order: 2;
  }
  .xl\:order-3 {
    order: 3;
  }
  .xl\:order-4 {
    order: 4;
  }
  .xl\:order-5 {
    order: 5;
  }
  .xl\:order-6 {
    order: 6;
  }
}

@media (max-width: 991px) {
  .lg\:order-1 {
    order: 1;
  }
  .lg\:order-2 {
    order: 2;
  }
  .lg\:order-3 {
    order: 3;
  }
  .lg\:order-4 {
    order: 4;
  }
  .lg\:order-5 {
    order: 5;
  }
  .lg\:order-6 {
    order: 6;
  }
}

@media (max-width: 767px) {
  .md\:order-1 {
    order: 1;
  }
  .md\:order-2 {
    order: 2;
  }
  .md\:order-3 {
    order: 3;
  }
  .md\:order-4 {
    order: 4;
  }
  .md\:order-5 {
    order: 5;
  }
  .md\:order-6 {
    order: 6;
  }
}

@media (max-width: 575px) {
  .sm\:order-1 {
    order: 1;
  }
  .sm\:order-2 {
    order: 2;
  }
  .sm\:order-3 {
    order: 3;
  }
  .sm\:order-4 {
    order: 4;
  }
  .sm\:order-5 {
    order: 5;
  }
  .sm\:order-6 {
    order: 6;
  }
}

    transform: translate3d(-90px, 0, 0);
  }
  100% {
    transform: translate3d(85px, 0, 0);
  }
}

@keyframes move-forever {
  0% {
    transform: translate3d(-90px, 0, 0);
  }
  100% {
    transform: translate3d(85px, 0, 0);
  }
}

  position: absolute;
  top: 55px;
  right: 10px;
}

.absolute-button {
  position: absolute;
  top: 10px;
  right: 10px;
}

.pointer {
  cursor: pointer;
}

.-sidebar-buttons {
  position: relative;
}

.-sidebar-buttons > * {
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  opacity: 0;
  pointer-events: none;
}

.-sidebar-buttons > *.-is-button-active {
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) 0.3s;
  opacity: 1;
}

.-sidebar-buttons > *:nth-child(1n+2) {
  position: absolute;
  top: 0;
  left: 0;
}

.-sidebar-menu {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  pointer-events: none;
  opacity: 0;
  transform: translateX(30px);
}

.-sidebar-menu.-sidebar-menu-opened {
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) 0.3s;
  transform: none;
  opacity: 1;
}

.-is-el-visible .-sidebar-buttons > *.-is-button-active {
  pointer-events: auto;
}

.-is-el-visible .-sidebar-menu.-sidebar-menu-opened {
  pointer-events: auto;
}



/* Mobile menu animation (CSS replacement for GSAP) */
@keyframes menuSlideIn {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.js-navList ul {
  transition: opacity 0.3s ease;
}

.js-navList ul.-is-active {
  animation: menuSlideIn 0.4s ease forwards;
}

.-hover-dshb-header-light {
  transition: all 0.2s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.-hover-dshb-header-light:hover {
  color: var(--color-fd-blue-3) !important;
  background-color: var(--color-light-4) !important;
}

.-base-sidebar-menu-hover {
  transition: all 0.2s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.-base-sidebar-menu-hover:hover {
  background-color: var(--color-light-4) !important;
}

.w-unset {
  width: unset;
}

.scroll-bar-1::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}

.scroll-bar-1::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: 12px;
}

.calendar-top-cell {
  text-align: center;
  width: 120px;
  height: 50px;
}

.calendar-cell {
  height: 150px;
  padding: 6px 10px;
  overflow-y: scroll;
}

.calendar-cell::-webkit-scrollbar {
  width: 4px;
}

.calendar-cell::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: 12px;
}

.toggle-element {
  transition: all 0.2s cubic-bezier(0.215, 0.61, 0.355, 1);
  opacity: 0;
  pointer-events: none;
}

.toggle-element.-down {
  transform: translateY(20px);
}

.toggle-element.-is-el-visible {
  z-index: 25;
  transform: none;
  opacity: 1;
  pointer-events: auto;
}

.toggle-element.-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  padding: 26px;
  background-color: white;
  box-shadow: 0px 25px 70px rgba(1, 33, 58, 0.07);
  min-width: 180px;
  border-radius: 8px;
  transition: all 0.2s cubic-bezier(0.165, 0.84, 0.44, 1);
  transform: translateX(-50%);
}

.footer-bg-color {
  background-color: #311F61;
}

.invoice-wrapper {
  min-height: 100vh;
}

.invoice-wrapper .invoice__content {
  padding: 120px 50px;
  padding-bottom: 100px;
}

.invoice-wrapper .invoice__footer {
  padding: 45px 0;
}

@media (max-width: 575px) {
  .sm\:pos-unset {
    position: unset;
  }
}

.toggle-bottom {
  position: absolute;
  top: 100%;
}

.toggle-bottom.-icons-1 {
  width: 160px;
}

.toggle-bottom.-profile {
  width: 220px;
  right: 0;
}

@media (max-width: 575px) {
  .toggle-bottom.-profile {
    position: fixed;
    top: unset;
    right: unset;
    bottom: 0;
    left: 0;
    width: 100vw;
  }
}

/* User dropdown items (shared styles) */
.header__dropdown-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  color: var(--color-fd-blue-3);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s ease;
  border-radius: 6px;
}

.header__dropdown-item:hover {
  background: var(--color-fd-light-1);
  color: var(--color-fd-green-4);
}

.header__dropdown-item i {
  width: 18px;
  text-align: center;
  color: var(--color-fd-gray-1);
}

.header__dropdown-item:hover i {
  color: var(--color-fd-green-4);
}

.header__dropdown-divider {
  height: 1px;
  background: var(--color-fd-gray-4);
  margin: 4px 0;
}

.header__dropdown-item--danger {
  color: var(--color-error-2);
}

.header__dropdown-item--danger i {
  color: var(--color-error-2);
}

.header__dropdown-item--danger:hover {
  background: var(--color-error-1);
  color: var(--color-error-2);
}

/* Profile dropdown toggle */
.toggle-bottom.-profile .header__user-dropdown {
  position: static;
  opacity: 1;
  visibility: visible;
  transform: none;
  box-shadow: none;
  border-radius: 0;
  min-width: auto;
  background: transparent;
}

.toggle-bottom.-notifications {
  width: 470px;
  right: -20px;
}

@media (max-width: 575px) {
  .toggle-bottom.-notifications {
    position: fixed;
    right: unset;
    bottom: unset;
    top: unset;
    left: 50%;
    transform: translateX(-50%);
    width: 90vw;
  }
}

.toggle-bottom.-courses {
  width: 380px;
  right: -20px;
}

@media (max-width: 575px) {
  .toggle-bottom.-courses {
    position: fixed;
    right: unset;
    bottom: unset;
    top: unset;
    left: 50%;
    transform: translateX(-50%);
    width: 90vw;
  }
}

.img-el__side {
  position: absolute;
  top: -20px;
  left: -20px;
}

.img-el.-w-260 {
  width: 260px;
}

.sidebar-menu {
  position: fixed;
  z-index: 500 !important;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  display: flex;
  justify-content: flex-end;
}

.sidebar-menu__content {
  overflow-y: scroll;
  overflow-x: hidden;
  width: 415px;
  height: 100%;
}

.sidebar-menu__bg {
  background-color: rgba(24, 24, 26, 0.7);
  position: fixed;
  z-index: -1;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
}

.section-slider-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.section-slider-nav.-absolute {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}

.section-slider-nav.-absolute.-prev {
  left: -35px;
}

.section-slider-nav.-absolute.-next {
  right: -35px;
}

@media (max-width: 575px) {
  .section-slider-nav.-absolute {
    width: 48px;
    height: 48px;
  }
  .section-slider-nav.-absolute i {
    font-size: 20px !important;
  }
  .section-slider-nav.-absolute.-prev {
    left: -10px;
  }
  .section-slider-nav.-absolute.-next {
    right: -10px;
  }
}

.section-slider-nav.-absolute-out {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}

.section-slider-nav.-absolute-out.-prev {
  right: calc(100% + 30px);
}

.section-slider-nav.-absolute-out.-next {
  left: calc(100% + 30px);
}

@media (max-width: 1500px) {
  .section-slider-nav.-absolute-out.-prev {
    right: calc(100% + 10px);
  }
  .section-slider-nav.-absolute-out.-next {
    left: calc(100% + 10px);
  }
}

.section-slider-nav.-white {
  background-color: white;
}

.section-slider-nav.-white:hover {
  background-color: var(--color-fd-blue-3) !important;
  color: white !important;
}

.section-slider-nav.-outline-white {
  border: 2px solid white;
}

.section-slider-nav.-outline-white:hover {
  background-color: white !important;
  color: var(--color-fd-blue-4) !important;
}

.section-slider-nav.-outline-dark-1 {
  border: 2px solid var(--color-fd-blue-4);
}

.section-slider-nav.-outline-dark-1:hover {
  background-color: var(--color-fd-blue-4) !important;
  color: white !important;
}

  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: auto auto;
  justify-content: flex-end;
  gap: 60px;
}

@media (max-width: 991px) {
  .composition.-type-1 {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 575px) {
  .composition.-type-1 {
    gap: 20px;
  }
}

.composition.-type-1 .-img-1 {
  display: flex;
  justify-content: flex-end;
}

.composition.-type-1 .-img-2 {
  grid-row: span 2;
  align-self: flex-end;
}

.composition.-type-1 .-img-3 {
  display: flex;
  justify-content: flex-end;
}

.composition.-type-1 .-el-1 {
  position: absolute;
  bottom: 337px;
  right: 170px;
  box-shadow: 0px 40px 30px 0px #19192E0A;
}

@media (max-width: 991px) {
  .composition.-type-1 .-el-1 {
    right: 40px;
  }
}

.composition.-type-1 .-el-2 {
  position: absolute;
  bottom: -40px;
  left: 0;
  box-shadow: 0px 40px 30px 0px #19192E0A;
}

@media (max-width: 991px) {
  .composition.-type-1 .-el-2 {
    left: unset;
  }
}

.composition.-type-1 .-el-3 {
  position: absolute;
  top: 154px;
  left: -20px;
  box-shadow: 0px 40px 30px 0px #19192E0A;
}

@media (max-width: 991px) {
  .composition.-type-1 .-el-3 {
    left: 40px;
  }
}

@media (max-width: 575px) {
  .composition.-type-1 .-el-3 {
    top: unset;
    bottom: -30px;
    left: 20px;
  }
}

.composition.-type-2 {
  position: relative;
  display: flex;
}

@media (max-width: 767px) {
  .composition.-type-2 {
    flex-direction: column;
  }
}

@media (max-width: 575px) {
  .composition.-type-2 > * {
    width: 100% !important;
  }
}

.composition.-type-2 .-el-1 {
  width: 345px;
}

.composition.-type-2 .-el-2 {
  position: relative;
  left: -55px;
  margin-top: 58px;
  width: 300px;
}

@media (max-width: 767px) {
  .composition.-type-2 .-el-2 {
    left: 0;
  }
}

@media (max-width: 575px) {
  .composition.-type-2 .-el-2 {
    margin-top: 20px;
  }
}

.composition.-type-3 {
  position: relative;
  padding-left: 112px;
}

@media (max-width: 575px) {
  .composition.-type-3 {
    display: flex;
    flex-direction: column;
    padding-left: 0;
  }
}

.composition.-type-3 .-el-1 {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 300px;
}

@media (max-width: 575px) {
  .composition.-type-3 .-el-1 {
    position: relative;
    margin-bottom: 20px;
    width: 100%;
    transform: none;
    top: unset;
    left: unset;
  }
}

.composition.-type-4 {
  position: relative;
  padding-bottom: 72px;
}

@media (max-width: 991px) {
  .composition.-type-4 {
    margin-bottom: 30px;
  }
}

@media (max-width: 575px) {
  .composition.-type-4 {
    margin-bottom: 20px;
    padding-bottom: 0;
  }
}

.composition.-type-4 .-el-2 {
  position: absolute;
  bottom: 0;
  right: -60px;
  width: 360px;
}

@media (max-width: 1199px) {
  .composition.-type-4 .-el-2 {
    right: 50%;
    transform: translate(50%);
  }
}

@media (max-width: 575px) {
  .composition.-type-4 .-el-2 {
    margin-top: 30px;
    position: relative;
    right: unset;
    width: 100%;
    transform: none;
  }
}

.composition.-type-5 {
  position: relative;
  padding-bottom: 170px;
  display: flex;
  justify-content: flex-end;
}

@media (max-width: 1199px) {
  .composition.-type-5 {
    margin-left: 50px;
  }
}

@media (max-width: 575px) {
  .composition.-type-5 {
    padding-bottom: 0;
    margin-left: 0;
    margin-bottom: 40px;
    flex-wrap: wrap;
    justify-content: center;
  }
}

.composition.-type-5 .-el-2 {
  position: absolute;
  bottom: 0;
  left: -40px;
}

@media (max-width: 575px) {
  .composition.-type-5 .-el-2 {
    position: relative;
    bottom: unset;
    left: unset;
    margin-top: 30px;
  }
}

.composition.-type-5 .-el-3 {
  position: absolute;
  top: 20px;
  left: 120px;
}

.composition.-type-5 .-el-4 {
  position: absolute;
  bottom: 300px;
  left: -40px;
}

@media (max-width: 575px) {
  .composition.-type-5 .-el-4 {
    position: relative;
    bottom: unset;
    left: unset;
    margin-top: 30px;
  }
  .composition.-type-5 .-el-4 .-w-260 {
    width: 100%;
  }
}

.composition.-type-5 .-el-5 {
  position: absolute;
  bottom: 101px;
  left: 250px;
}

.composition.-type-6 {
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
  gap: 30px;
}

@media (max-width: 767px) {
  .composition.-type-6 {
    grid-template-columns: 1fr;
  }
}

.composition.-type-6 > * {
  width: 280px;
}

@media (max-width: 1199px) {
  .composition.-type-6 > * {
    width: 220px;
  }
}

@media (max-width: 991px) {
  .composition.-type-6 > * {
    width: 100%;
  }
}

.composition.-type-6 .-el-2 {
  grid-row: span 2;
}

.composition.-type-7 {
  position: relative;
}

.composition.-type-7 .-el-2 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
}

.composition.-type-8 {
  display: grid;
  grid-template-columns: auto auto;
  gap: 30px;
  align-items: center;
}

@media (max-width: 575px) {
  .composition.-type-8 {
    gap: 15px;
  }
}

.composition.-type-8 .-el-1 {
  grid-row: span 2;
}

@media (max-width: 991px) {
  .lg\:h-auto {
    height: auto;
  }
}

.-button-hover-1__button {
  transition: all 0.2s cubic-bezier(0.165, 0.84, 0.44, 1);
  opacity: 0;
}

@media (max-width: 1199px) {
  .-button-hover-1__button {
    opacity: 1;
  }
}

.-button-hover-1:hover .-button-hover-1__button {
  opacity: 1;
}

.show-more__content {
  overflow: hidden;
  position: relative;
  max-height: 200px;
  transition: max-height 0.2s ease-out;
}

.show-more__content::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #FFFFFF 94.82%);
  transition: opacity 0.2s ease-out;
}

.show-more.is-active .show-more__content::after {
  opacity: 0;
}

.page-nav-menu.-line {
  border-bottom: 2px solid var(--color-light-5);
  max-width: 100%;
}

.page-nav-menu.-line .page-nav-menu__link {
  position: relative;
  display: block
}

.page-nav-menu.-line .page-nav-menu__link::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--color-fd-green-4);
  opacity: 0;
  transition: all 0.2s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.page-nav-menu.-line .page-nav-menu__link.is-active {
  color: var(--color-fd-green-4) !important;
}

.page-nav-menu.-line .page-nav-menu__link.is-active::after {
  opacity: 1;
}

table.table thead {
  background-color: var(--color-fd-light-2);
}

table.table th {
  padding: 25px;
  font-size: 16px;
  line-height: 1;
  color: var(--color-fd-blue-3);
  font-weight: 500;
}

table.table th:first-child {
  border-radius: 8px 0 0 8px;
}

table.table th:last-child {
  border-radius: 0 8px 8px 0;
}

table.table td {
  padding: 25px;
  border-bottom: 1px solid var(--color-light-5);
}

.tooltip {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.tooltip__content {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 7px 11px;
  font-size: 14px;
  line-height: 1.2;
  background-color: var(--color-fd-blue-4);
  color: white;
  border-radius: 8px;
  transition: all 0.2s cubic-bezier(0.165, 0.84, 0.44, 1);
  opacity: 0;
}

.tooltip__content::after {
  content: '';
  position: absolute;
  width: 0.53333rem;
  height: 0.53333rem;
  background-color: var(--color-fd-blue-4);
  transform: rotate(45deg);
}

.tooltip.-top .tooltip__content {
  bottom: calc(100% + 6px);
  transform: translateY(8px);
}

.tooltip.-top .tooltip__content::after {
  bottom: -0.26667rem;
}

.tooltip.-bottom .tooltip__content {
  top: calc(100% + 6px);
  transform: translateY(-8px);
}

.tooltip.-bottom .tooltip__content::after {
  top: -0.26667rem;
}

.tooltip.-left .tooltip__content {
  right: calc(100% + 6px);
  transform: translateX(8px);
}

.tooltip.-left .tooltip__content::after {
  right: -0.26667rem;
}

.tooltip.-right .tooltip__content {
  left: calc(100% + 6px);
  transform: translateX(-8px);
}

.tooltip.-right .tooltip__content::after {
  left: -0.26667rem;
}

.tooltip:hover .tooltip__content {
  transform: none;
  opacity: 1;
}

.sidebar-calendar__button {
  transition: all 0.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.sidebar-calendar__button:hover {
  background-color: var(--color-light-2);
}

.sidebar-calendar__button.-is-active {
  background-color: var(--color-fd-blue-3);
}

.sidebar-calendar__button.-is-active > div {
  color: white !important;
}

.bg-red-light {
  background-color: rgba(232, 84, 62, 0.15);
}

.bg-orange-light {
  background-color: rgba(231, 142, 52, 0.15);
}

.bg-blue-light {
  background-color: rgba(80, 142, 240, 0.15);
}

.bg-blue-light {
  background-color: rgba(68, 91, 149, 0.15);
}

.bg-green-light {
  background-color: rgba(0, 255, 132, 0.15);
}

.dot-left {
  position: relative;
  display: flex;
  align-items: center;
}

.dot-left::before {
  content: "";
  position: absolute;
  right: calc(100% + 5px);
  width: 8px;
  height: 8px;
  border-radius: 100%;
  background-color: var(--color-fd-blue-3);
}

.dot-left.-orange::before {
  background-color: var(--color-orange-1);
}

.table-calendar {
  overflow: scroll;
  table-layout: fixed;
  width: 100%;
}

.table-calendar td {
  text-align: right;
  vertical-align: top;
  width: 120px;
}

.overflow-scroll {
  overflow: scroll;
}

.absolute-bookmark {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  color: var(--color-fd-green-3) !important;
  border-radius: 100%;
  background: white;
}

.top-n80{
  top: -80px;
}

#sticky-menu {
  position: sticky;
  top: 100px;
}

.guide-wrapper {
  max-width: unset;
  box-shadow: unset !important;
}

.guide-wrapper .button:hover {
  box-shadow: 0 0 10px rgba(0,0,0,0.5);
}

.guide-wrapper .button:hover {
  box-shadow: 0 0 10px rgba(0,0,0,0.5);
}

.img-payment-method{
  max-height: 50px;
}

/* ========================================
   Cart Dropdown Styles
   ======================================== */

/* Cart badge (item count) */
.cart-badge {
  position: absolute;
  top: -8px;
  right: -10px;
  background: var(--color-fd-green-3);
  color: var(--color-fd-blue-3);
  font-size: 11px;
  font-weight: 600;
  min-width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
}

/* Cart item image */
.cart-item-img {
  width: 70px;
  height: 50px;
  object-fit: cover;
  flex-shrink: 0;
}

/* Cart old price (strikethrough) */
.cart-old-price {
  font-size: 13px;
  color: #999;
  text-decoration: line-through;
}

/* Cart remove button */
.cart-remove-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  opacity: 0.6;
  transition: opacity 0.2s ease;
}

.cart-remove-btn:hover {
  opacity: 1;
}

/* Cart added message */
.cart-added-msg {
  animation: cartSlideDown 0.3s ease;
}

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

/* ========================================
   Confirm Dialog (custom replacement for native confirm)
   ======================================== */
.confirm-dialog-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 10000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.confirm-dialog-overlay.active {
  display: flex;
}

.confirm-dialog {
  background: #fff;
  border-radius: 0.3rem;
  border: 1px solid rgba(0, 0, 0, 0.2);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  max-width: 400px;
  width: 100%;
  animation: confirmSlideIn 0.15s ease;
}

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

.confirm-dialog__header {
  padding: 1rem;
  border-bottom: 1px solid #e9ecef;
  display: flex;
  align-items: center;
  gap: 12px;
}

.confirm-dialog__icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.confirm-dialog__icon--warning {
  background: var(--color-warning-1, #fef3c7);
  color: var(--color-warning-2, #d97706);
}

.confirm-dialog__icon--danger {
  background: var(--color-error-1, #fee2e2);
  color: var(--color-error-2, #dc2626);
}

.confirm-dialog__icon--info {
  background: var(--color-fd-green-1, #e8f5e9);
  color: var(--color-fd-green-4, #4a7c59);
}

.confirm-dialog__title {
  font-size: 16px;
  font-weight: 500;
  color: var(--color-fd-blue-4, #1f2937);
  margin: 0;
}

.confirm-dialog__body {
  padding: 1rem;
}

.confirm-dialog__message {
  font-size: 14px;
  color: var(--color-light-1, #6b7280);
  margin: 0;
  line-height: 1.5;
}

.confirm-dialog__footer {
  padding: 1rem;
  border-top: 1px solid #e9ecef;
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}

.confirm-dialog__footer .btn {
  min-width: 100px;
}


/* ========================================
   Testimonials Styles
   ======================================== */

.testimonials.-type-1 .testimonials__content {
  border-radius: 8px;
  background-color: white;
  padding: 30px;
  padding-bottom: 20px;
}

.testimonials.-type-1 .testimonials__title {
  font-size: 18px;
  line-height: 36px;
  font-weight: 400;
  color: #6440FB;
}

.testimonials.-type-1 .testimonials__text {
  margin-top: 14px;
  font-size: 15px;
  line-height: 30px;
  font-weight: 400;
  color: var(--color-fd-blue-4);
}

.testimonials.-type-1 .testimonials-footer {
  display: flex;
  align-items: center;
  margin-top: 26px;
  padding-top: 20px;
  border-top: 1px solid #EDEDED;
}

.testimonials.-type-1 .testimonials-footer__image {
  margin-right: 20px;
}

.testimonials.-type-1 .testimonials-footer__image img {
  border-radius: 100%;
  width: 60px;
  height: 60px;
}

.testimonials.-type-1 .testimonials-footer__title {
  font-size: 15px;
  line-height: 17px;
  font-weight: 500;
}

.testimonials.-type-1 .testimonials-footer__text {
  margin-top: 5px;
  font-size: 13px;
  line-height: 15px;
  font-weight: 400;
  color: var(--color-light-1);
}

.testimonials.-type-2 .testimonials__text {
  font-size: 24px;
  font-weight: 500;
  line-height: 36px;
  margin-top: 30px;
}

.testimonials.-type-2 .testimonials__author {
  margin-top: 60px;
}

.testimonials.-type-3 {
  display: flex;
  align-items: flex-end;
  border-radius: 8px;
  padding: 60px;
  padding-right: 50px;
}

.testimonials.-type-3 .testimonials__image {
  flex-shrink: 0;
}

.testimonials.-type-3 .testimonials__image img {
  border-radius: 100%;
  width: 170px;
  height: auto;
}



/* ========================================
   Event Card Styles
   ======================================== */

.eventCard.-type-1 .eventCard__img img {
  border-radius: 8px;
  width: 100%;
}

.eventCard.-type-1 .eventCard__bg {
  z-index: 5;
  position: relative;
  width: calc(100% - 20px);
  box-shadow: 0px 6px 15px 0px #404F680D;
  border-radius: 8px;
  padding: 20px;
  margin: 0 auto;
  margin-top: -45px;
  transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.eventCard.-type-1 .eventCard__content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.eventCard.-type-1:hover .eventCard__bg {
  box-shadow: 0px 40px 30px 0px #19192E0A;
}

.eventCard.-type-2 {
  display: inline-block;
  border-radius: 8px;
  box-shadow: 0px 25px 70px 0px #01213A12;
  border: 1px solid #EDEDED;
}

.eventCard.-type-2 .eventCard__img img {
  width: 100%;
}

.eventCard.-type-2 .eventCard__content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.eventCard.-type-3 {
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 350px;
  padding: 40px;
  padding-bottom: 28px;
  padding-right: 50px;
  transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.eventCard.-type-3 .eventCard__date {
  display: flex;
  align-items: center;
  transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.eventCard.-type-3 .eventCard__title {
  transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.eventCard.-type-3 .eventCard__button {
  position: absolute;
  bottom: 28px;
  left: 40px;
  transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1) 0.05s;
  transform: translateY(50px);
  opacity: 0;
}

.eventCard.-type-3:hover {
  background-color: var(--color-fd-blue-5);
}

.eventCard.-type-3:hover .eventCard__date span {
  color: white !important;
}

.eventCard.-type-3:hover .eventCard__title {
  color: white !important;
  transform: translateY(-67px);
}

.eventCard.-type-3:hover .eventCard__button {
  transform: translateY(0);
  opacity: 1;
}

.eventCard.-type-4 {
  display: flex;
  align-items: center;
}

.eventCard.-type-4 .eventCard__date {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border-radius: 8px;
  width: 100px;
  height: 100px;
  transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.eventCard.-type-4 .eventCard__date span {
  transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.eventCard.-type-4:hover .eventCard__date {
  background-color: var(--color-fd-blue-3) !important;
}

.eventCard.-type-4:hover .eventCard__date span {
  color: white !important;
}

/* =============================================
   FD-COURSE-CARD - Unified Course Card Component
   Standard component for course cards across the site
   ============================================= */

.fd-course-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--color-fd-gray-4);
  transition: all 0.25s ease;
  height: 100%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.fd-course-card:hover {
  border-color: var(--color-fd-green-3);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

/* Enrolled variant - no hover lift, badge on right */
.fd-course-card--enrolled:hover {
  transform: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.fd-course-card--enrolled .fd-course-card__badge {
  left: auto;
  right: 10px;
  top: 10px;
  padding: 4px 10px;
  border-radius: 4px;
  letter-spacing: 0.3px;
}

/* Expired modifier */
.fd-course-card--expired {
  opacity: 0.8;
}

.fd-course-card--expired:hover {
  border-color: #f59e0b;
}

.fd-course-card--expired .fd-course-card__image img {
  filter: grayscale(30%);
}

/* Link wrapper */
.fd-course-card__link {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  height: 100%;
}

.fd-course-card__link:hover {
  text-decoration: none;
  color: inherit;
}

/* Image container */
.fd-course-card__image {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--color-fd-gray-5);
}

.fd-course-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.fd-course-card:hover .fd-course-card__image img {
  transform: scale(1.05);
}

.fd-course-card--enrolled:hover .fd-course-card__image img {
  transform: none;
}

.fd-course-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 50%, rgba(0,0,0,0.15) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.fd-course-card:hover .fd-course-card__overlay {
  opacity: 1;
}

/* Badges */
.fd-course-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 5px 12px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  z-index: 10;
}

.fd-course-card__image img {
  position: relative;
  z-index: 1;
}

.fd-course-card__badge--discount {
  background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
  color: #fff;
}

.fd-course-card__badge--bestseller {
  background: linear-gradient(135deg, var(--color-fd-gold-1) 0%, #f5c518 100%);
  color: var(--color-fd-blue-4);
}

.fd-course-card__badge--new {
  background: linear-gradient(135deg, var(--color-fd-aqua-3) 0%, var(--color-fd-aqua-2) 100%);
  color: var(--color-fd-blue-4);
}

.fd-course-card__badge--presale {
  background: linear-gradient(135deg, var(--color-fd-aqua-3) 0%, var(--color-fd-aqua-2) 100%);
  color: var(--color-fd-blue-4);
}

.fd-course-card__badge--active {
  background: var(--color-fd-green-3);
  color: #fff;
}

.fd-course-card__badge--expired {
  background: #dc2626;
  color: #fff;
}

/* Content */
.fd-course-card__content {
  display: flex;
  flex-direction: column;
  padding: 16px 18px 18px;
  flex-grow: 1;
  gap: 8px;
}

/* Title */
.fd-course-card__title {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-fd-blue-3);
  margin: 0;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 40px;
  transition: color 0.2s ease;
}

.fd-course-card:hover .fd-course-card__title {
  color: var(--color-fd-green-3);
}

/* Subtitle */
.fd-course-card__subtitle {
  font-size: 13px;
  color: var(--color-fd-gray-1);
  margin: 0;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Info row (rating, lessons, duration) */
.fd-course-card__info {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 13px;
  color: var(--color-fd-gray-1);
  margin-top: 4px;
}

.fd-course-card__rating {
  display: flex;
  align-items: center;
  gap: 4px;
  font-weight: 600;
  color: var(--color-fd-blue-3);
}

.fd-course-card__rating .fa-star {
  color: #FFD700 !important;
  font-size: 12px;
}

.fd-course-card__separator {
  color: var(--color-fd-gray-3);
  font-size: 8px;
}

.fd-course-card__meta {
  color: var(--color-fd-gray-1);
  font-size: 12px;
}

.fd-course-card__meta i {
  margin-right: 4px;
}

/* Footer (author + price) */
.fd-course-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid var(--color-fd-gray-4);
}

/* Author */
.fd-course-card__author {
  display: flex;
  align-items: center;
  gap: 8px;
}

.fd-course-card__author img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
}

.fd-course-card__author span {
  font-size: 13px;
  color: var(--color-fd-gray-1);
}

/* Price */
.fd-course-card__price {
  display: flex;
  align-items: center;
  gap: 8px;
}

.fd-course-card__price-old {
  font-size: 14px;
  color: var(--color-fd-gray-2);
  text-decoration: line-through;
  font-weight: 500;
}

.fd-course-card__price-current {
  font-size: 18px;
  font-weight: 800;
  color: var(--color-fd-blue-3);
}

.fd-course-card__price-old + .fd-course-card__price-current {
  color: var(--color-fd-green-3);
}

/* Meta row for enrolled cards */
.fd-course-card__meta-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: #f8fafc;
  border-radius: 6px;
  margin-bottom: 14px;
}

.fd-course-card__meta-row i {
  width: 16px;
  height: 16px;
  opacity: 0.6;
}

.fd-course-card__meta-row span {
  font-size: 12px;
  color: #64748b;
}

.fd-course-card__meta-row span strong {
  color: var(--color-fd-blue-4);
}

.fd-course-card__meta-row--warning {
  background: #fef3c7;
  border: 1px solid #fcd34d;
}

.fd-course-card__meta-row--warning span {
  color: #92400e;
}

.fd-course-card__meta-row--warning a {
  color: var(--color-fd-blue-3);
  text-decoration: underline;
  font-weight: 600;
}

.fd-course-card__meta-row--info {
  background: #e0f2fe;
  border: 1px solid #7dd3fc;
}

.fd-course-card__meta-row--info span {
  color: #0c4a6e;
}

.fd-course-card__meta-row--info i {
  color: #0284c7;
  opacity: 1;
}

/* Actions for enrolled cards */
.fd-course-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid #f1f5f9;
}

/* Tablet adjustments */
@media (max-width: 767px) {
  .fd-course-card__content {
    padding: 16px;
  }

  .fd-course-card__title {
    font-size: 15px;
    min-height: auto;
    -webkit-line-clamp: 2;
  }
}

/* Mobile adjustments */
@media (max-width: 575px) {
  .fd-course-card__image {
    aspect-ratio: 3/1;
  }

  .fd-course-card__content {
    padding: 12px;
  }

  .fd-course-card__title {
    font-size: 14px;
    min-height: auto;
    margin-bottom: 8px;
  }

  /* Hide subtitle and author on mobile */
  .fd-course-card__subtitle,
  .fd-course-card__author {
    display: none;
  }

  .fd-course-card__info {
    gap: 6px;
    font-size: 12px;
  }

  .fd-course-card__rating,
  .fd-course-card__meta {
    font-size: 12px;
  }

  .fd-course-card__separator {
    font-size: 6px;
  }

  .fd-course-card__footer {
    margin-top: 10px;
    padding-top: 10px;
  }

  .fd-course-card__price {
    width: 100%;
    justify-content: flex-start;
  }

  .fd-course-card__price-old {
    font-size: 13px;
  }

  .fd-course-card__price-current {
    font-size: 16px;
  }

  .fd-course-card__actions {
    flex-direction: column;
  }

  .fd-course-card__actions .btn,
  .fd-course-card__actions .course-btn {
    width: 100%;
    justify-content: center;
  }
}

/* Skeleton Loading */
.fd-course-card--skeleton {
  min-height: 280px;
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: fd-skeleton-loading 1.5s infinite;
  border-radius: 12px;
}

@keyframes fd-skeleton-loading {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

@media (max-width: 575px) {
  .fd-course-card--skeleton {
    min-height: 80px;
  }
}


/* =============================================
   COURSE BUTTONS - Global action buttons for course cards
   ============================================= */

.course-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none !important;
  transition: all 0.2s ease;
  border: none;
  cursor: pointer;
}

.course-btn--primary {
  background: var(--color-fd-green-3);
  color: #fff !important;
  flex-grow: 1;
}

.course-btn--primary:hover {
  background: #6b8f00;
  color: #fff !important;
}

.course-btn--secondary {
  background: var(--color-fd-blue-3);
  color: #fff !important;
}

.course-btn--secondary:hover {
  background: #1a3a5c;
  color: #fff !important;
}

.course-btn--gold {
  background: #f59e0b;
  color: #fff !important;
}

.course-btn--gold:hover {
  background: #d97706;
  color: #fff !important;
}

.course-btn i {
  font-size: 12px;
}

@media (max-width: 575px) {
  .course-btn {
    padding: 8px 12px;
    font-size: 12px;
    gap: 5px;
  }

  .course-btn i {
    font-size: 11px;
  }
}


/* =============================================
   FD-BLOG-CARD - Unified Blog Card Component
   Standard component for blog cards across the site
   ============================================= */

.fd-blog-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08), 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: all 0.25s ease;
  height: 100%;
}

.fd-blog-card:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);
}

/* Link wrapper */
.fd-blog-card__link {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  height: 100%;
}

.fd-blog-card__link:hover {
  text-decoration: none;
  color: inherit;
}

/* Image container */
.fd-blog-card__image {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--color-fd-gray-5);
}

.fd-blog-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.fd-blog-card:hover .fd-blog-card__image img {
  transform: scale(1.05);
}

/* Optional overlay (hidden by default for cleaner look) */
.fd-blog-card__overlay {
  display: none;
}

/* Content */
.fd-blog-card__content {
  display: flex;
  flex-direction: column;
  padding: 20px;
  flex-grow: 1;
}

/* Category */
.fd-blog-card__category {
  display: inline-block;
  color: var(--color-fd-green-4);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

/* Title */
.fd-blog-card__title {
  font-size: 17px;
  font-weight: 600;
  color: var(--color-fd-blue-3);
  line-height: 1.4;
  margin: 0 0 12px 0;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.2s ease;
}

.fd-blog-card:hover .fd-blog-card__title {
  color: var(--color-fd-green-4);
}

/* Meta (date + reading time) */
.fd-blog-card__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  color: var(--color-fd-gray-1);
  font-size: 13px;
  padding-top: 12px;
  border-top: 1px solid var(--color-fd-gray-4);
  margin-top: auto;
}

.fd-blog-card__date,
.fd-blog-card__reading-time {
  display: flex;
  align-items: center;
  gap: 6px;
}

.fd-blog-card__meta i {
  color: inherit;
  opacity: 0.7;
}

/* Responsive */
@media (max-width: 767px) {
  .fd-blog-card__content {
    padding: 16px;
  }

  .fd-blog-card__title {
    font-size: 16px;
  }

  .fd-blog-card__meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
}

/* ========================================
   Main Header - User Badge
   ======================================== */
.header__user--main {
    position: relative;
    margin-left: 8px;
}

.header__user--main .header__user-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 12px 6px 6px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: 0.2s ease;
}

.header__user--main .header__user-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

.header__user--main .header__user-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.header__user--main .header__user-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.2;
}

.header__user--main .header__user-name {
    font-size: 13px;
    font-weight: 600;
    color: white;
    max-width: 120px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.header__user--main .header__user-role {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.7);
}

.header__user--main .header__user-chevron {
    color: rgba(255, 255, 255, 0.7);
    font-size: 10px;
    transition: 0.2s ease;
}

@media (max-width: 767px) {
    .header__user--main .header__user-info {
        display: none;
    }

    .header__user--main .header__user-btn {
        padding: 4px;
        border-radius: 50%;
    }

    .header__user--main .header__user-chevron {
        display: none;
    }
}
