/* --- assets\css\design-system.css --- */
/* =========================================================
   EPA DESIGN SYSTEM — Core Variables & Typography
   Expansion Path Academy · epaedu.in
   ========================================================= */

/* ── Color Palette ────────────────────────────────────────── */
:root {
  /* Primary Brand */
  --epa-primary:        #f26d21;
  --epa-primary-dark:   #cc5514;
  --epa-primary-light:  rgba(242, 109, 33, 0.1);
  --epa-primary-glow:   rgba(242, 109, 33, 0.35);

  /* Accent (secondary highlights) */
  --epa-accent:         #ff8a45;
  --epa-accent-light:   #ffedd5;
  --epa-green:          #10b981;
  --epa-green-light:    #d1fae5;
  --epa-red:            #ef4444;
  --epa-red-light:      #fee2e2;
  --epa-blue:           #3b82f6;
  --epa-blue-light:     #dbeafe;
  --epa-purple:         #8b5cf6;
  --epa-purple-light:   #ede9fe;
  --epa-yellow:         #f59e0b;
  --epa-yellow-light:   #fef3c7;

  /* Neutrals */
  --epa-white:          #ffffff;
  --epa-bg:             #ffffff;
  --epa-bg-light:       #f9fafb;
  --epa-bg-alt:         #f1f5f9;
  --epa-bg-warm:        #fff9f5;
  --epa-border:         #e2e8f0;
  --epa-border-dark:    #cbd5e1;

  /* Text */
  --epa-text:           #0f172a;
  --epa-text-secondary: #334155;
  --epa-text-muted:     #64748b;
  --epa-text-light:     #94a3b8;

  /* Dark theme (footer etc.) */
  --epa-dark:           #020617;
  --epa-dark-card:      #0f172a;
  --epa-dark-border:    #1e293b;
  --epa-dark-text:      #e2e8f0;

  /* ── Radius ──────────────────────────────────────────────── */
  --radius-xs:   6px;
  --radius-sm:   10px;
  --radius-md:   14px;
  --radius-lg:   20px;
  --radius-xl:   28px;
  --radius-2xl:  36px;
  --radius-3xl:  48px;
  --radius-pill: 9999px;

  /* ── Shadow System (Premium & Soft) ──────────────────────── */
  --shadow-xs:      0 2px 4px rgba(0,0,0,0.02);
  --shadow-sm:      0 4px 12px rgba(0,0,0,0.04);
  --shadow-md:      0 8px 24px -4px rgba(0,0,0,0.06), 0 4px 8px -4px rgba(0,0,0,0.04);
  --shadow-lg:      0 20px 40px -8px rgba(0,0,0,0.08), 0 10px 16px -8px rgba(0,0,0,0.04);
  --shadow-xl:      0 25px 50px -12px rgba(0,0,0,0.12), 0 15px 20px -10px rgba(0,0,0,0.06);
  --shadow-2xl:     0 35px 60px -15px rgba(0,0,0,0.18);
  --shadow-primary: 0 12px 30px -8px var(--epa-primary-glow);
  --shadow-inner:   inset 0 2px 4px rgba(0,0,0,0.04);

  /* ── Transitions & Micro-Animations ──────────────────────── */
  --ease-out:    cubic-bezier(0.0, 0, 0.2, 1);
  --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-bounce: cubic-bezier(0.175, 0.885, 0.32, 1.25);
  --t-fast:      0.15s var(--ease-out);
  --t-normal:    0.3s var(--ease-out);
  --t-slow:      0.5s var(--ease-out);
  --t-bounce:    0.4s var(--ease-bounce);

  /* ── Spacing Scale (8px base) ────────────────────────────── */
  --sp-1:  4px;
  --sp-2:  8px;
  --sp-3:  12px;
  --sp-4:  16px;
  --sp-5:  20px;
  --sp-6:  24px;
  --sp-8:  32px;
  --sp-10: 40px;
  --sp-12: 48px;
  --sp-16: 64px;
  --sp-20: 80px;
  --sp-24: 96px;
  --sp-30: 120px;

  /* ── Layout ──────────────────────────────────────────────── */
  --container-max: 1280px;
  --header-height: 84px;
}

/* ── Reset & Base ──────────────────────────────────────────── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: clamp(16px, 1.1vw, 18px); /* Responsive base size */
  line-height: 1.7;
  color: var(--epa-text);
  background-color: var(--epa-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--t-fast);
}

ul, ol { list-style: none; }

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

/* ── Container ─────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--sp-6);
}

@media (max-width: 768px) {
  .container {
    padding: 0 var(--sp-4);
  }
}

/* ── Typography Scale ──────────────────────────────────────── */
.display-1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1.5px;
}

.display-2 {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1px;
}

.display-3 {
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -1px;
}

.display-4 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

h1, .h1 {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

h2, .h2 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.5px;
}

h3, .h3 {
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  font-weight: 700;
  line-height: 1.35;
}

h4, .h4 {
  font-size: clamp(1.1rem, 1.5vw, 1.25rem);
  font-weight: 700;
  line-height: 1.4;
}

.body-lg {
  font-size: clamp(1.125rem, 1.5vw, 1.25rem);
  line-height: 1.75;
  color: var(--epa-text-muted);
}

.body-md {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--epa-text-muted);
}

.body-sm {
  font-size: clamp(0.875rem, 1vw, 0.95rem);
  line-height: 1.6;
  color: var(--epa-text-muted);
}

.caption {
  font-size: 0.8rem;
  line-height: 1.5;
  color: var(--epa-text-light);
}

/* ── Gradient Text ─────────────────────────────────────────── */
.text-gradient {
  background: linear-gradient(135deg, var(--epa-primary) 0%, var(--epa-accent) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

/* ── Section Spacing ───────────────────────────────────────── */
.section {
  padding: var(--sp-24) 0;
}

.section--sm {
  padding: var(--sp-12) 0;
}

.section--lg {
  padding: var(--sp-30) 0;
}

/* ── Section Header ────────────────────────────────────────── */
.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto var(--sp-16);
}

.section-header .overline {
  display: inline-block;
  color: var(--epa-primary);
  background: var(--epa-primary-light);
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  font-weight: 800;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: var(--sp-4);
}

.section-header h2 {
  margin-bottom: var(--sp-5);
}


.section-header p {
  color: var(--epa-text-muted);
  font-size: 1.15rem;
  line-height: 1.7;
}


/* --- assets\css\components.css --- */
/* =========================================================
   EPA COMPONENTS — Reusable UI Building Blocks
   ========================================================= */

/* ══════════════════════════════════════════════════════════
   1. HEADER
   ══════════════════════════════════════════════════════════ */
.epa-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  height: var(--header-height);
  transition: all var(--t-normal);
}

.epa-header.scrolled {
  box-shadow: var(--shadow-md);
  background: rgba(255, 255, 255, 0.98);
}

.epa-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.epa-header__logo img {
  height: 40px;
  width: auto;
}

.epa-header__nav {
  display: flex;
  align-items: center;
  gap: var(--sp-8);
}

.epa-header__nav a {
  font-size: 15px;
  font-weight: 600;
  color: var(--epa-text-secondary);
  transition: color var(--t-fast);
  position: relative;
  padding: var(--sp-2) 0;
}

.epa-header__nav a:hover,
.epa-header__nav a.active {
  color: var(--epa-primary);
}

.epa-header__nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--epa-primary);
  transition: width var(--t-normal);
}

.epa-header__nav a:hover::after,
.epa-header__nav a.active::after {
  width: 100%;
}

/* Dropdown */
.epa-dropdown {
  position: relative;
  display: inline-block;
}

.epa-dropdown__toggle {
  cursor: pointer;
}

.epa-dropdown__menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--epa-white);
  min-width: 200px;
  box-shadow: var(--shadow-xl);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--t-bounce);
  z-index: 100;
  padding: var(--sp-3) 0;
  border: 1px solid var(--epa-border);
}

.epa-dropdown:hover .epa-dropdown__menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.epa-dropdown__menu a {
  padding: var(--sp-2) var(--sp-5) !important;
  color: var(--epa-text);
  font-weight: 500;
  display: block;
  font-size: 14px;
}

.epa-dropdown__menu a::after {
  display: none !important;
}

.epa-dropdown__menu a:hover {
  background: var(--epa-bg-light);
  color: var(--epa-primary);
}

.epa-header__actions {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}

/* Mobile Toggle */
.epa-header__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  cursor: pointer;
  padding: 4px;
}

.epa-header__toggle span {
  display: block;
  height: 2.5px;
  background: var(--epa-text);
  border-radius: 2px;
  transition: all var(--t-normal);
}

.epa-header__toggle.active span:nth-child(1) {
  transform: rotate(45deg) translateY(7.5px);
}

.epa-header__toggle.active span:nth-child(2) {
  opacity: 0;
}

.epa-header__toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translateY(-7.5px);
}

/* ══════════════════════════════════════════════════════════
   2. BUTTONS
   ══════════════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  font-weight: 700;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  transition: all var(--t-bounce);
  white-space: nowrap;
  border: 1px solid transparent;
}

.btn--primary {
  background: linear-gradient(135deg, var(--epa-primary-dark) 0%, var(--epa-primary) 50%, var(--epa-accent) 100%);
  background-size: 200% auto;
  color: var(--epa-white);
  box-shadow: var(--shadow-primary), inset 0 1px 1px rgba(255, 255, 255, 0.3);
  transition: all var(--t-bounce), background-position 0.5s ease;
}

.btn--primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 20px 30px -5px var(--epa-primary-glow), inset 0 1px 1px rgba(255, 255, 255, 0.5);
  background-position: right center;
}

.btn--outline {
  border-color: var(--epa-border-dark);
  color: var(--epa-text);
  background: rgba(255,255,255,0.02);
}

.btn--outline:hover {
  background: var(--epa-text);
  border-color: var(--epa-text);
  color: var(--epa-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--white {
  background: var(--epa-white);
  color: var(--epa-text);
  border-color: var(--epa-border);
}

.btn--white:hover {
  border-color: var(--epa-primary);
  color: var(--epa-primary);
}

.btn--ghost {
  color: var(--epa-primary);
  padding: var(--sp-2) 0;
  background: none;
  border-radius: 0;
}

.btn--ghost:hover {
  opacity: 0.8;
}

.btn--sm {
  padding: 10px 20px;
  font-size: 14px;
}

.btn--lg {
  padding: 18px 36px;
  font-size: 16px;
}

.btn--full {
  width: 100%;
}

.btn--wa {
  background: #25d366;
  color: var(--epa-white);
  border: none;
}

.btn--wa:hover {
  background: #1ea952;
  transform: translateY(-2px);
}

/* ══════════════════════════════════════════════════════════
   3. BADGE / PILL
   ══════════════════════════════════════════════════════════ */
.badge {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.badge--primary {
  background: var(--epa-primary-light);
  color: var(--epa-primary);
}

.badge--dark {
  background: var(--epa-text);
  color: var(--epa-white);
}

.badge--green {
  background: var(--epa-green-light);
  color: var(--epa-green);
}

/* ══════════════════════════════════════════════════════════
   4. HERO
   ══════════════════════════════════════════════════════════ */
.hero {
  padding: calc(var(--header-height) + var(--sp-16)) 0 var(--sp-20);
  position: relative;
  overflow: hidden;
}

.hero--gradient {
  background: radial-gradient(circle at 10% 20%, rgba(242, 109, 33, 0.08) 0%, transparent 40%),
              radial-gradient(circle at 90% 80%, rgba(59, 130, 246, 0.08) 0%, transparent 40%),
              linear-gradient(135deg, var(--epa-bg) 0%, var(--epa-bg-alt) 100%);
}

.hero__inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--sp-12);
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero__title {
  font-size: clamp(2.25rem, 4.5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: var(--sp-6);
}

.hero__desc {
  font-size: 1.125rem;
  color: var(--epa-text-muted);
  line-height: 1.7;
  max-width: 560px;
  margin-bottom: var(--sp-8);
}

.hero__features {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  margin-bottom: var(--sp-8);
}

.hero__features li {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  font-weight: 600;
  font-size: 15px;
}

.hero__features li i {
  color: var(--epa-primary);
  font-size: 18px;
}

.hero__actions {
  display: flex;
  gap: var(--sp-4);
  flex-wrap: wrap;
}

.hero__trust {
  display: flex;
  gap: var(--sp-8);
  margin-top: var(--sp-10);
  padding-top: var(--sp-8);
  border-top: 1px solid var(--epa-border);
}

.hero__trust-item {
  text-align: center;
}

.hero__trust-val {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--epa-primary);
  display: block;
}

.hero__trust-label {
  font-size: 13px;
  color: var(--epa-text-muted);
  font-weight: 500;
}

/* Hero Image */
.hero__image {
  position: relative;
}

.hero__image-card {
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  padding: var(--sp-5);
  transition: transform var(--t-normal);
}

.hero__image-card:hover {
  transform: translateY(-5px);
}

.hero__image-card img {
  border-radius: var(--radius-lg);
  width: 100%;
  object-fit: cover;
}

.hero__image-label {
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--epa-white);
  padding: 10px 24px;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-lg);
  font-weight: 800;
  font-size: 14px;
  white-space: nowrap;
  color: var(--epa-primary);
  display: flex;
  align-items: center;
  gap: var(--sp-2);
}

/* ══════════════════════════════════════════════════════════
   5. STAT BAR
   ══════════════════════════════════════════════════════════ */
.stat-bar {
  background: var(--epa-text);
  color: var(--epa-white);
  padding: var(--sp-10) 0;
}

.stat-bar__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-6);
}

.stat-bar__item {
  text-align: center;
  position: relative;
}

.stat-bar__item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: rgba(255,255,255,0.1);
}

.stat-bar__value {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--epa-primary);
  display: block;
  line-height: 1.2;
}

.stat-bar__label {
  font-size: 0.9rem;
  opacity: 0.8;
}

/* ══════════════════════════════════════════════════════════
   6. FEATURE / INFO CARDS
   ══════════════════════════════════════════════════════════ */
.card {
  background: var(--epa-white);
  border: 1px solid rgba(0,0,0,0.04);
  border-radius: var(--radius-2xl);
  padding: var(--sp-10);
  transition: all var(--t-bounce);
  box-shadow: var(--shadow-sm);
}

.card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}

.card__icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-lg);
  background: var(--epa-primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--sp-5);
  font-size: 24px;
  color: var(--epa-primary);
  transition: all var(--t-normal);
}

.card:hover .card__icon {
  background: var(--epa-primary);
  color: var(--epa-white);
}

.card__title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: var(--sp-3);
}

.card__text {
  color: var(--epa-text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ══════════════════════════════════════════════════════════
   7. PROGRAM CARDS
   ══════════════════════════════════════════════════════════ */
.program-card {
  background: var(--epa-white);
  border: 1px solid rgba(0,0,0,0.04);
  border-radius: var(--radius-3xl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all var(--t-bounce);
  box-shadow: var(--shadow-md);
}

.program-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-2xl);
}

.program-card--popular {
  border: 2px solid var(--epa-primary-light);
  box-shadow: var(--shadow-lg), 0 0 0 8px rgba(242, 109, 33, 0.05);
}

.program-card__banner {
  height: 140px;
  background: linear-gradient(135deg, var(--epa-bg-alt) 0%, var(--epa-border) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.program-card--popular .program-card__banner {
  background: linear-gradient(135deg, var(--epa-primary-dark) 0%, var(--epa-primary) 50%, var(--epa-accent) 100%);
}

.program-card__badge {
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: rgba(255,255,255,0.95);
  color: var(--epa-text);
  box-shadow: var(--shadow-md);
}

.program-card--popular .program-card__badge {
  background: rgba(255,255,255,0.25);
  backdrop-filter: blur(5px);
  color: var(--epa-white);
}

.program-card__body {
  padding: var(--sp-8);
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.program-card__title {
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: var(--sp-5);
  line-height: 1.3;
}

.program-card__features {
  flex-grow: 1;
  margin-bottom: var(--sp-8);
}

.program-card__features li {
  font-size: 14.5px;
  color: var(--epa-text-secondary);
  margin-bottom: var(--sp-3);
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
}

.program-card__features li i {
  color: var(--epa-green);
  font-size: 12px;
  margin-top: 5px;
  flex-shrink: 0;
}

.program-card__cta {
  display: block;
  width: 100%;
  padding: 16px;
  text-align: center;
  background: var(--epa-bg-light);
  color: var(--epa-text);
  font-weight: 800;
  border-radius: var(--radius-xl);
  transition: all var(--t-bounce);
}

.program-card__cta:hover {
  background: var(--epa-primary);
  color: var(--epa-white);
  box-shadow: var(--shadow-primary);
  transform: translateY(-2px);
}

.program-card--popular .program-card__cta {
  background: var(--epa-primary);
  color: var(--epa-white);
  box-shadow: var(--shadow-primary);
}

.program-card--popular .program-card__cta:hover {
  background: var(--epa-primary-dark);
  color: var(--epa-white);
}

/* ══════════════════════════════════════════════════════════
   8. COLLEGE CARDS
   ══════════════════════════════════════════════════════════ */
.college-card {
  background: var(--epa-white);
  border: 1px solid var(--epa-border);
  border-radius: var(--radius-xl);
  padding: var(--sp-6);
  text-align: center;
  transition: all var(--t-normal);
}

.college-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--epa-primary);
}

.college-card__logo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--epa-bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--sp-4);
  font-size: 28px;
  color: var(--epa-primary);
}

.college-card__name {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: var(--sp-2);
}

.college-card__location {
  font-size: 0.85rem;
  color: var(--epa-text-muted);
}

/* ══════════════════════════════════════════════════════════
   9. TESTIMONIAL
   ══════════════════════════════════════════════════════════ */
.testimonial {
  background: var(--epa-white);
  border: 1px solid rgba(0,0,0,0.04);
  border-radius: var(--radius-2xl);
  padding: var(--sp-8);
  position: relative;
  transition: all var(--t-bounce);
  box-shadow: var(--shadow-sm);
}

.testimonial:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.testimonial__quote {
  position: absolute;
  top: var(--sp-6);
  right: var(--sp-6);
  font-size: 3rem;
  color: var(--epa-primary-light);
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial__stars {
  display: flex;
  gap: 3px;
  margin-bottom: var(--sp-4);
  color: #fbbf24;
  font-size: 14px;
}

.testimonial__text {
  font-size: 0.95rem;
  color: var(--epa-text-muted);
  line-height: 1.7;
  margin-bottom: var(--sp-6);
  font-style: italic;
  position: relative;
  z-index: 1;
}

.testimonial__author {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}

.testimonial__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial__name {
  font-weight: 700;
  font-size: 0.95rem;
}

.testimonial__college {
  font-size: 0.8rem;
  color: var(--epa-text-muted);
}

/* ══════════════════════════════════════════════════════════
   10. FAQ ACCORDION
   ══════════════════════════════════════════════════════════ */
.faq-item {
  background: var(--epa-white);
  border: 1px solid rgba(0,0,0,0.05);
  border-radius: var(--radius-xl);
  margin-bottom: var(--sp-4);
  overflow: hidden;
  transition: all var(--t-normal);
  box-shadow: var(--shadow-xs);
}

.faq-item:hover {
  border-color: var(--epa-primary-light);
  box-shadow: var(--shadow-sm);
}

.faq-item.active {
  border-color: var(--epa-primary);
  box-shadow: var(--shadow-md);
}

.faq-item__question {
  padding: var(--sp-5) var(--sp-6);
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-weight: 700;
  font-size: 1rem;
  user-select: none;
  gap: var(--sp-4);
}

.faq-item__icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--epa-bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: var(--epa-text-muted);
  flex-shrink: 0;
  transition: all var(--t-fast);
}

.faq-item.active .faq-item__icon {
  background: var(--epa-primary);
  color: var(--epa-white);
  transform: rotate(45deg);
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out), padding 0.3s;
}

.faq-item.active .faq-item__answer {
  max-height: 500px;
}

.faq-item__answer-inner {
  padding: 0 var(--sp-6) var(--sp-5);
  color: var(--epa-text-muted);
  line-height: 1.7;
  font-size: 0.95rem;
  border-top: 1px solid var(--epa-border);
  padding-top: var(--sp-5);
}

/* ══════════════════════════════════════════════════════════
   11. CTA BLOCK
   ══════════════════════════════════════════════════════════ */
.cta-block {
  background: linear-gradient(135deg, var(--epa-text) 0%, #1f2937 100%);
  border-radius: var(--radius-2xl);
  padding: var(--sp-16) var(--sp-8);
  text-align: center;
  color: var(--epa-white);
  position: relative;
  overflow: hidden;
}

.cta-block::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(242,109,33,0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.cta-block h2 {
  margin-bottom: var(--sp-4);
  position: relative;
}

.cta-block p {
  color: rgba(255,255,255,0.7);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto var(--sp-8);
  position: relative;
}

/* ══════════════════════════════════════════════════════════
   12. BANNER / IMAGE SLIDER
   ══════════════════════════════════════════════════════════ */
.slider {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.slider__track {
  display: flex;
  transition: transform 0.5s var(--ease-in-out);
}

.slider__slide {
  min-width: 100%;
  position: relative;
}

.slider__slide img {
  width: 100%;
  display: block;
  aspect-ratio: 21 / 9;
  object-fit: cover;
}

.slider__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--epa-text);
  font-size: 16px;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: all var(--t-fast);
  z-index: 2;
  border: none;
}

.slider__btn:hover {
  background: var(--epa-primary);
  color: var(--epa-white);
}

.slider__btn--prev { left: var(--sp-4); }
.slider__btn--next { right: var(--sp-4); }

.slider__dots {
  display: flex;
  justify-content: center;
  gap: var(--sp-2);
  padding: var(--sp-4) 0;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.slider__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: all var(--t-fast);
  border: none;
}

.slider__dot.active {
  background: var(--epa-primary);
  width: 24px;
  border-radius: var(--radius-pill);
}

/* ══════════════════════════════════════════════════════════
   13. COMPARISON TABLE
   ══════════════════════════════════════════════════════════ */
.compare-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
  border-radius: var(--radius-xl);
  border: 1px solid var(--epa-border);
  background: var(--epa-white);
}

.compare-table th,
.compare-table td {
  padding: var(--sp-5) var(--sp-6);
  text-align: left;
  border-bottom: 1px solid var(--epa-border);
}

.compare-table thead th {
  background: var(--epa-bg-light);
  font-weight: 800;
  font-size: 0.95rem;
}

.compare-table thead th.highlight {
  background: var(--epa-primary);
  color: var(--epa-white);
}

.compare-table tbody td.highlight {
  background: #fff3ea;
  border-bottom-color: #fed7aa;
}

/* ══════════════════════════════════════════════════════════
   14. FORM INPUTS
   ══════════════════════════════════════════════════════════ */
.input {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--epa-border);
  border-radius: var(--radius-md);
  font-size: 15px;
  font-family: inherit;
  background: var(--epa-bg-light);
  transition: all var(--t-fast);
  color: var(--epa-text);
}

.input:focus {
  outline: none;
  border-color: var(--epa-primary);
  background: var(--epa-white);
  box-shadow: 0 0 0 3px var(--epa-primary-light);
}

.input::placeholder {
  color: var(--epa-text-light);
}

select.input {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236b7280' 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");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 16px;
  cursor: pointer;
}

/* ══════════════════════════════════════════════════════════
   15. CONTACT SECTION
   ══════════════════════════════════════════════════════════ */
.contact-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-10);
  align-items: start;
}

.contact-block__info-item {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  margin-bottom: var(--sp-6);
}

.contact-block__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--epa-primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--epa-primary);
  flex-shrink: 0;
}

.contact-block__form {
  background: var(--epa-white);
  border: 1px solid var(--epa-border);
  border-radius: var(--radius-xl);
  padding: var(--sp-8);
  box-shadow: var(--shadow-lg);
}

.contact-block__form .input {
  margin-bottom: var(--sp-4);
}

/* ══════════════════════════════════════════════════════════
   16. FOOTER
   ══════════════════════════════════════════════════════════ */
.epa-footer {
  background: linear-gradient(180deg, var(--epa-dark) 0%, #000000 100%);
  padding: var(--sp-16) 0 var(--sp-8);
  color: var(--epa-dark-text);
  border-top: 1px solid rgba(255,255,255,0.05);
}

.epa-footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-6);
  text-align: center;
}

.epa-footer__logo img {
  height: 40px;
  filter: brightness(0) invert(1);
}

.epa-footer__tagline {
  font-size: 14px;
  max-width: 400px;
  color: var(--epa-dark-text);
  margin-top: var(--sp-3);
}

.epa-footer__socials {
  display: flex;
  gap: var(--sp-3);
}

.epa-footer__social-link {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  color: var(--epa-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: all var(--t-bounce);
  border: 1px solid rgba(255,255,255,0.1);
}

.epa-footer__social-link:hover {
  background: var(--epa-primary);
  border-color: var(--epa-primary);
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.5);
}

.epa-footer__bottom {
  width: 100%;
  border-top: 1px solid var(--epa-dark-border);
  margin-top: var(--sp-6);
  padding-top: var(--sp-5);
  font-size: 13px;
  text-align: center;
  color: var(--epa-text-light);
}

/* ══════════════════════════════════════════════════════════
   17. WHATSAPP FLOATING BUTTON
   ══════════════════════════════════════════════════════════ */
.wa-float {
  position: fixed;
  bottom: var(--sp-6);
  right: var(--sp-6);
  z-index: 999;
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  background: #25d366;
  color: var(--epa-white);
  padding: 14px 24px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 15px;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.35);
  transition: all var(--t-normal);
}

.wa-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.45);
}

.wa-float i {
  font-size: 20px;
}

/* ══════════════════════════════════════════════════════════
   18. SCHEDULE TABLE
   ══════════════════════════════════════════════════════════ */
.schedule-table {
  background: var(--epa-white);
  border: 1px solid var(--epa-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.schedule-table__row {
  display: flex;
  border-bottom: 1px solid var(--epa-border);
}

.schedule-table__row:last-child {
  border-bottom: none;
}

.schedule-table__time {
  background: var(--epa-bg-light);
  padding: var(--sp-5);
  width: 30%;
  font-weight: 700;
  color: var(--epa-text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid var(--epa-border);
  font-size: 0.95rem;
}

.schedule-table__content {
  padding: var(--sp-5);
  width: 70%;
}

.schedule-table__content strong {
  display: block;
  margin-bottom: 2px;
}

.schedule-table__content small {
  color: var(--epa-text-muted);
}

/* ══════════════════════════════════════════════════════════
   19. EXAM GUIDE CONTENT BLOCK
   ══════════════════════════════════════════════════════════ */
.content-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-10);
  align-items: start;
}

.content-block--reversed {
  direction: rtl;
}

.content-block--reversed > * {
  direction: ltr;
}

.content-block__sidebar {
  background: var(--epa-white);
  border: 1px solid var(--epa-border);
  border-radius: var(--radius-xl);
  padding: var(--sp-8);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: calc(var(--header-height) + var(--sp-5));
}

/* ══════════════════════════════════════════════════════════
   20. FILTER BAR
   ══════════════════════════════════════════════════════════ */
.filter-bar {
  display: flex;
  justify-content: center;
  gap: var(--sp-4);
  flex-wrap: wrap;
  margin-bottom: var(--sp-10);
}

.filter-bar .input {
  width: auto;
  min-width: 180px;
}


/* --- assets\css\utilities.css --- */
/* =========================================================
   EPA UTILITIES — Layout Helpers & Quick Styles
   ========================================================= */

/* ── Flexbox ───────────────────────────────────────────────── */
.flex          { display: flex; }
.flex-col      { display: flex; flex-direction: column; }
.flex-wrap     { flex-wrap: wrap; }
.items-center  { align-items: center; }
.items-start   { align-items: flex-start; }
.items-end     { align-items: flex-end; }
.justify-center   { justify-content: center; }
.justify-between  { justify-content: space-between; }
.justify-end      { justify-content: flex-end; }
.gap-1  { gap: var(--sp-1); }
.gap-2  { gap: var(--sp-2); }
.gap-3  { gap: var(--sp-3); }
.gap-4  { gap: var(--sp-4); }
.gap-5  { gap: var(--sp-5); }
.gap-6  { gap: var(--sp-6); }
.gap-8  { gap: var(--sp-8); }
.gap-10 { gap: var(--sp-10); }

/* ── Grid ──────────────────────────────────────────────────── */
.grid       { display: grid; }
.grid-2     { grid-template-columns: repeat(2, 1fr); }
.grid-3     { grid-template-columns: repeat(3, 1fr); }
.grid-4     { grid-template-columns: repeat(4, 1fr); }
.grid-auto  { grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); }

/* ── Text ──────────────────────────────────────────────────── */
.text-center { text-align: center; }
.text-left   { text-align: left; }
.text-right  { text-align: right; }
.text-primary { color: var(--epa-primary); }
.text-muted   { color: var(--epa-text-muted); }
.text-white   { color: var(--epa-white); }
.font-bold    { font-weight: 700; }
.font-extrabold { font-weight: 800; }

/* ── Backgrounds ───────────────────────────────────────────── */
.bg-white { background-color: var(--epa-white); }
.bg-light { background-color: var(--epa-bg-light); }
.bg-alt   { background-color: var(--epa-bg-alt); }
.bg-warm  { background-color: var(--epa-bg-warm); }
.bg-dark  { background-color: var(--epa-dark); color: var(--epa-dark-text); }

/* ── Spacing ───────────────────────────────────────────────── */
.mt-0  { margin-top: 0; }
.mt-2  { margin-top: var(--sp-2); }
.mt-4  { margin-top: var(--sp-4); }
.mt-6  { margin-top: var(--sp-6); }
.mt-8  { margin-top: var(--sp-8); }
.mt-10 { margin-top: var(--sp-10); }
.mt-12 { margin-top: var(--sp-12); }
.mb-0  { margin-bottom: 0; }
.mb-2  { margin-bottom: var(--sp-2); }
.mb-4  { margin-bottom: var(--sp-4); }
.mb-6  { margin-bottom: var(--sp-6); }
.mb-8  { margin-bottom: var(--sp-8); }
.mb-10 { margin-bottom: var(--sp-10); }
.mb-12 { margin-bottom: var(--sp-12); }
.mx-auto { margin-left: auto; margin-right: auto; }
.pt-0  { padding-top: 0; }
.pt-4  { padding-top: var(--sp-4); }
.pt-6  { padding-top: var(--sp-6); }
.pt-8  { padding-top: var(--sp-8); }
.pb-0  { padding-bottom: 0; }
.pb-4  { padding-bottom: var(--sp-4); }
.pb-6  { padding-bottom: var(--sp-6); }

/* ── Width & Max-Width ─────────────────────────────────────── */
.w-full  { width: 100%; }
.max-w-sm   { max-width: 480px; }
.max-w-md   { max-width: 640px; }
.max-w-lg   { max-width: 800px; }
.max-w-xl   { max-width: 960px; }

/* ── Borders & Radius ──────────────────────────────────────── */
.rounded-sm  { border-radius: var(--radius-sm); }
.rounded-md  { border-radius: var(--radius-md); }
.rounded-lg  { border-radius: var(--radius-lg); }
.rounded-xl  { border-radius: var(--radius-xl); }
.rounded-2xl { border-radius: var(--radius-2xl); }
.rounded-pill { border-radius: var(--radius-pill); }
.rounded-full { border-radius: 50%; }

/* ── Visibility ────────────────────────────────────────────── */
.hidden { display: none; }
.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;
}

/* ── Scroll Reveal (used with animations.js) ───────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }


/* --- assets\css\responsive.css --- */
/* =========================================================
   EPA RESPONSIVE — Media Queries & Mobile Adjustments
   ========================================================= */

/* ── Tablets & Laptops (max 1200px) ───────────────────────── */
@media (max-width: 1200px) {
  .hero__inner {
    gap: var(--sp-6);
  }
}

/* ── Tablets Landscape (max 992px) ────────────────────────── */
@media (max-width: 992px) {
  .hero__inner, .content-block, .contact-block, .grid-2, .grid-3, .grid-4 {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .content-block__sidebar {
    position: static;
    margin-top: var(--sp-8);
  }

  .hero__desc {
    margin-left: auto;
    margin-right: auto;
  }

  .hero__features {
    align-items: center;
  }

  .hero__actions, 
  .hero__trust {
    justify-content: center;
  }

  .hero__image {
    max-width: 80%;
    margin: 0 auto;
    margin-top: var(--sp-10);
  }

  .stat-bar__inner {
    grid-template-columns: repeat(2, 1fr);
    row-gap: var(--sp-10);
  }

  .stat-bar__item:nth-child(2)::after {
    display: none;
  }
}

/* ── Tablets Portrait & Mobile Landscape (max 768px) ───────── */
@media (max-width: 768px) {
  :root {
    --header-height: 70px;
    --sp-24: 64px; /* shrink huge padding */
    --sp-30: 80px;
    --sp-16: 48px;
  }

  body {
    font-size: 16px;
  }

  .section {
    padding: var(--sp-16) 0;
  }

  /* Header & Navigation */
  .epa-header__nav, 
  .epa-header__actions .btn {
    display: none; 
  }

  .epa-header__toggle {
    display: flex; 
  }

  .epa-header.menu-open .epa-header__nav {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: var(--epa-bg-light); 
    padding: var(--sp-6);
    box-shadow: var(--shadow-xl);
    border-top: 1px solid var(--epa-border);
    border-bottom: 4px solid var(--epa-primary);
    gap: var(--sp-4);
    z-index: 1000;
  }

  .epa-header.menu-open .epa-mobile-actions {
    display: flex !important;
    flex-direction: column;
    gap: var(--sp-3);
    margin-top: var(--sp-4);
    padding-top: var(--sp-4);
    border-top: 1px solid var(--epa-border);
  }

  .epa-header.menu-open .epa-mobile-actions .btn {
    width: 100%;
    justify-content: center;
  }

  /* Expand dropdown menu on mobile */
  .epa-dropdown__menu {
    position: static !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    box-shadow: none !important;
    border: none !important;
    padding-left: var(--sp-4);
    background: transparent !important;
  }
  
  .epa-dropdown__toggle i {
    display: none; /* Hide chevron on mobile since it is expanded */
  }

  /* Grid fallbacks */
  .grid {
    grid-template-columns: 1fr !important;
  }
  
  .footer-grid {
    grid-template-columns: 1fr !important;
  }

  .footer-col {
    margin-bottom: var(--sp-8);
  }

  .hero__title {
    font-size: 2.25rem;
  }
}

/* ── Mobile Phones (max 480px) ─────────────────────────────── */
@media (max-width: 480px) {
  .stat-bar__inner {
    grid-template-columns: 1fr;
  }

  .stat-bar__item::after {
    display: none;
  }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  .hero__actions .btn {
    width: 100%;
    justify-content: center;
  }
  
  .hero__trust {
    flex-direction: column;
    align-items: center;
    gap: var(--sp-6);
  }

  .card {
    padding: var(--sp-6);
  }

  .program-card__body,
  .testimonial,
  .contact-block__form {
    padding: var(--sp-6);
  }
  
  .slider__btn {
    width: 36px;
    height: 36px;
  }
}


/* --- custom\assets\css\assets/css/global-bundle.css --- */
/*--------------------------------------------------------------
>> TABLE OF CONTENTS:
----------------------------------------------------------------
1. Typography
2. Animation
3. Preloader
4. Spacing
5. General
6. Slider
7. Video Modal
8. Header
9. Footer
10. Sidebar
11. About
12. Newsletter
13. Hero
14. Iconbox
15. Posts
16. CTA
17. Testimonial
18. Team
19. Card
20. Features
21. Pricing
22. Contact
--------------------------------------------------------------*/
/*--------------------------------------------------------------
 ** Google Fonts Integration
----------------------------------------------------------------*/
/* Euclid Circular A */
@font-face {
  font-family: "Euclid Circular A";
  src: url("../fonts/euclid-circular-a/EuclidCircularARegular.ttf")
    format("truetype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Euclid Circular A";
  src: url("../fonts/euclid-circular-a/EuclidCircularAMedium.ttf")
    format("truetype");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Euclid Circular A";
  src: url("../fonts/euclid-circular-a/EuclidCircularASemiBold.ttf")
    format("truetype");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Euclid Circular A";
  src: url("../fonts/euclid-circular-a/EuclidCircularABold.ttf")
    format("truetype");
  font-weight: 700;
  font-style: normal;
}
/* Fredoka Font */
@font-face {
  font-family: "Fredoka";
  src: url("../fonts/fredoka/static/Fredoka-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Fredoka";
  src: url("../fonts/fredoka/static/Fredoka-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Fredoka";
  src: url("../fonts/fredoka/static/Fredoka-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Fredoka";
  src: url("../fonts/fredoka/static/Fredoka-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "Adobe Garamond Pro";
  src: url("../fonts/adobe-garamond-pro/AGaramondPro-Bold.otf")
    format("truetype");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "Adobe Garamond Pro";
  src: url("../fonts/adobe-garamond-pro/AGaramondPro-Regular.otf")
    format("truetype");
  font-weight: 400;
  font-style: normal;
}
/*--------------------------------------------------------------
** All Variable
----------------------------------------------------------------*/
:root {
  --white-color: #fff;
  --heading-color: #00001b;
  --body-color: #555;
  --accent-color: #f26d21;
  --gray-color: #f4f3ef;
  --border-color: #d9d9d9;
  --heading-font: "Euclid Circular A", sans-serif;
  --body-font: "Euclid Circular A", sans-serif;
}

.td_theme_2 {
  --accent-color: #f26d21;
}

.td_theme_3 {
  --accent-color: #f26d21;
  --heading-font: "Fredoka", sans-serif;
  --body-font: "Fredoka", sans-serif;
}
.td_theme_3 h1,
.td_theme_3 h2,
.td_theme_3 h3,
.td_theme_3 h4,
.td_theme_3 h5,
.td_theme_3 h6 {
  font-weight: 600;
}

.td_theme_4 {
  --accent-color: #f26d21;
}

.td_theme_5 {
  --accent-color: #f26d21;
}

.td_theme_6 {
  --accent-color: #f26d21;
  --heading-font: "Adobe Garamond Pro", sans-serif;
}

/*--------------------------------------------------------------
1. Typography
----------------------------------------------------------------*/
html,
body {
  color: var(--body-color);
  font-family: var(--body-font);
  font-size: 16px;
  line-height: 1.5em;
  font-weight: 400;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  clear: both;
  color: var(--heading-color);
  padding: 0;
  margin: 0 0 20px 0;
  font-weight: 700;
  line-height: 1.2em;
  font-family: var(--heading-font);
}

h1 {
  font-size: 56px;
}

h2 {
  font-size: 42px;
}

h3 {
  font-size: 30px;
}

h4 {
  font-size: 24px;
}

h5 {
  font-size: 18px;
}

h6 {
  font-size: 16px;
}

p {
  margin-bottom: 15px;
}

ul {
  margin: 0 0 25px 0;
  padding-left: 20px;
  list-style: square outside none;
}

ol {
  padding-left: 20px;
  margin-bottom: 25px;
}

dfn,
cite,
em,
i {
  font-style: italic;
}

blockquote {
  margin: 0 15px;
  font-style: italic;
  font-size: 20px;
  line-height: 1.6em;
  margin: 0;
}

address {
  margin: 0 0 15px;
}

img {
  border: 0;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

button {
  color: inherit;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
}

a:hover {
  text-decoration: none;
  color: var(--accent-color);
}

table {
  width: 100%;
  margin-bottom: 25px;
}
table th {
  font-weight: 600;
  color: var(--body-color);
}
table td,
table th {
  border-top: 1px solid var(--border-color);
  padding: 11px 10px;
}

dl {
  margin-bottom: 25px;
}
dl dt {
  font-weight: 600;
}

b,
strong {
  font-weight: bold;
}

pre {
  color: var(--body-color);
  border: 1px solid var(--border-color);
  font-size: 18px;
  padding: 25px;
  border-radius: 5px;
}

kbd {
  font-size: 100%;
  background-color: var(--body-color);
  border-radius: 5px;
}

input,
textarea {
  color: var(--heading-color);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

/*--------------------------------------------------------------
2. Animation
----------------------------------------------------------------*/
@-webkit-keyframes particalAnimation {
  0%,
  100% {
    -webkit-transform: translate(0px, 0px);
    transform: translate(0px, 0px);
  }
  20% {
    -webkit-transform: translate(50px, -10px);
    transform: translate(50px, -10px);
  }
  40% {
    -webkit-transform: translate(100px, 60px);
    transform: translate(100px, 60px);
  }
  60% {
    -webkit-transform: translate(60px, 90px);
    transform: translate(60px, 90px);
  }
  80% {
    -webkit-transform: translate(-30px, 60px);
    transform: translate(-30px, 60px);
  }
  100% {
    -webkit-transform: translate(0px, 0px);
    transform: translate(0px, 0px);
  }
}
@keyframes particalAnimation {
  0%,
  100% {
    -webkit-transform: translate(0px, 0px);
    transform: translate(0px, 0px);
  }
  20% {
    -webkit-transform: translate(50px, -10px);
    transform: translate(50px, -10px);
  }
  40% {
    -webkit-transform: translate(100px, 60px);
    transform: translate(100px, 60px);
  }
  60% {
    -webkit-transform: translate(60px, 90px);
    transform: translate(60px, 90px);
  }
  80% {
    -webkit-transform: translate(-30px, 60px);
    transform: translate(-30px, 60px);
  }
  100% {
    -webkit-transform: translate(0px, 0px);
    transform: translate(0px, 0px);
  }
}
@-webkit-keyframes animo-x {
  50% {
    -webkit-animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    -webkit-transform: translateX(44px);
    transform: translateX(44px);
  }
}
@keyframes animo-x {
  50% {
    -webkit-animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    -webkit-transform: translateX(44px);
    transform: translateX(44px);
  }
}
@-webkit-keyframes animo-y {
  50% {
    -webkit-animation-timing-function: cubic-bezier(0.55, 0, 0.2, 1);
    animation-timing-function: cubic-bezier(0.55, 0, 0.2, 1);
    -webkit-transform: translateY(40px);
    transform: translateY(40px);
  }
}
@keyframes animo-y {
  50% {
    -webkit-animation-timing-function: cubic-bezier(0.55, 0, 0.2, 1);
    animation-timing-function: cubic-bezier(0.55, 0, 0.2, 1);
    -webkit-transform: translateY(40px);
    transform: translateY(40px);
  }
}
@-webkit-keyframes rotate-anim {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes rotate-anim {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-webkit-keyframes semi-rotate-anim {
  50% {
    -webkit-animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    -webkit-transform: translateY(25px) rotate(-53deg);
    transform: translateY(25px) rotate(-53deg);
  }
}
@keyframes semi-rotate-anim {
  50% {
    -webkit-animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    -webkit-transform: translateY(25px) rotate(-53deg);
    transform: translateY(25px) rotate(-53deg);
  }
}
@-webkit-keyframes up-down-anim {
  40% {
    -webkit-animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    -webkit-transform: translateY(40px) rotate(-1deg);
    transform: translateY(40px) rotate(-1deg);
  }
}
@keyframes up-down-anim {
  40% {
    -webkit-animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    -webkit-transform: translateY(40px) rotate(-1deg);
    transform: translateY(40px) rotate(-1deg);
  }
}
@-webkit-keyframes swing-anim {
  65% {
    -webkit-animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    -webkit-transform: translateY(-48px) rotate(-75deg);
    transform: translateY(-48px) rotate(-75deg);
  }
}
@keyframes swing-anim {
  65% {
    -webkit-animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    -webkit-transform: translateY(-48px) rotate(-75deg);
    transform: translateY(-48px) rotate(-75deg);
  }
}
@-webkit-keyframes spinAnimaiton {
  0% {
    -webkit-transform: rotateX(-20deg) rotateY(0deg);
    transform: rotateX(-20deg) rotateY(0deg);
  }
  75% {
    -webkit-transform: rotateX(-20deg) rotateY(360deg);
    transform: rotateX(-20deg) rotateY(360deg);
  }
  100% {
    -webkit-transform: rotateX(-20deg) rotateY(360deg);
    transform: rotateX(-20deg) rotateY(360deg);
  }
}
@keyframes spinAnimaiton {
  0% {
    -webkit-transform: rotateX(-20deg) rotateY(0deg);
    transform: rotateX(-20deg) rotateY(0deg);
  }
  75% {
    -webkit-transform: rotateX(-20deg) rotateY(360deg);
    transform: rotateX(-20deg) rotateY(360deg);
  }
  100% {
    -webkit-transform: rotateX(-20deg) rotateY(360deg);
    transform: rotateX(-20deg) rotateY(360deg);
  }
}
/*--------------------------------------------------------------
3. Preloader
----------------------------------------------------------------*/
.td_preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #fff;
  z-index: 99999;
}
.td_preloader::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  background-color: var(--accent-color);
  opacity: 0.2;
}

.td_preloader_in {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 50px;
  height: 50px;
  font-size: 0;
  display: inline-block;
  margin: -25px 0 0 -25px;
  text-indent: -9999em;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  z-index: 3;
}

.td_preloader_in span {
  background-color: var(--accent-color);
  display: inline-block;
  float: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 50px;
  height: 50px;
  opacity: 0.5;
  border-radius: 50%;
  -webkit-animation: ballPulseDouble 2s ease-in-out infinite;
  animation: ballPulseDouble 2s ease-in-out infinite;
}

.td_preloader_in span:last-child {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}

@-webkit-keyframes ballPulseDouble {
  0%,
  100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  50% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes ballPulseDouble {
  0%,
  100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  50% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
/*--------------------------------------------------------------
4. Spacing
----------------------------------------------------------------*/
.td_mb_1 {
  margin-bottom: 1px;
}

.td_mb_2 {
  margin-bottom: 2px;
}

.td_mb_3 {
  margin-bottom: 3px;
}

.td_mb_4 {
  margin-bottom: 4px;
}

.td_mb_5 {
  margin-bottom: 5px;
}

.td_mb_6 {
  margin-bottom: 6px;
}

.td_mb_7 {
  margin-bottom: 7px;
}

.td_mb_8 {
  margin-bottom: 8px;
}

.td_mb_9 {
  margin-bottom: 9px;
}

.td_mb_10 {
  margin-bottom: 10px;
}

.td_mb_11 {
  margin-bottom: 11px;
}

.td_mb_12 {
  margin-bottom: 12px;
}

.td_mb_13 {
  margin-bottom: 13px;
}

.td_mb_14 {
  margin-bottom: 14px;
}

.td_mb_15 {
  margin-bottom: 15px;
}

.td_mb_16 {
  margin-bottom: 16px;
}

.td_mb_17 {
  margin-bottom: 17px;
}

.td_mb_18 {
  margin-bottom: 18px;
}

.td_mb_19 {
  margin-bottom: 19px;
}

.td_mb_20 {
  margin-bottom: 20px;
}

.td_mb_21 {
  margin-bottom: 21px;
}

.td_mb_22 {
  margin-bottom: 22px;
}

.td_mb_23 {
  margin-bottom: 23px;
}

.td_mb_24 {
  margin-bottom: 24px;
}

.td_mb_25 {
  margin-bottom: 25px;
}

.td_mb_26 {
  margin-bottom: 26px;
}

.td_mb_27 {
  margin-bottom: 27px;
}

.td_mb_28 {
  margin-bottom: 28px;
}

.td_mb_29 {
  margin-bottom: 29px;
}

.td_mb_30 {
  margin-bottom: 30px;
}

.td_mb_31 {
  margin-bottom: 31px;
}

.td_mb_32 {
  margin-bottom: 32px;
}

.td_mb_33 {
  margin-bottom: 33px;
}

.td_mb_34 {
  margin-bottom: 34px;
}

.td_mb_35 {
  margin-bottom: 35px;
}

.td_mb_36 {
  margin-bottom: 36px;
}

.td_mb_37 {
  margin-bottom: 37px;
}

.td_mb_38 {
  margin-bottom: 38px;
}

.td_mb_39 {
  margin-bottom: 39px;
}

.td_mb_40 {
  margin-bottom: 40px;
}

.td_mb_41 {
  margin-bottom: 41px;
}

.td_mb_42 {
  margin-bottom: 42px;
}

.td_mb_43 {
  margin-bottom: 43px;
}

.td_mb_44 {
  margin-bottom: 44px;
}

.td_mb_45 {
  margin-bottom: 45px;
}

.td_mb_46 {
  margin-bottom: 46px;
}

.td_mb_47 {
  margin-bottom: 47px;
}

.td_mb_48 {
  margin-bottom: 48px;
}

.td_mb_49 {
  margin-bottom: 49px;
}

.td_mb_50 {
  margin-bottom: 50px;
}

.td_mb_51 {
  margin-bottom: 51px;
}

.td_mb_52 {
  margin-bottom: 52px;
}

.td_mb_53 {
  margin-bottom: 53px;
}

.td_mb_54 {
  margin-bottom: 54px;
}

.td_mb_55 {
  margin-bottom: 55px;
}

.td_mb_56 {
  margin-bottom: 56px;
}

.td_mb_57 {
  margin-bottom: 57px;
}

.td_mb_58 {
  margin-bottom: 58px;
}

.td_mb_59 {
  margin-bottom: 59px;
}

.td_mb_60 {
  margin-bottom: 60px;
}

@media screen and (min-width: 992px) {
  .td_height_1 {
    height: 1px;
  }
  .td_height_2 {
    height: 2px;
  }
  .td_height_3 {
    height: 3px;
  }
  .td_height_4 {
    height: 4px;
  }
  .td_height_5 {
    height: 5px;
  }
  .td_height_6 {
    height: 6px;
  }
  .td_height_7 {
    height: 7px;
  }
  .td_height_8 {
    height: 8px;
  }
  .td_height_9 {
    height: 9px;
  }
  .td_height_10 {
    height: 10px;
  }
  .td_height_11 {
    height: 11px;
  }
  .td_height_12 {
    height: 12px;
  }
  .td_height_13 {
    height: 13px;
  }
  .td_height_14 {
    height: 14px;
  }
  .td_height_15 {
    height: 15px;
  }
  .td_height_16 {
    height: 16px;
  }
  .td_height_17 {
    height: 17px;
  }
  .td_height_18 {
    height: 18px;
  }
  .td_height_19 {
    height: 19px;
  }
  .td_height_20 {
    height: 20px;
  }
  .td_height_21 {
    height: 21px;
  }
  .td_height_22 {
    height: 22px;
  }
  .td_height_23 {
    height: 23px;
  }
  .td_height_24 {
    height: 24px;
  }
  .td_height_25 {
    height: 25px;
  }
  .td_height_26 {
    height: 26px;
  }
  .td_height_27 {
    height: 27px;
  }
  .td_height_28 {
    height: 28px;
  }
  .td_height_29 {
    height: 29px;
  }
  .td_height_30 {
    height: 30px;
  }
  .td_height_31 {
    height: 31px;
  }
  .td_height_32 {
    height: 32px;
  }
  .td_height_33 {
    height: 33px;
  }
  .td_height_34 {
    height: 34px;
  }
  .td_height_35 {
    height: 35px;
  }
  .td_height_36 {
    height: 36px;
  }
  .td_height_37 {
    height: 37px;
  }
  .td_height_38 {
    height: 38px;
  }
  .td_height_39 {
    height: 39px;
  }
  .td_height_40 {
    height: 40px;
  }
  .td_height_41 {
    height: 41px;
  }
  .td_height_42 {
    height: 42px;
  }
  .td_height_43 {
    height: 43px;
  }
  .td_height_44 {
    height: 44px;
  }
  .td_height_45 {
    height: 45px;
  }
  .td_height_46 {
    height: 46px;
  }
  .td_height_47 {
    height: 47px;
  }
  .td_height_48 {
    height: 48px;
  }
  .td_height_49 {
    height: 49px;
  }
  .td_height_50 {
    height: 50px;
  }
  .td_height_51 {
    height: 51px;
  }
  .td_height_52 {
    height: 52px;
  }
  .td_height_53 {
    height: 53px;
  }
  .td_height_54 {
    height: 54px;
  }
  .td_height_55 {
    height: 55px;
  }
  .td_height_56 {
    height: 56px;
  }
  .td_height_57 {
    height: 57px;
  }
  .td_height_58 {
    height: 58px;
  }
  .td_height_59 {
    height: 59px;
  }
  .td_height_60 {
    height: 60px;
  }
  .td_height_61 {
    height: 61px;
  }
  .td_height_62 {
    height: 62px;
  }
  .td_height_63 {
    height: 63px;
  }
  .td_height_64 {
    height: 64px;
  }
  .td_height_65 {
    height: 65px;
  }
  .td_height_66 {
    height: 66px;
  }
  .td_height_67 {
    height: 67px;
  }
  .td_height_68 {
    height: 68px;
  }
  .td_height_69 {
    height: 69px;
  }
  .td_height_70 {
    height: 70px;
  }
  .td_height_71 {
    height: 71px;
  }
  .td_height_72 {
    height: 72px;
  }
  .td_height_73 {
    height: 73px;
  }
  .td_height_74 {
    height: 74px;
  }
  .td_height_75 {
    height: 75px;
  }
  .td_height_76 {
    height: 76px;
  }
  .td_height_77 {
    height: 77px;
  }
  .td_height_78 {
    height: 78px;
  }
  .td_height_79 {
    height: 79px;
  }
  .td_height_80 {
    height: 80px;
  }
  .td_height_81 {
    height: 81px;
  }
  .td_height_82 {
    height: 82px;
  }
  .td_height_83 {
    height: 83px;
  }
  .td_height_84 {
    height: 84px;
  }
  .td_height_85 {
    height: 85px;
  }
  .td_height_86 {
    height: 86px;
  }
  .td_height_87 {
    height: 87px;
  }
  .td_height_88 {
    height: 88px;
  }
  .td_height_89 {
    height: 89px;
  }
  .td_height_90 {
    height: 90px;
  }
  .td_height_91 {
    height: 91px;
  }
  .td_height_92 {
    height: 92px;
  }
  .td_height_93 {
    height: 93px;
  }
  .td_height_94 {
    height: 94px;
  }
  .td_height_95 {
    height: 95px;
  }
  .td_height_96 {
    height: 96px;
  }
  .td_height_97 {
    height: 97px;
  }
  .td_height_98 {
    height: 98px;
  }
  .td_height_99 {
    height: 99px;
  }
  .td_height_100 {
    height: 100px;
  }
  .td_height_101 {
    height: 101px;
  }
  .td_height_102 {
    height: 102px;
  }
  .td_height_103 {
    height: 103px;
  }
  .td_height_104 {
    height: 104px;
  }
  .td_height_105 {
    height: 105px;
  }
  .td_height_106 {
    height: 106px;
  }
  .td_height_107 {
    height: 107px;
  }
  .td_height_108 {
    height: 108px;
  }
  .td_height_109 {
    height: 109px;
  }
  .td_height_110 {
    height: 110px;
  }
  .td_height_111 {
    height: 111px;
  }
  .td_height_112 {
    height: 112px;
  }
  .td_height_113 {
    height: 113px;
  }
  .td_height_114 {
    height: 114px;
  }
  .td_height_115 {
    height: 115px;
  }
  .td_height_116 {
    height: 116px;
  }
  .td_height_117 {
    height: 117px;
  }
  .td_height_118 {
    height: 118px;
  }
  .td_height_119 {
    height: 119px;
  }
  .td_height_120 {
    height: 120px;
  }
  .td_height_121 {
    height: 121px;
  }
  .td_height_122 {
    height: 122px;
  }
  .td_height_123 {
    height: 123px;
  }
  .td_height_124 {
    height: 124px;
  }
  .td_height_125 {
    height: 125px;
  }
  .td_height_126 {
    height: 126px;
  }
  .td_height_127 {
    height: 127px;
  }
  .td_height_128 {
    height: 128px;
  }
  .td_height_129 {
    height: 129px;
  }
  .td_height_130 {
    height: 130px;
  }
  .td_height_131 {
    height: 131px;
  }
  .td_height_132 {
    height: 132px;
  }
  .td_height_133 {
    height: 133px;
  }
  .td_height_134 {
    height: 134px;
  }
  .td_height_135 {
    height: 135px;
  }
  .td_height_136 {
    height: 136px;
  }
  .td_height_137 {
    height: 137px;
  }
  .td_height_138 {
    height: 138px;
  }
  .td_height_139 {
    height: 139px;
  }
  .td_height_140 {
    height: 140px;
  }
  .td_height_141 {
    height: 141px;
  }
  .td_height_142 {
    height: 142px;
  }
  .td_height_143 {
    height: 143px;
  }
  .td_height_144 {
    height: 144px;
  }
  .td_height_145 {
    height: 145px;
  }
  .td_height_146 {
    height: 146px;
  }
  .td_height_147 {
    height: 147px;
  }
  .td_height_148 {
    height: 148px;
  }
  .td_height_149 {
    height: 149px;
  }
  .td_height_150 {
    height: 150px;
  }
}
@media screen and (max-width: 991px) {
  .td_mb_lg_1 {
    margin-bottom: 1px;
  }
  .td_mb_lg_2 {
    margin-bottom: 2px;
  }
  .td_mb_lg_3 {
    margin-bottom: 3px;
  }
  .td_mb_lg_4 {
    margin-bottom: 4px;
  }
  .td_mb_lg_5 {
    margin-bottom: 5px;
  }
  .td_mb_lg_6 {
    margin-bottom: 6px;
  }
  .td_mb_lg_7 {
    margin-bottom: 7px;
  }
  .td_mb_lg_8 {
    margin-bottom: 8px;
  }
  .td_mb_lg_9 {
    margin-bottom: 9px;
  }
  .td_mb_lg_10 {
    margin-bottom: 10px;
  }
  .td_mb_lg_11 {
    margin-bottom: 11px;
  }
  .td_mb_lg_12 {
    margin-bottom: 12px;
  }
  .td_mb_lg_13 {
    margin-bottom: 13px;
  }
  .td_mb_lg_14 {
    margin-bottom: 14px;
  }
  .td_mb_lg_15 {
    margin-bottom: 15px;
  }
  .td_mb_lg_16 {
    margin-bottom: 16px;
  }
  .td_mb_lg_17 {
    margin-bottom: 17px;
  }
  .td_mb_lg_18 {
    margin-bottom: 18px;
  }
  .td_mb_lg_19 {
    margin-bottom: 19px;
  }
  .td_mb_lg_20 {
    margin-bottom: 20px;
  }
  .td_mb_lg_21 {
    margin-bottom: 21px;
  }
  .td_mb_lg_22 {
    margin-bottom: 22px;
  }
  .td_mb_lg_23 {
    margin-bottom: 23px;
  }
  .td_mb_lg_24 {
    margin-bottom: 24px;
  }
  .td_mb_lg_25 {
    margin-bottom: 25px;
  }
  .td_mb_lg_26 {
    margin-bottom: 26px;
  }
  .td_mb_lg_27 {
    margin-bottom: 27px;
  }
  .td_mb_lg_28 {
    margin-bottom: 28px;
  }
  .td_mb_lg_29 {
    margin-bottom: 29px;
  }
  .td_mb_lg_30 {
    margin-bottom: 30px;
  }
  .td_mb_lg_31 {
    margin-bottom: 31px;
  }
  .td_mb_lg_32 {
    margin-bottom: 32px;
  }
  .td_mb_lg_33 {
    margin-bottom: 33px;
  }
  .td_mb_lg_34 {
    margin-bottom: 34px;
  }
  .td_mb_lg_35 {
    margin-bottom: 35px;
  }
  .td_mb_lg_36 {
    margin-bottom: 36px;
  }
  .td_mb_lg_37 {
    margin-bottom: 37px;
  }
  .td_mb_lg_38 {
    margin-bottom: 38px;
  }
  .td_mb_lg_39 {
    margin-bottom: 39px;
  }
  .td_mb_lg_40 {
    margin-bottom: 40px;
  }
  .td_mb_lg_41 {
    margin-bottom: 41px;
  }
  .td_mb_lg_42 {
    margin-bottom: 42px;
  }
  .td_mb_lg_43 {
    margin-bottom: 43px;
  }
  .td_mb_lg_44 {
    margin-bottom: 44px;
  }
  .td_mb_lg_45 {
    margin-bottom: 45px;
  }
  .td_mb_lg_46 {
    margin-bottom: 46px;
  }
  .td_mb_lg_47 {
    margin-bottom: 47px;
  }
  .td_mb_lg_48 {
    margin-bottom: 48px;
  }
  .td_mb_lg_49 {
    margin-bottom: 49px;
  }
  .td_mb_lg_50 {
    margin-bottom: 50px;
  }
  .td_mb_lg_51 {
    margin-bottom: 51px;
  }
  .td_mb_lg_52 {
    margin-bottom: 52px;
  }
  .td_mb_lg_53 {
    margin-bottom: 53px;
  }
  .td_mb_lg_54 {
    margin-bottom: 54px;
  }
  .td_mb_lg_55 {
    margin-bottom: 55px;
  }
  .td_mb_lg_56 {
    margin-bottom: 56px;
  }
  .td_mb_lg_57 {
    margin-bottom: 57px;
  }
  .td_mb_lg_58 {
    margin-bottom: 58px;
  }
  .td_mb_lg_59 {
    margin-bottom: 59px;
  }
  .td_mb_lg_60 {
    margin-bottom: 60px;
  }
  .td_height_lg_1 {
    height: 1px;
  }
  .td_height_lg_2 {
    height: 2px;
  }
  .td_height_lg_3 {
    height: 3px;
  }
  .td_height_lg_4 {
    height: 4px;
  }
  .td_height_lg_5 {
    height: 5px;
  }
  .td_height_lg_6 {
    height: 6px;
  }
  .td_height_lg_7 {
    height: 7px;
  }
  .td_height_lg_8 {
    height: 8px;
  }
  .td_height_lg_9 {
    height: 9px;
  }
  .td_height_lg_10 {
    height: 10px;
  }
  .td_height_lg_11 {
    height: 11px;
  }
  .td_height_lg_12 {
    height: 12px;
  }
  .td_height_lg_13 {
    height: 13px;
  }
  .td_height_lg_14 {
    height: 14px;
  }
  .td_height_lg_15 {
    height: 15px;
  }
  .td_height_lg_16 {
    height: 16px;
  }
  .td_height_lg_17 {
    height: 17px;
  }
  .td_height_lg_18 {
    height: 18px;
  }
  .td_height_lg_19 {
    height: 19px;
  }
  .td_height_lg_20 {
    height: 20px;
  }
  .td_height_lg_21 {
    height: 21px;
  }
  .td_height_lg_22 {
    height: 22px;
  }
  .td_height_lg_23 {
    height: 23px;
  }
  .td_height_lg_24 {
    height: 24px;
  }
  .td_height_lg_25 {
    height: 25px;
  }
  .td_height_lg_26 {
    height: 26px;
  }
  .td_height_lg_27 {
    height: 27px;
  }
  .td_height_lg_28 {
    height: 28px;
  }
  .td_height_lg_29 {
    height: 29px;
  }
  .td_height_lg_30 {
    height: 30px;
  }
  .td_height_lg_31 {
    height: 31px;
  }
  .td_height_lg_32 {
    height: 32px;
  }
  .td_height_lg_33 {
    height: 33px;
  }
  .td_height_lg_34 {
    height: 34px;
  }
  .td_height_lg_35 {
    height: 35px;
  }
  .td_height_lg_36 {
    height: 36px;
  }
  .td_height_lg_37 {
    height: 37px;
  }
  .td_height_lg_38 {
    height: 38px;
  }
  .td_height_lg_39 {
    height: 39px;
  }
  .td_height_lg_40 {
    height: 40px;
  }
  .td_height_lg_41 {
    height: 41px;
  }
  .td_height_lg_42 {
    height: 42px;
  }
  .td_height_lg_43 {
    height: 43px;
  }
  .td_height_lg_44 {
    height: 44px;
  }
  .td_height_lg_45 {
    height: 45px;
  }
  .td_height_lg_46 {
    height: 46px;
  }
  .td_height_lg_47 {
    height: 47px;
  }
  .td_height_lg_48 {
    height: 48px;
  }
  .td_height_lg_49 {
    height: 49px;
  }
  .td_height_lg_50 {
    height: 50px;
  }
  .td_height_lg_51 {
    height: 51px;
  }
  .td_height_lg_52 {
    height: 52px;
  }
  .td_height_lg_53 {
    height: 53px;
  }
  .td_height_lg_54 {
    height: 54px;
  }
  .td_height_lg_55 {
    height: 55px;
  }
  .td_height_lg_56 {
    height: 56px;
  }
  .td_height_lg_57 {
    height: 57px;
  }
  .td_height_lg_58 {
    height: 58px;
  }
  .td_height_lg_59 {
    height: 59px;
  }
  .td_height_lg_60 {
    height: 60px;
  }
  .td_height_lg_61 {
    height: 61px;
  }
  .td_height_lg_62 {
    height: 62px;
  }
  .td_height_lg_63 {
    height: 63px;
  }
  .td_height_lg_64 {
    height: 64px;
  }
  .td_height_lg_65 {
    height: 65px;
  }
  .td_height_lg_66 {
    height: 66px;
  }
  .td_height_lg_67 {
    height: 67px;
  }
  .td_height_lg_68 {
    height: 68px;
  }
  .td_height_lg_69 {
    height: 69px;
  }
  .td_height_lg_70 {
    height: 70px;
  }
  .td_height_lg_71 {
    height: 71px;
  }
  .td_height_lg_72 {
    height: 72px;
  }
  .td_height_lg_73 {
    height: 73px;
  }
  .td_height_lg_74 {
    height: 74px;
  }
  .td_height_lg_75 {
    height: 75px;
  }
  .td_height_lg_76 {
    height: 76px;
  }
  .td_height_lg_77 {
    height: 77px;
  }
  .td_height_lg_78 {
    height: 78px;
  }
  .td_height_lg_79 {
    height: 79px;
  }
  .td_height_lg_80 {
    height: 80px;
  }
  .td_height_lg_81 {
    height: 81px;
  }
  .td_height_lg_82 {
    height: 82px;
  }
  .td_height_lg_83 {
    height: 83px;
  }
  .td_height_lg_84 {
    height: 84px;
  }
  .td_height_lg_85 {
    height: 85px;
  }
  .td_height_lg_86 {
    height: 86px;
  }
  .td_height_lg_87 {
    height: 87px;
  }
  .td_height_lg_88 {
    height: 88px;
  }
  .td_height_lg_89 {
    height: 89px;
  }
  .td_height_lg_90 {
    height: 90px;
  }
  .td_height_lg_91 {
    height: 91px;
  }
  .td_height_lg_92 {
    height: 92px;
  }
  .td_height_lg_93 {
    height: 93px;
  }
  .td_height_lg_94 {
    height: 94px;
  }
  .td_height_lg_95 {
    height: 95px;
  }
  .td_height_lg_96 {
    height: 96px;
  }
  .td_height_lg_97 {
    height: 97px;
  }
  .td_height_lg_98 {
    height: 98px;
  }
  .td_height_lg_99 {
    height: 99px;
  }
  .td_height_lg_100 {
    height: 100px;
  }
  .td_height_lg_101 {
    height: 101px;
  }
  .td_height_lg_102 {
    height: 102px;
  }
  .td_height_lg_103 {
    height: 103px;
  }
  .td_height_lg_104 {
    height: 104px;
  }
  .td_height_lg_105 {
    height: 105px;
  }
  .td_height_lg_106 {
    height: 106px;
  }
  .td_height_lg_107 {
    height: 107px;
  }
  .td_height_lg_108 {
    height: 108px;
  }
  .td_height_lg_109 {
    height: 109px;
  }
  .td_height_lg_110 {
    height: 110px;
  }
  .td_height_lg_111 {
    height: 111px;
  }
  .td_height_lg_112 {
    height: 112px;
  }
  .td_height_lg_113 {
    height: 113px;
  }
  .td_height_lg_114 {
    height: 114px;
  }
  .td_height_lg_115 {
    height: 115px;
  }
  .td_height_lg_116 {
    height: 116px;
  }
  .td_height_lg_117 {
    height: 117px;
  }
  .td_height_lg_118 {
    height: 118px;
  }
  .td_height_lg_119 {
    height: 119px;
  }
  .td_height_lg_120 {
    height: 120px;
  }
  .td_height_lg_121 {
    height: 121px;
  }
  .td_height_lg_122 {
    height: 122px;
  }
  .td_height_lg_123 {
    height: 123px;
  }
  .td_height_lg_124 {
    height: 124px;
  }
  .td_height_lg_125 {
    height: 125px;
  }
  .td_height_lg_126 {
    height: 126px;
  }
  .td_height_lg_127 {
    height: 127px;
  }
  .td_height_lg_128 {
    height: 128px;
  }
  .td_height_lg_129 {
    height: 129px;
  }
  .td_height_lg_130 {
    height: 130px;
  }
  .td_height_lg_131 {
    height: 131px;
  }
  .td_height_lg_132 {
    height: 132px;
  }
  .td_height_lg_133 {
    height: 133px;
  }
  .td_height_lg_134 {
    height: 134px;
  }
  .td_height_lg_135 {
    height: 135px;
  }
  .td_height_lg_136 {
    height: 136px;
  }
  .td_height_lg_137 {
    height: 137px;
  }
  .td_height_lg_138 {
    height: 138px;
  }
  .td_height_lg_139 {
    height: 139px;
  }
  .td_height_lg_140 {
    height: 140px;
  }
  .td_height_lg_141 {
    height: 141px;
  }
  .td_height_lg_142 {
    height: 142px;
  }
  .td_height_lg_143 {
    height: 143px;
  }
  .td_height_lg_144 {
    height: 144px;
  }
  .td_height_lg_145 {
    height: 145px;
  }
  .td_height_lg_146 {
    height: 146px;
  }
  .td_height_lg_147 {
    height: 147px;
  }
  .td_height_lg_148 {
    height: 148px;
  }
  .td_height_lg_149 {
    height: 149px;
  }
  .td_height_lg_150 {
    height: 150px;
  }
}
/*--------------------------------------------------------------
5. General
----------------------------------------------------------------*/
.container-fluid {
  width: 100%;
  max-width: 1920px;
  margin-left: auto;
  margin-right: auto;
}

.td_fs_12 {
  font-size: 12px;
  line-height: 1.57em;
}

.td_fs_14 {
  font-size: 14px;
  line-height: 1.57em;
}

.td_fs_15 {
  font-size: 15px;
  line-height: 1.5em;
}

.td_fs_16 {
  font-size: 16px;
  line-height: 1.5em;
}

.td_fs_18 {
  font-size: 18px;
  line-height: 1.56em;
}
@media (max-width: 991px) {
  .td_fs_18 {
    font-size: 16px;
  }
}

.td_fs_20 {
  font-size: 20px;
  line-height: 1.5em;
}
@media (max-width: 991px) {
  .td_fs_20 {
    font-size: 18px;
  }
}

.td_fs_24 {
  font-size: 24px;
  line-height: 1.42em;
}
@media (max-width: 991px) {
  .td_fs_24 {
    font-size: 22px;
  }
}

.td_fs_30 {
  font-size: 30px;
  line-height: 1.33em;
}
@media (max-width: 991px) {
  .td_fs_30 {
    font-size: 25px;
  }
}

.td_fs_32 {
  font-size: 32px;
  line-height: 1.31em;
}
@media (max-width: 991px) {
  .td_fs_32 {
    font-size: 28px;
  }
}

.td_fs_36 {
  font-size: 36px;
  line-height: 1.44em;
}
@media (max-width: 991px) {
  .td_fs_36 {
    font-size: 30px;
  }
}

.td_fs_40 {
  font-size: 40px;
  line-height: 1.25em;
}
@media (max-width: 991px) {
  .td_fs_40 {
    font-size: 34px;
  }
}

.td_fs_48 {
  font-size: 48px;
  line-height: 1.33em;
}
@media (max-width: 1400px) {
  .td_fs_48 {
    font-size: 42px;
  }
}
@media (max-width: 991px) {
  .td_fs_48 {
    font-size: 38px;
  }
}

.td_fs_52 {
  font-size: 52px;
  line-height: 1.27em;
}
@media (max-width: 991px) {
  .td_fs_52 {
    font-size: 40px;
  }
}

.td_fs_60 {
  font-size: 60px;
  line-height: 1.2em;
}
@media (max-width: 991px) {
  .td_fs_60 {
    font-size: 44px;
  }
}

.td_fs_64 {
  font-size: 64px;
  line-height: 1.19em;
}
@media (max-width: 1199px) {
  .td_fs_64 {
    font-size: 60px;
  }
}
@media (max-width: 991px) {
  .td_fs_64 {
    font-size: 46px;
  }
}

.td_light {
  font-weight: 300;
}

.td_normal {
  font-weight: 400;
}

.td_medium {
  font-weight: 500;
}

.td_semibold {
  font-weight: 600;
}

.td_bold {
  font-weight: 700;
}

.td_extra_bold {
  font-weight: 800;
}

.td_black {
  font-weight: 900;
}

.td_radius_3 {
  border-radius: 3px;
}

.td_radius_5 {
  border-radius: 5px;
}

.td_radius_7 {
  border-radius: 7px;
}

.td_radius_10 {
  border-radius: 10px;
}

.td_radius_15 {
  border-radius: 15px;
}

.td_radius_30 {
  border-radius: 30px;
}

.td_opacity_1 {
  opacity: 0.1;
}

.td_opacity_2 {
  opacity: 0.2;
}

.td_opacity_3 {
  opacity: 0.4;
}

.td_opacity_4 {
  opacity: 0.4;
}

.td_opacity_5 {
  opacity: 0.5;
}

.td_opacity_6 {
  opacity: 0.6;
}

.td_opacity_7 {
  opacity: 0.7;
}

.td_opacity_8 {
  opacity: 0.8;
}

.td_opacity_9 {
  opacity: 0.9;
}

.td_spacing_1 {
  letter-spacing: 1.44px;
}

.td_mp_0 {
  list-style: none;
  margin: 0;
  padding: 0;
}

.td_pr_20 {
  padding-right: 20px;
}

.td_pr_35 {
  padding-right: 35px;
}
@media (max-width: 1400px) {
  .td_pr_35 {
    padding-right: 0;
  }
}

.td_pr_50 {
  padding-right: 50px;
}
@media (max-width: 1400px) {
  .td_pr_50 {
    padding-right: 20px;
  }
}
@media (max-width: 1199px) {
  .td_pr_50 {
    padding-right: 0px;
  }
}

.td_pl_65 {
  padding-left: 65px;
}
@media (max-width: 1400px) {
  .td_pl_65 {
    padding-left: 20px;
  }
}
@media (max-width: 1199px) {
  .td_pl_65 {
    padding-left: 0px;
  }
}

.td_plr_60 {
  padding-left: 60px;
  padding-right: 60px;
}

.td_row_gap_30 {
  margin-left: -15px;
  margin-right: -15px;
}
.td_row_gap_30 > * {
  padding-left: 15px;
  padding-right: 15px;
}

.td_row_gap_16 {
  margin-left: -8px;
  margin-right: -8px;
}
.td_row_gap_16 > * {
  padding-left: 8px;
  padding-right: 8px;
}

.td_gap_y_5 {
  gap: 5px 0;
}

.td_gap_y_10 {
  gap: 10px 0;
}

.td_gap_y_15 {
  gap: 15px 0;
}

.td_gap_y_20 {
  gap: 20px 0;
}

.td_gap_y_24 {
  gap: 24px 0;
}

.td_gap_y_30 {
  gap: 30px 0;
}

.td_gap_y_35 {
  gap: 35px 0;
}

.td_gap_y_40 {
  gap: 40px 0;
}

.td_gap_y_45 {
  gap: 45px 0;
}

.td_gap_y_50 {
  gap: 50px 0;
}

.td_gap_y_60 {
  gap: 60px 0;
}

.td_gap_y_65 {
  gap: 65px 0;
}

.td_gap_y_80 {
  gap: 80px 0;
}

.td_gap_y_100 {
  gap: 100px 0;
}

hr {
  margin: 0;
  padding: 0;
  border: none;
  border-top: 1px solid var(--border-color);
  opacity: 1;
}

.td_bg_filed {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.td_bg_fixed {
  background-attachment: fixed;
}
@media (max-width: 1370px) {
  .td_bg_fixed {
    background-attachment: initial;
  }
}

.td_center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.td_white_color {
  color: var(--white-color);
}

.td_heading_color {
  color: var(--heading-color);
}

.td_body_color {
  color: var(--body-color);
}

.td_accent_color {
  color: var(--accent-color);
}

.td_white_bg {
  background-color: var(--white-color);
}

.td_heading_bg {
  background-color: var(--heading-color);
}

.td_secondary_bg {
  background-color: var(--body-color);
}

.td_gray_bg {
  background-color: var(--gray-color);
}

.td_gray_bg_2 {
  background-color: #ebeced;
}

.td_gray_bg_3 {
  background-color: rgba(237, 237, 237, 0.5);
}

.td_gray_bg_4 {
  background: #faf9fd;
}

.td_gray_bg_5 {
  background: #f9f9fa;
}

.td_gray_bg_6 {
  background: #f7f7f8;
}

.td_gray_bg_7 {
  background: #d7fff6;
}

.td_gray_bg_8 {
  background: #e9efef;
}

.td_gray_bg_9 {
  background: #fffaf4;
}

.td_accent_bg {
  background-color: var(--accent-color);
}

label {
  display: inline-block;
  margin-bottom: 5px;
}

/* Start Accordion */
.td_accordians.td_style_1 {
  border-top: 2px solid var(--border-color);
  border-bottom: 2px solid var(--border-color);
}
.td_accordians.td_style_1 .td_accordian_title {
  margin-bottom: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.td_accordians.td_style_1 .td_accordian_body {
  padding: 0 40px 22px 0px;
  margin-top: -10px;
}
.td_accordians.td_style_1 .td_accordian_body p {
  margin: 0;
}
.td_accordians.td_style_1 .td_accordian_head {
  padding: 17px 40px 17px 0px;
  position: relative;
  cursor: pointer;
}
.td_accordians.td_style_1 .td_accordian_head:hover .td_accordian_title {
  color: var(--accent-color);
}
.td_accordians.td_style_1 .td_accordian:not(:last-child) {
  border-bottom: 2px solid var(--border-color);
}
.td_accordians.td_style_1 .td_accordian.active .td_accordian_head {
  pointer-events: none;
}
.td_accordians.td_style_1 .td_accordian.active .td_accordian_toggle {
  -webkit-transform: translateY(-50%) rotate(90deg);
  transform: translateY(-50%) rotate(90deg);
}
.td_accordians.td_style_1 .td_accordian_toggle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: absolute;
  top: 50%;
  right: 10px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.td_accordians.td_style_1.td_type_1 {
  border: none;
}
.td_accordians.td_style_1.td_type_1 .td_accordian {
  border-radius: 20px;
  border: none;
  overflow: hidden;
}
.td_accordians.td_style_1.td_type_1 .td_accordian:not(:last-child) {
  margin-bottom: 24px;
}
.td_accordians.td_style_1.td_type_1 .td_accordian.active .td_accordian_toggle {
  -webkit-transform: translateY(-50%) rotate(180deg);
  transform: translateY(-50%) rotate(180deg);
}
.td_accordians.td_style_1.td_type_1 .td_accordian_head {
  padding: 20px 50px 20px 30px;
  background-color: var(--accent-color);
}
@media (max-width: 575px) {
  .td_accordians.td_style_1.td_type_1 .td_accordian_head {
    padding: 20px 50px 20px 20px;
  }
}
.td_accordians.td_style_1.td_type_1 .td_accordian_head .td_accordian_title {
  color: #fff;
}
.td_accordians.td_style_1.td_type_1 .td_accordian_body {
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    color-stop(0.07%, #fff0d4),
    color-stop(95.86%, #d6fff7)
  );
  background: linear-gradient(90deg, #fff0d4 0.07%, #d6fff7 95.86%);
  padding: 20px 30px 20px 30px;
  margin: 0;
}
.td_accordians.td_style_1.td_type_1 .td_accordian_toggle {
  right: 30px;
}
.td_accordians.td_style_1.td_type_1.td_color_1 .td_accordian_head {
  background-color: var(--heading-color);
}
.td_accordians.td_style_1.td_type_1.td_color_1 .td_accordian_body {
  background: var(--accent-color);
  color: #fff;
}
.td_accordians.td_style_1.td_type_2 {
  border-width: 1px;
}
.td_accordians.td_style_1.td_type_2 .td_accordian_toggle {
  height: 14px;
  width: 14px;
  right: 30px;
}
.td_accordians.td_style_1.td_type_2 .td_accordian_toggle::before,
.td_accordians.td_style_1.td_type_2 .td_accordian_toggle::after {
  content: "";
  height: 2px;
  width: 100%;
  background-color: var(--heading-color);
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -1px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.td_accordians.td_style_1.td_type_2 .td_accordian_toggle::before {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}
.td_accordians.td_style_1.td_type_2 .td_accordian_body {
  padding: 0 30px 30px 0px;
  margin-top: 0px;
}
.td_accordians.td_style_1.td_type_2 .td_accordian_head {
  padding: 17px 50px 17px 0px;
}
.td_accordians.td_style_1.td_type_2 .td_accordian {
  border-width: 1px;
}
.td_accordians.td_style_1.td_type_2 .td_accordian.active {
  background-color: var(--heading-color);
  color: #c4c4c4;
}
.td_accordians.td_style_1.td_type_2 .td_accordian.active .td_accordian_title {
  color: #fff;
}
.td_accordians.td_style_1.td_type_2 .td_accordian.active .td_accordian_toggle {
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.td_accordians.td_style_1.td_type_2
  .td_accordian.active
  .td_accordian_toggle::before,
.td_accordians.td_style_1.td_type_2
  .td_accordian.active
  .td_accordian_toggle::after {
  background-color: #fff;
}
.td_accordians.td_style_1.td_type_2
  .td_accordian.active
  .td_accordian_toggle::before {
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
}
.td_accordians.td_style_1.td_type_2 .td_accordian.active .td_accordian_body {
  padding: 0px 30px 30px 30px;
}
.td_accordians.td_style_1.td_type_2 .td_accordian.active .td_accordian_head {
  padding: 17px 50px 17px 30px;
}

.td_accordian_border {
  border: 1px solid var(--border-color);
}

/* End Accordion */
.td_faq_1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0 50px;
}
@media (max-width: 1400px) {
  .td_faq_1 {
    padding: 0;
  }
}
@media (max-width: 991px) {
  .td_faq_1 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.td_faq_1 .td_faq_1_left {
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  width: 55%;
}
@media (max-width: 991px) {
  .td_faq_1 .td_faq_1_left {
    width: 100%;
  }
}
.td_faq_1 .td_faq_1_right {
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  width: 45%;
  padding-left: 6%;
}
@media (max-width: 1199px) {
  .td_faq_1 .td_faq_1_right {
    padding-left: 30px;
  }
}
@media (max-width: 991px) {
  .td_faq_1 .td_faq_1_right {
    width: 100%;
    padding-left: 0;
    margin-top: 35px;
  }
}
.td_faq_1.td_style_1 {
  padding: 0;
  gap: 60px;
}
@media (max-width: 1400px) {
  .td_faq_1.td_style_1 {
    gap: 0;
  }
}
@media (max-width: 991px) {
  .td_faq_1.td_style_1 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.td_faq_1.td_style_1 .td_faq_1_left {
  width: calc(50% - 30px);
}
@media (max-width: 1400px) {
  .td_faq_1.td_style_1 .td_faq_1_left {
    width: 50%;
  }
}
@media (max-width: 991px) {
  .td_faq_1.td_style_1 .td_faq_1_left {
    width: 100%;
  }
}
.td_faq_1.td_style_1 .td_faq_1_right {
  width: calc(50% - 30px);
  padding: 60px;
}
@media (max-width: 1400px) {
  .td_faq_1.td_style_1 .td_faq_1_right {
    width: 50%;
  }
}
@media (max-width: 1199px) {
  .td_faq_1.td_style_1 .td_faq_1_right {
    padding: 30px;
  }
}
@media (max-width: 991px) {
  .td_faq_1.td_style_1 .td_faq_1_right {
    width: 100%;
    padding: 0 15px 30px;
  }
}
@media (max-width: 991px) {
  .td_faq_1.td_style_1.td_type_1 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
}

.td_faq_1_img {
  min-height: 720px;
  width: 100%;
}
@media (max-width: 991px) {
  .td_faq_1_img {
    min-height: 500px;
  }
}

.td_btn.td_style_1 {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 0;
  outline: none;
  border: none;
}
.td_btn.td_style_1 .td_btn_in {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  padding: 13px 25px;
  gap: 10px;
  border-radius: inherit;
  position: relative;
  z-index: 1;
}
.td_btn.td_style_1 .td_btn_in::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  border-radius: inherit;
  background-color: rgba(0, 0, 0, 0.2);
  opacity: 0;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.td_btn.td_style_1 .td_btn_in > * {
  position: relative;
  z-index: 2;
}
.td_btn.td_style_1 .td_btn_in.td_heading_bg::before {
  background-color: rgba(255, 255, 255, 0.2);
}
.td_btn.td_style_1:hover {
  color: #fff;
}
.td_btn.td_style_1:hover .td_btn_in::before {
  opacity: 1;
}
.td_btn.td_style_1.td_with_shadow::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  left: 2px;
  top: 4px;
  border-radius: inherit;
  background-color: var(--accent-color);
  opacity: 0.3;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.td_btn.td_style_1.td_with_shadow:hover::after {
  left: 2px;
  top: -4px;
}
.td_btn.td_style_1.td_with_shadow_2 {
  -webkit-box-shadow: 6px 6px 0px 0px var(--heading-color);
  box-shadow: 6px 6px 0px 0px var(--heading-color);
}
.td_btn.td_style_1.td_with_shadow_2:hover {
  -webkit-box-shadow: 6px -6px 0px 0px var(--heading-color);
  box-shadow: 6px -6px 0px 0px var(--heading-color);
}
.td_btn.td_style_1.td_type_1 {
  -webkit-box-shadow: 0 0 0px 1px var(--heading-color);
  box-shadow: 0 0 0px 1px var(--heading-color);
}
.td_btn.td_style_1.td_type_1.td_with_shadow::after {
  background-color: var(--heading-color);
  opacity: 1;
}
.td_btn.td_style_1.td_type_1 .td_btn_in::before {
  background-color: rgba(0, 0, 0, 0.05);
}
.td_btn.td_style_1.td_type_2 .td_btn_icon {
  height: 50px;
  width: 50px;
  border-radius: 50%;
  margin: -13px -20px -13px 0;
  border: 1px solid currentColor;
}
.td_btn.td_style_1.td_type_2 .td_btn_in {
  padding: 13px 20px;
  gap: 12px;
  min-width: 170px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.td_btn.td_style_1.td_type_2 .td_btn_in span:nth-child(1) {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.td_btn.td_style_1.td_type_3 .td_btn_in {
  padding: 12px 24px;
  border: 1px solid currentColor;
  -webkit-transition: border 0.3s ease;
  transition: border 0.3s ease;
}
.td_btn.td_style_1.td_type_3:hover .td_btn_in {
  color: #fff;
  border-color: var(--accent-color);
}
.td_btn.td_style_1.td_type_3:hover .td_btn_in::before {
  background-color: var(--accent-color);
}
.td_btn.td_style_1.td_type_4 .td_btn_in {
  padding: 12px 10px;
  border: 1px solid currentColor;
  gap: 0;
  min-width: 50px;
}
.td_btn.td_style_1.td_type_4 .td_btn_text {
  overflow: hidden;
  max-width: 0;
  white-space: nowrap;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.td_btn.td_style_1.td_type_4 .td_btn_icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.td_btn.td_style_1.td_type_4 .td_btn_icon svg {
  width: 16px;
  height: 16px;
}
.td_btn.td_style_1.td_type_4:hover .td_btn_in {
  color: #fff;
  gap: 10px;
  padding: 12px 24px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.td_btn.td_style_1.td_type_4:hover .td_btn_in::before {
  background-color: var(--accent-color);
}
.td_btn.td_style_1.td_type_4:hover .td_btn_text {
  max-width: 200px;
}
.td_btn.td_style_1.td_type_5 .td_btn_in:before {
  opacity: 0.15;
  background-color: var(--accent-color);
}
.td_btn.td_style_1.td_type_5:hover .td_btn_in:before {
  opacity: 0.25;
}

.td_btn.td_style_2 {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  background-repeat: no-repeat;
  background-image: -webkit-gradient(
    linear,
    left top,
    right top,
    color-stop(0, var(--accent-color)),
    to(var(--accent-color))
  );
  background-image: linear-gradient(
    90deg,
    var(--accent-color) 0,
    var(--accent-color) 100%
  );
  -webkit-transition: background-size 0.42s cubic-bezier(0.49, 0.49, 0.08, 1),
    color 0.27s ease-out;
  transition: background-size 0.42s cubic-bezier(0.49, 0.49, 0.08, 1),
    color 0.27s ease-out;
  background-size: 100% 1px;
  background-position: 0 calc(100% - 0px);
  padding-bottom: 3px;
}
.td_btn.td_style_2 i {
  height: 20px;
  width: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  position: relative;
  color: var(--accent-color);
}
.td_btn.td_style_2 i svg {
  position: absolute;
  left: 0;
  top: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.td_btn.td_style_2 i svg:last-child {
  left: -20px;
  top: 20px;
  opacity: 0;
}
.td_btn.td_style_2:hover {
  background-position: 100% calc(100% - 0px);
  background-size: 0 1px;
}
.td_btn.td_style_2:hover i svg:first-child {
  left: 20px;
  top: -20px;
  opacity: 0;
}
.td_btn.td_style_2:hover i svg:last-child {
  left: 0px;
  top: 0px;
  opacity: 1;
}
.td_btn.td_style_2.td_type_2 {
  background: transparent;
}

.td_btn.td_style_3 {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
}
.td_btn.td_style_3:hover {
  letter-spacing: 0.6px;
}
.td_btn.td_style_3 span {
  display: inline-block;
  position: relative;
}
.td_btn.td_style_3 span::after {
  content: "";
  position: absolute;
  height: 1px;
  width: 100%;
  background-color: currentColor;
  bottom: 0;
  left: 0;
}
.td_btn.td_style_3 i {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.td_player_btn_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
}
.td_player_btn_wrap .td_play_btn_text {
  background-repeat: no-repeat;
  background-image: -webkit-gradient(
    linear,
    left top,
    right top,
    color-stop(0, currentColor),
    to(currentColor)
  );
  background-image: linear-gradient(90deg, currentColor 0, currentColor 100%);
  -webkit-transition: background-size 0.42s cubic-bezier(0.49, 0.49, 0.08, 1),
    color 0.27s ease-out;
  transition: background-size 0.42s cubic-bezier(0.49, 0.49, 0.08, 1),
    color 0.27s ease-out;
  background-position: 100% calc(100% - 0px);
  background-size: 0 2px;
}
.td_player_btn_wrap .td_player_btn:before {
  visibility: hidden;
}
.td_player_btn_wrap:hover .td_play_btn_text {
  background-size: 100% 2px;
  background-position: 0 calc(100% - 0px);
}
.td_player_btn_wrap:hover .td_player_btn:before {
  visibility: visible;
}
.td_player_btn_wrap.td_color_1 .td_player_btn:before {
  background-color: #fff;
}
.td_player_btn_wrap.td_color_1 .td_play_btn_text {
  background-size: 100% 2px;
  background-position: 0 calc(100% - 0px);
}
.td_player_btn_wrap.td_color_1:hover {
  color: #fff;
}
.td_player_btn_wrap.td_color_1:hover .td_play_btn_text {
  opacity: 0.8;
  background-position: 100% calc(100% - 0px);
  background-size: 0 2px;
}
.td_player_btn_wrap.td_type_1 .td_play_btn_text {
  background-size: 100% 2px;
  background-position: 0 calc(100% - 0px);
}
.td_player_btn_wrap.td_type_1 .td_player_btn:before {
  visibility: visible;
  border: 1px solid;
  background-color: transparent;
}
.td_player_btn_wrap.td_type_1 .td_player_btn:after {
  border: 1px solid;
}
.td_player_btn_wrap.td_type_1:hover .td_play_btn_text {
  background-position: 100% calc(100% - 0px);
  background-size: 0 2px;
}

.td_player_btn_wrap_2 {
  display: inline-block;
  -webkit-transform: scale(1.64);
  transform: scale(1.64);
  margin: 16px;
  position: relative;
}
.td_player_btn_wrap_2::before,
.td_player_btn_wrap_2::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 100%;
  height: 100%;
  border: 1px solid var(--white-color);
  border-radius: 50%;
  -webkit-animation: playBtnAnim 4s linear infinite;
  animation: playBtnAnim 4s linear infinite;
}
.td_player_btn_wrap_2::after {
  -webkit-animation-delay: 1.33s;
  animation-delay: 1.33s;
}
.td_player_btn_wrap_2 .td_player_btn {
  color: var(--white-color);
}
.td_player_btn_wrap_2 .td_player_btn::after {
  background-color: var(--accent-color);
}
.td_player_btn_wrap_2 .td_player_btn::before {
  background-color: transparent;
  -webkit-animation: playBtnAnim 4s linear infinite;
  animation: playBtnAnim 4s linear infinite;
  border: 1px solid var(--white-color);
  -webkit-animation-delay: 2.66s;
  animation-delay: 2.66s;
}

.td_player_btn_wrap_3 {
  position: absolute;
  height: 150px;
  width: 150px;
  background-color: var(--accent-color);
  border-radius: 50%;
  -webkit-box-shadow: 4px 4px 0px rgba(0, 0, 0, 0.15);
  box-shadow: 4px 4px 0px rgba(0, 0, 0, 0.15);
  bottom: 0;
  right: 30px;
  z-index: 2;
}
@media (max-width: 1400px) {
  .td_player_btn_wrap_3 {
    right: 0;
  }
}
@media (max-width: 575px) {
  .td_player_btn_wrap_3 {
    height: 100px;
    width: 100px;
  }
}

.td_player_btn {
  position: relative;
  z-index: 10;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  padding: 0 0 0 3px;
  color: var(--accent-color);
}
.td_player_btn:before,
.td_player_btn:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  -webkit-box-shadow: 2px 2px 50px 0px rgba(0, 0, 27, 0.1);
  box-shadow: 2px 2px 50px 0px rgba(0, 0, 27, 0.1);
}
.td_player_btn:before {
  background-color: var(--accent-color);
  z-index: 0;
  -webkit-animation: pulse-border 1500ms ease-out infinite;
  animation: pulse-border 1500ms ease-out infinite;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.td_player_btn:after {
  background-color: #fff;
}
.td_player_btn:after {
  z-index: 1;
  -webkit-transition: all 200ms;
  transition: all 200ms;
}
.td_player_btn span {
  display: block;
  position: relative;
  z-index: 3;
  width: 0;
  height: 0;
  border-left: 12px solid currentColor;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
}

@-webkit-keyframes pulse-border {
  0% {
    -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0)
      scale(1.5);
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}

@keyframes pulse-border {
  0% {
    -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0)
      scale(1.5);
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}
@-webkit-keyframes playBtnAnim {
  100% {
    -webkit-transform: translate(-50%, -50%) scale(1.8);
    transform: translate(-50%, -50%) scale(1.8);
    opacity: 0;
  }
}
@keyframes playBtnAnim {
  100% {
    -webkit-transform: translate(-50%, -50%) scale(1.8);
    transform: translate(-50%, -50%) scale(1.8);
    opacity: 0;
  }
}
.td_hover_layer_1,
.td_hover_layer_2,
.td_hover_layer_3,
.td_hover_layer_4,
.td_hover_layer_5 {
  position: relative;
  -webkit-transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  -webkit-transform: perspective(600px) translate3d(0, 0, 0);
  transform: perspective(600px) translate3d(0, 0, 0);
}

.td_social_btns.td_style_1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: -10px;
  gap: 5px;
}
.td_social_btns.td_style_1 a {
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  height: 45px;
  width: 45px;
  font-size: 20px;
  border-radius: 50%;
}
.td_social_btns.td_style_1 a:hover {
  color: #fff;
  background-color: var(--accent-color);
}

@media (min-width: 1401px) {
  .td_mobile_show_xxl {
    display: none;
  }
}
@media (max-width: 1400px) {
  .td_mobile_hide_xxl {
    display: none;
  }
}
@media (min-width: 1200px) {
  .td_mobile_show_xl {
    display: none;
  }
}
@media (max-width: 1199px) {
  .td_mobile_hide_xl {
    display: none;
  }
}
@media (min-width: 992px) {
  .td_mobile_show_lg {
    display: none;
  }
}
@media (max-width: 991px) {
  .td_mobile_hide_lg {
    display: none;
  }
}
.td_section_heading.td_style_1 .td_section_subtitle {
  margin-top: 10px;
}
.td_section_heading.td_style_1 .td_section_subtitle_up i {
  height: 28px;
  width: 8px;
  display: inline-block;
  position: relative;
  -webkit-transform: skewX(-32deg);
  transform: skewX(-32deg);
  margin-bottom: -8px;
}
.td_section_heading.td_style_1 .td_section_subtitle_up i::before,
.td_section_heading.td_style_1 .td_section_subtitle_up i::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 2px;
  background-color: var(--heading-color);
  opacity: 0.5;
  top: 0;
}
.td_section_heading.td_style_1 .td_section_subtitle_up i::before {
  left: 0;
}
.td_section_heading.td_style_1 .td_section_subtitle_up i::after {
  right: 0;
}
.td_section_heading.td_style_1 .td_section_subtitle_up i:first-child {
  margin-right: 12px;
}
.td_section_heading.td_style_1 .td_section_subtitle_up i:last-child {
  margin-left: 12px;
}
.td_section_heading.td_style_1 .td_section_subtitle_up.td_white_color i::before,
.td_section_heading.td_style_1 .td_section_subtitle_up.td_white_color i::after {
  background-color: var(--white-color);
}
.td_section_heading.td_style_1 .td_section_subtitle_up_2 {
  display: inline-block;
  padding: 5px 20px;
  border: 1px solid #ebeced;
  background-color: #fffdfa;
  border-radius: 30px;
}
@media (max-width: 991px) {
  .td_section_heading.td_style_1 br {
    display: none;
  }
}
.td_section_heading.td_style_1.td_type_1,
.td_section_heading.td_style_1.td_type_2,
.td_section_heading.td_style_1.td_type_3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  gap: 15px 30px;
}
@media (max-width: 991px) {
  .td_section_heading.td_style_1.td_type_1,
  .td_section_heading.td_style_1.td_type_2,
  .td_section_heading.td_style_1.td_type_3 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
}
.td_section_heading.td_style_1.td_type_1 .td_section_subtitle,
.td_section_heading.td_style_1.td_type_2 .td_section_subtitle,
.td_section_heading.td_style_1.td_type_3 .td_section_subtitle {
  margin-top: 0;
}
.td_section_heading.td_style_1.td_type_1 .td_section_heading_left,
.td_section_heading.td_style_1.td_type_2 .td_section_heading_left,
.td_section_heading.td_style_1.td_type_3 .td_section_heading_left {
  max-width: 750px;
}
.td_section_heading.td_style_1.td_type_1 .td_section_heading_right,
.td_section_heading.td_style_1.td_type_2 .td_section_heading_right,
.td_section_heading.td_style_1.td_type_3 .td_section_heading_right {
  max-width: 420px;
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
}
@media (max-width: 991px) {
  .td_section_heading.td_style_1.td_type_1
    .td_section_heading_right.td_pricing_switch,
  .td_section_heading.td_style_1.td_type_2
    .td_section_heading_right.td_pricing_switch,
  .td_section_heading.td_style_1.td_type_3
    .td_section_heading_right.td_pricing_switch {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    max-width: 100%;
    margin-top: 20px;
  }
}
.td_section_heading.td_style_1.td_type_2 .td_section_heading_right {
  max-width: 650px;
}
@media (max-width: 1400px) {
  .td_section_heading.td_style_1.td_with_tab_menu {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 20px 0px;
  }
}

.td_section_heading.td_style_2 {
  padding-bottom: 20px;
  position: relative;
}
.td_section_heading.td_style_2::before {
  content: "";
  height: 4px;
  width: 30px;
  background-color: var(--accent-color);
  position: absolute;
  bottom: 0;
  left: 0;
  border-radius: 5px;
}

.td_video_block.td_style_1 {
  min-height: 730px;
  padding: 100px 0 150px;
}
@media (max-width: 991px) {
  .td_video_block.td_style_1 {
    min-height: 550px;
    padding: 80px 0 160px;
  }
}
@media (max-width: 767px) {
  .td_video_block.td_style_1 br {
    display: none;
  }
}

.td_video_block.td_style_2 {
  min-height: 850px;
}
@media (max-width: 991px) {
  .td_video_block.td_style_2 {
    min-height: 450px;
  }
}
.td_video_block.td_style_2 .td_video_open {
  -webkit-transform: scale(2.4);
  transform: scale(2.4);
}
@media (max-width: 991px) {
  .td_video_block.td_style_2 .td_video_open {
    -webkit-transform: scale(1.6);
    transform: scale(1.6);
  }
}
.td_video_block.td_style_2 .td_player_btn {
  color: #fff;
}
.td_video_block.td_style_2 .td_player_btn:after {
  background-color: var(--accent-color);
}

.td_contact_box.td_style_1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px 50px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 40px 30px;
  min-height: 200px;
  margin-top: -100px;
}
@media (max-width: 991px) {
  .td_contact_box.td_style_1 {
    gap: 10px 20px;
  }
}
@media (max-width: 767px) {
  .td_contact_box.td_style_1 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
    gap: 20px 0px;
  }
}
.td_contact_box.td_style_1 .td_contact_box_or {
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  height: 84px;
  width: 84px;
}
@media (min-width: 768px) {
  .td_contact_box.td_style_1 .td_contact_box_left {
    text-align: right;
  }
}
.td_contact_box.td_style_1 a:hover {
  color: rgba(255, 255, 255, 0.7);
}

.td_rating {
  width: 114px;
  height: 18px;
  position: relative;
  font-size: 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #ffb930;
}
.td_rating i {
  margin-right: 3px;
}
.td_rating .td_rating_percentage {
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
}
.td_rating .td_rating_percentage {
  width: 50%;
}

.td_btn_box {
  width: 299px;
  margin-top: 60px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
@media (max-width: 1400px) {
  .td_btn_box svg {
    height: 240px;
  }
}
@media (max-width: 1199px) {
  .td_btn_box svg {
    height: 180px;
    width: 210px;
  }
}
@media (max-width: 991px) {
  .td_btn_box {
    width: 100%;
    margin-top: 20px;
  }
  .td_btn_box svg {
    display: none;
  }
}
.td_btn_box .td_btn_box_in {
  position: absolute;
  -webkit-transform: rotate(-61deg);
  transform: rotate(-61deg);
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  bottom: 10px;
  right: -150px;
}
@media (max-width: 1199px) {
  .td_btn_box .td_btn_box_in {
    right: -80px;
  }
}
@media (max-width: 1199px) {
  .td_btn_box .td_btn_box_in {
    position: initial;
    -webkit-transform: initial;
    transform: initial;
  }
}
.td_btn_box .td_btn.td_style_1:hover {
  -webkit-animation: bounce 2s;
  animation: bounce 2s;
}

.td_tab {
  display: none;
}
.td_tab.active {
  display: block;
}

.td_tab_links.td_style_1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 10px 30px;
}
@media (max-width: 991px) {
  .td_tab_links.td_style_1 {
    gap: 10px 10px;
  }
}
.td_tab_links.td_style_1 a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding: 10px 20px;
  border: 1px solid var(--accent-color);
  border-radius: 10px;
}
.td_tab_links.td_style_1 .active a {
  background-color: var(--accent-color);
  color: #fff;
}

.td_tab_links.td_style_2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 15px 20px;
}
.td_tab_links.td_style_2 a {
  padding: 10px 20px;
  background-color: #fff;
  border-radius: 30px;
  -webkit-box-shadow: 4px 4px 0px 0px rgba(0, 0, 0, 0.15);
  box-shadow: 4px 4px 0px 0px rgba(0, 0, 0, 0.15);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
.td_tab_links.td_style_2 .active a {
  background-color: var(--accent-color);
  color: #fff;
}
.td_tab_links.td_style_2.td_type_1 {
  border-radius: 35px;
  border: 1px solid rgba(40, 11, 183, 0.1);
  background: rgba(235, 236, 237, 0.3);
  padding: 10px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media (max-width: 1400px) {
  .td_tab_links.td_style_2.td_type_1 {
    gap: 5px 10px;
  }
}
@media (max-width: 1199px) {
  .td_tab_links.td_style_2.td_type_1 {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 16px;
  }
}
.td_tab_links.td_style_2.td_type_1 a {
  -webkit-box-shadow: none;
  box-shadow: none;
  background-color: transparent;
}
@media (max-width: 991px) {
  .td_tab_links.td_style_2.td_type_1 a {
    padding: 8px 12px;
  }
}
.td_tab_links.td_style_2.td_type_1 .active a {
  background-color: var(--accent-color);
}
.td_tab_links.td_style_2.td_type_2 {
  border: 1px solid var(--accent-color);
  border-radius: 0px;
  margin-bottom: 30px;
  gap: 0px 20px;
}
.td_tab_links.td_style_2.td_type_2 a {
  border-radius: 0px;
  -webkit-box-shadow: initial;
  box-shadow: initial;
}

.td_tab_links.td_style_3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 30px 0;
  border: 1px solid var(--border-color);
  border-left: 0;
  border-right: 0;
}
@media (max-width: 1400px) {
  .td_tab_links.td_style_3.td_fs_24 {
    font-size: 20px;
  }
}
@media (max-width: 470px) {
  .td_tab_links.td_style_3 {
    padding: 20px 0;
  }
  .td_tab_links.td_style_3.td_fs_24 {
    font-size: 17px;
  }
}
@media (max-width: 370px) {
  .td_tab_links.td_style_3.td_fs_24 {
    font-size: 14px;
  }
}
.td_tab_links.td_style_3 li:not(:last-child) {
  padding-right: 30px;
  margin-right: 30px;
  border-right: 1px solid var(--heading-color);
}
@media (max-width: 1400px) {
  .td_tab_links.td_style_3 li:not(:last-child) {
    padding-right: 20px;
    margin-right: 20px;
  }
}
@media (max-width: 470px) {
  .td_tab_links.td_style_3 li:not(:last-child) {
    padding-right: 10px;
    margin-right: 10px;
  }
}
.td_tab_links.td_style_3 a {
  display: inline-block;
  position: relative;
}
.td_tab_links.td_style_3 a::before {
  content: "";
  position: absolute;
  height: 2px;
  width: 0%;
  bottom: 0;
  left: 0;
  background-color: var(--heading-color);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.td_tab_links.td_style_3 .active a::before {
  width: 100%;
}

.td_tab_links.td_style_4 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 10px 20px;
}
@media (max-width: 1400px) {
  .td_tab_links.td_style_4 {
    gap: 10px;
  }
}
.td_tab_links.td_style_4 a {
  display: inline-block;
  border: 1px solid var(--accent-color);
  padding: 12px 20px;
}
@media (max-width: 1400px) {
  .td_tab_links.td_style_4 a {
    padding: 10px 15px;
  }
}
.td_tab_links.td_style_4 .active a {
  background-color: var(--accent-color);
  color: #fff;
}

.td_tabs.td_style_1 .td_mb_40 {
  margin-bottom: 30px;
}

.td_tab_comming_soon {
  border: 1px dashed var(--border-color);
  border-radius: 10px;
  height: 200px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.td_list.td_style_1 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 20px;
}
@media (max-width: 1400px) {
  .td_list.td_style_1 {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 10px;
  }
}
@media (max-width: 410px) {
  .td_list.td_style_1 {
    grid-template-columns: repeat(1, 1fr);
  }
}
.td_list.td_style_1 li {
  border-left: 4px solid var(--heading-color);
  border-radius: 10px;
  position: relative;
  padding: 16px 16px 16px 52px;
}
@media (max-width: 1400px) {
  .td_list.td_style_1 li {
    padding: 12px 10px 12px 52px;
  }
}
.td_list.td_style_1 .td_list_icon {
  position: absolute;
  height: 30px;
  width: 30px;
  border-radius: 50%;
  background-color: var(--accent-color);
  color: #fff;
  left: 12px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.td_list.td_style_2 {
  position: relative;
  z-index: 2;
}
.td_list.td_style_2 li {
  padding-left: 38px;
  position: relative;
}
.td_list.td_style_2 li svg {
  position: absolute;
  left: 0;
  top: 5px;
}
.td_list.td_style_2 li:not(:last-child) {
  margin-bottom: 30px;
}
@media (max-width: 1199px) {
  .td_list.td_style_2 li:not(:last-child) {
    margin-bottom: 20px;
  }
}
.td_list.td_style_2.td_fs_20 li:not(:last-child) {
  margin-bottom: 24px;
}
.td_list.td_style_2.td_fs_20 li svg {
  top: 3px;
}
.td_list.td_style_2.td_type_1 li {
  padding-left: 44px;
}
.td_list.td_style_2.td_type_1 li svg {
  top: 2px;
}
.td_list.td_style_2.td_type_2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 24px;
}
@media (max-width: 1199px) {
  .td_list.td_style_2.td_type_2 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 15px;
  }
}
.td_list.td_style_2.td_type_2 li {
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  width: calc(50% - 12px);
  margin: 0;
  padding-left: 32px;
}
@media (max-width: 1199px) {
  .td_list.td_style_2.td_type_2 li {
    width: 100%;
  }
}
.td_list.td_style_2.td_type_2 li svg {
  top: 2px;
}

.td_list_2_shape {
  position: absolute;
  opacity: 0.03;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 25px;
}

.td_list.td_style_3 li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
}
.td_list.td_style_3 li:not(:last-child) {
  margin-bottom: 20px;
}
.td_list.td_style_3 .td_list_icon {
  height: 80px;
  width: 80px;
  border-radius: 50%;
  background-color: rgba(235, 236, 237, 0.5);
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
}

.td_list_3_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
}
@media (max-width: 500px) {
  .td_list_3_wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
}

.td_list_3_box {
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  width: 143px;
  padding: 33px 20px;
  border-radius: 70px;
}
@media (max-width: 500px) {
  .td_list_3_box {
    padding: 20px 20px;
    width: 100%;
  }
}

.td_list.td_style_4 {
  display: grid;
  grid-gap: 30px 50px;
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 575px) {
  .td_list.td_style_4 {
    grid-gap: 15px;
    grid-template-columns: repeat(1, 1fr);
  }
}
.td_list.td_style_4 li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.td_list.td_style_4 .td_list_icon {
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  width: 80px;
  height: 80px;
  position: relative;
  -webkit-clip-path: inset(0 round 50px 50px 50px 50px);
  clip-path: inset(0 round 50px 50px 50px 50px);
  padding: 8px;
}
.td_list.td_style_4 .td_list_icon:before {
  content: "";
  position: absolute;
  left: -2px;
  top: -2px;
  right: -2px;
  bottom: -2px;
  border: 3px dashed #6440fb;
  border-radius: 100px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.td_list.td_style_4 .td_list_icon_icon_in {
  height: 100%;
  width: 100%;
  border-radius: 50%;
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    color-stop(0.07%, #fff0d4),
    color-stop(95.86%, #d6fff7)
  );
  background: linear-gradient(90deg, #fff0d4 0.07%, #d6fff7 95.86%);
}
.td_list.td_style_4 li:hover .td_list_icon::before {
  -webkit-animation: rotate-anim 15s linear infinite;
  animation: rotate-anim 15s linear infinite;
}

.td_list.td_style_5 {
  border-left: 5px solid var(--accent-color);
  padding-left: 20px;
  display: inline-block;
}
.td_list.td_style_5 li:not(:last-child) {
  border-bottom: 1px solid #ebeced;
  padding-bottom: 15px;
  margin-bottom: 15px;
}

.td_image_box.td_style_1 {
  position: relative;
  padding-bottom: 70px;
  padding-right: 100px;
}
@media (max-width: 1400px) {
  .td_image_box.td_style_1 {
    padding-right: 30px;
  }
}
@media (max-width: 575px) {
  .td_image_box.td_style_1 {
    padding-right: 15px;
    padding-bottom: 15px;
  }
}
.td_image_box.td_style_1 .td_image_box_thumb {
  border-radius: 50px;
  width: 100%;
}

.td_image_box.td_style_2 {
  margin-right: 70px;
  padding-bottom: 130px;
  position: relative;
}
@media (max-width: 1400px) {
  .td_image_box.td_style_2 {
    margin-right: 20px;
  }
}
@media (max-width: 1199px) {
  .td_image_box.td_style_2 {
    margin-right: 0px;
  }
}
.td_image_box.td_style_2 .td_image_box_img_1 {
  padding-right: 30%;
  position: relative;
  z-index: 2;
}
.td_image_box.td_style_2 .td_image_box_img_1 img {
  border-radius: 200px;
}
.td_image_box.td_style_2 .td_image_box_img_2 {
  width: 53%;
  max-width: 288px;
  border-radius: 137px;
  position: absolute;
  bottom: 32px;
  right: 0;
}
.td_image_box.td_style_2 .td_image_box_img_2 .td_image_box_img_2_icon {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  bottom: 25px;
  z-index: 1;
  border-radius: 30px;
}
.td_image_box.td_style_2 .td_image_box_img_2 .td_image_box_img_2_thumb {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: inherit;
  position: relative;
  z-index: 1;
}
.td_image_box.td_style_2 .td_image_box_img_2::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  right: -8px;
  bottom: -8px;
  border-radius: 50%;
  background-color: var(--accent-color);
  opacity: 0.43;
}
.td_image_box.td_style_2 .td_image_box_shape_1 {
  height: 200px;
  width: 200px;
  border-radius: 50%;
  background-color: #d9d9d9;
  opacity: 0.15;
  position: absolute;
  left: 0;
  bottom: 0;
}
.td_image_box.td_style_2 .td_image_box_shape_2 {
  height: 216px;
  width: 216px;
  border-radius: 50%;
  border: 4px solid var(--accent-color);
  position: absolute;
  left: 27%;
  bottom: 35px;
}
@media (max-width: 575px) {
  .td_image_box.td_style_2 .td_image_box_shape_2 {
    left: 0;
  }
}
.td_image_box.td_style_2 .td_image_box_shape_3 {
  position: absolute;
  left: -100px;
  top: 0;
}
.td_image_box.td_style_2 .td_image_box_shape_3 img,
.td_image_box.td_style_2 .td_image_box_shape_3 svg {
  -webkit-animation: animo-x 9s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  animation: animo-x 9s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}
.td_image_box.td_style_2 .td_player_btn_wrap {
  position: absolute;
  z-index: 3;
  bottom: 30px;
  left: 65px;
}
.td_image_box.td_style_2 .td_player_btn {
  color: #fff;
}
.td_image_box.td_style_2 .td_player_btn:after {
  background-color: var(--accent-color);
}
.td_image_box.td_style_2 .td_player_btn::before {
  z-index: 0;
  visibility: visible;
}
.td_image_box.td_style_2 .td_award_box_icon {
  height: 67px;
  width: 67px;
  background-color: #000;
  -webkit-box-shadow: 2px 2px 0px rgba(40, 11, 183, 0.1);
  box-shadow: 2px 2px 0px rgba(40, 11, 183, 0.1);
  border-radius: 50%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 20px;
}
.td_image_box.td_style_2 .td_award_box_in {
  -webkit-box-shadow: 0px 0px 100px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 100px 0px rgba(0, 0, 0, 0.1);
  background-color: #fff;
  width: 159px;
  border-radius: 20px;
  text-align: center;
  padding: 0px 15px 20px 15px;
}
.td_image_box.td_style_2 .td_award_box_in p {
  display: inline-block;
  padding: 20px 7px;
  border-radius: 0px 0px 50px 50px;
  margin-bottom: 15px;
}
.td_image_box.td_style_2 .td_award_box {
  position: absolute;
  top: 15%;
  right: -25px;
  z-index: 2;
}
@media (max-width: 1199px) {
  .td_image_box.td_style_2 .td_award_box {
    right: 0;
    top: 8%;
  }
}

.td_image_box.td_style_3 {
  margin-right: 56px;
  position: relative;
  padding-bottom: 220px;
}
@media (max-width: 1400px) {
  .td_image_box.td_style_3 {
    margin-right: 20px;
  }
}
@media (max-width: 1199px) {
  .td_image_box.td_style_3 {
    margin-right: 0px;
  }
}
.td_image_box.td_style_3 .td_image_box_img_1 {
  padding-right: 220px;
}
@media (max-width: 450px) {
  .td_image_box.td_style_3 .td_image_box_img_1 {
    padding-right: 205px;
  }
}
.td_image_box.td_style_3 .td_image_box_img_2 {
  padding-left: 220px;
  position: absolute;
  bottom: 0;
  height: 100%;
  padding-top: 220px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}
@media (max-width: 450px) {
  .td_image_box.td_style_3 .td_image_box_img_2 {
    padding-left: 205px;
  }
}
.td_image_box.td_style_3 .td_review_box {
  height: 200px;
  width: 200px;
  border-radius: 50%;
  padding: 15px;
  position: absolute;
  left: 0;
  bottom: 0;
}
.td_image_box.td_style_3 .td_review_box img {
  max-width: 93px;
}
.td_image_box.td_style_3 .td_review_box h3 {
  margin-bottom: -5px;
}
.td_image_box.td_style_3 .td_sign_box {
  width: 220px;
  height: 220px;
  position: absolute;
  right: 0;
  top: 0;
}
.td_image_box.td_style_3 .td_sign_box > svg {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  opacity: 0.03;
}
.td_image_box.td_style_3 .td_sign_box .td_sign_box_in {
  -webkit-transform: rotate(-41deg);
  transform: rotate(-41deg);
  margin-top: 30px;
  margin-left: 10px;
}
.td_image_box.td_style_3 .td_sign_box .td_award_box_icon {
  height: 67px;
  width: 67px;
  background-color: var(--accent-color);
  -webkit-box-shadow: 2px 2px 0px rgba(40, 11, 183, 0.1);
  box-shadow: 2px 2px 0px rgba(40, 11, 183, 0.1);
  border-radius: 50%;
  margin-bottom: 20px;
  position: absolute;
  right: 0;
  top: 134px;
}

.td_image_box.td_style_4 {
  margin-right: 96px;
  position: relative;
  text-align: center;
  padding-top: 20px;
}
@media (max-width: 1400px) {
  .td_image_box.td_style_4 {
    margin-right: 50px;
  }
}
@media (max-width: 1199px) {
  .td_image_box.td_style_4 {
    margin-right: 0px;
  }
}
.td_image_box.td_style_4 .td_image_box_img_1 {
  position: relative;
  overflow: hidden;
  z-index: 2;
}
.td_image_box.td_style_4 .td_image_box_img_1::before {
  content: "";
  position: absolute;
  height: 100px;
  width: 630px;
  background-color: #fff;
  bottom: -47px;
  left: 0;
  -webkit-transform: rotate(-10deg);
  transform: rotate(-10deg);
}
.td_image_box.td_style_4 .td_image_box_shape_1 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}
.td_image_box.td_style_4 .td_image_box_shape_1 svg {
  width: 100%;
}
.td_image_box.td_style_4 .td_image_box_shape_2 {
  position: absolute;
  left: 70%;
  bottom: 25%;
}
.td_image_box.td_style_4 .td_image_box_shape_3 {
  position: absolute;
  bottom: 9%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
.td_image_box.td_style_4 .td_image_box_shape_4 {
  position: absolute;
  top: 0px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.td_image_box.td_style_5 {
  margin-right: 30px;
  position: relative;
  padding-bottom: 200px;
  max-width: 610px;
}
@media (max-width: 1400px) {
  .td_image_box.td_style_5 {
    margin-right: 0;
  }
}
.td_image_box.td_style_5 .td_image_box_img_1 {
  padding-right: 35%;
}
@media (max-width: 420px) {
  .td_image_box.td_style_5 .td_image_box_img_1 {
    padding-right: 22%;
  }
}
.td_image_box.td_style_5 .td_image_box_img_2 {
  position: absolute;
  bottom: 0;
  right: 0;
  padding-left: 32%;
  height: 475px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}
@media (max-width: 420px) {
  .td_image_box.td_style_5 .td_image_box_img_2 {
    padding-left: 20%;
  }
}
.td_image_box.td_style_5 .td_image_box_img_2 img {
  max-height: 100%;
}
.td_image_box.td_style_5 .td_image_box_circle {
  width: 170px;
  height: 170px;
  -webkit-clip-path: inset(0 round 100px 100px 100px 100px);
  clip-path: inset(0 round 100px 100px 100px 100px);
  padding: 8px;
  position: absolute;
  right: 50px;
  top: 20px;
}
@media (max-width: 1400px) {
  .td_image_box.td_style_5 .td_image_box_circle {
    right: 20px;
  }
}
@media (max-width: 420px) {
  .td_image_box.td_style_5 .td_image_box_circle {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
    right: 0px;
  }
}
.td_image_box.td_style_5 .td_image_box_circle::before {
  content: "";
  position: absolute;
  left: -4px;
  top: -4px;
  right: -4px;
  bottom: -4px;
  border: 6px dashed rgba(0, 0, 27, 0.5);
  border-radius: 100px;
}
.td_image_box.td_style_5 .td_image_box_circle .td_image_box_circle_in {
  height: 100%;
  width: 100%;
  border-radius: 50%;
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    color-stop(0.07%, #fff0d4),
    color-stop(95.86%, #d6fff7)
  );
  background: linear-gradient(90deg, #fff0d4 0.07%, #d6fff7 95.86%);
  position: relative;
  padding: 9px;
}
.td_image_box.td_style_5 .td_image_box_circle .td_image_box_circle_icon {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.td_image_box.td_style_5 .td_image_box_circle .td_image_box_circle_text {
  width: 100%;
  -webkit-animation: rotate-anim 35s linear infinite;
  animation: rotate-anim 35s linear infinite;
}

.td_image_box.td_style_6 {
  margin-right: 56px;
  position: relative;
  max-width: 580px;
}
@media (max-width: 1400px) {
  .td_image_box.td_style_6 {
    margin-right: 20px;
  }
}
@media (max-width: 1199px) {
  .td_image_box.td_style_6 {
    margin-right: 0px;
  }
}
.td_image_box.td_style_6 .td_image_box_img_1 {
  padding-right: 26%;
  position: relative;
  z-index: 2;
}
.td_image_box.td_style_6 .td_image_box_img_1 img {
  border-radius: 250px;
}
.td_image_box.td_style_6 .td_image_box_img_2 {
  position: absolute;
  z-index: 3;
  bottom: 0;
  right: 0;
  padding-left: 47%;
}
.td_image_box.td_style_6 .td_image_box_img_2 img {
  border: 20px solid #fff;
  border-radius: 200px;
}
.td_image_box.td_style_6 .td_image_box_img_2_in {
  position: relative;
}
.td_image_box.td_style_6 .td_video_open {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 2;
}
.td_image_box.td_style_6 .td_player_btn {
  color: #fff;
}
.td_image_box.td_style_6 .td_player_btn:after {
  background-color: var(--accent-color);
}
.td_image_box.td_style_6 .td_player_btn::before {
  background-color: #fff;
}
.td_image_box.td_style_6 .td_image_box_shape_1 {
  height: 280px;
  width: 280px;
  border: 20px solid #ebeced;
  opacity: 0.5;
  border-radius: 50%;
  top: 50px;
  right: 0;
}
@media (max-width: 575px) {
  .td_image_box.td_style_6 .td_image_box_shape_1 {
    height: 200px;
    width: 200px;
  }
}
.td_image_box.td_style_6 .td_image_box_shape_2 {
  top: 95px;
  right: 45px;
}
.td_image_box.td_style_6 .td_image_box_shape_2 img {
  -webkit-animation: 30s linear 0s infinite normal none running rotate-anim;
  animation: 30s linear 0s infinite normal none running rotate-anim;
}
.td_image_box.td_style_6.td_type_1 {
  padding-bottom: 130px;
  margin-right: 76px;
}
@media (max-width: 1400px) {
  .td_image_box.td_style_6.td_type_1 {
    margin-right: 20px;
  }
}
@media (max-width: 1199px) {
  .td_image_box.td_style_6.td_type_1 {
    margin-right: 0px;
  }
}
.td_image_box.td_style_6.td_type_1 .td_image_box_img_2 {
  bottom: 40px;
}
.td_image_box.td_style_6.td_type_1 .td_image_box_img_2 img {
  border-width: 8px;
}
.td_image_box.td_style_6.td_type_1 .td_image_box_shape_3 {
  left: 22%;
  bottom: -10px;
}
.td_image_box.td_style_6.td_type_1 .td_image_box_shape_3 img {
  -webkit-animation: 35s linear 0s infinite normal none running rotate-anim;
  animation: 35s linear 0s infinite normal none running rotate-anim;
}
.td_image_box.td_style_6.td_type_1 .td_player_btn {
  color: var(--accent-color);
}
.td_image_box.td_style_6.td_type_1 .td_player_btn:after {
  background-color: #fff;
}
.td_image_box.td_style_6.td_type_2 {
  padding-bottom: 130px;
  margin-right: 76px;
}
@media (max-width: 1400px) {
  .td_image_box.td_style_6.td_type_2 {
    margin-right: 20px;
  }
}
@media (max-width: 1199px) {
  .td_image_box.td_style_6.td_type_2 {
    margin-right: 0px;
  }
}
.td_image_box.td_style_6.td_type_2 .td_image_box_img_2 {
  bottom: 40px;
}
.td_image_box.td_style_6.td_type_2 .td_image_box_img_2 img {
  border-width: 8px;
}
.td_image_box.td_style_6.td_type_2 .td_image_box_shape_3 {
  top: 12%;
  right: 0;
}
.td_image_box.td_style_6.td_type_2 .td_image_box_shape_3 img {
  -webkit-animation: 35s linear 0s infinite normal none running rotate-anim;
  animation: 35s linear 0s infinite normal none running rotate-anim;
}
.td_image_box.td_style_6.td_type_2 .td_image_box_shape_2 {
  top: -20px;
  right: initial;
  left: -5px;
}
.td_image_box.td_style_6.td_type_2 .td_image_box_shape_1 {
  border-color: var(--accent-color);
  right: 35%;
  top: initial;
  bottom: 0;
  opacity: 1;
}

.td_image_box.td_style_7 {
  margin-right: 56px;
  position: relative;
  padding-bottom: 113px;
}
@media (max-width: 1400px) {
  .td_image_box.td_style_7 {
    margin-right: 20px;
  }
}
@media (max-width: 1199px) {
  .td_image_box.td_style_7 {
    margin-right: 0px;
  }
}
.td_image_box.td_style_7 .td_image_box_img_1 {
  padding-right: 25%;
}
.td_image_box.td_style_7 .td_image_box_img_2 {
  position: absolute;
  bottom: 0;
  right: 0;
  padding-left: 31.5%;
  height: 365px;
}
.td_image_box.td_style_7 .td_image_box_img_2 img {
  max-height: 100%;
  border: 8px solid;
  border-top-color: #fff;
  border-left-color: #fff;
  border-right-color: var(--accent-color);
  border-bottom-color: var(--accent-color);
}
.td_image_box.td_style_7 .td_image_box_img_2_in {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.td_image_box.td_style_7 .td_image_box_img_2_icon {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  bottom: 20px;
}
.td_image_box.td_style_7 .td_image_box_shape_1 {
  position: absolute;
  right: 15px;
  top: 22%;
  z-index: 1;
}
.td_image_box.td_style_7 .td_image_box_shape_1 > svg {
  -webkit-animation: 30s linear 0s infinite normal none running rotate-anim;
  animation: 30s linear 0s infinite normal none running rotate-anim;
}
.td_image_box.td_style_7 .td_image_box_shape_1_in {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  height: 50px;
  width: 50px;
  border-radius: 50%;
  -webkit-box-shadow: 2px 2px 0px rgba(40, 11, 183, 0.1);
  box-shadow: 2px 2px 0px rgba(40, 11, 183, 0.1);
}
.td_image_box.td_style_7 .td_image_box_shape_2 {
  position: absolute;
  top: 18px;
  right: 10%;
}
@media (max-width: 575px) {
  .td_image_box.td_style_7 .td_image_box_shape_2 {
    display: none;
  }
}

.td_image_box.td_style_8 {
  width: 490px;
  height: 490px;
  margin-bottom: -90px;
  position: relative;
}
@media (max-width: 991px) {
  .td_image_box.td_style_8 {
    margin-bottom: 0;
  }
}
@media (max-width: 575px) {
  .td_image_box.td_style_8 {
    width: 100%;
    height: initial;
  }
}
.td_image_box.td_style_8 .td_image_box_img_1 {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 50%;
  z-index: 1;
  position: relative;
  z-index: 1;
}
.td_image_box.td_style_8 .td_image_box_img_2,
.td_image_box.td_style_8 .td_image_box_img_3 {
  height: 124px;
  width: 124px;
  border: 4px solid #fff;
  border-radius: 50%;
  z-index: 2;
}
@media (max-width: 575px) {
  .td_image_box.td_style_8 .td_image_box_img_2,
  .td_image_box.td_style_8 .td_image_box_img_3 {
    width: 23%;
    height: initial;
    border-width: 2px;
  }
}
.td_image_box.td_style_8 .td_image_box_img_2 img,
.td_image_box.td_style_8 .td_image_box_img_3 img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: inherit;
}
.td_image_box.td_style_8 .td_image_box_img_2 {
  right: 15px;
  top: 15px;
}
.td_image_box.td_style_8 .td_image_box_img_3 {
  right: 15px;
  bottom: 15px;
}
.td_image_box.td_style_8 .td_image_box_shape_1 {
  top: 23%;
  width: 262px;
  left: 87%;
}
@media (max-width: 1400px) {
  .td_image_box.td_style_8 .td_image_box_shape_1 {
    left: 65%;
  }
}
@media (max-width: 1199px) {
  .td_image_box.td_style_8 .td_image_box_shape_1 {
    left: 50%;
  }
}
@media (max-width: 575px) {
  .td_image_box.td_style_8 .td_image_box_shape_1 {
    display: none;
  }
}
.td_image_box.td_style_8 .td_image_box_shape_1 img {
  -webkit-animation: animo-x 9s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  animation: animo-x 9s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}
.td_image_box.td_style_8.td_type_1 {
  margin-bottom: 0;
}

.td_image_box.td_style_9 {
  margin-left: 60px;
  margin-top: 50px;
  position: relative;
}
@media (max-width: 1400px) {
  .td_image_box.td_style_9 {
    margin-left: 0;
  }
}
@media (max-width: 575px) {
  .td_image_box.td_style_9 {
    margin-top: 0;
  }
}
.td_image_box.td_style_9 .td_image_box_shape_2 {
  right: 20px;
  top: 60px;
  z-index: 1;
}
.td_image_box.td_style_9 .td_image_box_shape_3 {
  left: 37%;
  top: 58%;
}
@media (max-width: 575px) {
  .td_image_box.td_style_9 .td_image_box_shape_3 {
    display: none;
  }
}
.td_image_box.td_style_9 .td_image_box_shape_4 {
  top: -4%;
  left: 17%;
}
@media (max-width: 575px) {
  .td_image_box.td_style_9 .td_image_box_shape_4 {
    display: none;
  }
}
.td_image_box.td_style_9 .td_image_box_shape_5 {
  top: -2%;
  right: 5%;
  -webkit-animation: swing-anim 10s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  animation: swing-anim 10s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}
@media (max-width: 575px) {
  .td_image_box.td_style_9 .td_image_box_shape_5 {
    display: none;
  }
}

.td_image_box.td_style_10 {
  margin-left: 36px;
  padding-left: 40px;
  position: relative;
}
@media (max-width: 1199px) {
  .td_image_box.td_style_10 {
    margin-left: 0;
  }
}
.td_image_box.td_style_10 .td_image_box_contact {
  width: 250px;
  height: 250px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 25px;
  position: absolute;
  left: 0;
  bottom: 0;
}
.td_image_box.td_style_10 .td_image_box_contact i {
  height: 60px;
  width: 60px;
  border: 2px solid var(--heading-color);
  background-color: #fff;
  position: absolute;
  top: -30px;
  left: 50%;
  margin-left: -30px;
  border-radius: 50%;
  font-size: 20px;
}

.td_image_box.td_style_11 {
  padding: 0 6%;
}
.td_image_box.td_style_11::before {
  content: "";
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 0;
  height: 80%;
  background-color: #fff;
}
.td_image_box.td_style_11 img {
  position: relative;
  z-index: 1;
}
.td_image_box.td_style_11 .td_image_box_text {
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 2;
  padding: 20px 25px;
  width: 100%;
  max-width: 250px;
}

.td_wrap_box_1 {
  max-width: 1680px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  background-color: #ecf2ff;
}
.td_wrap_box_1 .td_wrap_box_1_shape_1 {
  right: 30px;
  bottom: 30px;
  -webkit-animation: spinAnimaiton 6s linear infinite;
  animation: spinAnimaiton 6s linear infinite;
}

.td_shape_section_1,
.td_shape_section_2,
.td_shape_section_3,
.td_shape_section_4,
.td_shape_section_5,
.td_shape_section_6,
.td_shape_section_7,
.td_shape_section_8,
.td_shape_section_9,
.td_shape_section_10,
.td_shape_section_11,
.td_shape_section_12 {
  position: relative;
  overflow: hidden;
}
.td_shape_section_1 .td_shape,
.td_shape_section_2 .td_shape,
.td_shape_section_3 .td_shape,
.td_shape_section_4 .td_shape,
.td_shape_section_5 .td_shape,
.td_shape_section_6 .td_shape,
.td_shape_section_7 .td_shape,
.td_shape_section_8 .td_shape,
.td_shape_section_9 .td_shape,
.td_shape_section_10 .td_shape,
.td_shape_section_11 .td_shape,
.td_shape_section_12 .td_shape {
  position: absolute;
}
@media (max-width: 991px) {
  .td_shape_section_1 .td_shape,
  .td_shape_section_2 .td_shape,
  .td_shape_section_3 .td_shape,
  .td_shape_section_4 .td_shape,
  .td_shape_section_5 .td_shape,
  .td_shape_section_6 .td_shape,
  .td_shape_section_7 .td_shape,
  .td_shape_section_8 .td_shape,
  .td_shape_section_9 .td_shape,
  .td_shape_section_10 .td_shape,
  .td_shape_section_11 .td_shape,
  .td_shape_section_12 .td_shape {
    display: none;
  }
}
.td_shape_section_1 > *:not(.td_shape),
.td_shape_section_2 > *:not(.td_shape),
.td_shape_section_3 > *:not(.td_shape),
.td_shape_section_4 > *:not(.td_shape),
.td_shape_section_5 > *:not(.td_shape),
.td_shape_section_6 > *:not(.td_shape),
.td_shape_section_7 > *:not(.td_shape),
.td_shape_section_8 > *:not(.td_shape),
.td_shape_section_9 > *:not(.td_shape),
.td_shape_section_10 > *:not(.td_shape),
.td_shape_section_11 > *:not(.td_shape),
.td_shape_section_12 > *:not(.td_shape) {
  position: relative;
  z-index: 4;
}
@media (max-width: 991px) {
  .td_shape_section_1 > .position-absolute,
  .td_shape_section_2 > .position-absolute,
  .td_shape_section_3 > .position-absolute,
  .td_shape_section_4 > .position-absolute,
  .td_shape_section_5 > .position-absolute,
  .td_shape_section_6 > .position-absolute,
  .td_shape_section_7 > .position-absolute,
  .td_shape_section_8 > .position-absolute,
  .td_shape_section_9 > .position-absolute,
  .td_shape_section_10 > .position-absolute,
  .td_shape_section_11 > .position-absolute,
  .td_shape_section_12 > .position-absolute {
    display: none;
  }
}

.td_shape_section_1 .td_shape_position_1 {
  left: 4%;
  top: 25%;
}
.td_shape_section_1 .td_shape_position_1 img {
  -webkit-animation: animo-x 9s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  animation: animo-x 9s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}
.td_shape_section_1 .td_shape_position_2 {
  height: 34px;
  width: 34px;
  border-radius: 50%;
  border: 3px solid var(--heading-color);
  right: 5%;
  top: 28%;
  -webkit-animation: up-down-anim 6s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  animation: up-down-anim 6s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}
.td_shape_section_1 .td_shape_position_3 {
  height: 20px;
  width: 20px;
  border-radius: 50%;
  border: 2px solid var(--heading-color);
  opacity: 0.7;
  right: 14%;
  top: 70%;
  -webkit-animation: particalAnimation 20s alternate infinite linear;
  animation: particalAnimation 20s alternate infinite linear;
}
.td_shape_section_1 .td_shape_position_4 {
  left: 5%;
  top: 28%;
}
.td_shape_section_1 .td_shape_position_4 svg {
  -webkit-animation: swing-anim 10s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  animation: swing-anim 10s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

.td_shape_section_2 .td_shape_position_1 {
  left: 4%;
  top: 14%;
  -webkit-animation: swing-anim 10s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  animation: swing-anim 10s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}
.td_shape_section_2 .td_shape_position_2 {
  left: 4%;
  top: 45%;
}
.td_shape_section_2 .td_shape_position_3 {
  left: 16%;
  top: 64%;
}
.td_shape_section_2 .td_shape_position_3 img {
  -webkit-animation: animo-x 9s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  animation: animo-x 9s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}
.td_shape_section_2 .td_shape_position_4 {
  right: 6%;
  top: 52%;
  -webkit-animation: spinAnimaiton 6s linear infinite;
  animation: spinAnimaiton 6s linear infinite;
}
.td_shape_section_2 .td_shape_position_5 {
  height: 40px;
  width: 40px;
  border-radius: 50%;
  border: 2px solid var(--accent-color);
  right: 7%;
  top: 20%;
  -webkit-animation: up-down-anim 6s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  animation: up-down-anim 6s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

.td_shape_section_3 .td_shape_position_1 {
  left: 2%;
  top: 24%;
}
.td_shape_section_3 .td_shape_position_1 img {
  -webkit-animation: animo-x 9s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  animation: animo-x 9s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}
.td_shape_section_3 .td_shape_position_2 {
  left: 5%;
  top: 75%;
}
.td_shape_section_3 .td_shape_position_2 img {
  -webkit-animation: spinAnimaiton 6s linear infinite;
  animation: spinAnimaiton 6s linear infinite;
}
.td_shape_section_3 .td_shape_position_3 {
  right: 7%;
  top: 15%;
  -webkit-animation: swing-anim 10s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  animation: swing-anim 10s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}
.td_shape_section_3 .td_shape_position_4 {
  height: 34px;
  width: 34px;
  border-radius: 50%;
  border: 1px solid #8e56ff;
  opacity: 0.5;
  right: 5%;
  top: 68%;
  -webkit-animation: animo-x 9s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  animation: animo-x 9s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

.td_shape_section_4 .td_shape_position_1 {
  right: 3%;
  top: 75%;
}
.td_shape_section_4 .td_shape_position_2 {
  right: 5%;
  top: 30%;
  -webkit-animation: spinAnimaiton 6s linear infinite;
  animation: spinAnimaiton 6s linear infinite;
}
.td_shape_section_4 .td_shape_position_3 {
  left: 3%;
  top: 70%;
}
.td_shape_section_4 .td_shape_position_4 {
  left: 4%;
  top: 40%;
  -webkit-animation: animo-x 9s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  animation: animo-x 9s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}
.td_shape_section_4 .td_shape_position_5 {
  left: 0;
  top: 40%;
}
.td_shape_section_4 .td_shape_position_6 {
  right: 5%;
  top: 70%;
}
.td_shape_section_4 .td_shape_position_7 {
  right: 0;
  top: 22%;
}
.td_shape_section_4 .td_shape_position_8 {
  right: 9%;
  top: 40%;
}

.td_shape_section_5 .td_shape_position_1,
.td_shape_section_5 .td_shape_position_4 {
  height: 520px;
  width: 520px;
  border: 4px solid #fff;
  opacity: 0.3;
  border-radius: 50%;
  left: -250px;
  top: -250px;
}
.td_shape_section_5 .td_shape_position_2 {
  left: 4%;
  bottom: 9%;
}
.td_shape_section_5 .td_shape_position_3 {
  height: 520px;
  width: 520px;
  background-color: var(--heading-color);
  opacity: 0.3;
  bottom: -167px;
  right: -90px;
  border-radius: 50%;
}
.td_shape_section_5 .td_shape_position_4 {
  left: initial;
  right: -229px;
  top: initial;
  bottom: 0;
  border-width: 1px;
}
.td_shape_section_5 .td_shape_position_5 {
  top: 35px;
  right: 35px;
}
.td_shape_section_5 .td_shape_position_6 {
  right: 135px;
  bottom: 130px;
}
@media (max-width: 1300px) {
  .td_shape_section_5 .td_shape_position_6 {
    right: 40px;
    bottom: 80px;
  }
}

.td_shape_section_6 .td_shape_position_1 {
  left: 5%;
  top: 55%;
  -webkit-animation: swing-anim 10s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  animation: swing-anim 10s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  height: 42px;
  width: 42px;
  border-radius: 50%;
  opacity: 0.7;
}
.td_shape_section_6 .td_shape_position_1::before,
.td_shape_section_6 .td_shape_position_1::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  border-radius: 50%;
  border: 1px solid;
  left: 0;
}
.td_shape_section_6 .td_shape_position_1::before {
  top: 0px;
  border-color: #fff;
  background-color: var(--heading-color);
  z-index: 1;
  -webkit-animation: swing-anim 8s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  animation: swing-anim 8s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}
.td_shape_section_6 .td_shape_position_1::after {
  top: 8px;
  border-color: rgba(255, 255, 255, 0.3);
  -webkit-animation: swing-anim 120s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  animation: swing-anim 120s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}
.td_shape_section_6 .td_shape_position_2,
.td_shape_section_6 .td_shape_position_3 {
  height: 30px;
  width: 30px;
  border: 1px solid #fff;
  opacity: 0.15;
  border-radius: 5px;
}
.td_shape_section_6 .td_shape_position_2 {
  right: 10%;
  top: 40%;
  -webkit-animation: swing-anim 8s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  animation: swing-anim 8s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}
.td_shape_section_6 .td_shape_position_3 {
  right: 5%;
  top: 75%;
  -webkit-animation: swing-anim 12s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  animation: swing-anim 12s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  animation-direction: reverse;
}

.td_shape_section_7 .td_shape_position_1 {
  left: 7%;
  top: 35%;
}
.td_shape_section_7 .td_shape_position_2 {
  left: 6%;
  top: 67%;
}
.td_shape_section_7 .td_shape_position_3 {
  right: 7%;
  top: 35%;
}
.td_shape_section_7 .td_shape_position_4 {
  right: 6%;
  top: 67%;
}

.td_shape_section_8 .td_shape_position_1 {
  left: 2%;
  top: 38%;
}
.td_shape_section_8 .td_shape_position_2 {
  right: 4%;
  top: 66%;
}

.td_shape_section_9 .td_shape_position_1 {
  left: 5%;
  top: 25%;
  -webkit-animation: swing-anim 8s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  animation: swing-anim 8s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}
.td_shape_section_9 .td_shape_position_2 {
  right: 6%;
  top: 60%;
  -webkit-animation: swing-anim 12s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  animation: swing-anim 12s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}
.td_shape_section_9 .td_shape_position_3 {
  border-radius: 50%;
  opacity: 0.1;
  width: 475px;
  height: 475px;
  background: linear-gradient(
    258deg,
    rgba(235, 236, 237, 0.6) -115.85%,
    rgba(134, 134, 135, 0.6) 205.86%
  );
  bottom: 0;
  left: -240px;
}
.td_shape_section_9 .td_shape_position_4 {
  left: 0;
  top: 22%;
}
.td_shape_section_9 .td_shape_position_5 {
  right: 1%;
  top: 18%;
}
.td_shape_section_9 .td_shape_position_6 {
  left: 6%;
  top: 20%;
}
.td_shape_section_9 .td_shape_position_7 {
  left: 6%;
  top: 70%;
}
.td_shape_section_9 .td_shape_position_8 {
  right: 6%;
  top: 20%;
}
.td_shape_section_9 .td_shape_position_9 {
  right: 6%;
  top: 70%;
}

.td_shape_section_10 .td_shape_position_1 {
  right: 2%;
  top: 10%;
}
.td_shape_section_10 .td_shape_position_1 img {
  -webkit-animation: rotate-anim 40s linear infinite;
  animation: rotate-anim 40s linear infinite;
}
.td_shape_section_10 .td_shape_position_2 {
  left: -40px;
  bottom: 0;
}
.td_shape_section_10 .td_shape_position_2 img {
  -webkit-animation: animo-x 9s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  animation: animo-x 9s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}
.td_shape_section_10 .td_shape_position_3 {
  left: 0;
  top: 25%;
}
.td_shape_section_10 .td_shape_position_4 {
  left: 6%;
  top: 20%;
}
.td_shape_section_10 .td_shape_position_5 {
  left: 6%;
  top: 70%;
}
.td_shape_section_10 .td_shape_position_6 {
  right: 6%;
  top: 20%;
}
.td_shape_section_10 .td_shape_position_7 {
  right: 6%;
  top: 70%;
}

.td_brand.td_style_1 {
  text-align: center;
}
.td_brand.td_style_1 img {
  display: inline-block;
}

.td_half_white_bg {
  position: relative;
}
.td_half_white_bg > * {
  position: relative;
  z-index: 2;
}
.td_half_white_bg::before {
  content: "";
  position: absolute;
  height: 50%;
  width: 100%;
  left: 0;
  top: 0;
  background-color: #fff;
}
@media (max-width: 991px) {
  .td_half_white_bg::before {
    height: 25%;
  }
}

.td_rate_section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media (max-width: 991px) {
  .td_rate_section {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.td_rate_section .td_rate_heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 30px 45px 30px 35px;
  border-right: 5px solid #fff;
  min-height: 142px;
  gap: 15px;
  width: 510px;
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  position: relative;
}
@media (max-width: 991px) {
  .td_rate_section .td_rate_heading {
    min-height: 120px;
    width: 100%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 0 25px;
    border-right: 0;
    padding: 20px 15px 20px 15px;
    border-bottom: 2px solid #fff;
    justify-content: center;
  }
}
.td_rate_section .td_rate_heading::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 5px;
  background-color: #fff;
  right: 6px;
}
@media (max-width: 991px) {
  .td_rate_section .td_rate_heading::after {
    display: none;
  }
}
.td_rate_section .td_rating_wrap {
  padding: 3px 0px;
  background-color: var(--heading-color);
}
.td_rate_section .td_rating {
  -webkit-transform: scale(0.9);
  transform: scale(0.9);
}
@media (min-width: 992px) {
  .td_rate_section.td_type_1 {
    position: relative;
    z-index: 2;
    -webkit-transform: rotate(-4deg);
    transform: rotate(-4deg);
    width: calc(100% + 16px);
    margin-left: -8px;
    margin-top: -67px;
    margin-bottom: 67px;
  }
}
.td_rate_section .td_rate_feature_list_wrap {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.td_rate_feature_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 40px 15px;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  gap: 15px 24px;
}
.td_rate_feature_list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.td_rate_feature_list .td_rate_feature_icon {
  height: 60px;
  width: 60px;
  border-radius: 50%;
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
}

.td_moving_box_wrap {
  font-family: helvetica;
  overflow-x: hidden;
}
.td_moving_box_wrap:hover .td_moving_box {
  -webkit-animation-play-state: paused;
  animation-play-state: paused;
}

.td_moving_box_in {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  white-space: nowrap;
  min-width: 100%;
}

.td_moving_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-animation: slide-left 20s linear infinite;
  animation: slide-left 20s linear infinite;
}

@-webkit-keyframes slide-left {
  from {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}

@keyframes slide-left {
  from {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
.td_funfact_1_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  gap: 24px 70px;
}
@media (max-width: 1400px) {
  .td_funfact_1_wrap {
    gap: 24px 30px;
  }
}
@media (max-width: 1199px) {
  .td_funfact_1_wrap {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 30px 0;
  }
  .td_funfact_1_wrap .td_funfact.td_style_1 {
    width: 50%;
  }
}
@media (max-width: 575px) {
  .td_funfact_1_wrap .td_funfact.td_style_1 {
    width: 100%;
  }
}

.td_funfact.td_style_1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  min-height: 120px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.td_funfact.td_style_1 > svg {
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.td_funfact.td_style_1 .td_funfact_in {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 25px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 10px 10px 10px 23px;
  background-color: var(--accent-color);
  position: relative;
  z-index: 1;
  margin-left: 2px;
}
.td_funfact.td_style_1 .td_funfact_icon {
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  width: 60px;
}
.td_funfact.td_style_1 .td_funfact_icon img {
  width: 100%;
}

.td_funfact.td_style_2 {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 14px;
  min-height: 164px;
  padding-left: 30px;
  position: relative;
}
@media (max-width: 1600px) {
  .td_funfact.td_style_2 {
    padding-left: 20px;
  }
}
.td_funfact.td_style_2 .td_funfact_border {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 225px;
  -webkit-clip-path: inset(0 round 60px 60px 60px 60px);
  clip-path: inset(0 round 60px 60px 60px 60px);
}
.td_funfact.td_style_2 .td_funfact_border::before {
  content: "";
  position: absolute;
  left: -2px;
  top: -2px;
  right: -2px;
  bottom: -2px;
  border: 4px dashed var(--heading-color);
  border-radius: 62px;
}
.td_funfact.td_style_2 .td_funfact_icon {
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  position: relative;
  z-index: 2;
}
.td_funfact.td_style_2 .td_funfact_right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  width: 220px;
  padding: 20px 30px;
  border-radius: 50px;
  position: relative;
  z-index: 2;
}
@media (max-width: 1600px) {
  .td_funfact.td_style_2 .td_funfact_right {
    width: 198px;
    padding: 20px 18px;
  }
}

.td_instagram_list.td_style_1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-width: 1920px;
  padding: 0 30px;
  gap: 30px;
}
@media (max-width: 1400px) {
  .td_instagram_list.td_style_1 {
    gap: 15px;
  }
}
@media (max-width: 991px) {
  .td_instagram_list.td_style_1 {
    gap: 0px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 0 8px;
    margin: -7px 0;
  }
}
.td_instagram_list.td_style_1 li {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
@media (max-width: 991px) {
  .td_instagram_list.td_style_1 li {
    width: 33.3333%;
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    padding: 7px;
  }
}
@media (max-width: 440px) {
  .td_instagram_list.td_style_1 li {
    width: 50%;
  }
}
.td_instagram_list.td_style_1 a {
  display: block;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}
.td_instagram_list.td_style_1 a::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  background-color: var(--accent-color);
  opacity: 0;
  z-index: 1;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.td_instagram_list.td_style_1 a img {
  width: 100%;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.td_instagram_list.td_style_1 a i {
  position: absolute;
  left: 50%;
  top: 55%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  font-size: 32px;
  color: #fff;
  z-index: 2;
  opacity: 0;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.td_instagram_list.td_style_1 a:hover::before {
  opacity: 0.5;
}
.td_instagram_list.td_style_1 a:hover img {
  -webkit-transform: scale(1.03);
  transform: scale(1.03);
}
.td_instagram_list.td_style_1 a:hover i {
  opacity: 1;
  top: 50%;
}

.td_full_width {
  width: 60vw;
  padding: 40px 0 0 40px;
  margin-left: -40px;
  overflow: hidden;
  margin-top: -40px;
}
@media (max-width: 991px) {
  .td_full_width {
    width: 100%;
    overflow: initial;
  }
}
.td_full_width .td_testimonial.td_style_1 {
  max-width: 440px;
}
@media (max-width: 480px) {
  .td_full_width .td_testimonial.td_style_1 {
    max-width: 320px;
  }
}

.td_page_heading {
  min-height: 580px;
  position: relative;
  padding: 200px 0 60px;
}
@media (max-width: 1199px) {
  .td_page_heading {
    padding: 150px 0 60px;
  }
}
@media (max-width: 991px) {
  .td_page_heading {
    min-height: 450px;
  }
}
.td_page_heading .breadcrumb {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.td_page_heading .breadcrumb-item.active {
  color: #fff;
}
.td_page_heading .breadcrumb-item + .breadcrumb-item::before {
  color: #fff;
}
.td_page_heading .td_page_heading_shape_1 {
  left: 0;
  top: 42%;
  background: linear-gradient(291deg, #ebeced 98.22%, #868687 168.65%);
  opacity: 0.03;
  width: 186px;
  height: 186px;
  border-radius: 50%;
}
@media (max-width: 991px) {
  .td_page_heading .td_page_heading_shape_1 {
    display: none;
  }
}
.td_page_heading .td_page_heading_shape_2 {
  left: 16%;
  top: 42%;
  background-color: var(--accent-color);
  opacity: 0.25;
  width: 151px;
  height: 151px;
  border-radius: 50%;
}
@media (max-width: 991px) {
  .td_page_heading .td_page_heading_shape_2 {
    display: none;
  }
}
.td_page_heading .td_page_heading_shape_3 {
  left: 31%;
  top: 49%;
}
.td_page_heading .td_page_heading_shape_3 img {
  -webkit-animation: swing-anim 10s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  animation: swing-anim 10s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}
@media (max-width: 991px) {
  .td_page_heading .td_page_heading_shape_3 {
    display: none;
  }
}
.td_page_heading .td_page_heading_shape_4 {
  left: 55%;
  top: 38%;
}
.td_page_heading .td_page_heading_shape_4 img {
  -webkit-animation: animo-x 9s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  animation: animo-x 9s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}
@media (max-width: 991px) {
  .td_page_heading .td_page_heading_shape_4 {
    display: none;
  }
}
.td_page_heading .td_page_heading_shape_5 {
  left: 72%;
  top: 42%;
}
.td_page_heading .td_page_heading_shape_5 img {
  -webkit-animation: animo-y 9s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  animation: animo-y 9s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}
@media (max-width: 991px) {
  .td_page_heading .td_page_heading_shape_5 {
    display: none;
  }
}
.td_page_heading .td_page_heading_shape_6 {
  height: 72px;
  width: 72px;
  border-radius: 50%;
  border: 1px solid var(--accent-color);
  overflow: hidden;
  left: 90%;
  top: 78%;
}
@media (max-width: 991px) {
  .td_page_heading .td_page_heading_shape_6 {
    display: none;
  }
}

.td_form_field {
  display: block;
  width: 100%;
  border-radius: 10px;
  -webkit-box-shadow: 2px 2px 20px 0px rgba(0, 0, 27, 0.05);
  box-shadow: 2px 2px 20px 0px rgba(0, 0, 27, 0.05);
  outline: none;
  border: none;
  padding: 20px 25px;
}

select.td_form_field {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: linear-gradient(
      45deg,
      transparent 50%,
      var(--body-color) 50%
    ),
    linear-gradient(135deg, var(--body-color) 50%, transparent 50%);
  background-position: calc(100% - 22px) calc(1em + 14px),
    calc(100% - 17px) calc(1em + 14px);
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
  cursor: pointer;
}

.td_form_field_2 {
  display: block;
  width: 100%;
  border: 1px solid var(--border-color);
  padding: 12px 15px;
  border-radius: 10px;
  outline: none;
}
.td_form_field_2:focus {
  border-color: var(--heading-color);
}

.td_cupon {
  position: relative;
}
.td_cupon .td_cupon_input {
  display: block;
  border: 1px solid var(--border-color);
  border-radius: 10px;
  height: 50px;
  width: 100%;
  padding: 5px 120px 5px 15px;
}
.td_cupon .td_cupon_btn {
  position: absolute;
  right: 0;
  top: 0;
  background-color: #ebeced;
  font-weight: 600;
  border: none;
  outline: none;
  color: var(--heading-color);
  padding: 0 15px;
  height: 50px;
  border-radius: 0 10px 10px 0;
  min-width: 110px;
}
.td_cupon .td_cupon_btn:hover {
  background-color: var(--accent-color);
  color: #fff;
}

.td_custom_checkbox {
  display: inline-block;
  position: relative;
}
.td_custom_checkbox input[type="checkbox"] {
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 1;
  cursor: pointer;
  opacity: 0;
}
.td_custom_checkbox input[type="checkbox"]:checked + label::before {
  border-color: var(--accent-color);
  background-color: var(--accent-color);
}
.td_custom_checkbox input[type="checkbox"]:checked + label::after {
  opacity: 1;
}
.td_custom_checkbox label {
  padding-left: 22px;
  position: relative;
  margin: 0;
}
.td_custom_checkbox label::before {
  content: "";
  height: 14px;
  width: 14px;
  border-radius: 2px;
  border: 1px solid rgba(0, 0, 27, 0.7);
  position: absolute;
  left: 0;
  top: 5px;
}
.td_custom_checkbox label::after {
  content: "";
  height: 8px;
  width: 5px;
  border: 2px solid #fff;
  position: absolute;
  border-left: 0;
  border-top: 0;
  left: 4px;
  top: 7px;
  -webkit-transform: rotate(40deg);
  transform: rotate(40deg);
  opacity: 0;
}

.td_form_card.td_style_1 {
  padding: 75px 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
}
@media (max-width: 1400px) {
  .td_form_card.td_style_1 {
    padding: 75px 35px;
  }
}
@media (max-width: 575px) {
  .td_form_card.td_style_1 {
    padding: 40px 25px;
  }
}
.td_form_card.td_style_1 .td_form_card_in {
  width: 100%;
}
.td_form_card.td_style_1 .td_form_card_bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 10px 15px;
}
.td_form_card.td_style_1 .td_form_social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
}
@media (max-width: 1199px) {
  .td_form_card.td_style_1 .td_form_social {
    gap: 10px;
  }
}
.td_form_card.td_style_1 .td_form_social a {
  height: 40px;
  width: 40px;
  border-radius: 50%;
  background-color: var(--heading-color);
  color: #fff;
}
.td_form_card.td_style_1 .td_form_social a:hover {
  background-color: var(--accent-color);
}
.td_form_card.td_style_1 .td_form_card_text a {
  color: var(--accent-color);
}
.td_form_card.td_style_1 .td_form_card_text a:hover {
  text-decoration: underline;
}
.td_form_card.td_style_1 .td_btn.td_style_1 {
  min-width: 140px;
}
@media (max-width: 767px) {
  .td_form_card.td_style_1 .td_btn.td_style_1 {
    width: 100%;
  }
}
.td_form_card.td_style_1 .td_btn.td_style_1.w-100 {
  min-width: 100%;
}
.td_form_card.td_style_1 .td_btn.td_style_1.w-100 .td_btn_in {
  padding: 17px 25px;
}
.td_form_card.td_style_1 .td_form_card_text_2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.td_form_card.td_style_1 .td_form_card_text_2 a:hover {
  text-decoration: underline;
}
.td_form_card.td_style_1 .td_form_card_btn_group_1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 10px 20px;
}
.td_form_card.td_style_1
  .td_form_card_btn_group_1
  .td_btn.td_style_1
  .td_btn_in {
  -webkit-box-shadow: 2px 2px 20px 0px rgba(0, 0, 27, 0.05);
  box-shadow: 2px 2px 20px 0px rgba(0, 0, 27, 0.05);
}

.td_sign_thumb {
  padding-left: 44px;
  height: 100%;
}
@media (max-width: 1400px) {
  .td_sign_thumb {
    padding-left: 20px;
  }
}
@media (max-width: 1199px) {
  .td_sign_thumb {
    padding-left: 0px;
  }
}
.td_sign_thumb img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.td_map {
  height: 500px;
}
.td_map iframe {
  height: 100%;
  width: 100%;
  border: none;
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
}

.td_team_details_left {
  padding-right: 12%;
}
@media (max-width: 1199px) {
  .td_team_details_left {
    padding-right: 10px;
  }
}
@media (max-width: 991px) {
  .td_team_details_left {
    padding-right: 0px;
  }
}

.td_team_member_contact_list .td_team_member_contact_icon {
  height: 36px;
  width: 36px;
  border-radius: 50%;
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  position: relative;
  padding: 5px;
}
.td_team_member_contact_list .td_team_member_contact_icon svg,
.td_team_member_contact_list .td_team_member_contact_icon i {
  position: relative;
  z-index: 1;
}
.td_team_member_contact_list .td_team_member_contact_icon::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  border-radius: 50%;
  background-color: var(--accent-color);
  opacity: 0.15;
}
.td_team_member_contact_list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
}
.td_team_member_contact_list li:not(:last-child) {
  margin-bottom: 10px;
}

.td_progress {
  position: relative;
  border-radius: 10px;
}
.td_progress::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  background-color: var(--accent-color);
  opacity: 0.1;
  border-radius: inherit;
}
.td_progress .td_progress_in {
  height: 8px;
  position: relative;
  z-index: 1;
  border-radius: inherit;
}
.td_progress .td_progress_in span {
  position: absolute;
  right: 0;
  bottom: 100%;
  margin-bottom: 11px;
  border-radius: 2px 2px 0 2px;
  padding: 2px 5px;
}
.td_progress .td_progress_in span::before {
  content: "";
  border-left: 10px solid transparent;
  border-right: 0px solid transparent;
  border-top: 10px solid var(--accent-color);
  position: absolute;
  bottom: -6px;
  right: 0;
}

.td_page_pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 10px;
}
.td_page_pagination .td_page_pagination_item {
  height: 50px;
  width: 50px;
  border-radius: 5px;
  border: 1px solid var(--accent-color);
  color: var(--accent-color);
  padding: 0;
  background-color: transparent;
}
.td_page_pagination .td_page_pagination_item.active,
.td_page_pagination .td_page_pagination_item:hover {
  background-color: var(--accent-color);
  color: #fff;
}

.td_countdown.td_style_1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 10px;
}
@media (max-width: 1400px) {
  .td_countdown.td_style_1 {
    font-size: 14px;
    gap: 5px;
  }
}
.td_countdown.td_style_1 .td_countdown_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 3px;
  border: 1px solid var(--heading-color);
  padding: 4px 10px;
  border-radius: 5px;
  min-width: 75px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media (max-width: 1400px) {
  .td_countdown.td_style_1 .td_countdown_box {
    min-width: 70px;
    padding: 4px 8px;
  }
}

@media (max-width: 991px) {
  .td_row_reverse_lg {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .text-center-lg {
    text-align: center;
  }
}
.td_section_head_2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 15px;
}
@media (max-width: 767px) {
  .td_section_head_2 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}
.td_section_head_2 .td_section_head_2_left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
}
@media (max-width: 767px) {
  .td_section_head_2 .td_section_head_2_left {
    width: 100%;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 10px;
  }
}
@media (max-width: 767px) {
  .td_section_head_2 .td_section_head_2_right {
    width: 100%;
  }
}

.td_view_btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 14px;
}
.td_view_btns .td_view_btn {
  height: 50px;
  width: 50px;
  border-radius: 10px;
  position: relative;
  color: var(--accent-color);
}
.td_view_btns .td_view_btn::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  border-radius: inherit;
  background-color: var(--accent-color);
  opacity: 0.15;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.td_view_btns .td_view_btn svg,
.td_view_btns .td_view_btn i {
  position: relative;
  z-index: 2;
}
.td_view_btns .td_view_btn:hover::before {
  opacity: 0.3;
}
.td_view_btns .td_view_btn.active {
  color: #fff;
}
.td_view_btns .td_view_btn.active::before {
  opacity: 1;
}

.td_section_head_select {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 6px;
  border-radius: 10px;
  background-color: rgba(235, 236, 237, 0.5);
  padding: 10px 20px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.td_section_head_select b {
  white-space: nowrap;
}
.td_section_head_select select.td_form_field {
  background-color: transparent;
  -webkit-box-shadow: none;
  box-shadow: none;
  padding: 0 18px 0 0;
  background-position: calc(100% - 4px) calc(1em - 6px),
    calc(100% + 1px) calc(1em - 6px);
}

.td_filter_widget {
  border-radius: 10px;
  background-color: #fff;
  padding: 30px;
  -webkit-box-shadow: 2px 2px 50px 0px rgba(0, 0, 27, 0.1);
  box-shadow: 2px 2px 50px 0px rgba(0, 0, 27, 0.1);
}
@media (max-width: 575px) {
  .td_filter_widget {
    padding: 25px;
  }
}
.td_filter_widget:not(:last-child) {
  margin-bottom: 30px;
}

@media (max-width: 1199px) {
  .td_filter_category {
    font-size: 16px;
  }
}
.td_filter_category a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 5px;
  -webkit-box-shadow: 2px 2px 50px 0px rgba(0, 0, 27, 0.1);
  box-shadow: 2px 2px 50px 0px rgba(0, 0, 27, 0.1);
  padding: 14px 20px;
  gap: 5px;
}
.td_filter_category a:hover {
  background-color: var(--accent-color);
  color: #fff;
}
.td_filter_category a:not(:last-child) {
  margin-bottom: 15px;
}

.td_sidebar_filter {
  margin-left: 56px;
}
@media (max-width: 1400px) {
  .td_sidebar_filter {
    margin-left: 20px;
  }
}
@media (max-width: 1199px) {
  .td_sidebar_filter {
    margin-left: 0px;
  }
}

.td_filter_widget_list li:not(:last-child) {
  padding-bottom: 16px;
}

.td_custom_checkbox_2 {
  display: inline-block;
  position: relative;
  min-height: 24px;
}
.td_custom_checkbox_2 input {
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 2;
  cursor: pointer;
  opacity: 0;
}
.td_custom_checkbox_2 input:checked + span::before {
  border-color: var(--accent-color);
  background-color: var(--accent-color);
}
.td_custom_checkbox_2 > span {
  display: inline-block;
  position: relative;
  padding-left: 36px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.td_custom_checkbox_2 > span::before {
  content: "";
  position: absolute;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  height: 24px;
  width: 24px;
  border-radius: 10px;
  border: 1px solid var(--border-color);
  left: 0;
  top: 0px;
}
.td_custom_checkbox_2 .td_rating {
  margin: 3px 0;
}

.td_amount_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.td_amount_wrap #amount {
  border: none;
  padding: 0;
  color: var(--body-color);
  width: 100%;
  background-color: transparent;
  outline: none;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6em;
}
.td_amount_wrap .td_filter_btn {
  border: 1px solid var(--border-color);
  background: transparent;
  color: var(--heading-color);
  font-weight: 500;
  padding: 2px 22px;
  outline: none;
  border-radius: 5px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  cursor: pointer;
  line-height: 1.5em;
}
.td_amount_wrap .td_filter_btn:hover {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: #fff;
}

.ui-widget.ui-widget-content {
  border: 0;
  margin-bottom: 15px;
  background-color: var(--border-color);
  margin-top: 5px;
}

.ui-widget-header {
  background: var(--accent-color);
}

.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default,
.ui-button,
html .ui-button.ui-state-disabled:hover,
html .ui-button.ui-state-disabled:active {
  border: 1px solid var(--accent-color);
  background: var(--accent-color);
}

.ui-state-active,
.ui-widget-content .ui-state-active,
.ui-widget-header .ui-state-active {
  border: 1px solid var(--accent-color);
  background: var(--accent-color);
  outline: none;
}

.ui-slider-horizontal {
  height: 4px;
  border-radius: 3px;
}

.ui-slider .ui-slider-handle {
  top: -3px;
  height: 10px;
  border-radius: 10px;
  width: 10px;
  cursor: pointer;
}
.ui-slider .ui-slider-handle::before {
  content: "";
  position: absolute;
  height: 4px;
  width: 4px;
  border-radius: 50%;
  background-color: #fff;
  top: 2px;
  left: 2px;
}
.ui-slider .ui-slider-handle:focus {
  outline: none;
}

.ui-slider-horizontal .ui-slider-range {
  border-radius: 0;
}

.td_course_details .td_course_avatar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
}
.td_course_details .td_course_avatar img {
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  height: 32px;
  width: 32px;
  border-radius: 5px;
  -o-object-fit: cover;
  object-fit: cover;
}
.td_course_details .td_course_meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 10px 20px;
}
@media (min-width: 576px) {
  .td_course_details .td_course_meta > * {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
}
.td_course_details .td_course_label {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 5px 10px;
  border-radius: 10px;
  background-color: var(--accent-color);
  color: #fff;
  font-size: 14px;
  line-height: 1.6em;
}
.td_course_details .td_requirements_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 15px 30px;
}
.td_course_details .td_requirements_list .td_requirement {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  gap: 8px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 10px;
  background-color: #fff;
  -webkit-box-shadow: 2px 2px 50px 0px rgba(0, 0, 27, 0.1);
  box-shadow: 2px 2px 50px 0px rgba(0, 0, 27, 0.1);
  padding: 10px 20px;
}
.td_course_details .td_requirements_list .td_requirement svg {
  color: var(--accent-color);
}

.td_table_meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
}
.td_table_meta img {
  height: 90px;
  width: 90px;
  border-radius: 10px;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
}

.td_table_close_btn {
  padding: 5px;
  margin: 0;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  border: none;
  outline: none;
  background: transparent;
  color: var(--heading-color);
}
.td_table_close_btn:hover {
  color: var(--accent-color);
}

.td_quantity {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border: 1px solid var(--border-color);
  border-radius: 10px;
  min-width: 120px;
}
.td_quantity .td_quantity_btn {
  padding: 0;
  height: 40px;
  width: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border: none;
  outline: none;
  background-color: transparent;
  color: var(--heading-color);
}
.td_quantity .td_quantity_btn:hover {
  color: var(--accent-color);
}
.td_quantity .td_quantity_number {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  text-align: center;
  padding: 0 5px;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.td_table_1 {
  border: 1px solid var(--border-color);
  border-radius: 10px;
  overflow: hidden;
}
.td_table_1 th {
  border: none;
}
.td_table_1 td,
.td_table_1 th {
  padding: 20px;
}
@media (max-width: 991px) {
  .td_table_1 td,
  .td_table_1 th {
    padding: 15px;
  }
}
.td_table_1 table {
  margin: 0;
  min-width: 700px;
}

.td_total_card {
  border: 1px solid var(--border-color);
  padding: 25px;
  border-radius: 10px;
}
.td_total_card .td_total_card_list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 12px 0;
}
.td_total_card .td_total_card_list li:not(:last-child) {
  border-bottom: 1px solid var(--border-color);
}
.td_total_card .form-check-input:checked {
  background-color: var(--heading-color);
  border-color: var(--heading-color);
  -webkit-box-shadow: none;
  box-shadow: none;
}

.td_payment_list {
  border: 1px solid var(--border-color);
  border-radius: 10px;
}
.td_payment_list li {
  padding: 15px 20px;
}
.td_payment_list li:not(:last-child) {
  border-bottom: 1px solid var(--border-color);
}
.td_payment_list li > p {
  margin-top: 8px;
}
.td_payment_list label {
  margin: 0;
}
.td_payment_list .form-check-input[type="radio"] {
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin-top: 0;
  margin-right: 7px;
}
.td_payment_list .form-check-input:checked {
  background-color: var(--heading-color);
  border-color: var(--heading-color);
  -webkit-box-shadow: none;
  box-shadow: none;
}
.td_payment_list .form-check-input:checked + label {
  font-weight: 700;
  color: var(--heading-color);
}

.td_text_btn_2 {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
}

.td_order_summary_card {
  border-top: 1px solid var(--border-color);
  padding-top: 15px;
}
.td_order_summary_card .td_order_summary_card_info {
  border-bottom: 1px solid var(--border-color);
  padding: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
}
.td_order_summary_card .td_order_summary_card_thumb {
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  width: 48px;
  height: 58px;
  position: relative;
}
.td_order_summary_card .td_order_summary_card_thumb img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.td_order_summary_card .td_order_summary_card_thumb span {
  position: absolute;
  height: 22px;
  min-width: 24px;
  padding: 4px;
  right: -12px;
  top: -11px;
  background-color: #fff;
  font-size: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 10px;
  color: var(--heading-color);
}
.td_order_summary_card .td_order_summary_card_thumb span::before {
  content: "";
  position: absolute;
  height: calc(100% - 2px);
  width: calc(100% - 2px);
  top: 1px;
  left: 1px;
  border: 1px solid var(--border-color);
  border-radius: inherit;
}
.td_order_summary_card .td_order_summary_card_list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 14px 16px;
}
.td_order_summary_card .td_order_summary_card_list li:not(:last-child) {
  border-bottom: 1px solid var(--border-color);
}

/* Start Scroll Up */
.td_scrollup {
  width: 45px;
  height: 45px;
  font-size: 18px;
  background-color: var(--accent-color);
  color: var(--accent-color);
  border-radius: 50%;
  position: fixed;
  bottom: 20px;
  right: 20px;
  -webkit-transform: scale(0);
  transform: scale(0);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  z-index: 999;
  -webkit-box-shadow: 0px 1px 5px 1px rgba(22, 22, 22, 0.2);
  box-shadow: 0px 1px 5px 1px rgba(22, 22, 22, 0.2);
  cursor: pointer;
}
.td_scrollup::after {
  content: "";
  width: 100%;
  height: 100%;
  background-color: #fff;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 0;
  -webkit-transform: scale(0.6);
  transform: scale(0.6);
  -webkit-animation: scale_full 3s cubic-bezier(0.28, 1.84, 0.55, -0.11)
    infinite;
  animation: scale_full 3s cubic-bezier(0.28, 1.84, 0.55, -0.11) infinite;
}
.td_scrollup.td_scrollup_show {
  -webkit-transform: scale(1);
  transform: scale(1);
}
.td_scrollup i {
  position: relative;
  z-index: 2;
}

@-webkit-keyframes scale_full {
  50% {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
  }
}

@keyframes scale_full {
  50% {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
  }
}
/* End Scroll Up */
.odometer.odometer-auto-theme,
.odometer.odometer-theme-default {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

/*--------------------------------------------------------------
6. Slider
----------------------------------------------------------------*/
.td_slider {
  position: relative;
}

.slick-arrow {
  cursor: pointer;
}

.draggable {
  cursor: url(../img/drag.png) 16 9, ew-resize !important;
}

.slick-slide > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.td_remove_overflow .slick-list {
  overflow: visible;
}
.td_remove_overflow .slick-slide {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.td_remove_overflow .slick-slide.slick-active {
  opacity: 1;
  visibility: visible;
}

.td_slider_gap_24 .slick-slide {
  padding-left: 12px;
  padding-right: 12px;
}
.td_slider_gap_24 .slick-list {
  margin-left: -12px;
  margin-right: -12px;
}

.td_slider_gap_100 .slick-slide {
  padding-left: 50px;
  padding-right: 50px;
}
.td_slider_gap_100 .slick-list {
  margin-left: -50px;
  margin-right: -50px;
}

.td_ptb_12 .slick-slide {
  padding-top: 12px;
  padding-bottom: 12px;
}
.td_ptb_12 .slick-list {
  margin-top: -12px;
  margin-bottom: -12px;
}

.td_slider_gap_90 .slick-slide {
  padding-left: 45px;
  padding-right: 45px;
}
.td_slider_gap_90 .slick-list {
  margin-left: -45px;
  margin-right: -45px;
}

.td_slider_arrows.td_style_1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.td_slider_arrows.td_style_1 .td_left_arrow,
.td_slider_arrows.td_style_1 .td_right_arrow {
  height: 50px;
  width: 50px;
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  background-color: var(--accent-color);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  color: #fff;
}
@media (max-width: 991px) {
  .td_slider_arrows.td_style_1 .td_left_arrow,
  .td_slider_arrows.td_style_1 .td_right_arrow {
    width: 50px;
    height: 50px;
  }
}
.td_slider_arrows.td_style_1 .td_left_arrow:hover,
.td_slider_arrows.td_style_1 .td_right_arrow:hover {
  background-color: var(--heading-color);
}
.td_slider_arrows.td_style_1.td_type_1 .td_left_arrow,
.td_slider_arrows.td_style_1.td_type_1 .td_right_arrow {
  height: 40px;
  width: 40px;
}
.td_slider_arrows.td_style_1.td_type_2 {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  padding-right: 10%;
}
@media (max-width: 991px) {
  .td_slider_arrows.td_style_1.td_type_2 {
    padding: 0;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
.td_slider_arrows.td_style_1.td_type_2 .td_left_arrow,
.td_slider_arrows.td_style_1.td_type_2 .td_right_arrow {
  height: 40px;
  width: 40px;
}

@media (max-width: 991px) {
  .td_slider_arrows.td_style_2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
  }
}
.td_slider_arrows.td_style_2 .td_left_arrow,
.td_slider_arrows.td_style_2 .td_right_arrow {
  position: absolute;
  height: 90px;
  width: 90px;
  border-radius: 50%;
  top: 50%;
}
@media (max-width: 991px) {
  .td_slider_arrows.td_style_2 .td_left_arrow,
  .td_slider_arrows.td_style_2 .td_right_arrow {
    position: initial;
    height: 40px;
    width: 40px;
    background-color: #fff !important;
  }
}
.td_slider_arrows.td_style_2 .td_left_arrow {
  left: -45px;
  background-color: #fef0d5;
}
.td_slider_arrows.td_style_2 .td_right_arrow {
  right: -45px;
  background-color: #d5fff7;
}

.td_pagination.td_style_1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.td_pagination.td_style_1 ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  gap: 15px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media (max-width: 991px) {
  .td_pagination.td_style_1 ul {
    margin-top: 40px;
  }
}
.td_pagination.td_style_1 li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.td_pagination.td_style_1 li button {
  height: 12px;
  width: 12px;
  font-size: 0;
  color: transparent;
  padding: 0;
  background-color: #ebeced;
  border: none;
  outline: none;
  cursor: pointer;
  border-radius: 50%;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.td_pagination.td_style_1 li.slick-active button {
  -webkit-transform: scale(1.34);
  transform: scale(1.34);
  background-color: var(--accent-color);
}

/*--------------------------------------------------------------
7. Video Modal
----------------------------------------------------------------*/
.cs-pd-video .td_video_open,
.cs-sample-img .td_video_open {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 68px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  line-height: 48px;
}

.cs-pd-video .td_video_open:hover,
.cs-sample-img .td_video_open:hover {
  color: rgba(255, 255, 255, 0.7);
}

.td_video_popup {
  position: fixed;
  z-index: 1000;
  top: 0;
  width: 100%;
  height: 100%;
  left: -100%;
  -webkit-transition-delay: 0.3s;
  transition-delay: 0.3s;
}

.td_video_popup.active {
  left: 0;
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
  left: 0;
}

.td_video_popup-overlay {
  position: absolute;
  left: 0;
  right: 0;
  background: #000;
  -webkit-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
  opacity: 0;
}

.td_video_popup.active .td_video_popup-overlay {
  opacity: 0.8;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

.td_video_popup-content {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  font-size: 0;
  text-align: center;
  -webkit-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
  -webkit-transform: translateY(100px);
  transform: translateY(100px);
  opacity: 0;
  visibility: hidden;
  padding: 15px;
}

.td_video_popup.active .td_video_popup-content {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.td_video_popup-content:after {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}

.td_video_popup-container {
  display: inline-block;
  position: relative;
  text-align: left;
  background: #fff;
  max-width: 1380px;
  width: 100%;
  vertical-align: middle;
}

.td_video_popup-container .embed-responsive {
  width: 100%;
}

.embed-responsive {
  position: relative;
  display: block;
  height: 0;
  padding: 0;
  overflow: hidden;
  height: 100%;
}

.embed-responsive-16by9::before {
  display: block;
  content: "";
  padding-top: 56.25%;
}

.embed-responsive iframe,
.embed-responsive video {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.td_video_popup-close {
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  height: 40px;
  background: #d90d0d;
  cursor: pointer;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.td_video_popup iframe {
  width: 100%;
  height: 100%;
  position: absolute;
}

.td_video_popup-close:before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 1px;
  background: #fff;
  margin-left: -10px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.td_video_popup-close:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 1px;
  background: #fff;
  margin-left: -10px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.td_video_popup-close:hover:before,
.td_video_popup-close:hover:after {
  background: #000;
}

.td_video_popup-layer {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
}

.td_video_popup-align {
  overflow: hidden;
}

/*End Video Popup*/
/*--------------------------------------------------------------
8. Header
----------------------------------------------------------------*/
.td_site_header {
  position: absolute;
  z-index: 101;
  width: 100%;
  left: 0;
  top: 0px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.td_header_social_btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  font-size: 20px;
}
@media (max-width: 1400px) {
  .td_header_social_btns {
    gap: 25px;
  }
}

.td_header_btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}

.td_header_search_wrap {
  position: absolute;
  top: 100%;
  margin-top: 20px;
  right: 0;
  background-color: #fff;
  padding: 15px;
  -webkit-box-shadow: 2px 2px 50px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 2px 2px 50px 0px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  opacity: 0;
  visibility: hidden;
  z-index: 11;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.td_header_search_wrap.active {
  opacity: 1;
  visibility: visible;
  margin-top: 10px;
}

.td_header_search {
  position: relative;
  width: 270px;
}
.td_header_search .td_header_search_input {
  padding: 12px 55px 12px 20px;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 27, 0.2);
  width: 100%;
  outline: none;
}
.td_header_search .td_header_search_input:focus {
  border-color: rgba(0, 0, 27, 0.5);
}
.td_header_search .td_header_search_btn {
  position: absolute;
  right: 0;
  top: 0;
  border: none;
  background-color: transparent;
  padding: 0;
  height: 50px;
  width: 50px;
  padding-bottom: 2px;
}
.td_header_search .td_header_search_btn:hover {
  opacity: 0.7;
}

.td_header_contact_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.td_header_contact_list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 6px;
}
.td_header_contact_list li:not(:last-child) {
  padding-right: 20px;
  margin-right: 20px;
  border-right: 1px solid #fff;
}

.td_hero_icon_btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 14px;
}

.td_hero_toolbox_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.td_hero_toolbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.td_hero_toolbox li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.td_hero_toolbox li:not(:last-child) {
  margin-right: 15px;
  padding-right: 15px;
  border-right: 1px solid rgba(0, 0, 27, 0.5);
}

.td_circle_btn {
  height: 40px;
  width: 40px;
  border-radius: 50%;
  position: relative;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border: 1px solid var(--heading-color);
  background-color: transparent;
  outline: none;
  cursor: pointer;
}
.td_circle_btn img {
  height: 18px;
}
.td_circle_btn:hover {
  background-color: var(--gray-color);
}

.td_circle_btn_label {
  position: absolute;
  left: -4px;
  top: -4px;
  font-size: 10px;
  line-height: 16px;
  min-width: 16px;
  padding: 0 2px;
  border-radius: 8px;
  background-color: var(--accent-color);
  color: #fff;
  text-align: center;
}

.td_hero_text_btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 10px;
}
.td_hero_text_btn span {
  background-repeat: no-repeat;
  background-image: -webkit-gradient(
    linear,
    left top,
    right top,
    color-stop(0, currentColor),
    to(currentColor)
  );
  background-image: linear-gradient(90deg, currentColor 0, currentColor 100%);
  -webkit-transition: background-size 0.42s cubic-bezier(0.49, 0.49, 0.08, 1),
    color 0.27s ease-out;
  transition: background-size 0.42s cubic-bezier(0.49, 0.49, 0.08, 1),
    color 0.27s ease-out;
  background-position: 100% calc(100% - 0px);
  background-size: 0 2px;
}
.td_hero_text_btn:hover span {
  background-size: 100% 2px;
  background-position: 0 calc(100% - 0px);
}

.td_header_dropdown_btn {
  border-radius: 10px;
  border: 1px solid var(--border-color);
  background: rgba(235, 236, 237, 0.3);
  padding: 9px 20px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
}
.td_header_dropdown_btn.active + .td_header_dropdown_list {
  opacity: 1;
  visibility: visible;
}
.td_header_dropdown_btn.active .td_header_dropdown_btn_tobble_icon {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.td_header_dropdown_list {
  position: absolute;
  top: 100%;
  left: 0;
  width: 250px;
  border-radius: 7px;
  -webkit-box-shadow: 2px 2px 50px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 2px 2px 50px 0px rgba(0, 0, 0, 0.1);
  background-color: #fff;
  margin-top: 5px;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.td_header_dropdown_list a {
  display: block;
  padding: 8px 20px;
}

.td_header_dropdown_btn_tobble_icon {
  height: 24px;
  width: 24px;
  border-radius: 50%;
  border: 1px solid var(--border-color);
  background: rgba(217, 236, 255, 0.3);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.td_hamburger_btn {
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border: none;
  outline: none;
  background-color: transparent;
  color: #fff;
  width: 50px;
  height: 10px;
  position: relative;
}
@media (max-width: 1400px) {
  .td_hamburger_btn {
    width: 30px;
  }
}
@media (max-width: 1199px) {
  .td_hamburger_btn {
    display: none;
  }
}
.td_hamburger_btn::before,
.td_hamburger_btn::after {
  content: "";
  height: 2px;
  width: 100%;
  background-color: currentColor;
  position: absolute;
  left: 0;
}
.td_hamburger_btn::before {
  top: 0;
}
.td_hamburger_btn::after {
  bottom: 0;
}
.td_hamburger_btn:hover {
  opacity: 0.7;
}

.td_site_header.td_style_1 .td_main_header_in,
.td_site_header.td_style_1 .td_top_header_in {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  position: relative;
}
.td_site_header.td_style_1 .td_main_header_in {
  height: 90px;
}
.td_site_header.td_style_1 .td_top_header_in {
  height: 50px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.td_site_header.td_style_1 .td_main_header_right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
  gap: 30px;
}
@media (max-width: 1199px) {
  .td_site_header.td_style_1 .td_main_header_right {
    padding-right: 50px;
  }
}
.td_site_header.td_style_1 .td_top_header_right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
}
.td_site_header.td_style_1 .td_top_header .td_btn.td_style_1 .td_btn_in {
  padding: 13px 18px;
}
.td_site_header.td_style_1 .td_main_header_left {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 30px;
}
.td_site_header.td_style_1.td_type_1 {
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    color-stop(0.07%, #fff0d4),
    color-stop(95.86%, #d6fff7)
  );
  background: linear-gradient(90deg, #fff0d4 0.07%, #d6fff7 95.86%);
  -webkit-box-shadow: 2px 2px 50px 0px rgba(0, 0, 27, 0.1);
  box-shadow: 2px 2px 50px 0px rgba(0, 0, 27, 0.1);
}
.td_site_header.td_style_1.td_type_1 .td_header_dropdown_btn {
  border-radius: 30px;
  background-color: #fff;
}
.td_site_header.td_style_1.td_type_1 .td_header_dropdown_list {
  background-color: #fff;
}
.td_site_header.td_style_1.td_type_2 {
  -webkit-box-shadow: 2px 2px 50px 0px rgba(0, 0, 27, 0.1);
  box-shadow: 2px 2px 50px 0px rgba(0, 0, 27, 0.1);
  background-color: #fff;
}
@media (min-width: 1200px) {
  .td_site_header.td_style_1.td_type_2 .td_main_header_right {
    gap: 70px;
  }
}
.td_site_header.td_style_1.td_type_2 .td_circle_btn {
  background-color: rgba(235, 236, 237, 0.3);
}
.td_site_header.td_style_1.td_type_2 .td_circle_btn:hover {
  background-color: rgb(235, 236, 237);
}
.td_site_header.td_style_1.td_type_2 .td_top_header .td_circle_btn {
  background-color: #fff;
  height: 34px;
  width: 34px;
}
.td_site_header.td_style_1.td_type_2 .td_top_header .td_circle_btn img {
  height: 15px;
}
.td_site_header.td_style_1.td_type_2 .td_top_header .td_circle_btn:hover {
  background-color: rgba(255, 255, 255, 0.8);
}
.td_site_header.td_style_1.td_type_3 {
  background-color: var(--accent-color);
}
.td_site_header.td_style_1.td_type_3 .td_main_header_right {
  gap: 20px;
}
.td_site_header.td_style_1.td_type_3 .td_circle_btn {
  height: initial;
  width: initial;
  border: none;
  padding: 0;
}
.td_site_header.td_style_1.td_type_3 .td_circle_btn img {
  height: 24px;
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}
.td_site_header.td_style_1.td_type_3 .td_circle_btn:hover {
  background-color: transparent;
  opacity: 0.7;
}
.td_site_header.td_style_1.td_type_3 .td_header_dropdown_btn {
  border: none;
  background-color: transparent;
  padding: 0;
  color: #fff;
  gap: 8px;
}
.td_site_header.td_style_1.td_type_3 .td_header_dropdown_btn:hover {
  opacity: 0.8;
}
.td_site_header.td_style_1.td_type_3 .td_header_dropdown_list {
  left: initial;
  right: 0;
  width: 150px;
}
.td_site_header.td_style_1.td_type_3 .td_header_social_btns a:hover {
  color: #fff;
  opacity: 0.7;
}
@media (min-width: 1200px) {
  .td_site_header.td_style_1.td_type_3 .td_header_social_btns,
  .td_site_header.td_style_1.td_type_3 .td_nav .td_nav_list > li > a {
    color: #fff;
  }
  .td_site_header.td_style_1.td_type_3 .td_main_header_left .td_site_branding {
    display: none;
  }
}
@media (max-width: 1199px) {
  .td_site_header.td_style_1.td_type_3 .td_header_social_btns {
    display: none;
  }
  .td_site_header.td_style_1.td_type_3.td_heading_color .td_menu_toggle {
    color: #fff;
  }
  .td_site_header.td_style_1.td_type_3 .td_nav_list_wrap {
    background-color: var(--accent-color);
  }
  .td_site_header.td_style_1.td_type_3 .td_nav_list_wrap .td_site_branding {
    display: none;
  }
  .td_site_header.td_style_1.td_type_3 .td_nav {
    color: #fff;
  }
  .td_site_header.td_style_1.td_type_3 .td_nav a:hover {
    color: #fff;
  }
}
.td_site_header.td_style_1.td_type_4 .td_main_header_left {
  gap: 40px;
}
@media (min-width: 1200px) {
  .td_site_header.td_style_1.td_type_4 .td_nav .td_nav_list > li > a {
    color: #fff;
  }
  .td_site_header.td_style_1.td_type_4 .td_nav .td_nav_list > li > a:hover {
    opacity: 0.8;
  }
}
@media (max-width: 1199px) {
  .td_site_header.td_style_1.td_type_4 .td_nav_list_wrap {
    background-color: var(--accent-color);
  }
  .td_site_header.td_style_1.td_type_4 .td_nav {
    color: #fff;
  }
  .td_site_header.td_style_1.td_type_4 .td_btn.td_style_1 .td_btn_in {
    background-color: #fff;
    color: var(--heading-color);
  }
  .td_site_header.td_style_1.td_type_4
    .td_btn.td_style_1
    .td_btn_in.td_heading_bg::before {
    background-color: rgba(0, 0, 0, 0.2);
  }
  .td_site_header.td_style_1.td_type_4 .td_circle_btn {
    border-color: #fff;
  }
  .td_site_header.td_style_1.td_type_4 .td_circle_btn img {
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
  }
  .td_site_header.td_style_1.td_type_4 .td_circle_btn:hover img {
    -webkit-filter: initial;
    filter: initial;
  }
  .td_site_header.td_style_1.td_type_4.td_heading_color .td_menu_toggle {
    color: #fff;
  }
}
.td_site_header.td_style_1.td_type_4.td_gescout_sticky {
  background-color: var(--accent-color);
}
.td_site_header.td_style_1.td_type_4.td_gescout_sticky
  .td_btn.td_style_1
  .td_btn_in {
  background-color: #fff;
  color: var(--heading-color);
}
.td_site_header.td_style_1.td_type_4.td_gescout_sticky
  .td_btn.td_style_1
  .td_btn_in.td_heading_bg::before {
  background-color: rgba(0, 0, 0, 0.2);
}
.td_site_header.td_style_1.td_type_4.td_gescout_sticky .td_circle_btn {
  border-color: #fff;
}
.td_site_header.td_style_1.td_type_4.td_gescout_sticky .td_circle_btn img {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}
.td_site_header.td_style_1.td_type_4.td_gescout_sticky
  .td_circle_btn:hover
  img {
  -webkit-filter: initial;
  filter: initial;
}
.td_site_header.td_style_1.td_type_5 {
  background-color: #fff;
}
@media (min-width: 1600px) {
  .td_site_header.td_style_1.td_type_5 .td_main_header_left .td_site_branding {
    margin-right: 50px;
  }
}

.td_site_header.td_style_1.td_sticky_active {
  background-color: var(--white-color);
  -webkit-box-shadow: 0 10px 10px -10px rgba(33, 43, 53, 0.1);
  box-shadow: 0 10px 10px -10px rgba(33, 43, 53, 0.1);
}

.td_site_header_full_width .container {
  max-width: 100%;
  padding: 0 100px;
}

.td_side_header {
  position: fixed;
  top: 0;
  right: 0px;
  width: 100%;
  z-index: 1000;
  height: 100vh;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.td_side_header .td_side_header_overlay {
  background-color: rgba(0, 0, 0, 0.5);
  height: inherit;
  width: inherit;
  left: inherit;
  top: inherit;
  position: inherit;
  cursor: -webkit-zoom-out;
  cursor: zoom-out;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  opacity: 0;
}
.td_side_header .td_side_header_in {
  width: 500px;
  height: 100vh;
  background-color: var(--white-color);
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  margin-left: auto;
  overflow: auto;
  padding: 70px 50px 50px 50px;
  position: relative;
  z-index: 2;
  right: -500px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
@media (max-width: 450px) {
  .td_side_header .td_side_header_in {
    padding: 70px 50px 50px 20px;
  }
}
.td_side_header .td_side_header_heading {
  font-size: 28px;
  line-height: 1.2em;
  font-weight: 500;
  margin: 0;
}
.td_side_header .td_side_header_title {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 22px;
}
.td_side_header .td_side_header_box {
  padding: 30px 0;
}
.td_side_header .td_close {
  opacity: 0;
}
.td_side_header.active {
  opacity: 1;
  visibility: visible;
}
.td_side_header.active .td_side_header_overlay,
.td_side_header.active .td_close {
  opacity: 1;
}
.td_side_header.active .td_side_header_in {
  right: 0;
}
.td_side_header .td_side_header_contact_info li {
  padding-left: 32px;
  position: relative;
}
.td_side_header .td_side_header_contact_info li:not(:last-child) {
  margin-bottom: 20px;
}
.td_side_header .td_side_header_contact_info i {
  color: var(--accent-color);
  position: absolute;
  left: 0;
  top: 5px;
  font-size: 18px;
  width: 18px;
  text-align: center;
}

.td_close {
  position: fixed;
  right: 30px;
  top: 30px;
  height: 25px;
  width: 25px;
  border-radius: 50%;
  border: 2px solid currentColor;
  background-color: transparent;
  color: var(--heading-color);
  cursor: pointer;
  z-index: 2;
  z-index: 100;
}
.td_close::before,
.td_close::after {
  content: "";
  position: absolute;
  width: 50%;
  height: 2px;
  background-color: currentColor;
  left: 50%;
  top: 50%;
  margin-left: -25%;
  margin-top: -1px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.td_close::before {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.td_close:hover {
  color: var(--accent-color);
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}

.td_site_header_spacing_100 {
  height: 100px;
}

@media screen and (max-width: 1199px) {
  .td_site_header_spacing_100 {
    height: 80px;
  }
  .td_site_header.td_style_1 .container {
    max-width: 100%;
  }
  .td_site_header.td_style_1 .td_nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .td_site_header.td_style_1 .td_top_header {
    display: none;
  }
  .td_site_header.td_style_1 .td_btn.td_style_1 .td_btn_in {
    padding: 8px 15px;
    gap: 5px;
  }
}
.td_nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.td_sticky_header {
  position: fixed !important;
  width: 100%;
  z-index: 999;
}

.td_gescout_sticky {
  position: fixed !important;
  top: -110px;
  opacity: 0;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  background-color: #fff;
}
.td_gescout_sticky .td_top_header_in {
  overflow: hidden;
}
.td_gescout_sticky.td_white_bg {
  background-color: #fff;
}
.td_gescout_sticky.td_site_header.td_style_1 .td_top_header_in {
  height: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.td_gescout_sticky.td_fixed_sticky {
  top: 0;
  opacity: 1;
  -webkit-box-shadow: 2px 2px 50px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 2px 2px 50px 0px rgba(0, 0, 0, 0.1);
}

.td_gescout_show {
  top: 0 !important;
  opacity: 1;
  -webkit-box-shadow: 2px 2px 50px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 2px 2px 50px 0px rgba(0, 0, 0, 0.1);
}

.td_site_branding {
  display: inline-block;
}
.td_site_branding + .td_nav {
  margin-left: 60px;
}
@media (max-width: 1600px) {
  .td_site_branding + .td_nav {
    margin-left: 40px;
  }
}
@media (max-width: 1540px) {
  .td_site_branding + .td_nav {
    margin-left: 30px;
  }
}

.td_main_header {
  position: relative;
}
.td_main_header .container-fluid {
  padding-right: 95px;
  padding-left: 95px;
}

@media screen and (min-width: 1200px) {
  .td_main_header_center,
  .td_top_header_center {
    position: absolute;
    left: 50%;
    top: 0;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
  .td_site_header.td_style_1 .td_main_header_center {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 100%;
  }
  .td_site_header.td_style_1 .td_nav_list_wrap {
    height: 100%;
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
  }
  .td_site_header.td_style_1 .td_nav_list_wrap_in {
    height: 100%;
  }
  .td_site_header.td_style_1.td_type_3 .td_nav_list_wrap_in {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 50px;
  }
  .td_nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    height: 100%;
    line-height: 1.6em;
  }
  .td_nav .td_nav_list {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    height: inherit;
  }
  .td_nav .td_nav_list > li {
    margin-right: 25px;
    height: inherit;
  }
  .td_nav .td_nav_list > li:last-child {
    margin-right: 0;
  }
  .td_nav .td_nav_list > li > a {
    padding: 10px 0;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    position: relative;
    height: inherit;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .td_nav .td_nav_list > li > ul {
    left: 0;
    top: calc(100% + 15px);
    pointer-events: none;
  }
  .td_nav .td_nav_list > li:hover > ul {
    top: 100%;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .td_nav .td_nav_list > li.menu-item-has-children > a {
    position: relative;
  }
  .td_nav .td_nav_list > li.menu-item-has-children > a::after {
    content: "";
    display: inline-block;
    height: 6px;
    width: 6px;
    border: 2px solid currentColor;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    border-left: 0;
    border-top: 0;
    margin-left: 6px;
    position: relative;
    top: -1px;
    border-radius: 0px 0px 2px 0px;
  }
  .td_nav .td_nav_list li:not(.td_mega_menu) {
    position: relative;
  }
  .td_nav .td_nav_list ul {
    width: 260px;
    background-color: var(--white-color);
    position: absolute;
    -webkit-box-shadow: 2px 2px 50px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 2px 2px 50px 0px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    display: block !important;
    border-radius: 7px;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
  }
  .td_nav .td_nav_list ul li:hover ul {
    top: 0px;
  }
  .td_nav .td_nav_list ul li:hover > ul {
    opacity: 1;
    visibility: visible;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
  }
  .td_nav .td_nav_list ul a {
    display: block;
    line-height: inherit;
    padding: 10px 20px;
  }
  .td_nav .td_nav_list ul ul {
    top: 15px;
    left: 100%;
  }
  .td_menu_toggle,
  .td_munu_dropdown_toggle {
    display: none;
  }
  .td_nav .td_nav_list .td_mega_menu {
    position: relative;
  }
  .td_nav .td_nav_list .td_mega_wrapper {
    width: 1296px !important;
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    position: fixed;
    top: 90px !important;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    padding: 5px 15px 10px;
    border-top: 2px solid var(--accent-color);
    border-radius: 0 0 5px 5px;
  }
  .td_nav .td_nav_list .td_mega_wrapper h4 {
    padding: 8px 10px;
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 0;
    color: inherit;
  }
  .td_nav .td_nav_list .td_mega_wrapper a {
    padding: 7px 10px;
  }
  .td_nav .td_nav_list .td_mega_wrapper > li {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    padding: 10px 0;
  }
  .td_nav .td_nav_list .td_mega_wrapper > li ul {
    position: initial;
    border: none;
    padding: 0;
    width: 100%;
    -webkit-box-shadow: none;
    box-shadow: none;
    background-color: transparent;
  }
  .td_nav .td_nav_list .td_mega_wrapper > li ul a {
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
  }
  .td_nav .td_nav_list .td_mega_menu:hover .td_mega_wrapper li ul {
    opacity: 1;
    visibility: visible;
  }
  .td_top_header + .td_main_header .td_nav .td_nav_list .td_mega_wrapper {
    top: 140px !important;
  }
  .td_gescout_show
    .td_top_header
    + .td_main_header
    .td_nav
    .td_nav_list
    .td_mega_wrapper {
    top: 90px !important;
  }
  .td_site_header.td_style_1.td_size_md .td_nav .td_nav_list .td_mega_wrapper {
    top: 85px !important;
  }
  .td_nav
    .td_nav_list
    > li
    ul:not(.td_mega_wrapper)
    .menu-item-has-children
    > a {
    position: relative;
  }
}
@media screen and (max-width: 1600px) {
  .td_main_header .container-fluid {
    padding-right: 25px;
    padding-left: 25px;
  }
}
@media screen and (max-width: 1400px) {
  .td_nav .td_nav_list .td_mega_wrapper {
    width: 1116px !important;
  }
  .td_site_header_full_width .container {
    max-width: 100%;
  }
}
@media screen and (max-width: 1199px) {
  .td_main_header .container-fluid {
    padding-right: 14px;
    padding-left: 14px;
  }
  .td_nav .td_nav_list .td_mega_wrapper {
    width: 100% !important;
  }
  .td_site_header_full_width .container {
    padding: 0 15px;
  }
  .td_munu_dropdown_toggle {
    position: absolute;
    height: 40px;
    width: 100%;
    top: 0;
    left: 0px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    padding: 23px 18px;
    cursor: pointer;
    z-index: 3;
  }
  .td_munu_dropdown_toggle span {
    display: block;
    position: relative;
    height: 10px;
    width: 10px;
  }
  .td_munu_dropdown_toggle span:before,
  .td_munu_dropdown_toggle span:after {
    content: "";
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    height: 2px;
    width: 10px;
    background-color: currentColor;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .td_munu_dropdown_toggle span:before {
    -webkit-transform: translate(-50%, -50%) rotate(90deg);
    transform: translate(-50%, -50%) rotate(90deg);
  }
  .td_munu_dropdown_toggle.active span:before {
    -webkit-transform: translate(-50%, -50%) rotate(0deg);
    transform: translate(-50%, -50%) rotate(0deg);
  }
  .menu-item-has-children .menu-item-has-children .td_munu_dropdown_toggle {
    padding: 20px 18px;
  }
  .td_site_branding {
    position: relative;
    z-index: 101;
  }
  .td_nav_list_wrap {
    position: fixed;
    width: 100vw;
    left: -100vw;
    top: 0;
    background-color: #fff;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    height: 100vh;
    padding-top: 90px;
  }
  .td_nav_list_wrap.td_active {
    left: 0vw;
  }
  .td_nav .td_nav_list_wrap_in {
    max-height: 100%;
    overflow: auto;
  }
  .td_nav .td_nav_list {
    width: 100%;
    padding: 0;
    line-height: 1.6em;
  }
  .td_nav .td_nav_list ul {
    padding-left: 15px;
    display: none;
  }
  .td_nav .td_nav_list a {
    display: block;
    padding: 12px 15px;
    line-height: 16px;
  }
  .td_nav .td_nav_list > li > a {
    font-size: 18px;
    line-height: 22px;
  }
  .td_nav .menu-item-has-children {
    position: relative;
  }
  /*Mobile Menu Button*/
  .td_menu_toggle {
    display: inline-block;
    width: 30px;
    height: 27px;
    cursor: pointer;
    position: absolute;
    top: 27px;
    right: 30px;
    color: #fff;
  }
  .td_menu_toggle span,
  .td_menu_toggle span:before,
  .td_menu_toggle span:after {
    width: 100%;
    height: 2px;
    background-color: currentColor;
    display: block;
  }
  .td_menu_toggle span {
    margin: 0 auto;
    position: relative;
    top: 12px;
    -webkit-transition-duration: 0s;
    transition-duration: 0s;
    -webkit-transition-delay: 0.2s;
    transition-delay: 0.2s;
  }
  .td_menu_toggle span:before {
    content: "";
    position: absolute;
    margin-top: -9px;
    -webkit-transition-property: margin, -webkit-transform;
    transition-property: margin, -webkit-transform;
    transition-property: margin, transform;
    transition-property: margin, transform, -webkit-transform;
    -webkit-transition-duration: 0.2s;
    transition-duration: 0.2s;
    -webkit-transition-delay: 0.2s, 0s;
    transition-delay: 0.2s, 0s;
  }
  .td_menu_toggle span:after {
    content: "";
    position: absolute;
    margin-top: 9px;
    -webkit-transition-property: margin, -webkit-transform;
    transition-property: margin, -webkit-transform;
    transition-property: margin, transform;
    transition-property: margin, transform, -webkit-transform;
    -webkit-transition-duration: 0.2s;
    transition-duration: 0.2s;
    -webkit-transition-delay: 0.2s, 0s;
    transition-delay: 0.2s, 0s;
  }
  .td_site_header.td_style_1 .td_menu_toggle {
    top: 50%;
    right: 0px;
    margin-top: -13px;
  }
  .td_site_header.td_style_1 .td_main_header_right {
    gap: 15px;
  }
  .td_site_header.td_style_1.td_heading_color .td_menu_toggle {
    color: var(--heading-color);
  }
  .td_toggle_active span {
    background-color: rgba(0, 0, 0, 0);
    -webkit-transition-delay: 0.2s;
    transition-delay: 0.2s;
  }
  .td_toggle_active span:before {
    margin-top: 0;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition-delay: 0s, 0.2s;
    transition-delay: 0s, 0.2s;
  }
  .td_toggle_active span:after {
    margin-top: 0;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-transition-delay: 0s, 0.2s;
    transition-delay: 0s, 0.2s;
  }
  .td_nav .td_nav_list a {
    position: relative;
  }
  .td_site_header.td_style_1 .td_main_header_in {
    height: 80px;
  }
  .td_site_header .current-menu-item > a:before {
    display: none;
  }
  .td_site_header.td_style_1 .td_main_header_center .td_site_branding {
    position: absolute;
    left: 0px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  .td_site_header.td_style_1 {
    top: 0;
  }
  .td_nav .td_nav_list img {
    display: none;
  }
  .td_mega_wrapper h4 {
    font-size: inherit;
    margin: 0;
    padding: 12px 15px;
    line-height: 16px;
    color: inherit;
  }
}
@media screen and (max-width: 991px) {
  .td_site_header .container {
    max-width: 100%;
  }
  .td_site_header.td_style_1 .td_header_category_wrap {
    display: none;
  }
}
@media screen and (max-width: 575px) {
  .td_site_header.td_style_1 .td_btn.td_style_1 .td_btn_in i,
  .td_site_header.td_style_1 .td_btn.td_style_1 .td_btn_in svg {
    display: none;
  }
  .td_site_header.td_style_1 .td_hero_toolbox_wrap .td_btn.td_style_1 {
    display: none;
  }
  .td_header_btns {
    gap: 10px;
  }
  .td_header_search_wrap {
    position: fixed;
    top: 60px;
    left: 14px;
    right: 14px;
  }
  .td_header_search_wrap .td_header_search {
    width: 100%;
  }
  .td_site_header.td_style_1.td_type_3 .td_main_header_right {
    gap: 15px;
  }
}
@media screen and (max-width: 420px) {
  .td_site_header.td_style_1 .td_btn.td_style_1 .td_btn_in {
    padding: 6px 10px;
    gap: 5px;
    font-size: 14px;
  }
  .td_site_header.td_style_1 .td_main_header_right {
    padding-right: 45px;
  }
  .td_site_header.td_style_1 .td_main_header_right {
    gap: 10px;
  }
  .td_circle_btn {
    height: 34px;
    width: 34px;
  }
  .td_hero_icon_btns {
    gap: 7px;
  }
  .td_hero_toolbox li:not(:last-child) {
    margin-right: 10px;
    padding-right: 10px;
  }
  .td_language_wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .td_language_wrap .td_header_dropdown_btn span {
    display: none;
  }
  .td_language_wrap .td_header_dropdown_btn img {
    height: 22px;
  }
}
@media screen and (max-width: 370px) {
  .td_header_btns > *:nth-child(2) {
    display: none;
  }
  .td_site_header.td_style_1 .td_hero_text_btn span {
    display: none;
  }
  .td_site_header.td_style_1 .td_hero_text_btn img {
    height: 24px;
  }
  .td_site_header.td_style_1.td_type_1 .td_btn.td_style_1 {
    display: none;
  }
  .td_site_header.td_style_1.td_type_1 .td_main_header_right {
    gap: 0;
  }
}
@media screen and (max-width: 340px) {
  .td_site_header.td_style_1.td_type_2 .td_wishlist_btn {
    display: none;
  }
}
/*--------------------------------------------------------------
9. Footer
----------------------------------------------------------------*/
.td_footer.td_style_1 {
  color: #fff;
  background-color: #150005;
}
.td_footer.td_style_1 .td_newsletter.td_style_1 .td_newsletter_input {
  padding-right: 135px;
}
.td_footer.td_style_1.td_color_1 {
  background-color: var(--heading-color);
}
.td_footer.td_style_1.td_color_2 {
  background-color: #fff;
  color: var(--heading-color);
}
.td_footer.td_style_1.td_color_2 .td_footer_widget_title {
  color: var(--heading-color);
}
.td_footer.td_style_1.td_color_2 .td_footer_bottom_in {
  border-color: var(--border-color);
}
.td_footer.td_style_1.td_color_3 {
  background-color: var(--accent-color);
}
.td_footer.td_style_1.td_color_4 {
  background-color: var(--accent-color);
}
.td_footer.td_style_1.td_color_4 a:hover {
  color: rgba(255, 255, 255, 0.75);
}
.td_footer.td_style_1.td_color_4 .td_footer_bottom {
  background-color: #fff;
  color: var(--heading-color);
}
.td_footer.td_style_1.td_type_1 .td_footer_bottom_in {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.td_footer.td_style_1.td_type_2 {
  position: relative;
}
.td_footer.td_style_1.td_type_2 .container {
  position: relative;
  z-index: 3;
}
.td_footer.td_style_1.td_type_2 a:hover {
  color: rgba(255, 255, 255, 0.8);
}
.td_footer.td_style_1.td_type_2 .td_newsletter.td_style_1 .td_btn.td_style_1 {
  border-radius: 10px 0 0 10px;
}
.td_footer.td_style_1.td_type_2
  .td_newsletter.td_style_1
  .td_btn.td_style_1
  .td_btn_in {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.td_footer.td_style_1.td_type_2
  .td_newsletter.td_style_1
  .td_btn.td_style_1
  .td_btn_in::before {
  display: none;
}
.td_footer.td_style_1.td_type_2
  .td_newsletter.td_style_1
  .td_btn.td_style_1:hover
  .td_white_color {
  color: rgba(255, 255, 255, 0.75);
}
.td_footer.td_style_1.td_type_2 .td_newsletter.td_style_1 .td_newsletter_input {
  border-radius: 10px 0 0 10px;
}
.td_footer.td_style_1.td_type_2 .td_footer_social_btns a:hover {
  background-color: #fff;
  color: var(--accent-color);
}
.td_footer.td_style_1.td_type_2 .td_footer_shape_1 {
  left: 4%;
  top: 67px;
}
.td_footer.td_style_1.td_type_2 .td_footer_shape_2 {
  left: 3%;
  bottom: 90px;
}
.td_footer.td_style_1.td_type_2 .td_footer_shape_3 {
  right: 3%;
  top: 67px;
}
.td_footer.td_style_1.td_type_2 .td_footer_shape_4 {
  right: 5%;
  bottom: 90px;
}
.td_footer.td_style_1.td_type_3 {
  padding-top: 108px;
  position: relative;
}
@media (max-width: 991px) {
  .td_footer.td_style_1.td_type_3 {
    padding-top: 80px;
  }
}
.td_footer.td_style_1.td_type_3 .td_footer_bottom_in {
  border: none;
  width: calc(100vw - (100vw - 1300px) / 2);
  padding-right: 50px;
}
@media (max-width: 1400px) {
  .td_footer.td_style_1.td_type_3 .td_footer_bottom_in {
    width: calc(100vw - (100vw - 1115px) / 2);
  }
}
@media (max-width: 1199px) {
  .td_footer.td_style_1.td_type_3 .td_footer_bottom_in {
    width: calc(100vw - (100vw - 935px) / 2);
    padding-right: 20px;
  }
}
@media (max-width: 991px) {
  .td_footer.td_style_1.td_type_3 .td_footer_bottom_in {
    width: 100%;
    padding-right: 0px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 15px 0;
    padding: 25px 0 15px 0;
  }
}
.td_footer.td_style_1.td_type_3 .td_footer_social_btns {
  margin-left: 0;
}
.td_footer.td_style_1.td_type_3 .td_btn.td_style_1 {
  right: 1px;
  top: 1px;
}
.td_footer.td_style_1.td_type_3 .td_btn.td_style_1 .td_btn_in {
  padding: 12px 24px;
}
.td_footer.td_style_1.td_type_3 .td_footer_row .td_footer_col:first-child {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.td_footer.td_style_1.td_type_3 .td_footer_row .td_footer_col:nth-child(3) {
  -webkit-box-flex: 1.7;
  -ms-flex: 1.7;
  flex: 1.7;
  position: relative;
  padding-left: 90px;
}
@media (max-width: 1199px) {
  .td_footer.td_style_1.td_type_3 .td_footer_row .td_footer_col:nth-child(3) {
    padding-left: 0;
  }
}
.td_footer.td_style_1.td_type_3
  .td_footer_row
  .td_footer_col:nth-child(3)::before {
  content: "";
  position: absolute;
  height: 200px;
  width: 1px;
  border-left: 1px dashed #fff;
  opacity: 0.4;
  left: 0;
  top: 70px;
}
@media (max-width: 1199px) {
  .td_footer.td_style_1.td_type_3
    .td_footer_row
    .td_footer_col:nth-child(3)::before {
    display: none;
  }
}
.td_footer.td_style_1.td_type_3 .td_footer_row .td_footer_col:nth-child(4) {
  -webkit-box-flex: 1.6;
  -ms-flex: 1.6;
  flex: 1.6;
}
.td_footer.td_style_1.td_type_3 .td_footer_address_widget_wrap {
  height: 500px;
  width: 500px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 50%;
  top: 85px;
  right: 40px;
}
@media (max-width: 1650px) {
  .td_footer.td_style_1.td_type_3 .td_footer_address_widget_wrap {
    width: 400px;
    height: 400px;
  }
}
@media (max-width: 1400px) {
  .td_footer.td_style_1.td_type_3 .td_footer_address_widget_wrap {
    width: 340px;
    height: 340px;
    top: 130px;
    right: 20px;
  }
}
@media (max-width: 1199px) {
  .td_footer.td_style_1.td_type_3 .td_footer_address_widget_wrap {
    width: initial;
    height: initial;
    border: none;
    position: initial;
    margin-top: 70px;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
  .td_footer.td_style_1.td_type_3 .td_footer_address_widget_wrap::before,
  .td_footer.td_style_1.td_type_3 .td_footer_address_widget_wrap::after {
    display: none;
  }
}
@media (max-width: 575px) {
  .td_footer.td_style_1.td_type_3 .td_footer_address_widget_wrap {
    margin-top: 0;
  }
}
.td_footer.td_style_1.td_type_3 .td_footer_address_widget_wrap::before,
.td_footer.td_style_1.td_type_3 .td_footer_address_widget_wrap::after {
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  height: 160px;
  width: 160px;
  border-radius: 50%;
}
.td_footer.td_style_1.td_type_3 .td_footer_address_widget_wrap::after {
  height: 100px;
  width: 100px;
}
.td_footer.td_style_1.td_type_3 .td_footer_address_widget {
  position: relative;
  z-index: 2;
}

.td_footer_row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 50px 80px;
  padding: 100px 0 70px;
}
@media (max-width: 1400px) {
  .td_footer_row {
    gap: 50px 60px;
  }
}
@media (max-width: 1199px) {
  .td_footer_row {
    gap: 50px 30px;
  }
}
@media (max-width: 991px) {
  .td_footer_row {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 50px 50px;
    padding: 60px 0;
  }
  .td_footer_row .td_footer_col {
    -webkit-box-flex: 0 !important;
    -ms-flex: none !important;
    flex: none !important;
    width: calc(50% - 25px);
  }
  .td_footer_row .td_mb_30 {
    margin-bottom: 20px;
  }
}
@media (max-width: 575px) {
  .td_footer_row {
    gap: 40px 0px;
  }
  .td_footer_row .td_footer_col {
    width: 100%;
  }
}
@media (min-width: 992px) {
  .td_footer_row .td_footer_col {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
  .td_footer_row .td_footer_col:first-child {
    -webkit-box-flex: 1.6;
    -ms-flex: 1.6;
    flex: 1.6;
  }
  .td_footer_row .td_footer_col:nth-child(4) {
    -webkit-box-flex: 1.6;
    -ms-flex: 1.6;
    flex: 1.6;
  }
}

.td_footer_widget_menu {
  margin: 0;
  padding: 0;
  list-style: none;
}
.td_footer_widget_menu li:not(:last-child) {
  margin-bottom: 13px;
}

.td_footer_text_widget p {
  margin-bottom: 0;
}
.td_footer_text_widget img + p,
.td_footer_text_widget svg + p {
  margin-top: 20px;
  opacity: 0.75;
}
.td_footer_text_widget svg {
  color: var(--accent-color);
}

.td_copyright a {
  color: var(--accent-color);
}

.td_footer_bottom_in {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 33px 0;
  gap: 5px 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}
@media (max-width: 767px) {
  .td_footer_bottom_in {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
  }
}
.td_footer_bottom_in .td_footer_widget_menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 2px 0px;
}
.td_footer_bottom_in .td_footer_widget_menu li {
  margin-bottom: 0;
}
.td_footer_bottom_in .td_footer_widget_menu li:not(:last-child)::after {
  content: "/";
  margin: 0 5px;
}

.td_footer_widget_menu a,
.td_copyright a,
.td_page_heading .breadcrumb a {
  background-repeat: no-repeat;
  background-image: -webkit-gradient(
    linear,
    left top,
    right top,
    color-stop(0, currentColor),
    to(currentColor)
  );
  background-image: linear-gradient(90deg, currentColor 0, currentColor 100%);
  -webkit-transition: background-size 0.42s cubic-bezier(0.49, 0.49, 0.08, 1),
    color 0.27s ease-out;
  transition: background-size 0.42s cubic-bezier(0.49, 0.49, 0.08, 1),
    color 0.27s ease-out;
  background-position: 100% calc(100% - 0px);
  background-size: 0 1px;
}
.td_footer_widget_menu a:hover,
.td_copyright a:hover,
.td_page_heading .breadcrumb a:hover {
  background-size: 100% 1px;
  background-position: 0 calc(100% - 0px);
}

.td_footer_address_widget li {
  padding-left: 34px;
  position: relative;
}
.td_footer_address_widget li:not(:last-child) {
  margin-bottom: 20px;
}
.td_footer_address_widget li i {
  position: absolute;
  left: 0;
  top: 0px;
  font-size: 24px;
}

.td_footer_text_widget + .td_footer_address_widget {
  margin-top: 25px;
}

.td_footer_text_widget + .td_footer_social_btns {
  margin-top: 30px;
}

.td_footer_social_btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
  margin-left: -8px;
}
.td_footer_social_btns a {
  height: 45px;
  width: 45px;
  border-radius: 50%;
}
.td_footer_social_btns a:hover {
  background-color: var(--accent-color);
  color: #fff;
}

.td_newsletter.td_style_1 + .td_footer_social_btns {
  margin-top: 30px;
}

/*--------------------------------------------------------------
10. Sidebar
----------------------------------------------------------------*/
.td_left_sidebar {
  padding-left: 70px;
}
@media (max-width: 1400px) {
  .td_left_sidebar {
    padding-left: 30px;
  }
}
@media (max-width: 1199px) {
  .td_left_sidebar {
    padding-left: 0px;
  }
}

.td_sidebar_widget_title {
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 10px;
}

.td_sidebar_widget:not(:last-child) {
  margin-bottom: 50px;
}

.td_sidebar_search {
  position: relative;
}
.td_sidebar_search .td_sidebar_search_input {
  height: 54px;
  background-color: #f5f5f5;
  border: none;
  border-radius: 10px;
  padding: 5px 64px 5px 20px;
  width: 100%;
  outline: none;
}
.td_sidebar_search .td_sidebar_search_btn {
  position: absolute;
  border-radius: 10px;
  height: 54px;
  width: 54px;
  background-color: var(--accent-color);
  color: #fff;
  outline: none;
  border: none;
  position: absolute;
  right: 0;
  top: 0;
}
.td_sidebar_search .td_sidebar_search_btn:hover {
  background-color: var(--heading-color);
}

.td_recent_post_list li:not(:last-child) {
  margin-bottom: 20px;
}

.td_recent_post {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
}
.td_recent_post h3 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.td_recent_post .td_recent_post_thumb {
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  width: 85px;
  height: 80px;
  border-radius: 10px;
  overflow: hidden;
}
.td_recent_post .td_recent_post_thumb img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: inherit;
  -webkit-transition: all 0.8s ease;
  transition: all 0.8s ease;
}
.td_recent_post .td_recent_post_thumb:hover img {
  -webkit-transform: scale(1.08);
  transform: scale(1.08);
}
.td_recent_post .td_recent_post_date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 7px;
}
.td_recent_post .td_recent_post_date i {
  color: var(--accent-color);
}

.td_sidebar_widget_list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.td_sidebar_widget_list li:not(:last-child) {
  margin-bottom: 15px;
}
.td_sidebar_widget_list li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.tagcloud {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 10px;
}
.tagcloud a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 6px 14px;
  border-radius: 5px;
  background-color: var(--gray-color);
}
.tagcloud a:hover {
  background-color: var(--accent-color);
  color: #fff;
}

/*--------------------------------------------------------------
11. About
----------------------------------------------------------------*/
.td_about.td_style_1 .td_section_heading.td_style_1 .td_section_subtitle {
  margin-top: 30px;
}
.td_about.td_style_1 .td_about_thumb_wrap {
  margin-right: 34px;
  position: relative;
  padding-bottom: 36.7%;
}
@media (max-width: 1199px) {
  .td_about.td_style_1 .td_about_thumb_wrap {
    margin-right: 0;
  }
}
.td_about.td_style_1 .td_about_thumb_1 {
  padding-right: 124px;
  position: relative;
  z-index: 1;
}
.td_about.td_style_1 .td_about_thumb_2 {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  padding-left: 46%;
  z-index: 2;
  height: 100%;
  padding-top: 49.5%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.td_about.td_style_1 .td_about_thumb_2 img {
  border-style: solid;
  border-color: #fff;
  border-width: 10px 0 0 10px;
}
.td_about.td_style_1 .td_about_year {
  position: absolute;
  -webkit-writing-mode: vertical-lr;
  -ms-writing-mode: tb-lr;
  writing-mode: vertical-lr;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
  top: 14px;
  right: 25px;
  -webkit-text-stroke: 1px var(--heading-color);
  color: transparent;
  z-index: 3;
}
.td_about.td_style_1 .td_circle_text {
  height: 200px;
  width: 200px;
  border: 3px solid var(--heading-color);
  border-radius: 50%;
  background-color: var(--accent-color);
  position: absolute;
  padding: 17px;
  bottom: 0;
  left: 35px;
  z-index: 3;
}
@media (max-width: 575px) {
  .td_about.td_style_1 .td_circle_text {
    -webkit-transform: scale(0.7);
    transform: scale(0.7);
    left: 5px;
    bottom: -20px;
  }
}
.td_about.td_style_1 .td_circle_text svg {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.td_about.td_style_1 .td_circle_text img {
  -webkit-animation: rotate-anim 40s linear infinite;
  animation: rotate-anim 40s linear infinite;
}
.td_about.td_style_1 .td_circle_shape {
  position: absolute;
  height: 200px;
  width: 200px;
  border: 1px solid var(--heading-color);
  border-radius: 50%;
  left: 0;
  bottom: 70px;
}
@media (max-width: 575px) {
  .td_about.td_style_1 .td_circle_shape {
    -webkit-transform: scale(0.7);
    transform: scale(0.7);
    left: -30px;
    bottom: 40px;
  }
}

/*--------------------------------------------------------------
12. Newsletter
----------------------------------------------------------------*/
.td_newsletter.td_style_1 .td_newsletter_form {
  position: relative;
}
.td_newsletter.td_style_1 .td_newsletter_input {
  display: block;
  width: 100%;
  height: 50px;
  border-radius: 30px;
  border: 1px solid var(--border-color);
  padding: 10px 170px 10px 20px;
  outline: none;
}
@media (max-width: 575px) {
  .td_newsletter.td_style_1 .td_newsletter_input {
    padding: 10px 20px;
  }
}
.td_newsletter.td_style_1 .td_newsletter_input:focus {
  border-color: var(--accent-color);
}
.td_newsletter.td_style_1 .td_btn.td_style_1 {
  position: absolute;
  right: 0;
  top: 0;
}
@media (max-width: 575px) {
  .td_newsletter.td_style_1 .td_btn.td_style_1 {
    position: initial;
    margin-top: 10px;
    width: 100%;
  }
}
.td_newsletter.td_style_1.td_type_1 {
  min-height: 440px;
  background-color: #d6fef6;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
@media (max-width: 767px) {
  .td_newsletter.td_style_1.td_type_1 br {
    display: none;
  }
}
@media (max-width: 575px) {
  .td_newsletter.td_style_1.td_type_1 {
    min-height: 340px;
  }
}
.td_newsletter.td_style_1.td_type_1 .td_newsletter_form {
  max-width: 440px;
  margin-left: auto;
  margin-right: auto;
}
.td_newsletter.td_style_1.td_type_1 .container {
  position: relative;
  z-index: 2;
}
.td_newsletter.td_style_1.td_type_1 .td_newsletter_img_1,
.td_newsletter.td_style_1.td_type_1 .td_newsletter_img_2 {
  max-height: 100%;
  bottom: 0;
}
.td_newsletter.td_style_1.td_type_1 .td_newsletter_img_1 img,
.td_newsletter.td_style_1.td_type_1 .td_newsletter_img_2 img {
  max-height: 100%;
}
.td_newsletter.td_style_1.td_type_1 .td_newsletter_img_1 {
  right: 64%;
}
@media (max-width: 575px) {
  .td_newsletter.td_style_1.td_type_1 .td_newsletter_img_1 {
    display: none;
  }
}
.td_newsletter.td_style_1.td_type_1 .td_newsletter_img_2 {
  left: 64%;
}
@media (max-width: 575px) {
  .td_newsletter.td_style_1.td_type_1 .td_newsletter_img_2 {
    display: none;
  }
}
.td_newsletter.td_style_1.td_type_2 {
  background-color: var(--accent-color);
  overflow: hidden;
}
.td_newsletter.td_style_1.td_type_2 .td_newsletter_form {
  max-width: 757px;
  margin-left: auto;
  margin-right: auto;
}
.td_newsletter.td_style_1.td_type_2 .td_newsletter_input {
  height: 60px;
  border-radius: 0;
  font-weight: 500;
}
@media (max-width: 575px) {
  .td_newsletter.td_style_1.td_type_2 .td_newsletter_input {
    padding: 5px 20px;
  }
}
@media (max-width: 575px) {
  .td_newsletter.td_style_1.td_type_2 .td_btn.td_style_1 {
    width: 100%;
    position: initial;
    margin-top: 10px;
  }
}
.td_newsletter.td_style_1.td_type_2 .td_btn.td_style_1 .td_btn_in {
  height: 60px;
  padding: 13px 35px;
}
.td_newsletter.td_style_1.td_type_2 .container {
  position: relative;
  z-index: 2;
}
@media (max-width: 991px) {
  .td_newsletter.td_style_1.td_type_2 br {
    display: none;
  }
}
.td_newsletter.td_style_1 .td_newsletter_shape_1 {
  height: 260px;
  width: 260px;
  border-radius: 50%;
  left: -78px;
  bottom: -84px;
  border: 1px solid #fff;
}
.td_newsletter.td_style_1 .td_newsletter_shape_2 {
  width: 260px;
  height: 335px;
  border-radius: 50%;
  right: -99px;
  bottom: -146px;
  border: 1px solid #fff;
}
@media (max-width: 991px) {
  .td_newsletter.td_style_1 .td_newsletter_shape_2 {
    display: none;
  }
}
.td_newsletter.td_style_1 .td_newsletter_shape_3 {
  width: 260px;
  height: 335px;
  border-radius: 50%;
  right: -154px;
  top: -196px;
  background-color: #fff;
  opacity: 0.1;
}
.td_newsletter.td_style_1 .td_newsletter_shape_4 {
  left: 12%;
  top: 36%;
}
@media (max-width: 991px) {
  .td_newsletter.td_style_1 .td_newsletter_shape_4 {
    display: none;
  }
}

/*--------------------------------------------------------------
13. Hero
----------------------------------------------------------------*/
.td_hero_btn_group {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 15px 40px;
  padding: 25px 40px;
  max-width: 1090px;
  margin-left: auto;
  margin-right: auto;
  margin-top: -65px;
}
@media (max-width: 1199px) {
  .td_hero_btn_group {
    gap: 15px 20px;
    padding: 25px 30px;
  }
}
@media (max-width: 767px) {
  .td_hero_btn_group {
    padding: 20px;
    gap: 10px;
  }
}
.td_hero_btn_group::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.4);
  border-bottom: 2px solid rgba(255, 255, 255, 0.4);
  border-left: 1px solid rgba(255, 255, 255, 0.4);
  opacity: 0.4;
  background: rgba(235, 236, 237, 0.05);
  -webkit-box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}
.td_hero_btn_group .td_btn.td_style_1 {
  min-width: 270px;
}
.td_hero_btn_group .td_btn.td_style_1 .td_btn_in {
  padding: 25px 40px;
}
@media (max-width: 767px) {
  .td_hero_btn_group .td_btn.td_style_1 {
    width: 100%;
    min-width: 100%;
  }
  .td_hero_btn_group .td_btn.td_style_1 .td_btn_in {
    padding: 15px 30px;
  }
}

.td_avatars_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: left;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 15px;
}
.td_avatars_wrap h3,
.td_avatars_wrap p {
  line-height: 24px;
}
.td_avatars_wrap.td_type_1 {
  position: absolute;
  right: -22%;
  top: 24%;
  padding: 15px 15px;
  background-color: #fff;
  border-style: solid;
  border-width: 1px 3px 3px 1px;
  border-color: #ebeced var(--accent-color) var(--accent-color) #ebeced;
  border-radius: 10px;
}
.td_avatars_wrap.td_type_1 h3,
.td_avatars_wrap.td_type_1 p {
  line-height: 18px;
}
.td_avatars_wrap.td_type_1 .td_avatars {
  padding-left: 15px;
}
.td_avatars_wrap.td_type_1 .td_avatars > * {
  border-width: 2px;
  height: 30px;
  width: 30px;
  margin-left: -15px;
}
.td_avatars_wrap.td_type_1 .td_avatars > * i {
  font-size: 12px;
}
.td_avatars_wrap.td_type_2 {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 8px;
  background-color: #fff;
  padding: 30px;
  position: absolute;
  border-radius: 13px;
  min-width: 326px;
  bottom: 0;
  z-index: 1;
  right: 75%;
  -webkit-box-shadow: 2px 2px 50px rgba(0, 0, 27, 0.1);
  box-shadow: 2px 2px 50px rgba(0, 0, 27, 0.1);
}
@media (max-width: 1670px) {
  .td_avatars_wrap.td_type_2 {
    right: initial;
    left: -30px;
  }
}
@media (max-width: 575px) {
  .td_avatars_wrap.td_type_2 {
    display: none;
  }
}
.td_avatars_wrap.td_type_2 .td_avatars {
  padding-left: 20px;
}
.td_avatars_wrap.td_type_2 .td_avatars > * {
  height: 50px;
  width: 50px;
  border: none;
  margin-left: -20px;
}
.td_avatars_wrap.td_type_2 .td_avatar_end {
  background-color: var(--accent-color);
  color: #fff;
}

.td_avatars {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-left: 30px;
}
.td_avatars > * {
  border: 4px solid #fff;
  height: 50px;
  width: 50px;
  border-radius: 50%;
  margin-left: -30px;
}
.td_avatars > * img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: inherit;
}
.td_avatars > *:last-child {
  border: none;
  position: relative;
}
.td_avatars > * i {
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: rgba(0, 0, 27, 0.85);
  color: #fff;
  border-radius: inherit;
}

.td_btns_group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 12px 20px;
}

.td_hero.td_style_1 {
  height: calc(100vh - 65px);
  min-height: 700px;
  max-height: 1100px;
  position: relative;
  padding-top: 20px;
}
@media (max-width: 991px) {
  .td_hero.td_style_1 {
    height: initial;
    min-height: initial;
    padding: 160px 0 150px;
  }
}
.td_hero.td_style_1::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: #00001b;
  -webkit-filter: blur(250px);
  filter: blur(250px);
  left: 13%;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.td_hero.td_style_1 .container {
  position: relative;
  z-index: 2;
}
.td_hero.td_style_1 .td_hero_text {
  max-width: 673px;
}
@media (max-width: 991px) {
  .td_hero.td_style_1 .td_hero_text {
    max-width: 500px;
  }
}
.td_hero.td_style_1 .td_hero_title span {
  display: inline-block;
  background-color: var(--accent-color);
}
.td_hero.td_style_1 .td_lines {
  position: absolute;
  height: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 80%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
  justify-content: space-around;
}
.td_hero.td_style_1 .td_lines span {
  width: 1px;
  background-color: rgba(235, 236, 237, 0.1);
}

.td_hero.td_style_2 {
  max-height: 1000px;
  min-height: 700px;
  height: 100vh;
  position: relative;
  padding: 140px 0 0;
}
@media (max-width: 991px) {
  .td_hero.td_style_2 {
    height: initial;
    max-height: initial;
    padding: 160px 0 80px;
  }
}
.td_hero.td_style_2::before {
  content: "";
  opacity: 0.03;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    color-stop(46.11%, #280bb7),
    color-stop(60.51%, #120551)
  );
  background: linear-gradient(180deg, #280bb7 46.11%, #120551 60.51%);
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
}
.td_hero.td_style_2 .container {
  position: relative;
  z-index: 3;
}
.td_hero.td_style_2 .td_hero_title {
  line-height: 1.31em;
}
.td_hero.td_style_2 .td_hero_title span {
  position: relative;
  display: inline-block;
  color: #fff;
  padding: 0px 30px;
}
@media (max-width: 991px) {
  .td_hero.td_style_2 .td_hero_title span {
    padding: 0px 10px;
  }
}
@media (max-width: 350px) {
  .td_hero.td_style_2 .td_hero_title span {
    padding: 0px;
    color: var(--accent-color);
  }
}
.td_hero.td_style_2 .td_hero_title svg {
  position: absolute;
  left: 50%;
  top: 47%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: -1;
  min-width: 100%;
}
@media (max-width: 1199px) {
  .td_hero.td_style_2 .td_hero_title svg {
    width: 440px;
  }
}
@media (max-width: 991px) {
  .td_hero.td_style_2 .td_hero_title svg {
    width: 340px;
    height: 80px;
  }
}
@media (max-width: 350px) {
  .td_hero.td_style_2 .td_hero_title svg {
    display: none;
  }
}
.td_hero.td_style_2 .td_hero_text {
  max-width: 1050px;
  margin-left: auto;
  margin-right: auto;
}
.td_hero.td_style_2 .td_hero_subtitle {
  margin-left: auto;
  margin-right: auto;
  max-width: 720px;
}
.td_hero.td_style_2 .td_btns_group {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.td_hero.td_style_2 .td_hero_img_box_left {
  padding-top: 30%;
  width: 23.7%;
  position: absolute;
  left: 4%;
}
@media (max-width: 1500px) {
  .td_hero.td_style_2 .td_hero_img_box_left {
    left: 15px;
  }
}
@media (max-width: 991px) {
  .td_hero.td_style_2 .td_hero_img_box_left {
    display: none;
  }
}
.td_hero.td_style_2 .td_hero_img_box_right {
  padding-top: 30%;
  width: 23.7%;
  position: absolute;
  right: 4%;
}
@media (max-width: 1500px) {
  .td_hero.td_style_2 .td_hero_img_box_right {
    right: 15px;
  }
}
@media (max-width: 991px) {
  .td_hero.td_style_2 .td_hero_img_box_right {
    display: none;
  }
}
.td_hero.td_style_2 .td_hero_img_1 {
  left: 0;
  top: 0;
  width: 72.5%;
}
.td_hero.td_style_2 .td_hero_img_2 {
  bottom: 0;
  width: 35%;
  left: 70px;
}
.td_hero.td_style_2 .td_hero_img_3 {
  right: 0;
  bottom: 19%;
  width: 35%;
}
.td_hero.td_style_2 .td_hero_img_4 {
  right: 0;
  top: 0;
  width: 72.5%;
}
.td_hero.td_style_2 .td_hero_img_5 {
  bottom: 0;
  width: 35%;
  right: 70px;
}
.td_hero.td_style_2 .td_hero_img_6 {
  left: 0;
  bottom: 19%;
  width: 35%;
}
.td_hero.td_style_2 .td_hero_shape_1 {
  left: 8%;
  top: 25%;
  z-index: -1;
  opacity: 0.3;
  width: 72.5%;
}
.td_hero.td_style_2 .td_hero_shape_2 {
  right: 22%;
  bottom: -5%;
}
.td_hero.td_style_2 .td_hero_shape_3 {
  right: 8%;
  top: 25%;
  z-index: -1;
  opacity: 0.3;
  width: 72.5%;
}
.td_hero.td_style_2 .td_hero_shape_4 {
  left: 22%;
  bottom: -5%;
  -webkit-animation: swing-anim 10s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  animation: swing-anim 10s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  height: 30px;
  width: 30px;
  border-radius: 50%;
}
.td_hero.td_style_2 .td_hero_shape_4::before,
.td_hero.td_style_2 .td_hero_shape_4::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  border-radius: 50%;
  border: 2px solid;
  left: 0;
}
.td_hero.td_style_2 .td_hero_shape_4::before {
  top: 0px;
  border-color: var(--accent-color);
  background-color: #fff;
  z-index: 1;
}
.td_hero.td_style_2 .td_hero_shape_4::after {
  top: 8px;
  border-color: rgba(0, 0, 0, 0.25);
}
.td_hero.td_style_2 .td_hero_shape_5 {
  bottom: 50px;
  left: 49%;
}
.td_hero.td_style_2 .td_hero_shape_6 {
  left: 22%;
  top: 18%;
}
.td_hero.td_style_2 .td_hero_shape_6 img {
  -webkit-animation: animo-x 9s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  animation: animo-x 9s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

.td_hero.td_style_3 {
  height: 920px;
  position: relative;
  background-color: rgba(250, 250, 250, 0.5);
  overflow: hidden;
  padding-top: 20px;
}
@media (max-width: 991px) {
  .td_hero.td_style_3 {
    height: initial;
    padding-top: 160px;
    padding-bottom: 80px;
    min-height: 650px;
  }
}
.td_hero.td_style_3::before {
  content: "";
  position: absolute;
  border-radius: 50%;
  opacity: 0.8;
  background: linear-gradient(
    285deg,
    rgba(50, 198, 109, 0.3) 86.47%,
    rgba(19, 19, 233, 0.3) 103.49%
  );
  -webkit-filter: blur(250px);
  filter: blur(250px);
  width: 587px;
  height: 587px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 10%;
}
.td_hero.td_style_3 .container {
  position: relative;
  z-index: 3;
}
.td_hero.td_style_3 .td_hero_text {
  max-width: 700px;
}
@media (max-width: 991px) {
  .td_hero.td_style_3 .td_hero_text {
    max-width: 520px;
  }
}
.td_hero.td_style_3 .td_hero_img_box {
  position: absolute;
  position: absolute;
  left: 42%;
  bottom: 0;
  width: 41.5%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  height: 85%;
}
@media (max-width: 1400px) {
  .td_hero.td_style_3 .td_hero_img_box {
    width: 45%;
    left: 48%;
  }
}
@media (max-width: 1199px) {
  .td_hero.td_style_3 .td_hero_img_box {
    width: 58%;
  }
}
@media (max-width: 991px) {
  .td_hero.td_style_3 .td_hero_img_box {
    display: none;
  }
}
.td_hero.td_style_3 .td_hero_img_box .td_hero_img_1 {
  position: relative;
  z-index: 2;
}
.td_hero.td_style_3 .td_hero_shape_1 {
  position: absolute;
  width: 600px;
  height: 600px;
  border: 30px solid var(--heading-color);
  border-radius: 50%;
  left: 24%;
  bottom: 0px;
}
@media (max-width: 1500px) {
  .td_hero.td_style_3 .td_hero_shape_1 {
    width: 520px;
    height: 520px;
    left: 15%;
    bottom: -120px;
  }
}
.td_hero.td_style_3 .td_hero_shape_2 {
  position: absolute;
  bottom: 43%;
  left: 74%;
}
@media (max-width: 991px) {
  .td_hero.td_style_3 .td_hero_shape_2 {
    display: none;
  }
}
.td_hero.td_style_3 .td_hero_shape_3 {
  position: absolute;
  height: 20px;
  width: 20px;
  border: 2px solid var(--accent-color);
  border-radius: 50%;
  top: 28%;
  left: 10%;
  opacity: 0.21;
}
@media (max-width: 991px) {
  .td_hero.td_style_3 .td_hero_shape_3 {
    display: none;
  }
}
.td_hero.td_style_3 .td_hero_shape_4 {
  position: absolute;
  left: 0;
  top: 15%;
}
.td_hero.td_style_3 .td_hero_shape_4 img {
  -webkit-animation: animo-y 9s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  animation: animo-y 9s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}
@media (max-width: 991px) {
  .td_hero.td_style_3 .td_hero_shape_4 {
    display: none;
  }
}
.td_hero.td_style_3 .td_hero_shape_5 {
  position: absolute;
  left: 48%;
  top: 34%;
}
.td_hero.td_style_3 .td_hero_shape_5 img {
  -webkit-animation: animo-x 9s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  animation: animo-x 9s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}
@media (max-width: 991px) {
  .td_hero.td_style_3 .td_hero_shape_5 {
    display: none;
  }
}
.td_hero.td_style_3 .td_hero_shape_6 {
  position: absolute;
  left: 33%;
  top: 29.5%;
}
@media (max-width: 991px) {
  .td_hero.td_style_3 .td_hero_shape_6 {
    display: none;
  }
}
.td_hero.td_style_3 .td_hero_shape_7 {
  position: absolute;
  height: 40px;
  width: 40px;
  border: 1px solid var(--accent-color);
  border-radius: 50%;
  top: 39%;
  left: 88%;
}
@media (max-width: 991px) {
  .td_hero.td_style_3 .td_hero_shape_7 {
    display: none;
  }
}

.td_hero.td_style_4 {
  height: 100vh;
  max-height: 1100px;
  min-height: 700px;
  position: relative;
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    color-stop(0.07%, rgba(255, 240, 212, 0.8)),
    color-stop(95.86%, rgba(214, 255, 247, 0.8))
  );
  background: linear-gradient(
    90deg,
    rgba(255, 240, 212, 0.8) 0.07%,
    rgba(214, 255, 247, 0.8) 95.86%
  );
}
@media (max-width: 991px) {
  .td_hero.td_style_4 {
    height: initial;
    max-height: initial;
    padding: 150px 0 80px;
  }
}
.td_hero.td_style_4 .td_btns_group {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.td_hero.td_style_4 .td_hero_text {
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 2;
}
@media (max-width: 1199px) {
  .td_hero.td_style_4 .td_hero_text {
    max-width: 630px;
  }
}
.td_hero.td_style_4 .td_heading_color {
  max-width: 670px;
  margin-left: auto;
  margin-right: auto;
}
.td_hero.td_style_4 .td_hero_img_box_left {
  position: absolute;
  left: 7%;
  top: 55%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 18.5%;
  padding-top: 33%;
}
@media (max-width: 991px) {
  .td_hero.td_style_4 .td_hero_img_box_left {
    display: none;
  }
}
.td_hero.td_style_4 .td_hero_img_1 {
  top: 0;
  left: 0;
  width: 81%;
}
.td_hero.td_style_4 .td_hero_img_2 {
  bottom: 0;
  right: 0;
  width: 66.6%;
}
.td_hero.td_style_4 .td_hero_img_box_right {
  position: absolute;
  right: 8%;
  top: 55%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 17.5%;
  padding-top: 35%;
}
@media (max-width: 991px) {
  .td_hero.td_style_4 .td_hero_img_box_right {
    display: none;
  }
}
.td_hero.td_style_4 .td_hero_img_3 {
  top: 0;
  right: 0;
  width: 67%;
}
.td_hero.td_style_4 .td_hero_img_4 {
  bottom: 0;
  left: 0;
  width: 97.5%;
}
.td_hero.td_style_4 .td_hero_shape_1 {
  left: 10%;
  top: 54%;
}
@media (max-width: 575px) {
  .td_hero.td_style_4 .td_hero_shape_1 {
    display: none;
  }
}
.td_hero.td_style_4 .td_hero_shape_2 {
  right: -5%;
  top: 32%;
}
@media (max-width: 575px) {
  .td_hero.td_style_4 .td_hero_shape_2 {
    display: none;
  }
}
.td_hero.td_style_4 .td_hero_shape_3 {
  left: -5%;
  top: 34%;
}
@media (max-width: 575px) {
  .td_hero.td_style_4 .td_hero_shape_3 {
    display: none;
  }
}
.td_hero.td_style_4 .td_hero_shape_4 {
  right: -22%;
  top: 45%;
}
@media (max-width: 575px) {
  .td_hero.td_style_4 .td_hero_shape_4 {
    display: none;
  }
}
.td_hero.td_style_4 .td_hero_shape_5 {
  top: 43px;
  left: -55px;
}
@media (max-width: 575px) {
  .td_hero.td_style_4 .td_hero_shape_5 {
    display: none;
  }
}
.td_hero.td_style_4 .td_hero_shape_6 {
  left: 2.5%;
  bottom: 7%;
  opacity: 0.56;
}
@media (max-width: 575px) {
  .td_hero.td_style_4 .td_hero_shape_6 {
    display: none;
  }
}
.td_hero.td_style_4 .td_hero_shape_7 {
  opacity: 0.46;
  left: 28%;
  top: 53%;
  -webkit-animation: particalAnimation 20s alternate infinite linear;
  animation: particalAnimation 20s alternate infinite linear;
}
@media (max-width: 575px) {
  .td_hero.td_style_4 .td_hero_shape_7 {
    display: none;
  }
}
.td_hero.td_style_4 .td_hero_shape_8 {
  top: 16%;
  left: 26%;
  opacity: 0.3;
}
@media (max-width: 575px) {
  .td_hero.td_style_4 .td_hero_shape_8 {
    display: none;
  }
}
.td_hero.td_style_4 .td_hero_shape_9 {
  top: 20%;
  left: 66%;
  -webkit-animation: swing-anim 10s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  animation: swing-anim 10s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}
@media (max-width: 575px) {
  .td_hero.td_style_4 .td_hero_shape_9 {
    display: none;
  }
}
.td_hero.td_style_4 .td_hero_shape_10 {
  right: 3%;
  bottom: 5%;
}
@media (max-width: 575px) {
  .td_hero.td_style_4 .td_hero_shape_10 {
    display: none;
  }
}

.td_hero.td_style_5 {
  background: linear-gradient(
    102deg,
    rgba(222, 155, 75, 0.06) 6.6%,
    rgba(255, 155, 36, 0.06) 6.6%
  );
  height: 890px;
  position: relative;
  padding-top: 70px;
}
@media (max-width: 991px) {
  .td_hero.td_style_5 {
    padding: 150px 0 80px;
    height: initial;
    min-height: 700px;
  }
  .td_hero.td_style_5 .td_mb_30 {
    margin-bottom: 20px;
  }
  .td_hero.td_style_5 .td_mb_40 {
    margin-bottom: 30px;
  }
}
.td_hero.td_style_5 .td_hero_subtitle_up {
  border-radius: 50px;
  border: 1px solid #ebeced;
  background-color: #fffdfa;
  padding: 5px 25px;
  display: inline-block;
}
@media (max-width: 991px) {
  .td_hero.td_style_5 .td_hero_subtitle_up {
    padding: 5px 15px;
  }
}
.td_hero.td_style_5 .td_hero_text {
  max-width: 600px;
  position: relative;
  z-index: 2;
}
.td_hero.td_style_5 .td_newsletter.td_style_1 .td_newsletter_input {
  height: 60px;
  border-radius: 10px;
  padding-right: 190px;
}
@media (max-width: 991px) {
  .td_hero.td_style_5 .td_newsletter.td_style_1 .td_newsletter_input {
    height: 57px;
  }
}
@media (max-width: 575px) {
  .td_hero.td_style_5 .td_newsletter.td_style_1 .td_newsletter_input {
    padding: 5px 20px;
  }
}
@media (max-width: 575px) {
  .td_hero.td_style_5 .td_newsletter.td_style_1 .td_btn.td_style_1 {
    position: initial;
    width: 100%;
    margin-top: 10px;
  }
}
.td_hero.td_style_5 .td_newsletter.td_style_1 .td_btn.td_style_1 .td_btn_in {
  padding: 16px 25px;
}
.td_hero.td_style_5 .td_hero_img_wrap {
  position: absolute;
  height: 600px;
  width: 600px;
  text-align: center;
  padding: 50px;
  left: 54%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  top: 50%;
  margin-top: 35px;
}
@media (max-width: 1400px) {
  .td_hero.td_style_5 .td_hero_img_wrap {
    height: 450px;
    width: 450px;
    left: 58%;
    padding: 10px;
  }
}
@media (max-width: 1199px) {
  .td_hero.td_style_5 .td_hero_img_wrap {
    display: none;
  }
}
.td_hero.td_style_5 .td_hero_funfact {
  background-color: #fff;
  border-style: solid;
  border-width: 1px 3px 3px 1px;
  border-color: #ebeced var(--accent-color) var(--accent-color) #ebeced;
  border-radius: 10px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: absolute;
  z-index: 1;
  top: 49%;
  right: -14%;
  padding: 3px 15px;
  gap: 10px;
}
.td_hero.td_style_5 .td_hero_funfact img {
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
}
.td_hero.td_style_5 .td_hero_funfact .td_fs_40 {
  margin-bottom: -5px;
}
.td_hero.td_style_5 .td_avatars_wrap {
  z-index: 1;
  left: -3%;
  right: initial;
  top: 78%;
}
.td_hero.td_style_5 .td_hero_img {
  height: 100%;
  width: 100%;
  border-radius: 50%;
}
.td_hero.td_style_5 .td_hero_img img {
  height: inherit;
  width: inherit;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: inherit;
}
.td_hero.td_style_5 .td_hero_img_1,
.td_hero.td_style_5 .td_hero_img_2,
.td_hero.td_style_5 .td_hero_img_3 {
  height: 120px;
  width: 120px;
  border-radius: 50%;
  z-index: 2;
}
.td_hero.td_style_5 .td_hero_img_1 img,
.td_hero.td_style_5 .td_hero_img_2 img,
.td_hero.td_style_5 .td_hero_img_3 img {
  height: inherit;
  width: inherit;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: inherit;
}
.td_hero.td_style_5 .td_hero_img_1 {
  left: -80px;
  top: 37%;
}
.td_hero.td_style_5 .td_hero_img_2 {
  right: 16%;
  bottom: -45px;
}
.td_hero.td_style_5 .td_hero_img_3 {
  right: 19%;
  top: -9%;
}
.td_hero.td_style_5 .td_hero_shape_1 {
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.td_hero.td_style_5 .td_hero_shape_1 svg {
  -webkit-animation: rotate-anim 60s linear infinite;
  animation: rotate-anim 60s linear infinite;
}
@media (max-width: 1400px) {
  .td_hero.td_style_5 .td_hero_shape_1 svg {
    width: 460px;
    height: 460px;
  }
}
.td_hero.td_style_5 .td_hero_shape_2 {
  height: 20px;
  width: 20px;
  border: 1px solid var(--accent-color);
  opacity: 0.5;
  left: 8%;
  top: 18%;
  border-radius: 50%;
}
@media (max-width: 575px) {
  .td_hero.td_style_5 .td_hero_shape_2 {
    display: none;
  }
}
.td_hero.td_style_5 .td_hero_shape_3 {
  height: 40px;
  width: 40px;
  background-color: #ff9b24;
  left: 3%;
  top: 47%;
  border-radius: 50%;
}
@media (max-width: 1199px) {
  .td_hero.td_style_5 .td_hero_shape_3 {
    left: 80%;
    top: 25%;
  }
}
@media (max-width: 575px) {
  .td_hero.td_style_5 .td_hero_shape_3 {
    display: none;
  }
}
.td_hero.td_style_5 .td_hero_shape_4 {
  height: 40px;
  width: 40px;
  background-color: var(--accent-color);
  left: 10%;
  top: 81%;
  border-radius: 50%;
  opacity: 0.7;
}
@media (max-width: 1199px) {
  .td_hero.td_style_5 .td_hero_shape_4 {
    left: 70%;
    top: 50%;
  }
}
@media (max-width: 575px) {
  .td_hero.td_style_5 .td_hero_shape_4 {
    display: none;
  }
}
.td_hero.td_style_5 .td_hero_shape_5 {
  left: 90%;
  top: 77%;
}
@media (max-width: 575px) {
  .td_hero.td_style_5 .td_hero_shape_5 {
    display: none;
  }
}

.td_hero.td_style_6 {
  padding-bottom: 130px;
  background-color: #fafafa;
  position: relative;
}
@media (max-width: 991px) {
  .td_hero.td_style_6 {
    padding: 140px 0 80px;
  }
}
@media (min-width: 992px) {
  .td_hero.td_style_6 .td_hero_text {
    padding-top: 95px;
  }
}
.td_hero.td_style_6 .td_hero_subtitle {
  max-width: 610px;
}
.td_hero.td_style_6 .container {
  position: relative;
  z-index: 3;
  height: 100%;
}
.td_hero.td_style_6 .container .row {
  height: 100%;
}
.td_hero.td_style_6 .td_hero_img {
  position: relative;
  padding-bottom: 105px;
}
.td_hero.td_style_6 .td_hero_img > img {
  border-radius: 340px 340px 0 0;
}
.td_hero.td_style_6 .td_hero_video_block {
  max-width: 308px;
  width: 100%;
  height: 221px;
  border: 12px solid var(--accent-color);
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
.td_hero.td_style_6 .td_hero_video_block img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.td_hero.td_style_6 .td_hero_video_block .td_video_open {
  position: absolute;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  top: 50%;
}
.td_hero.td_style_6 .td_hero_video_block .td_player_btn:before {
  visibility: visible;
  background-color: #fff;
}
.td_hero.td_style_6 .td_avatars_wrap {
  position: absolute;
  right: -22%;
  top: 24%;
}
@media (max-width: 1600px) {
  .td_hero.td_style_6 .td_avatars_wrap {
    right: -5%;
  }
}
@media (max-width: 767px) {
  .td_hero.td_style_6 .td_avatars_wrap {
    display: none;
  }
}
.td_hero.td_style_6 .td_hero_shape_1 {
  left: 30px;
  top: 0;
}
.td_hero.td_style_6 .td_hero_shape_2 {
  left: 37.5%;
  top: -10px;
}
@media (max-width: 991px) {
  .td_hero.td_style_6 .td_hero_shape_2 {
    display: none;
  }
}
.td_hero.td_style_6 .td_hero_shape_3 {
  left: 25%;
  top: 86%;
}
.td_hero.td_style_6 .td_hero_shape_4 {
  left: 35%;
  top: 74%;
}
.td_hero.td_style_6 .td_hero_shape_5 {
  left: 40%;
  top: 89%;
}
.td_hero.td_style_6 .td_hero_shape_6 {
  left: 48%;
  top: 80%;
}
.td_hero.td_style_6 .td_hero_shape_6 img {
  -webkit-animation: animo-x 9s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  animation: animo-x 9s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}
.td_hero.td_style_6 .td_hero_shape_7 {
  left: 79%;
  top: 78%;
}
.td_hero.td_style_6 .td_hero_shape_8 {
  left: 92%;
  top: 75%;
  -webkit-animation: rotate-anim 10s linear infinite;
  animation: rotate-anim 10s linear infinite;
}

.td_hero.td_style_7 {
  height: 920px;
  position: relative;
  padding-top: 70px;
  overflow: hidden;
}
@media (max-width: 991px) {
  .td_hero.td_style_7 {
    height: initial;
    padding: 614px 0 80px;
  }
}
@media (max-width: 575px) {
  .td_hero.td_style_7 {
    padding: 514px 0 80px;
  }
}
.td_hero.td_style_7 .td_hero_text {
  max-width: 680px;
}
.td_hero.td_style_7 .td_hero_subtitle {
  max-width: 650px;
}
.td_hero.td_style_7 .container {
  position: relative;
  z-index: 3;
}
.td_hero.td_style_7 .td_hero_bg {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 72%;
}
@media (max-width: 1199px) {
  .td_hero.td_style_7 .td_hero_bg {
    width: 100%;
  }
}
.td_hero.td_style_7 .td_hero_img {
  position: absolute;
  right: 0;
  width: 45%;
  height: calc(100% - 230px);
  top: 130px;
  z-index: 1;
}
@media (max-width: 1400px) {
  .td_hero.td_style_7 .td_hero_img {
    width: 40%;
  }
}
@media (max-width: 991px) {
  .td_hero.td_style_7 .td_hero_img {
    width: 100%;
    top: 80px;
    height: 500px;
  }
}
@media (max-width: 575px) {
  .td_hero.td_style_7 .td_hero_img {
    height: 400px;
  }
}
.td_hero.td_style_7 .td_hero_shape_1 {
  width: 372px;
  height: 372px;
  border: 2px solid #fff;
  opacity: 0.14;
  left: -101px;
  top: -110px;
  border-radius: 50%;
}
.td_hero.td_style_7 .td_hero_shape_2 {
  height: 30px;
  width: 30px;
  background-color: #ebeced;
  opacity: 0.1;
  border-radius: 50%;
  left: 9%;
  top: 36%;
}
.td_hero.td_style_7 .td_hero_shape_3 {
  left: 4%;
  bottom: 8%;
}
.td_hero.td_style_7 .td_hero_shape_3 img {
  -webkit-animation: swing-anim 10s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  animation: swing-anim 10s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}
.td_hero.td_style_7 .td_hero_shape_4,
.td_hero.td_style_7 .td_hero_shape_5,
.td_hero.td_style_7 .td_hero_shape_6 {
  width: 258px;
  height: 258px;
  border: 1px solid #fff;
  opacity: 0.14;
  border-radius: 50%;
}
.td_hero.td_style_7 .td_hero_shape_4 {
  left: 44%;
  top: 52%;
}
.td_hero.td_style_7 .td_hero_shape_5 {
  left: 48.3%;
  top: 57%;
  -webkit-animation: animo-x 9s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  animation: animo-x 9s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}
.td_hero.td_style_7 .td_hero_shape_6 {
  left: 45%;
  top: 62%;
}
.td_hero.td_style_7 .td_hero_shape_7 {
  left: 48%;
  top: 2%;
  -webkit-animation: rotate-anim 15s linear infinite;
  animation: rotate-anim 15s linear infinite;
}
@media (max-width: 991px) {
  .td_hero.td_style_7 > .position-absolute {
    display: none;
  }
}

.td_hero.td_style_8 {
  height: 1024px;
  position: relative;
  overflow: hidden;
}
@media (max-width: 991px) {
  .td_hero.td_style_8 {
    height: initial;
    padding: 160px 0 160px;
  }
}
.td_hero.td_style_8:after {
  content: "";
  position: absolute;
  height: 800px;
  width: 136vw;
  background-color: #fff;
  top: 100%;
  border-radius: 50%;
  margin-top: -130px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
@media (max-width: 991px) {
  .td_hero.td_style_8:after {
    width: 185vw;
    margin-top: -80px;
  }
}
.td_hero.td_style_8 .td_hero_text {
  max-width: 665px;
  position: relative;
  z-index: 3;
}
@media (max-width: 1199px) {
  .td_hero.td_style_8 .td_hero_text {
    max-width: 650px;
  }
}
.td_hero.td_style_8 .td_hero_img {
  position: absolute;
  left: 66%;
  -webkit-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  border: 10px solid #fff;
  top: 50%;
  -webkit-transform: rotate(-21.22deg) translateY(-58%);
  transform: rotate(-21.22deg) translateY(-58%);
  z-index: 2;
}
@media (max-width: 1400px) {
  .td_hero.td_style_8 .td_hero_img {
    left: 72%;
  }
}
@media (max-width: 991px) {
  .td_hero.td_style_8 .td_hero_img {
    position: relative;
    -webkit-transform: initial;
    transform: initial;
    margin-bottom: 35px;
    left: initial;
    top: initial;
  }
  .td_hero.td_style_8 .td_hero_img img {
    width: 100%;
  }
}
.td_hero.td_style_8 .td_hero_shape_1 {
  left: -95px;
  top: 50px;
}
.td_hero.td_style_8 .td_hero_shape_2 {
  left: -85px;
  top: 45%;
}
.td_hero.td_style_8 .td_hero_shape_3 {
  left: 2%;
  top: 74%;
}
.td_hero.td_style_8 .td_hero_shape_4 {
  left: 44%;
  top: 13%;
}
.td_hero.td_style_8 .td_hero_shape_5 {
  left: 75%;
  top: 12%;
}
.td_hero.td_style_8 .td_hero_shape_6 {
  left: 83%;
  top: 55%;
}
.td_hero.td_style_8 .td_hero_shape_7 {
  right: 0;
  top: 25%;
}
.td_hero.td_style_8 .td_hero_shape_8 {
  left: 88%;
  top: 77%;
}
.td_hero.td_style_8 .td_hero_shape_9 {
  top: 71px;
  left: 0;
}
@media (max-width: 575px) {
  .td_hero.td_style_8 .td_hero_shape_1,
  .td_hero.td_style_8 .td_hero_shape_2,
  .td_hero.td_style_8 .td_hero_shape_3,
  .td_hero.td_style_8 .td_hero_shape_4,
  .td_hero.td_style_8 .td_hero_shape_5,
  .td_hero.td_style_8 .td_hero_shape_6,
  .td_hero.td_style_8 .td_hero_shape_7,
  .td_hero.td_style_8 .td_hero_shape_8 {
    display: none;
  }
}

/*--------------------------------------------------------------
14. Iconbox
----------------------------------------------------------------*/
.td_iconbox_1_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  gap: 40px 30px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.td_iconbox.td_style_1 {
  max-width: 250px;
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
}
.td_iconbox.td_style_1 svg path {
  fill: var(--accent-color);
}

.td_iconbox.td_style_2 {
  position: relative;
}
.td_iconbox.td_style_2 .td_iconbox_link {
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  border: 2px solid #f26d21;
  border-radius: 3rem;
}
.td_iconbox.td_style_2 .td_iconbox_in {
  border-radius: 50px;
  background-color: #fff;
  -webkit-box-shadow: 0px 0px 80px 0px rgba(0, 0, 27, 0.07);
  box-shadow: 0px 0px 80px 0px rgba(0, 0, 27, 0.07);
  padding: 30px 20px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.td_iconbox.td_style_2 .td_iconbox_subtitle span {
  background-color: var(--accent-color);
  color: #fff;
  margin-right: 2px;
  font-size: 18px;
  line-height: 1.55em;
  display: inline-block;
  padding: 0 4px;
}
.td_iconbox.td_style_2:hover .td_iconbox_in {
  background-color: var(--accent-color);
  -webkit-box-shadow: 0px 0px 80px 0px rgba(0, 0, 27, 0.2);
  box-shadow: 0px 0px 80px 0px rgba(0, 0, 27, 0.2);
}
.td_iconbox.td_style_2:hover .td_iconbox_icon {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}
.td_iconbox.td_style_2:hover .td_iconbox_title {
  color: #fff;
  opacity: 1;
}
.td_iconbox.td_style_2:hover .td_iconbox_subtitle {
  color: rgba(255, 255, 255, 0.8);
}
.td_iconbox.td_style_2:hover .td_iconbox_subtitle span {
  background-color: #fff;
  color: var(--accent-color);
}

.td_iconbox.td_style_3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  padding: 20px;
  -webkit-box-shadow: 0px 0px 50px 0px rgba(0, 0, 27, 0.05);
  box-shadow: 0px 0px 50px 0px rgba(0, 0, 27, 0.05);
}
.td_iconbox.td_style_3:hover {
  -webkit-transform: scale(1.02);
  transform: scale(1.02);
}
.td_iconbox.td_style_3 .td_iconbox_icon img {
  height: 40px;
  width: 40px;
}

.td_iconbox.td_style_4 {
  padding: 20px;
  padding-right: 30px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  -webkit-box-shadow: 2px 2px 50px 0px rgba(0, 0, 27, 0.1);
  box-shadow: 2px 2px 50px 0px rgba(0, 0, 27, 0.1);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.td_iconbox.td_style_4:hover {
  border-color: rgba(255, 255, 255, 0.6);
}

.td_iconbox.td_style_5 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  max-width: 500px;
}
.td_iconbox.td_style_5 .td_iconbox_icon {
  height: 100px;
  width: 100px;
  padding: 10px;
  border-radius: 50%;
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  position: relative;
  -webkit-clip-path: inset(0 round 50px 50px 50px 50px);
  clip-path: inset(0 round 50px 50px 50px 50px);
}
.td_iconbox.td_style_5 .td_iconbox_icon:before {
  content: "";
  position: absolute;
  left: -2px;
  top: -2px;
  right: -2px;
  bottom: -2px;
  border: 3px dashed var(--accent-color);
  border-radius: 100px;
}
.td_iconbox.td_style_5 .td_iconbox_icon_in {
  height: 100%;
  width: 100%;
  border-radius: 50%;
  background-color: rgba(237, 237, 237, 0.7);
  padding: 14px;
}

.td_iconbox.td_style_6 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  background-color: rgba(235, 236, 237, 0.3);
  margin-right: 20px;
  gap: 20px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 12px 30px 12px 12px;
}
@media (max-width: 1400px) {
  .td_iconbox.td_style_6 {
    gap: 10px;
  }
}
.td_iconbox.td_style_6 .td_iconbox_btn {
  position: absolute;
  height: 40px;
  width: 40px;
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  border-radius: 50%;
  border: 1px solid var(--border-color);
  right: -20px;
  top: 50%;
  margin-top: -20px;
  background-color: #fff;
  color: var(--heading-color);
}
.td_iconbox.td_style_6 .td_iconbox_btn:hover {
  background-color: var(--heading-color);
  border-color: var(--heading-color);
  color: #fff;
}
.td_iconbox.td_style_6 .td_iconbox_icon {
  height: 73px;
  width: 73px;
  border-radius: 50%;
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
}
@media (max-width: 1400px) {
  .td_iconbox.td_style_6 .td_iconbox_icon {
    height: 60px;
    width: 60px;
  }
}
.td_iconbox.td_style_6 .td_iconbox_icon img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: inherit;
}

.td_iconbox.td_style_7 {
  padding: 30px 35px;
  -webkit-box-shadow: 0px 0px 20px 0px rgba(0, 0, 3, 0.1);
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 3, 0.1);
  position: relative;
  margin-right: 20px;
}
@media (max-width: 1400px) {
  .td_iconbox.td_style_7 {
    padding: 30px 18px;
  }
}
.td_iconbox.td_style_7 .td_iconbox_icon {
  height: 50px;
  width: 50px;
  border-radius: 50%;
  margin-left: auto;
  margin-right: auto;
}
.td_iconbox.td_style_7 .td_iconbox_btn {
  height: 40px;
  width: 40px;
  border: 1px solid var(--heading-color);
  border-radius: 50%;
  background-color: #fff;
  position: absolute;
  right: -20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  color: var(--heading-color);
}
.td_iconbox.td_style_7 .td_iconbox_btn:hover {
  background-color: var(--heading-color);
  color: #fff;
}

.td_iconbox.td_style_8 {
  border: 1px solid var(--border-color);
  height: 326px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  padding: 50px 35px;
  position: relative;
  overflow: hidden;
}
@media (max-width: 1400px) {
  .td_iconbox.td_style_8 {
    padding: 50px 25px;
  }
}
@media (max-width: 1199px) {
  .td_iconbox.td_style_8 br {
    display: none;
  }
}
@media (max-width: 991px) {
  .td_iconbox.td_style_8 {
    padding: 30px 25px;
    height: 250px;
  }
  .td_iconbox.td_style_8 .td_mb_30 {
    margin-bottom: 15px;
  }
}
.td_iconbox.td_style_8 .td_icon_shape {
  position: absolute;
  top: -60px;
  right: -60px;
  -webkit-transition: all 0.6s cubic-bezier(0.7, -0.56, 0.27, 1.6);
  transition: all 0.6s cubic-bezier(0.7, -0.56, 0.27, 1.6);
}
.td_iconbox.td_style_8 .td_iconbox_in {
  position: relative;
  z-index: 2;
}
.td_iconbox.td_style_8 .td_btn.td_style_3 {
  position: relative;
}
.td_iconbox.td_style_8 .td_btn.td_style_3::before {
  content: "";
  height: 14px;
  width: 14px;
  border-radius: 50%;
  background-color: var(--accent-color);
  opacity: 0.1;
  left: -5px;
  top: 1px;
  position: absolute;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.td_iconbox.td_style_8 .td_btn.td_style_3:hover::before {
  height: 40px;
  width: 40px;
  top: -2px;
  left: -10px;
}
.td_iconbox.td_style_8:hover .td_icon_shape {
  top: -68px;
  right: -68px;
}

.td_iconbox.td_style_9 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
}
.td_iconbox.td_style_9 .td_iconbox_icon {
  height: 80px;
  width: 80px;
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  position: relative;
  padding: 10px;
}
.td_iconbox.td_style_9 .td_iconbox_icon::before {
  content: "";
  height: 3px;
  width: 16px;
  background-color: #fff;
  border-radius: 10px;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

/*--------------------------------------------------------------
15. Posts
----------------------------------------------------------------*/
.td_icon_btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 6px;
}

.td_icon_btn {
  height: 30px;
  width: 30px;
  border-radius: 50%;
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  border: 1px solid rgba(0, 0, 27, 0.2);
  background-color: transparent;
  padding: 2px;
  outline: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

a.td_icon_btn:hover,
button.td_icon_btn:hover {
  border-color: rgba(0, 0, 27, 0.6);
  color: var(--heading-color);
}

.td_post.td_style_1 {
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.td_post.td_style_1 .td_post_title {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.td_post.td_style_1 .td_post_thumb {
  overflow: hidden;
  position: relative;
}
.td_post.td_style_1 .td_post_thumb img {
  width: 100%;
}
.td_post.td_style_1 .td_post_thumb::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background-color: var(--accent-color);
  opacity: 0;
  z-index: 1;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.td_post.td_style_1 .td_post_thumb i {
  position: absolute;
  height: 40px;
  width: 40px;
  right: 30px;
  top: 30px;
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 5px;
  color: var(--accent-color);
  z-index: 2;
  opacity: 0;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.td_post.td_style_1 .td_post_thumb img {
  -webkit-transition: all 0.8s;
  transition: all 0.8s;
}
.td_post.td_style_1 .td_post_thumb:hover img {
  -webkit-transform: scale(1.03);
  transform: scale(1.03);
  -webkit-transform-origin: top;
  transform-origin: top;
}
.td_post.td_style_1 .td_post_thumb:hover::before {
  opacity: 0.3;
}
.td_post.td_style_1 .td_post_thumb:hover i {
  opacity: 1;
  top: 15px;
  right: 15px;
}
.td_post.td_style_1 .td_post_thumb:hover i:hover {
  background-color: var(--accent-color);
  color: #fff;
}
.td_post.td_style_1 .td_post_meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 0 56px;
}
@media (max-width: 1400px) {
  .td_post.td_style_1 .td_post_meta {
    gap: 0 25px;
  }
}
.td_post.td_style_1 .td_post_meta span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 6px;
}
.td_post.td_style_1 .td_post_meta span img {
  height: 16px;
  width: 16px;
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
}
.td_post.td_style_1 .td_post_info {
  border: 1px solid #ebeced;
  border-top-width: 0;
  padding: 20px 30px 40px;
  border-radius: 0 0 10px 10px;
}
@media (max-width: 1400px) {
  .td_post.td_style_1 .td_post_info {
    padding: 20px 25px 30px;
  }
}
@media (max-width: 991px) {
  .td_post.td_style_1 .td_post_info {
    padding: 20px 20px 30px;
  }
}
.td_post.td_style_1 .td_post_thumb {
  border-radius: 10px 10px 0 0;
}
.td_post.td_style_1 .td_post_thumb img {
  border-radius: inherit;
}
.td_post.td_style_1 .td_post_label {
  position: absolute;
  right: 16px;
  top: 16px;
  border: 1px solid #fff;
  z-index: 2;
  color: #fff;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 7px 18px;
  border-radius: 30px;
}
.td_post.td_style_1:hover {
  -webkit-transform: translateY(-6px);
  transform: translateY(-6px);
  -webkit-box-shadow: 0 50px 30px -40px rgba(0, 0, 0, 0.1);
  box-shadow: 0 50px 30px -40px rgba(0, 0, 0, 0.1);
}
@media (max-width: 991px) {
  .td_post.td_style_1 .td_mb_20 {
    margin-bottom: 10px;
  }
  .td_post.td_style_1 .td_mb_16 {
    margin-bottom: 8px;
  }
  .td_post.td_style_1 .td_mb_24 {
    margin-bottom: 20px;
  }
}
.td_post.td_style_1.td_type_1,
.td_post.td_style_1.td_type_2,
.td_post.td_style_1.td_type_6 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-shadow: 2px 2px 50px 0px rgba(0, 0, 27, 0.1);
  box-shadow: 2px 2px 50px 0px rgba(0, 0, 27, 0.1);
  border-radius: 20px;
  padding: 30px;
  gap: 30px;
}
@media (max-width: 1400px) {
  .td_post.td_style_1.td_type_1,
  .td_post.td_style_1.td_type_2,
  .td_post.td_style_1.td_type_6 {
    gap: 15px;
    padding: 20px;
  }
}
@media (max-width: 767px) {
  .td_post.td_style_1.td_type_1,
  .td_post.td_style_1.td_type_2,
  .td_post.td_style_1.td_type_6 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.td_post.td_style_1.td_type_1 .td_post_info,
.td_post.td_style_1.td_type_2 .td_post_info,
.td_post.td_style_1.td_type_6 .td_post_info {
  border: none;
  padding: 0;
}
.td_post.td_style_1.td_type_1 .td_post_thumb,
.td_post.td_style_1.td_type_2 .td_post_thumb,
.td_post.td_style_1.td_type_6 .td_post_thumb {
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  width: 270px;
  height: 225px;
  border-radius: 5px;
}
@media (max-width: 767px) {
  .td_post.td_style_1.td_type_1 .td_post_thumb,
  .td_post.td_style_1.td_type_2 .td_post_thumb,
  .td_post.td_style_1.td_type_6 .td_post_thumb {
    width: 100%;
    height: 250px;
  }
}
.td_post.td_style_1.td_type_1 .td_post_thumb img,
.td_post.td_style_1.td_type_2 .td_post_thumb img,
.td_post.td_style_1.td_type_6 .td_post_thumb img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.td_post.td_style_1.td_type_1 .td_post_meta,
.td_post.td_style_1.td_type_2 .td_post_meta,
.td_post.td_style_1.td_type_6 .td_post_meta {
  margin-bottom: 6px;
  gap: 0px 40px;
  font-size: 16px;
}
@media (max-width: 1400px) {
  .td_post.td_style_1.td_type_1 .td_post_meta,
  .td_post.td_style_1.td_type_2 .td_post_meta,
  .td_post.td_style_1.td_type_6 .td_post_meta {
    gap: 0px 15px;
    font-size: 15px;
  }
}
.td_post.td_style_1.td_type_1 .td_post_title,
.td_post.td_style_1.td_type_2 .td_post_title,
.td_post.td_style_1.td_type_6 .td_post_title {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  margin-bottom: 8px;
}
.td_post.td_style_1.td_type_1 .td_post_subtitle,
.td_post.td_style_1.td_type_2 .td_post_subtitle,
.td_post.td_style_1.td_type_6 .td_post_subtitle {
  margin-bottom: 16px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.td_post.td_style_1.td_type_2 {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.td_post.td_style_1.td_type_2 .td_post_thumb {
  height: initial;
}
.td_post.td_style_1.td_type_2 .td_post_thumb::before {
  display: none;
}
.td_post.td_style_1.td_type_2 .td_post_thumb img {
  height: auto;
  -o-object-fit: initial;
  object-fit: initial;
  max-height: 100%;
}
.td_post.td_style_1.td_type_2 .td_post_thumb:hover img {
  -webkit-transform: initial;
  transform: initial;
}
.td_post.td_style_1.td_type_2 .td_post_label {
  border-color: var(--accent-color);
  background-color: var(--accent-color);
  color: #fff;
  right: 25px;
  top: 25px;
  padding: 5px 15px;
}
.td_post.td_style_1.td_type_3 {
  padding: 10px;
  border: 1px solid #ebeced;
  border-radius: 10px;
}
.td_post.td_style_1.td_type_3 .td_post_info {
  border: none;
  padding: 20px 20px 40px;
}
.td_post.td_style_1.td_type_3 .td_post_thumb {
  border-radius: 10px;
}
.td_post.td_style_1.td_type_4 .td_post_label {
  border: none;
  border-radius: 0;
  padding: 8px 15px;
  right: initial;
  top: -19px;
}
.td_post.td_style_1.td_type_4 .td_post_info {
  position: relative;
  padding: 50px 30px 40px;
}
@media (max-width: 575px) {
  .td_post.td_style_1.td_type_4 .td_post_info {
    padding: 40px 20px 30px;
  }
}
.td_post.td_style_1.td_type_4 .td_btn.td_style_3 {
  letter-spacing: 0.3px;
}
.td_post.td_style_1.td_type_4 .td_btn.td_style_3:hover {
  letter-spacing: 0.6px;
}
.td_post.td_style_1.td_type_5 .td_post_thumb,
.td_post.td_style_1.td_type_5 .td_post_info {
  border-radius: 0;
}
.td_post.td_style_1.td_type_6 .td_post_label {
  border-radius: 10px;
  background-color: var(--accent-color);
  border-color: var(--accent-color);
}

.td_blog_details_head_meta_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 5px 28px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.td_blog_details_head_meta_list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
}

.td_blog_details_head_meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 20px 30px;
  border: 1px solid var(--border-color);
  border-top: none;
  gap: 10px 20px;
}

.td_blog_details_avatar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
}
.td_blog_details_avatar img {
  height: 30px;
  width: 30px;
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  border-radius: 50%;
}

.td_blog_details {
  font-size: 18px;
  line-height: 1.75em;
}
@media (max-width: 991px) {
  .td_blog_details {
    font-size: 16px;
    line-height: 1.5em;
  }
}
.td_blog_details h2 {
  font-size: 36px;
  line-height: 1.44em;
  margin-bottom: 30px;
}
@media (max-width: 991px) {
  .td_blog_details h2 {
    font-size: 30px;
  }
}
.td_blog_details h3 {
  font-size: 30px;
  line-height: 1.33em;
  margin-bottom: 23px;
}
@media (max-width: 991px) {
  .td_blog_details h3 {
    font-size: 25px;
  }
}
.td_blog_details p {
  margin-bottom: 50px;
}
.td_blog_details blockquote {
  font-weight: 500;
  font-size: 20px;
  line-height: 1.5em;
  border-left: 5px solid var(--accent-color);
  -webkit-box-shadow: 2px 2px 50px 0px rgba(0, 0, 27, 0.1);
  box-shadow: 2px 2px 50px 0px rgba(0, 0, 27, 0.1);
  padding: 50px 180px 50px 50px;
  color: var(--heading-color);
  position: relative;
  margin-bottom: 50px;
}
@media (max-width: 1199px) {
  .td_blog_details blockquote {
    padding: 40px 90px 40px 20px;
  }
}
.td_blog_details blockquote svg {
  color: var(--accent-color);
  right: 70px;
  top: 24px;
  position: absolute;
}
@media (max-width: 1199px) {
  .td_blog_details blockquote svg {
    right: 20px;
    top: 20px;
  }
}
.td_blog_details .td_blog_details_inside_box {
  padding-left: 10px;
  margin-bottom: 50px;
}
@media (max-width: 1400px) {
  .td_blog_details .td_blog_details_inside_box {
    padding-left: 0;
  }
}
.td_blog_details .td_blog_details_inside_box h3 {
  margin-bottom: 12px;
}
.td_blog_details .td_blog_details_inside_box p {
  margin-bottom: 20px;
}
.td_blog_details .td_list.td_style_2 li {
  padding-left: 32px;
}
.td_blog_details .td_list.td_style_2 li svg {
  top: 3px;
}
.td_blog_details .td_list.td_style_2 li:not(:last-child) {
  margin-bottom: 14px;
}
.td_blog_details .td_video_block.td_style_1 {
  min-height: 322px;
  padding: 0;
  border-radius: 10px;
  margin-bottom: 40px;
}
.td_blog_details .td_video_block.td_style_1 .td_player_btn_wrap_2 {
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}
.td_blog_details > *:last-child {
  margin-bottom: 0;
}

.td_post_share {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 15px 20px;
  border: 1px solid var(--border-color);
  border-left: none;
  border-right: none;
  padding: 20px 0;
}
@media (max-width: 575px) {
  .td_post_share {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.td_post_share .td_footer_social_btns {
  margin: 0 -5px;
}
.td_post_share .td_footer_social_btns a {
  height: 36px;
  width: 35px;
}

.td_categories {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 10px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.td_categories a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  background-color: #fff5f7;
  color: var(--accent-color);
  padding: 6px 20px;
  border-radius: 5px;
}
@media (max-width: 575px) {
  .td_categories a {
    padding: 5px 10px;
  }
}
.td_categories a:hover {
  background-color: var(--accent-color);
  color: #fff;
}

.td_author_card {
  position: relative;
}
.td_author_card::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  background-color: var(--accent-color);
  opacity: 0.1;
  border-radius: 10px;
}
.td_author_card .td_author_card_in {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  z-index: 2;
  gap: 25px;
  padding: 30px 40px;
}
@media (max-width: 991px) {
  .td_author_card .td_author_card_in {
    padding: 25px;
  }
}
@media (max-width: 767px) {
  .td_author_card .td_author_card_in {
    gap: 15px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
  }
  .td_author_card .td_author_card_in .td_mb_10 {
    margin-bottom: 5px;
  }
}
.td_author_card .td_author_card_thumb {
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  height: 120px;
  width: 120px;
  border-radius: 50%;
}

/* Start Comments Section */
.td_comment_wrap {
  padding: 40px;
  border-radius: 8px;
  border: 1px solid rgba(137, 12, 37, 0.1);
  background: rgba(255, 245, 247, 0.2);
}
@media (max-width: 991px) {
  .td_comment_wrap {
    padding: 30px 25px;
  }
}
.td_comment_wrap .td_form_field {
  border: 1px solid #e6eeff;
  -webkit-box-shadow: none;
  box-shadow: none;
  padding: 12px 18px;
}
.td_comment_wrap .td_form_field:focus {
  border-color: var(--accent-color);
}

.cs-comment_wrapper {
  padding: 45px 30px;
  margin-bottom: 70px;
  border-radius: 10px;
  background-color: #fff;
  padding-bottom: 4px;
}

.comment-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.comment-list > .comment {
  padding: 30px 0px;
}
.comment-list > .comment:not(:last-child) {
  border-bottom: 1px solid var(--border-color);
}
.comment-list > .comment:last-child {
  padding-bottom: 0;
}
.comment-list > .comment:first-child {
  padding-top: 0;
}
.comment-list .children {
  border-top: 1px solid var(--border-color);
  margin-top: 30px;
  padding-top: 30px;
}
.comment-list .children .comment:not(:first-child) {
  border-width: 1px 0 0;
  border-style: solid;
  margin-top: 30px;
  padding-top: 30px;
}
.comment-list .bypostauthor:not(:last-child) {
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 50px;
}
@media (max-width: 991px) {
  .comment-list .bypostauthor:not(:last-child) {
    margin-bottom: 30px;
  }
}
.comment-list .bypostauthor .comment-body:last-child {
  margin-bottom: 0;
}
.comment-list .comment-body {
  padding-left: 135px;
  padding-top: 0;
  position: relative;
  min-height: 115px;
}
@media (max-width: 991px) {
  .comment-list .comment-body {
    padding-left: 80px;
    min-height: 70px;
  }
}
.comment-list ol {
  list-style: none;
  padding: 0;
  margin: 0;
}
.comment-list ol.children {
  padding-left: 50px;
}
@media (max-width: 991px) {
  .comment-list ol.children {
    padding-left: 30px;
  }
}
@media (max-width: 575px) {
  .comment-list ol.children {
    padding-left: 0px;
  }
}
.comment-list .avatar {
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 50%;
  height: 115px;
  width: 115px;
}
@media (max-width: 991px) {
  .comment-list .avatar {
    height: 70px;
    width: 70px;
  }
}
.comment-list .comment-author .says {
  display: none;
}
.comment-list .fn {
  font-style: initial;
  font-weight: 500;
  color: var(--heading-color);
  display: inline-block;
  font-size: 18px;
  margin-bottom: 0px;
  line-height: 1.2em;
}
.comment-list .comment-meta {
  display: block;
  line-height: 1.2em;
  position: absolute;
  top: 4px;
  right: 0;
  font-size: 15px;
  font-weight: 500;
  color: var(--accent-color);
}
.comment-list .comment-meta a:hover {
  color: var(--heading-color);
}
.comment-list .comment-author {
  margin-bottom: 10px;
}
.comment-list .comment-meta + p,
.comment-list .comment-meta + p + p {
  font-size: 16px;
  line-height: 1.62em;
  margin-bottom: 0;
  color: var(--heading-color);
}
.comment-list .reply {
  margin-top: 10px;
}
.comment-list .reply a {
  font-weight: 500;
  display: inline-block;
  line-height: inherit;
  color: var(--accent-color);
  text-transform: uppercase;
  background-color: #fff5f7;
  font-size: 14px;
  line-height: 1.6em;
  padding: 5px 15px;
  border-radius: 5px;
}
.comment-list .reply a:hover {
  color: #fff;
  background-color: var(--accent-color);
}

.url {
  font-weight: 600;
  font-size: 20px;
  color: var(--heading-color);
}
@media (max-width: 991px) {
  .url {
    font-size: 18px;
  }
}

#commentform p.logged-in-as {
  font-size: 16px;
  margin-top: -5px;
}

#commentform p.logged-in-as a:hover {
  text-decoration: underline;
}

/* End Comments Section */
/*--------------------------------------------------------------
16. CTA
----------------------------------------------------------------*/
.td_cta.td_style_1 {
  min-height: 714px;
  padding: 70px 0;
  position: relative;
}
.td_cta.td_style_1 .td_cta_text {
  position: relative;
  z-index: 2;
  max-width: 650px;
}
.td_cta.td_style_1 .td_cta_thumb {
  position: absolute;
  left: 52.5%;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 1;
}
@media (max-width: 991px) {
  .td_cta.td_style_1 .td_cta_thumb {
    display: none;
  }
}
.td_cta.td_style_1 .td_cta_thumb_shape {
  width: 350px;
  height: 350px;
  background-color: #fff;
  opacity: 0.08;
  border-radius: 50%;
  position: absolute;
  left: 5%;
  bottom: 8%;
  -webkit-animation: animo-x 9s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  animation: animo-x 9s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}
.td_cta.td_style_1 .td_cta_shape_1 {
  position: absolute;
  border-radius: 50%;
  width: 500px;
  height: 500px;
  background-color: #ebeced;
  opacity: 0.11;
  top: 50%;
  margin-top: -250px;
  left: 10%;
}
.td_cta.td_style_1 .td_cta_shape_2 {
  position: absolute;
  bottom: 50px;
  left: 46%;
  -webkit-animation: swing-anim 10s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  animation: swing-anim 10s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}
@media (max-width: 991px) {
  .td_cta.td_style_1 .td_cta_shape_2 {
    display: none;
  }
}
.td_cta.td_style_1 .td_cta_shape_3 {
  position: absolute;
  right: 5%;
  top: 45%;
}
@media (max-width: 991px) {
  .td_cta.td_style_1 .td_cta_shape_3 {
    display: none;
  }
}

.td_cta.td_style_2 {
  position: relative;
}
.td_cta.td_style_2 .td_cta_in {
  max-width: 800px;
  position: relative;
  z-index: 2;
}
.td_cta.td_style_2 .td_section_subtitle {
  max-width: 575px;
}
.td_cta.td_style_2 .td_cta_img {
  position: absolute;
  bottom: 0;
  max-height: 100%;
  left: 50%;
}
.td_cta.td_style_2 .td_cta_shape_1 {
  left: 4%;
  top: 12%;
}
@media (max-width: 991px) {
  .td_cta.td_style_2 .td_cta_shape_1 {
    display: none;
  }
}
.td_cta.td_style_2 .td_cta_shape_2 {
  left: 7%;
  top: 45%;
}
@media (max-width: 991px) {
  .td_cta.td_style_2 .td_cta_shape_2 {
    display: none;
  }
}
.td_cta.td_style_2 .td_cta_shape_3 {
  left: 4%;
  top: 80%;
  opacity: 0.5;
  -webkit-animation: swing-anim 10s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  animation: swing-anim 10s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}
@media (max-width: 991px) {
  .td_cta.td_style_2 .td_cta_shape_3 {
    display: none;
  }
}
.td_cta.td_style_2 .td_cta_shape_4 {
  left: 58%;
  top: 14%;
}
@media (max-width: 991px) {
  .td_cta.td_style_2 .td_cta_shape_4 {
    display: none;
  }
}
.td_cta.td_style_2 .td_cta_shape_5 {
  left: 48%;
  top: 65%;
}
@media (max-width: 991px) {
  .td_cta.td_style_2 .td_cta_shape_5 {
    display: none;
  }
}
.td_cta.td_style_2 .td_cta_shape_5 img {
  -webkit-animation: animo-x 9s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  animation: animo-x 9s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}
.td_cta.td_style_2 .td_cta_shape_6 {
  left: 81%;
  top: 48%;
}
@media (max-width: 991px) {
  .td_cta.td_style_2 .td_cta_shape_6 {
    display: none;
  }
}
.td_cta.td_style_2 .td_cta_shape_7 {
  left: 93%;
  top: 15%;
  -webkit-animation: up-down-anim 9s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  animation: up-down-anim 9s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}
@media (max-width: 991px) {
  .td_cta.td_style_2 .td_cta_shape_7 {
    display: none;
  }
}
.td_cta.td_style_2 .td_cta_shape_8 {
  left: 95%;
  top: 65%;
}
@media (max-width: 991px) {
  .td_cta.td_style_2 .td_cta_shape_8 {
    display: none;
  }
}

.td_cta.td_style_3 .td_cta_img {
  padding-right: 60px;
}

.td_cta.td_style_4 {
  background-color: #f4f4f7;
}
@media (max-width: 991px) {
  .td_cta.td_style_4 br {
    display: none;
  }
  .td_cta.td_style_4 .td_mb_30 {
    margin-bottom: 20px;
  }
  .td_cta.td_style_4 .td_mb_40 {
    margin-bottom: 30px;
  }
}
.td_cta.td_style_4 .container {
  position: relative;
  z-index: 3;
}
.td_cta.td_style_4 .td_cta_shape_1 {
  left: 0;
  bottom: 30px;
}
@media (max-width: 991px) {
  .td_cta.td_style_4 .td_cta_shape_1 {
    display: none;
  }
}
.td_cta.td_style_4 .td_cta_shape_2 {
  left: 20%;
  top: 50%;
}
@media (max-width: 991px) {
  .td_cta.td_style_4 .td_cta_shape_2 {
    display: none;
  }
}
.td_cta.td_style_4 .td_cta_shape_3 {
  right: 12%;
  top: 20%;
}
@media (max-width: 991px) {
  .td_cta.td_style_4 .td_cta_shape_3 {
    display: none;
  }
}
.td_cta.td_style_4 .td_cta_shape_4 {
  right: 0;
  top: 0;
}
@media (max-width: 991px) {
  .td_cta.td_style_4 .td_cta_shape_4 {
    display: none;
  }
}
.td_cta.td_style_4 .td_cta_shape_5 {
  height: 75px;
  width: 75px;
  border-radius: 50%;
  background-color: #ebeced;
  opacity: 0.5;
  top: 20%;
  left: 8%;
}
@media (max-width: 991px) {
  .td_cta.td_style_4 .td_cta_shape_5 {
    display: none;
  }
}

/*--------------------------------------------------------------
17. Testimonial
----------------------------------------------------------------*/
.td_testimonial_img_wrap {
  padding-right: 19.5%;
  position: relative;
}
@media (max-width: 1199px) {
  .td_testimonial_img_wrap {
    padding-right: 0;
  }
}
.td_testimonial_img_wrap .td_testimonial_img {
  position: relative;
  z-index: 1;
}
.td_testimonial_img_wrap .td_testimonial_img_shape_1 {
  height: 220px;
  width: 220px;
  border-radius: 50%;
  border: 8px solid #fff;
  position: absolute;
  left: -75px;
  bottom: 35px;
}
.td_testimonial_img_wrap .td_testimonial_img_shape_1 span {
  position: absolute;
  left: 50%;
  top: 50%;
  margin-top: -25px;
  margin-left: -25px;
  height: 50px;
  width: 50px;
  border-radius: 50%;
  border: 8px solid #fff;
}
.td_testimonial_img_wrap .td_testimonial_img_shape_2 {
  position: absolute;
  right: 8%;
  top: 20%;
  z-index: 2;
}
@media (max-width: 575px) {
  .td_testimonial_img_wrap .td_testimonial_img_shape_2 {
    right: 0;
  }
  .td_testimonial_img_wrap .td_testimonial_img_shape_2 svg {
    width: 100px;
  }
}

.td_testimonial.td_style_1 {
  padding: 50px 30px;
  position: relative;
}
@media (max-width: 575px) {
  .td_testimonial.td_style_1 {
    padding: 30px 20px;
  }
}
.td_testimonial.td_style_1 .td_quote_icon {
  position: absolute;
  right: 30px;
  top: 57px;
}
.td_testimonial.td_style_1 .td_testimonial_meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
  padding-bottom: 30px;
  border-bottom: 1px solid #ebeced;
  position: relative;
  z-index: 2;
}
.td_testimonial.td_style_1 .td_testimonial_meta img {
  height: 60px;
  width: 60px;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 50%;
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
}
.td_testimonial.td_style_1 .td_testimonial_meta_right {
  padding-left: 14px;
  position: relative;
}
.td_testimonial.td_style_1 .td_testimonial_meta_right::before {
  content: "";
  height: 100%;
  width: 4px;
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 6px;
  background-color: var(--accent-color);
}
.td_testimonial.td_style_1 .td_testimonial_text {
  letter-spacing: 0.4px;
}
.td_testimonial.td_style_1.td_type_1 {
  border-radius: 10px;
  -webkit-box-shadow: 2px 2px 50px 0px rgba(0, 0, 27, 0.1);
  box-shadow: 2px 2px 50px 0px rgba(0, 0, 27, 0.1);
}
.td_testimonial.td_style_1.td_type_2 {
  border-radius: 10px;
  -webkit-box-shadow: 2px 2px 50px 0px rgba(0, 0, 27, 0.1);
  box-shadow: 2px 2px 50px 0px rgba(0, 0, 27, 0.1);
  padding: 30px;
}
@media (max-width: 575px) {
  .td_testimonial.td_style_1.td_type_2 {
    padding: 30px 20px;
  }
}
.td_testimonial.td_style_1.td_type_2 .td_testimonial_meta {
  padding: 0;
  margin: 0;
  border: none;
}
.td_testimonial.td_style_1.td_type_2 .td_quote_icon {
  top: initial;
  bottom: 30px;
}
@media (max-width: 575px) {
  .td_testimonial.td_style_1.td_type_2 .td_quote_icon {
    right: 10px;
  }
}
.td_testimonial.td_style_1.td_type_3 {
  padding: 0;
}
.td_testimonial.td_style_1.td_type_3 .td_testimonial_meta {
  border: none;
  padding: 0;
}
.td_testimonial.td_style_1.td_type_3 .td_quote_icon {
  top: initial;
  bottom: 6px;
}
.td_testimonial.td_style_1.td_type_3 .td_testimonial_text {
  font-style: initial;
}
@media (max-width: 991px) {
  .td_testimonial.td_style_1.td_type_3 .td_mb_35 {
    margin-bottom: 25px;
  }
}

.td_testimonial_with_shape_wrap {
  max-width: 1800px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 60px;
  padding-right: 60px;
}
@media (max-width: 991px) {
  .td_testimonial_with_shape_wrap {
    padding-left: 0px;
    padding-right: 0px;
  }
}

.td_testimonial_with_shape {
  width: 100%;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  position: relative;
}
@media (max-width: 991px) {
  .td_testimonial_with_shape {
    background-size: cover;
    background-position: center;
  }
}
.td_testimonial_with_shape .td_testimonial_shape_1 {
  left: 5.5%;
  top: 39%;
}
@media (max-width: 991px) {
  .td_testimonial_with_shape .td_testimonial_shape_1 {
    display: none;
  }
}
.td_testimonial_with_shape .td_testimonial_shape_2 {
  left: 36.5%;
  top: 40%;
}
@media (max-width: 991px) {
  .td_testimonial_with_shape .td_testimonial_shape_2 {
    display: none;
  }
}
.td_testimonial_with_shape .td_testimonial_shape_2 img {
  -webkit-animation: animo-x 9s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  animation: animo-x 9s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}
.td_testimonial_with_shape .td_testimonial_shape_3 {
  right: 5%;
  top: 9%;
}
@media (max-width: 991px) {
  .td_testimonial_with_shape .td_testimonial_shape_3 {
    display: none;
  }
}
.td_testimonial_with_shape .td_testimonial_shape_4 {
  right: 5%;
  top: 28%;
}
@media (max-width: 991px) {
  .td_testimonial_with_shape .td_testimonial_shape_4 {
    display: none;
  }
}

/*--------------------------------------------------------------
18. Team
----------------------------------------------------------------*/
.td_team.td_style_1 {
  padding-bottom: 20px;
}
.td_team.td_style_1 .td_team_info {
  border-radius: 50px;
  padding: 11px 15px;
  -webkit-box-shadow: 0px 4px 0px 0px rgba(0, 0, 27, 0.6);
  box-shadow: 0px 4px 0px 0px rgba(0, 0, 27, 0.6);
  position: absolute;
  bottom: 0;
  left: 40px;
  right: 40px;
  z-index: 1;
}
@media (max-width: 1199px) {
  .td_team.td_style_1 .td_team_info {
    left: 15px;
    right: 15px;
  }
}
.td_team.td_style_1:hover .td_team_info {
  -webkit-animation: bounce 2s;
  animation: bounce 2s;
}
.td_team.td_style_1.td_type_1 .td_team_info {
  border-radius: 10px;
}

.td_team.td_style_2 {
  border: 4px solid var(--heading-color);
  border-top: 0;
  border-bottom: 0;
  padding: 20px;
}
.td_team.td_style_2 .td_team_shape_1,
.td_team.td_style_2 .td_team_shape_2 {
  height: 1px;
  width: calc(100% - 40px);
  position: absolute;
  left: 20px;
  background-color: var(--heading-color);
}
.td_team.td_style_2 .td_team_shape_1::before,
.td_team.td_style_2 .td_team_shape_1::after,
.td_team.td_style_2 .td_team_shape_2::before,
.td_team.td_style_2 .td_team_shape_2::after {
  content: "";
  position: absolute;
  height: 7px;
  width: 7px;
  border-radius: 50%;
  background-color: var(--heading-color);
  top: -3px;
}
.td_team.td_style_2 .td_team_shape_1::before,
.td_team.td_style_2 .td_team_shape_2::before {
  right: -3px;
}
.td_team.td_style_2 .td_team_shape_1::after,
.td_team.td_style_2 .td_team_shape_2::after {
  left: -3px;
}
.td_team.td_style_2 .td_team_shape_1 {
  top: 0;
}
.td_team.td_style_2 .td_team_shape_2 {
  bottom: 0;
}
.td_team.td_style_2 .td_team_in {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}
.td_team.td_style_2 .td_team_info_in {
  position: relative;
  z-index: 2;
  padding-top: 20px;
}
.td_team.td_style_2 .td_team_info {
  position: absolute;
  bottom: -32px;
  left: 0;
  width: 100%;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.td_team.td_style_2 .td_team_info > svg {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  bottom: -1px;
  color: var(--accent-color);
  fill-opacity: 0.4;
  width: 100%;
}
.td_team.td_style_2 .td_team_info > svg path {
  stroke: #fff;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.td_team.td_style_2 .td_team_member_meta_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 10px;
  max-width: 250px;
  margin-left: auto;
  margin-right: auto;
}
.td_team.td_style_2 .td_team_member_meta_list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
}
.td_team.td_style_2:hover .td_team_info {
  bottom: 0;
}
.td_team.td_style_2:hover .td_team_info > svg path {
  fill-opacity: 1;
  stroke: var(--accent-color);
}

.td_team.td_style_3 .td_team_thumb {
  -webkit-mask-image: url("../img/home_4/team_masking.svg");
  mask-image: url("../img/home_4/team_masking.svg");
  width: 286px;
  height: 266px;
  position: relative;
  z-index: 1;
}
.td_team.td_style_3 .td_team_thumb_wrap {
  position: relative;
  display: inline-block;
  padding: 8px;
}
@media (max-width: 1400px) {
  .td_team.td_style_3 .td_team_thumb_wrap {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
    margin: -20px;
    margin-bottom: -10px;
  }
}
@media (max-width: 1199px) {
  .td_team.td_style_3 .td_team_thumb_wrap {
    -webkit-transform: scale(0.7);
    transform: scale(0.7);
    margin: -42px;
    margin-bottom: -30px;
  }
}
@media (max-width: 575px) {
  .td_team.td_style_3 .td_team_thumb_wrap {
    -webkit-transform: scale(1);
    transform: scale(1);
    margin: 0px;
    margin-bottom: 10px;
  }
}
.td_team.td_style_3 .td_team_thumb_shape {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.td_team_3_footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px 20px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.td_team_3_footer b {
  background-repeat: no-repeat;
  background-image: -webkit-gradient(
    linear,
    left top,
    right top,
    color-stop(0, currentColor),
    to(currentColor)
  );
  background-image: linear-gradient(90deg, currentColor 0, currentColor 100%);
  background-size: 100% 1px;
  background-position: 0 90%;
}

.td_team.td_style_4 .td_team_info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0px 15px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.td_team.td_style_4 .td_team_social_list {
  min-height: 32px;
  border-left: 1px solid var(--border-color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 4px;
  padding-left: 20px;
}
.td_team.td_style_4 .td_team_social_list a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 4px;
}
.td_team.td_style_4 .td_team_social_list a:hover {
  color: var(--heading-color);
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}
.td_team.td_style_4 .td_team_thumb img {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.td_team.td_style_4 .td_team_thumb:hover img {
  -webkit-transform: scale(1.04);
  transform: scale(1.04);
}

.td_team.td_style_5 .td_team_thumb {
  position: relative;
}
.td_team.td_style_5 .td_team_social_list {
  position: absolute;
  top: 20px;
  right: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
}
.td_team.td_style_5 .td_team_social_list a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.td_team.td_style_5.td_type_1 .td_team_social_list {
  background-color: var(--accent-color);
  color: #fff;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  padding: 13px 14px;
}
.td_team.td_style_5.td_type_1 .td_team_social_list a:hover {
  color: rgba(255, 255, 255, 0.7);
}

/*--------------------------------------------------------------
19. Card
----------------------------------------------------------------*/
.td_card.td_style_1 {
  border: 1px solid #ebeced;
  padding: 30px;
}
@media (max-width: 1400px) {
  .td_card.td_style_1 {
    padding: 25px;
  }
}
@media (max-width: 575px) {
  .td_card.td_style_1 {
    padding: 15px 15px 25px 15px;
  }
}
.td_card.td_style_1 .td_card_location {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
}
.td_card.td_style_1 .td_card_thumb {
  position: relative;
  overflow: hidden;
  -webkit-box-shadow: 2px 2px 500px 0px rgba(0, 0, 27, 0.3) inset;
  box-shadow: 2px 2px 500px 0px rgba(0, 0, 27, 0.3) inset;
}
.td_card.td_style_1 .td_card_thumb::before,
.td_card.td_style_1 .td_card_thumb::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.td_card.td_style_1 .td_card_thumb::before {
  z-index: 1;
  opacity: 0;
  background-color: var(--accent-color);
}
.td_card.td_style_1 .td_card_thumb::after {
  z-index: 2;
  -webkit-box-shadow: 2px 2px 500px 0px rgba(0, 0, 27, 0.1) inset;
  box-shadow: 2px 2px 500px 0px rgba(0, 0, 27, 0.1) inset;
}
.td_card.td_style_1 .td_card_thumb i {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) scale(0) rotate(-120deg);
  transform: translate(-50%, -50%) scale(0) rotate(-120deg);
  color: #fff;
  font-size: 50px;
  z-index: 3;
  opacity: 0;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.td_card.td_style_1 .td_card_thumb:hover::before {
  opacity: 0.3;
}
.td_card.td_style_1 .td_card_thumb:hover i {
  opacity: 1;
  -webkit-transform: translate(-50%, -50%) scale(1) rotate(0deg);
  transform: translate(-50%, -50%) scale(1) rotate(0deg);
}
.td_card.td_style_1 .td_card_thumb:hover i:hover {
  opacity: 0.8;
}
.td_card.td_style_1 .td_card_thumb .td_card_location {
  position: absolute;
  right: 20px;
  bottom: 20px;
  z-index: 2;
}
.td_card.td_style_1 .td_card_meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 575px) {
  .td_card.td_style_1 .td_card_meta {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 6px 0;
  }
}
.td_card.td_style_1 .td_card_meta li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  position: relative;
}
@media (max-width: 575px) {
  .td_card.td_style_1 .td_card_meta li {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
  }
  .td_card.td_style_1 .td_card_meta li svg {
    width: 20px;
  }
}
.td_card.td_style_1 .td_card_meta li:last-child {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.td_card.td_style_1 .td_card_meta li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 1px;
  background-color: var(--accent-color);
  opacity: 0.5;
}
@media (max-width: 575px) {
  .td_card.td_style_1 .td_card_meta li:not(:last-child) {
    margin-right: 12px;
    padding-right: 12px;
  }
}
.td_card.td_style_1 .td_card_title {
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.td_card.td_style_1 .td_card_title a {
  background-repeat: no-repeat;
  background-image: -webkit-gradient(
    linear,
    left top,
    right top,
    color-stop(0, currentColor),
    to(currentColor)
  );
  background-image: linear-gradient(90deg, currentColor 0, currentColor 100%);
  -webkit-transition: background-size 0.5s cubic-bezier(0.49, 0.49, 0.08, 1),
    color 0.27s ease-out;
  transition: background-size 0.5s cubic-bezier(0.49, 0.49, 0.08, 1),
    color 0.27s ease-out;
  background-position: 100% calc(100% - 0px);
  background-size: 0 2px;
}
.td_card.td_style_1 .td_card_title a:hover {
  background-size: 100% 2px;
  background-position: 0 calc(100% - 0px);
}
.td_card.td_style_1.td_type_1,
.td_card.td_style_1.td_type_2 {
  border: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  padding: 0;
}
@media (max-width: 1400px) {
  .td_card.td_style_1.td_type_1,
  .td_card.td_style_1.td_type_2 {
    gap: 15px;
  }
}
@media (max-width: 575px) {
  .td_card.td_style_1.td_type_1,
  .td_card.td_style_1.td_type_2 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
  }
  .td_card.td_style_1.td_type_1 .td_mb_20,
  .td_card.td_style_1.td_type_2 .td_mb_20 {
    margin-bottom: 10px;
  }
}
.td_card.td_style_1.td_type_1 .td_card_thumb,
.td_card.td_style_1.td_type_2 .td_card_thumb {
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  width: 240px;
  height: 235px;
  border-radius: 5px;
}
@media (max-width: 1400px) {
  .td_card.td_style_1.td_type_1 .td_card_thumb,
  .td_card.td_style_1.td_type_2 .td_card_thumb {
    height: 215px;
    width: 230px;
  }
}
@media (max-width: 1199px) {
  .td_card.td_style_1.td_type_1 .td_card_thumb,
  .td_card.td_style_1.td_type_2 .td_card_thumb {
    height: 207px;
    width: 190px;
  }
}
@media (max-width: 991px) {
  .td_card.td_style_1.td_type_1 .td_card_thumb,
  .td_card.td_style_1.td_type_2 .td_card_thumb {
    height: 200px;
    width: 220px;
  }
}
@media (max-width: 575px) {
  .td_card.td_style_1.td_type_1 .td_card_thumb,
  .td_card.td_style_1.td_type_2 .td_card_thumb {
    height: 235px;
    width: 100%;
  }
}
.td_card.td_style_1.td_type_1 .td_card_thumb img,
.td_card.td_style_1.td_type_2 .td_card_thumb img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.td_card.td_style_1.td_type_1 .td_card_thumb i,
.td_card.td_style_1.td_type_2 .td_card_thumb i {
  font-size: 36px;
}
.td_card.td_style_1.td_type_1 .td_card_meta li,
.td_card.td_style_1.td_type_2 .td_card_meta li {
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
}
.td_card.td_style_1.td_type_1 .td_card_meta li:not(:last-child),
.td_card.td_style_1.td_type_2 .td_card_meta li:not(:last-child) {
  padding-right: 30px;
  margin-right: 30px;
}
@media (max-width: 1199px) {
  .td_card.td_style_1.td_type_1 .td_card_meta li:not(:last-child),
  .td_card.td_style_1.td_type_2 .td_card_meta li:not(:last-child) {
    padding-right: 12px;
    margin-right: 12px;
  }
}
.td_card.td_style_1.td_type_1 .td_card_meta li svg,
.td_card.td_style_1.td_type_2 .td_card_meta li svg {
  height: 18px;
  width: 18px;
}
.td_card.td_style_1.td_type_1 .td_card_info,
.td_card.td_style_1.td_type_2 .td_card_info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-style: solid;
  border-width: 1px 0 1px 0;
  border-color: #ebeced;
}
@media (max-width: 575px) {
  .td_card.td_style_1.td_type_1 .td_card_info,
  .td_card.td_style_1.td_type_2 .td_card_info {
    border: none;
  }
}
.td_card.td_style_1.td_type_1 .td_card_title a,
.td_card.td_style_1.td_type_2 .td_card_title a {
  background-position: 100% calc(100% - 0px);
  background-size: 0 1px;
}
.td_card.td_style_1.td_type_1 .td_card_title a:hover,
.td_card.td_style_1.td_type_2 .td_card_title a:hover {
  background-size: 100% 1px;
  background-position: 0 calc(100% - 0px);
}
.td_card.td_style_1.td_type_2 {
  padding: 30px 40px;
  border-radius: 50px;
  padding-right: 90px;
  gap: 40px;
}
@media (max-width: 1400px) {
  .td_card.td_style_1.td_type_2 {
    padding: 25px;
    padding-right: 25px;
    gap: 25px;
  }
}
@media (max-width: 991px) {
  .td_card.td_style_1.td_type_2 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.td_card.td_style_1.td_type_2 .td_card_thumb {
  width: 346px;
  height: 291px;
  border-radius: 50px;
}
@media (max-width: 1400px) {
  .td_card.td_style_1.td_type_2 .td_card_thumb {
    height: 320px;
  }
}
@media (max-width: 1199px) {
  .td_card.td_style_1.td_type_2 .td_card_thumb {
    width: 290px;
  }
}
@media (max-width: 991px) {
  .td_card.td_style_1.td_type_2 .td_card_thumb {
    width: 100%;
  }
}
@media (max-width: 575px) {
  .td_card.td_style_1.td_type_2 .td_card_thumb {
    height: 280px;
  }
}
.td_card.td_style_1.td_type_2 .td_card_info {
  border: none;
}
@media (max-width: 1400px) {
  .td_card.td_style_1.td_type_2 .td_card_meta {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 5px 0;
  }
}
.td_card.td_style_1.td_type_2 .td_card_meta li:not(:last-child) {
  padding-right: 40px;
  margin-right: 40px;
}
@media (max-width: 1400px) {
  .td_card.td_style_1.td_type_2 .td_card_meta li:not(:last-child) {
    padding-right: 20px;
    margin-right: 20px;
  }
}
@media (max-width: 1199px) {
  .td_card.td_style_1.td_type_2 .td_card_meta li:not(:last-child) {
    padding-right: 12px;
    margin-right: 12px;
  }
}
@media (max-width: 1199px) {
  .td_card.td_style_1.td_type_2 .td_mb_30 {
    margin-bottom: 16px;
  }
  .td_card.td_style_1.td_type_2 .td_mb_25 {
    margin-bottom: 15px;
  }
  .td_card.td_style_1.td_type_2 .td_mb_40 {
    margin-bottom: 20px;
  }
}
.td_card.td_style_1.td_type_3 {
  border: none;
  padding: 0;
  margin-right: 50px;
}
@media (max-width: 1400px) {
  .td_card.td_style_1.td_type_3 {
    margin-right: 0px;
  }
}
.td_card.td_style_1.td_type_3 .td_card_title {
  text-overflow: initial;
  display: block;
  -webkit-line-clamp: initial;
  -webkit-box-orient: initial;
  overflow: initial;
}
.td_card.td_style_1.td_type_3 .td_card_meta.td_type_2 {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 10px 50px;
}
.td_card.td_style_1.td_type_3 .td_card_meta.td_type_2 li {
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
}
.td_card.td_style_1.td_type_3 .td_card_meta.td_type_2 li::after {
  display: none;
}
.td_card.td_style_1.td_type_3 .td_map {
  height: 365px;
}

.td_card.td_style_2 .td_card_info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 13px 20px 0px 20px;
  border-radius: 0 0 10px 10px;
  background-color: var(--accent-color);
  gap: 0 10px;
}
@media (max-width: 1199px) {
  .td_card.td_style_2 .td_card_info {
    padding: 13px 15px 0px 15px;
  }
}
.td_card.td_style_2 .td_card_thumb {
  border-radius: 10px 10px 0 0;
  overflow: hidden;
}
.td_card.td_style_2 .td_card_thumb img {
  border-radius: inherit;
  -webkit-transition: all 0.7s ease;
  transition: all 0.7s ease;
}
.td_card.td_style_2 .td_card_thumb:hover img {
  -webkit-transform: scale(1.04);
  transform: scale(1.04);
  -webkit-transform-origin: top;
  transform-origin: top;
}
.td_card.td_style_2 .td_card_title a:hover {
  color: #fff;
  opacity: 0.75;
}
.td_card.td_style_2 .td_card_btn {
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  width: 23px;
  height: 24px;
  position: relative;
  overflow: hidden;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
.td_card.td_style_2 .td_card_btn svg {
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.td_card.td_style_2 .td_card_btn svg:nth-child(2) {
  position: absolute;
  left: -23px;
  bottom: -24px;
}
.td_card.td_style_2 .td_card_btn:hover svg:first-child {
  -webkit-transform: translate(23px, -24px);
  transform: translate(23px, -24px);
}
.td_card.td_style_2 .td_card_btn:hover svg:nth-child(2) {
  position: absolute;
  left: 0px;
  bottom: 0px;
}

.td_card.td_style_3 {
  overflow: hidden;
  position: relative;
  -webkit-box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.05);
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.05);
}
.td_card.td_style_3 .td_card_label {
  position: absolute;
  left: 20px;
  top: 20px;
  z-index: 2;
  padding: 4px 10px;
  border-radius: 6px;
}
.td_card.td_style_3 .td_card_title,
.td_card.td_style_3 .td_card_subtitle {
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.td_card.td_style_3 .td_card_meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 20px;
}
.td_card.td_style_3 .td_card_meta li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 6px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
}
.td_card.td_style_3 .td_card_meta li:not(:last-child) {
  padding-right: 30px;
  margin-right: 30px;
}
@media (max-width: 1400px) {
  .td_card.td_style_3 .td_card_meta li:not(:last-child) {
    padding-right: 20px;
    margin-right: 20px;
  }
}
@media (max-width: 1199px) {
  .td_card.td_style_3 .td_card_meta li:not(:last-child) {
    padding-right: 12px;
    margin-right: 12px;
  }
}
.td_card.td_style_3 .td_card_meta li:not(:last-child)::before {
  content: "";
  position: absolute;
  height: 20px;
  width: 1px;
  background-color: var(--accent-color);
  right: 0;
  top: 50%;
  margin-top: -10px;
}
@media (max-width: 1199px) {
  .td_card.td_style_3 .td_card_meta {
    font-size: 16px;
  }
  .td_card.td_style_3 .td_card_meta img {
    width: 20px;
  }
}
.td_card.td_style_3 .td_card_category {
  padding: 4px 10px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: relative;
  -webkit-box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.05);
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.05);
}
.td_card.td_style_3 .td_card_category span {
  position: relative;
  z-index: 2;
}
.td_card.td_style_3 .td_card_category::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  background-color: var(--accent-color);
  opacity: 0.12;
}
.td_card.td_style_3 .td_card_info {
  padding: 30px;
  position: relative;
  z-index: 1;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
@media (max-width: 1400px) {
  .td_card.td_style_3 .td_card_info {
    padding: 25px;
  }
}
@media (max-width: 1199px) {
  .td_card.td_style_3 .td_card_info {
    padding: 18px 20px 22px 20px;
  }
}
.td_card.td_style_3 .td_card_review {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
}
.td_card.td_style_3 .td_card_btn {
  padding-top: 25px;
  margin-bottom: -75px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.td_card.td_style_3 .td_card_info_in {
  overflow: hidden;
}
.td_card.td_style_3 .td_card_thumb {
  overflow: hidden;
  display: block;
  position: relative;
}
.td_card.td_style_3 .td_card_thumb img {
  width: 100%;
  -webkit-transition: all 0.8s ease;
  transition: all 0.8s ease;
}
.td_card.td_style_3 .td_card_thumb:hover img {
  -webkit-transform: scale(1.04);
  transform: scale(1.04);
}
.td_card.td_style_3 .td_card_lable {
  position: absolute;
  z-index: 1;
  top: 25px;
  left: 24px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding: 9px 15px;
}
.td_card.td_style_3:hover .td_card_info {
  margin-top: -75px;
}
.td_card.td_style_3:hover .td_card_btn {
  margin-bottom: 0px;
}
.td_card.td_style_3.td_type_1 {
  padding: 20px;
  background-color: #fff;
  border-radius: 50px;
  -webkit-clip-path: inset(0 round 50px 50px 50px 50px);
  clip-path: inset(0 round 50px 50px 50px 50px);
  position: relative;
}
.td_card.td_style_3.td_type_1::before {
  content: "";
  position: absolute;
  left: -4px;
  top: -4px;
  right: -4px;
  bottom: -4px;
  border: 5px dashed #6440fb;
  border-radius: 54px;
}
.td_card.td_style_3.td_type_1 > * {
  position: relative;
  z-index: 2;
}
.td_card.td_style_3.td_type_1 .td_card_thumb {
  border-radius: 50px;
  overflow: hidden;
  height: 265px;
}
.td_card.td_style_3.td_type_1 .td_card_thumb img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.td_card.td_style_3.td_type_1 .td_card_category {
  border-radius: 50px;
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    color-stop(0.07%, #fff0d4),
    color-stop(95.86%, #d6fff7)
  );
  background: linear-gradient(90deg, #fff0d4 0.07%, #d6fff7 95.86%);
  -webkit-box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.05);
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.05);
}
.td_card.td_style_3.td_type_1 .td_card_category::before {
  border-radius: 50px;
}
.td_card.td_style_3.td_type_1 .td_card_meta {
  margin: 0;
}
.td_card.td_style_3.td_type_1 .td_card_info {
  padding: 30px 10px 10px 10px;
}
@media (max-width: 1199px) {
  .td_card.td_style_3.td_type_1 .td_card_info {
    padding: 25px 0px 10px 0px;
  }
}
.td_card.td_style_3.td_type_1 .td_btn.td_style_1 .td_btn_in {
  padding: 10px 25px;
}
.td_card.td_style_3.td_type_1:hover .td_card_thumb {
  height: 196px;
  margin-bottom: 69px;
}
.td_card.td_style_3.td_type_2 {
  -webkit-box-shadow: none;
  box-shadow: none;
}
.td_card.td_style_3.td_type_2 .td_card_info {
  border: 2px solid var(--border-color);
  border-top: 0;
}
.td_card.td_style_3.td_type_2 .td_card_meta {
  margin-bottom: 15px;
}
.td_card.td_style_3.td_type_2:hover .td_card_info {
  margin-top: 0;
}
.td_card.td_style_3.td_type_3 {
  -webkit-box-shadow: none;
  box-shadow: none;
}
.td_card.td_style_3.td_type_3 .td_card_thumb img {
  width: 100%;
}
.td_card.td_style_3.td_type_3 .td_card_info_in {
  overflow: initial;
}
.td_card.td_style_3.td_type_3 .td_card_info {
  padding-top: 24px;
}
.td_card.td_style_3.td_type_3 .td_card_meta {
  -ms-flex-pack: distribute;
  justify-content: space-around;
  gap: 0 20px;
  padding: 12px 30px;
  margin-bottom: 0;
}
.td_card.td_style_3.td_type_3 .td_card_meta li:not(:last-child) {
  padding-right: 0;
  margin-right: 0;
}
.td_card.td_style_3.td_type_3 .td_card_meta li::before {
  display: none;
}
.td_card.td_style_3.td_type_3 .td_card_enroll {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 14px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.td_card.td_style_3.td_type_3 .td_btn.td_style_1 .td_btn_in {
  padding: 8px 16px;
}
.td_card.td_style_3.td_type_3 .td_rating {
  -webkit-transform: scale(0.8);
  transform: scale(0.8);
  margin: 0 -10px;
}
.td_card.td_style_3.td_type_3 .td_card_title a:hover {
  color: #fff;
  opacity: 0.8;
}
.td_card.td_style_3.td_type_3 .td_btn.td_style_1.td_with_shadow_2 {
  -webkit-box-shadow: 4px 4px 0px 0px var(--heading-color);
  box-shadow: 4px 4px 0px 0px var(--heading-color);
}
.td_card.td_style_3.td_type_3 .td_btn.td_style_1.td_with_shadow_2:hover {
  -webkit-box-shadow: 4px -4px 0px 0px var(--heading-color);
  box-shadow: 4px -4px 0px 0px var(--heading-color);
}
.td_card.td_style_3.td_type_3:hover .td_card_info {
  margin-top: 0;
}

.td_card.td_style_4 {
  background-color: var(--accent-color);
  border-radius: 50px;
  gap: 15px 45px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 40px;
  -webkit-box-shadow: 2px 2px 500px 0px rgba(0, 0, 27, 0.1) inset;
  box-shadow: 2px 2px 500px 0px rgba(0, 0, 27, 0.1) inset;
  position: relative;
  overflow: hidden;
}
@media (max-width: 1400px) {
  .td_card.td_style_4 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    padding: 40px 20px;
  }
}
.td_card.td_style_4 h3 span {
  display: inline-block;
  background-color: #fff;
  color: var(--accent-color);
  padding: 0 10px;
}
.td_card.td_style_4 .td_card_thumb {
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  overflow: hidden;
  flex: none;
}
.td_card.td_style_4 .td_card_thumb img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.td_card.td_style_4 .td_btn.td_style_1.td_type_3.td_with_shadow:after {
  background-color: rgba(40, 11, 183, 0.8);
}
.td_card.td_style_4 .td_btn.td_style_1.td_type_3:hover .td_btn_in {
  border-color: #fff;
  color: var(--accent-color);
}
.td_card.td_style_4 .td_btn.td_style_1.td_type_3:hover .td_btn_in::before {
  background-color: #fff;
}
.td_card.td_style_4 .td_card_1 {
  position: absolute;
  right: -30px;
  top: -60px;
}
.td_card.td_style_4 .td_card_2 {
  position: absolute;
  right: -30px;
  bottom: -60px;
}

.td_card.td_style_5 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
}
@media (max-width: 1400px) {
  .td_card.td_style_5 {
    gap: 15px;
  }
}
@media (max-width: 767px) {
  .td_card.td_style_5 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
  }
}
.td_card.td_style_5 .td_card_title {
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.td_card.td_style_5 .td_card_label {
  position: absolute;
  left: 20px;
  top: 20px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  padding: 9px 15px;
  border-radius: 30px;
  z-index: 2;
}
.td_card.td_style_5 .td_card_label img {
  width: 14px;
  height: 14px;
}
.td_card.td_style_5 .td_card_thumb {
  border-radius: 10px;
  padding: 12px;
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  width: 300px;
  height: 242px;
  position: relative;
  -webkit-clip-path: inset(0 round 10px 10px 10px 10px);
  clip-path: inset(0 round 10px 10px 10px 10px);
}
@media (max-width: 1400px) {
  .td_card.td_style_5 .td_card_thumb {
    padding: 6px;
    width: 250px;
  }
}
@media (max-width: 1199px) {
  .td_card.td_style_5 .td_card_thumb {
    width: 300px;
    padding: 12px;
  }
}
@media (max-width: 767px) {
  .td_card.td_style_5 .td_card_thumb {
    width: 100%;
    height: 260px;
  }
}
.td_card.td_style_5 .td_card_thumb:before {
  content: "";
  position: absolute;
  left: -3px;
  top: -3px;
  right: -3px;
  bottom: -3px;
  border: 4px dashed var(--border-color);
  border-radius: 13px;
}
.td_card.td_style_5 .td_card_thumb .td_card_thumb_in {
  height: 100%;
  width: 100%;
}
.td_card.td_style_5 .td_card_thumb .td_card_thumb_in > img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.td_card.td_style_5 .td_card_thumb:hover .td_card_thumb_in > img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
.td_card.td_style_5 .td_card_thumb_in {
  display: block;
  overflow: hidden;
  position: relative;
  z-index: 2;
}
.td_card.td_style_5 .td_card_thumb_in > img {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
@media (max-width: 767px) {
  .td_card.td_style_5 .td_card_content {
    width: 100%;
  }
}
.td_card.td_style_5 .td_card_meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 20px;
}
.td_card.td_style_5 .td_card_meta li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 6px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
}
.td_card.td_style_5 .td_card_meta li:not(:last-child) {
  padding-right: 25px;
  margin-right: 25px;
}
.td_card.td_style_5 .td_card_meta li:not(:last-child)::before {
  content: "";
  position: absolute;
  height: 20px;
  width: 1px;
  background-color: var(--accent-color);
  right: 0;
  top: 50%;
  margin-top: -10px;
}
.td_card.td_style_5 .td_card_meta li img {
  width: 20px;
  height: 20px;
}
.td_card.td_style_5 .td_btn.td_style_1.td_type_3 .td_btn_in {
  padding: 8px 16px;
}
.td_card.td_style_5 .td_card_btns_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 5px 10px;
}
.td_card.td_style_5 .td_card_price {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding: 5px 10px;
  min-width: 62px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  border-radius: 30px;
}
.td_card.td_style_5 .td_card_price_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 10px;
}
.td_card.td_style_5 .td_card_review {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.td_card.td_style_5 .td_rating {
  -webkit-transform: scale(0.8);
  transform: scale(0.8);
  margin-left: -12px;
  margin-right: -5px;
}
.td_card.td_style_5.td_type_1 .td_card_thumb {
  padding: 16px;
  border-radius: 50px;
  background-color: #ebeced;
  -webkit-box-shadow: 4px 4px 0px 0px rgba(0, 0, 0, 0.15);
  box-shadow: 4px 4px 0px 0px rgba(0, 0, 0, 0.15);
  border: none;
  -webkit-clip-path: initial;
  clip-path: initial;
}
.td_card.td_style_5.td_type_1 .td_card_thumb:before {
  display: none;
}
.td_card.td_style_5.td_type_1 .td_card_thumb_in {
  border-radius: 50px;
  overflow: hidden;
}
.td_card.td_style_5.td_type_1:hover .td_card_thumb {
  background-color: var(--accent-color);
  -webkit-box-shadow: initial;
  box-shadow: initial;
}
.td_card.td_style_5.td_type_2 .td_card_label {
  position: initial;
}
.td_card.td_style_5.td_type_2 .td_card_label:hover {
  color: #fff;
  opacity: 0.9;
}
.td_card.td_style_5.td_type_2 .td_card_flag {
  height: 40px;
  width: 40px;
  border-radius: 50%;
  -o-object-fit: cover;
  object-fit: cover;
  position: absolute;
  top: 24px;
  left: 24px;
  z-index: 2;
}
.td_card.td_style_5.td_type_3 {
  position: relative;
}
.td_card.td_style_5.td_type_3::before {
  content: "";
  position: absolute;
  height: calc(100% + 20px);
  width: calc(100% + 20px);
  left: -10px;
  top: -10px;
  border-radius: 10px;
  border: 1px solid var(--accent-color);
  pointer-events: none;
  z-index: -1;
  opacity: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.td_card.td_style_5.td_type_3 .td_card_thumb {
  padding: 0;
  border-radius: 0;
  -webkit-clip-path: initial;
  clip-path: initial;
}
.td_card.td_style_5.td_type_3 .td_card_thumb:before {
  display: none;
}
.td_card.td_style_5.td_type_3 .td_card_label {
  gap: 5px;
  padding: 5px 10px;
  border-radius: 10px;
}
.td_card.td_style_5.td_type_3 .td_card_price {
  border: 1px solid var(--accent-color);
  border-radius: 10px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.td_card.td_style_5.td_type_3 .td_btn.td_style_1.td_type_3 .td_btn_in {
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.td_card.td_style_5.td_type_3:hover::before {
  opacity: 1;
}
.td_card.td_style_5.td_type_3:hover .td_card_price {
  background-color: var(--accent-color);
  color: #fff;
}
.td_card.td_style_5.td_type_3:hover .td_btn.td_style_1.td_type_3 .td_btn_in {
  color: #fff;
  border-color: var(--accent-color);
  background-color: var(--accent-color);
}
.td_card.td_style_5.td_type_3:hover
  .td_btn.td_style_1.td_type_3
  .td_btn_in:before {
  background-color: var(--heading-color);
}
.td_card.td_style_5.td_type_3:hover
  .td_btn.td_style_1.td_type_3:hover
  .td_btn_in:before {
  opacity: 0.25;
}

.td_card.td_style_6 {
  padding: 30px;
  -webkit-box-shadow: 2px 2px 50px 0px rgba(0, 0, 27, 0.1);
  box-shadow: 2px 2px 50px 0px rgba(0, 0, 27, 0.1);
}
@media (max-width: 1400px) {
  .td_card.td_style_6 {
    padding: 25px;
  }
}
.td_card.td_style_6 .td_card_list {
  border-top: 1px solid var(--heading-color);
}
.td_card.td_style_6 .td_card_list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: 1px solid var(--heading-color);
  padding: 10px 0;
}

.td_card.td_style_7 {
  border-radius: 10px;
  background-color: #fff;
  padding: 30px;
  -webkit-box-shadow: 2px 2px 50px 0px rgba(0, 0, 27, 0.1);
  box-shadow: 2px 2px 50px 0px rgba(0, 0, 27, 0.1);
  margin: -250px 0 0 25px;
  position: relative;
  z-index: 10;
}
@media (max-width: 1400px) {
  .td_card.td_style_7 {
    margin-left: 0;
  }
}
@media (max-width: 1199px) {
  .td_card.td_style_7 {
    padding: 30px 24px;
  }
}
@media (max-width: 991px) {
  .td_card.td_style_7 {
    margin-top: 0;
  }
}
.td_card.td_style_7 .td_card_list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #ebeced;
  background-color: rgba(235, 236, 237, 0.25);
  border-radius: 10px;
  padding: 11px 20px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
@media (max-width: 1199px) {
  .td_card.td_style_7 .td_card_list li {
    padding: 11px 15px;
  }
}
.td_card.td_style_7 .td_card_list li:hover {
  background-color: rgba(235, 236, 237, 0.8);
}
.td_card.td_style_7 .td_card_list li:not(:last-child) {
  margin-bottom: 15px;
}
.td_card.td_style_7 .td_card_list span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
}
.td_card.td_style_7 .td_card_list span svg {
  color: var(--accent-color);
}
.td_card.td_style_7 .td_card_video_block {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}
.td_card.td_style_7 .td_card_video_block .td_player_btn_wrap_2 {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  margin: 0;
}
.td_card.td_style_7 .td_card_video_block .td_player_btn_wrap_2 .td_player_btn {
  color: var(--accent-color);
}
.td_card.td_style_7
  .td_card_video_block
  .td_player_btn_wrap_2
  .td_player_btn::after {
  background-color: #fff;
}

/*--------------------------------------------------------------
20. Features
----------------------------------------------------------------*/
.td_features.td_style_1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}
@media (max-width: 991px) {
  .td_features.td_style_1 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.td_features.td_style_1 .td_features_content,
.td_features.td_style_1 .td_features_thumb {
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  width: 50%;
}
@media (max-width: 991px) {
  .td_features.td_style_1 .td_features_content,
  .td_features.td_style_1 .td_features_thumb {
    width: 100%;
  }
}
.td_features.td_style_1 .td_features_thumb {
  position: relative;
  z-index: 2;
}
@media (min-width: 992px) {
  .td_features.td_style_1 .td_features_thumb img {
    width: calc(100% + 110px);
    max-width: initial;
  }
}
.td_features.td_style_1 .td_feature_list {
  max-width: 465px;
}
.td_features.td_style_1 .td_features_content {
  margin-top: 200px;
  -webkit-box-shadow: 4px 4px 20px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 4px 4px 20px 0px rgba(0, 0, 0, 0.1);
  padding: 60px;
  position: relative;
  z-index: 3;
}
@media (max-width: 1199px) {
  .td_features.td_style_1 .td_features_content {
    padding: 40px 30px;
  }
}
@media (max-width: 991px) {
  .td_features.td_style_1 .td_features_content {
    margin-top: 40px;
  }
}
@media (max-width: 575px) {
  .td_features.td_style_1 .td_features_content {
    padding: 40px 15px;
  }
  .td_features.td_style_1 .td_features_content .td_mb_15 {
    margin-bottom: 8px;
  }
}
.td_features.td_style_1 .td_features_content li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.td_features.td_style_1 .td_features_content li:not(:last-child) {
  margin-bottom: 40px;
}
@media (max-width: 575px) {
  .td_features.td_style_1 .td_features_content li:not(:last-child) {
    margin-bottom: 25px;
  }
}
@media (max-width: 350px) {
  .td_features.td_style_1 .td_features_content li {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 12px;
  }
}
.td_features.td_style_1 .td_features_content li:hover .td_feature_icon::before {
  opacity: 0.15;
}
.td_features.td_style_1 .td_features_content .td_feature_icon {
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  height: 100px;
  width: 100px;
  padding: 15px;
  position: relative;
}
@media (max-width: 575px) {
  .td_features.td_style_1 .td_features_content .td_feature_icon {
    height: 80px;
    width: 80px;
  }
}
.td_features.td_style_1 .td_features_content .td_feature_icon::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  border-radius: 10px;
  background-color: var(--accent-color);
  opacity: 0.05;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.td_features.td_style_1 .td_features_content .td_feature_icon svg,
.td_features.td_style_1 .td_features_content .td_feature_icon img {
  position: relative;
  z-index: 1;
}
.td_features.td_style_1 .td_features_content .td_feature_icon svg path {
  fill: var(--accent-color);
}
.td_features.td_style_1 .td_features_shape_1 {
  left: 49%;
  top: 5%;
  opacity: 0.15;
}
@media (max-width: 991px) {
  .td_features.td_style_1 .td_features_shape_1 {
    display: none;
  }
}
.td_features.td_style_1 .td_features_shape_2 {
  left: 10%;
  bottom: 0;
  opacity: 0.15;
}
@media (max-width: 991px) {
  .td_features.td_style_1 .td_features_shape_2 {
    display: none;
  }
}

.td_features.td_style_2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 991px) {
  .td_features.td_style_2 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.td_features.td_style_2 .td_feature_list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.td_features.td_style_2 .td_feature_icon {
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  width: 50px;
}
.td_features.td_style_2 .td_feature_icon img {
  width: 100%;
}
.td_features.td_style_2 .td_features_content_wrap {
  padding: 80px 0;
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  width: 57%;
}
@media (max-width: 991px) {
  .td_features.td_style_2 .td_features_content_wrap {
    width: 100%;
    padding: 40px 0 0;
  }
}
.td_features.td_style_2 .td_features_content {
  -webkit-box-shadow: 2px 2px 50px 0px rgba(0, 0, 27, 0.1);
  box-shadow: 2px 2px 50px 0px rgba(0, 0, 27, 0.1);
  padding: 60px;
  position: relative;
  z-index: 2;
}
@media (max-width: 575px) {
  .td_features.td_style_2 .td_features_content {
    padding: 40px 25px;
  }
}
.td_features.td_style_2 .td_feature_list {
  max-width: 400px;
}
.td_features.td_style_2 .td_feature_list li:not(:last-child) {
  margin-bottom: 40px;
}
.td_features.td_style_2 .td_features_thumb {
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  width: 57%;
  margin-right: -14%;
}
@media (max-width: 991px) {
  .td_features.td_style_2 .td_features_thumb {
    width: 100%;
    height: 400px;
    margin-right: 0;
  }
}
.td_features.td_style_2 .td_player_btn_wrap {
  position: relative;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.td_features.td_style_2 .td_player_btn_wrap::after {
  content: "";
  position: absolute;
  height: 90px;
  width: 90px;
  border-radius: 50%;
  border: 1px dashed #fff;
  left: -5px;
  top: -5px;
  -webkit-animation: rotate-anim 25s linear infinite;
  animation: rotate-anim 25s linear infinite;
}
.td_features.td_style_2 .td_player_btn_wrap:hover {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
.td_features.td_style_2 .td_player_btn {
  height: 80px;
  width: 80px;
}
.td_features.td_style_2 .td_player_btn::before {
  display: none;
}
.td_features.td_style_2 .td_player_btn span {
  -webkit-transform: scale(1.6);
  transform: scale(1.6);
}

.td_features_2_wrap {
  position: relative;
}
.td_features_2_wrap .container {
  position: relative;
  z-index: 2;
}
.td_features_2_wrap::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 195px;
  width: 100%;
  background-color: var(--accent-color);
}

/*--------------------------------------------------------------
21. Pricing
----------------------------------------------------------------*/
.td_pricing_control {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  z-index: 1;
}
.td_pricing_control li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
}
.td_pricing_control li a {
  color: rgba(0, 0, 27, 0.55);
}
.td_pricing_control li:hover a {
  color: var(--heading-color);
}
.td_pricing_control li:last-child a::before {
  left: initial;
  right: 100%;
}
.td_pricing_control li.active a {
  color: var(--heading-color);
}
.td_pricing_control li.active .td_switch::before {
  left: 5px;
}
.td_pricing_control .td_switch {
  display: inline-block;
  height: 30px;
  width: 60px;
  background: var(--heading-color);
  border-radius: 15px;
  margin: 0 20px;
  position: relative;
}
.td_pricing_control .td_switch::before {
  content: "";
  height: 20px;
  width: 20px;
  border-radius: 50%;
  background-color: var(--white-color);
  position: absolute;
  top: 50%;
  left: 35px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.td_pricing_control a {
  position: relative;
}
.td_pricing_control a::before {
  content: "";
  height: 24px;
  width: 60px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 100%;
  z-index: 1;
}

.td_pricing.td_style_1 {
  border: 1px solid rgba(0, 0, 27, 0.5);
  padding: 0 40px 40px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (max-width: 1199px) {
  .td_pricing.td_style_1 {
    padding: 0 20px 40px;
  }
}
.td_pricing.td_style_1 .td_pricing_package_name {
  display: inline-block;
  padding: 10px 32px;
  margin-left: -41px;
  margin-top: -1px;
  border-radius: 10px 0 10px;
}
@media (max-width: 1199px) {
  .td_pricing.td_style_1 .td_pricing_package_name {
    padding: 10px 20px;
    margin-left: -21px;
  }
}
.td_pricing.td_style_1 .td_pricing_icon {
  height: 80px;
  width: 80px;
  border: 1px solid var(--heading-color);
  border-radius: 50%;
  padding: 15px;
  margin-left: auto;
  margin-top: -14px;
  margin-bottom: 30px;
}
.td_pricing.td_style_1 .td_pricing_feature {
  margin-bottom: 40px;
}
.td_pricing.td_style_1 .td_pricing_feature li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.td_pricing.td_style_1 .td_pricing_feature li:not(:last-child) {
  margin-bottom: 16px;
}
.td_pricing.td_style_1 .td_pricing_feature li i {
  position: relative;
  top: 4px;
}
.td_pricing.td_style_1 .td_pricing_in {
  max-width: 270px;
  margin-left: auto;
  margin-right: auto;
}
.td_pricing.td_style_1:hover {
  background-color: var(--heading-color);
}
.td_pricing.td_style_1:hover .td_heading_color,
.td_pricing.td_style_1:hover h2,
.td_pricing.td_style_1:hover h3 {
  color: #fff;
}
.td_pricing.td_style_1:hover .td_pricing_icon {
  border-color: #fff;
}
.td_pricing.td_style_1:hover .td_pricing_icon img {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}
.td_pricing.td_style_1:hover .td_accent_bg {
  background-color: #fff;
  color: var(--accent-color);
}
.td_pricing.td_style_1.td_type_1 {
  padding: 40px;
  background-color: rgba(235, 236, 237, 0.2);
}
@media (max-width: 575px) {
  .td_pricing.td_style_1.td_type_1 {
    padding: 30px 25px;
  }
}
.td_pricing.td_style_1.td_type_1 .td_pricing_package_name {
  margin: 0 0 10px 0;
  padding: 0;
}
.td_pricing.td_style_1.td_type_1 .td_pricing_in {
  max-width: 100%;
}
.td_pricing.td_style_1.td_type_1 .td_pricing_feature {
  margin-bottom: 30px;
}
.td_pricing.td_style_1.td_type_1:hover {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
}

/*--------------------------------------------------------------
22. Contact
----------------------------------------------------------------*/
.td_contact_box.td_style_2 {
  padding: 50px;
  width: 100%;
  max-width: 430px;
  margin-left: auto;
}
@media (max-width: 1199px) {
  .td_contact_box.td_style_2 {
    padding: 40px 30px;
  }
}
@media (max-width: 991px) {
  .td_contact_box.td_style_2 {
    max-width: 100%;
  }
}
@media (max-width: 575px) {
  .td_contact_box.td_style_2 {
    padding: 40px 25px;
  }
}

.td_contact.td_style_1 {
  position: relative;
}
.td_contact.td_style_1 .td_contact_in {
  position: relative;
  padding: 0 80px;
  -webkit-box-shadow: 0px 16px 52px 0px rgba(0, 0, 0, 0.07);
  box-shadow: 0px 16px 52px 0px rgba(0, 0, 0, 0.07);
  overflow: hidden;
}
@media (max-width: 1199px) {
  .td_contact.td_style_1 .td_contact_in {
    padding: 0 40px;
  }
}
@media (max-width: 991px) {
  .td_contact.td_style_1 .td_contact_in {
    padding: 0 25px;
  }
}
@media (max-width: 350px) {
  .td_contact.td_style_1 .td_contact_in {
    padding: 0 15px;
  }
}
.td_contact.td_style_1 .td_contact_in > .row {
  position: relative;
  z-index: 2;
}
.td_contact.td_style_1 .td_contact_shape_1 {
  left: -35px;
  top: -5px;
}
@media (max-width: 991px) {
  .td_contact.td_style_1 .td_contact_shape_1 {
    display: none;
  }
}
.td_contact.td_style_1 .td_contact_shape_2 {
  right: -15px;
  top: -20px;
}
@media (max-width: 991px) {
  .td_contact.td_style_1 .td_contact_shape_2 {
    display: none;
  }
}
.td_contact.td_style_1 .td_contact_shape_3 {
  right: -40px;
  bottom: -10px;
}
@media (max-width: 991px) {
  .td_contact.td_style_1 .td_contact_shape_3 {
    display: none;
  }
}
.td_contact.td_style_1 .td_contact_shape_4 {
  left: -5px;
  bottom: 0px;
}
@media (max-width: 991px) {
  .td_contact.td_style_1 .td_contact_shape_4 {
    display: none;
  }
}

.td_form_field_3 {
  position: relative;
}
.td_form_field_3 input {
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  width: 100%;
  background-color: transparent;
  outline: none;
  height: 30px;
}
.td_form_field_3 input::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.7);
}
.td_form_field_3 input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.7);
}
.td_form_field_3 input:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.7);
}
.td_form_field_3 input::-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.7);
}
.td_form_field_3 input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}
.td_form_field_3 input::-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.7);
}
.td_form_field_3 input:focus,
.td_form_field_3 input:valid {
  border-color: #fff;
}
.td_form_field_3 input:focus ~ label,
.td_form_field_3 input:valid ~ label {
  top: -22px;
}
.td_form_field_3 label {
  width: 100%;
  margin: 0;
  line-height: 22px;
  position: absolute;
  left: 0;
  top: 3px;
  pointer-events: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.td_video_block.td_style_2 + .td_contact.td_style_1 {
  margin-top: -270px;
  position: relative;
  z-index: 2;
}
@media (max-width: 991px) {
  .td_video_block.td_style_2 + .td_contact.td_style_1 {
    margin-top: 80px;
  }
}

.td_bg_img_number_box .td_bg_img_number_box_number {
  font-size: 350px;
  line-height: 0.75em;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-stroke: 2px #fff;
}
@media (max-width: 767px) {
  .td_bg_img_number_box .td_bg_img_number_box_number {
    font-size: 250px;
  }
} /*# sourceMappingURL=assets/css/global-bundle.css.map */


/* --- common\css\common_assets/css/global-bundle.css --- */
/*----------------------------------------------------------------------------------- 
Template Name: Edufit - Education & Online Course HTML Template
URI: site.com
Description:
EduFit is a modern, responsive HTML template designed specifically for educational websites. Perfect for online courses, universities, and e-learning platforms, EduFit offers a clean and professional design, ensuring a user-friendly experience across all devices. With stunning course displays, customizable layouts, and easy-to-navigate features, EduFit provides all the tools you need to create an engaging and seamless learning experience. Whether you're an instructor, educational institution, or e-learning business, EduFit helps you present your content effectively and attract new learners.
Author: Pixelfit
Author URI: https://themeforest.net/user/pixelfit
Version: 1.0

------------------------------------------------------
   CSS INDEX
-----------------------------------------------------

    01. Abstract CSS 

    02. Base CSS 
        # Base CSS
        # Common CSS

    03. Components CSS 
        # Header CSS
        # Elements CSS
            # Edufit Image Box
            # Edufit Content Box
            # Edufit Iconic Box
            # Edufit Iconic Info
            # Edufit Category
            # Edufit Course
            # Edufit Event
            # Edufit Pricing
            # Edufit Accordion
            # Edufit Instructor
            # Edufit Testimonial
            # Edufit Blog Post 

        # Footer CSS


-------------------------------------------------------    */
/*---- 

====================
1. Base CSS
    # base  CSS
====================

----*/
:root {
  --primary-color: #f26d21;
  --secondary-color: #14CF93;
  --heading-color: #212529;
  --primary-black-color: #06193A;
  --white-color: #ffffff;
  --text-color: #737477;
  --gray-color: #FAFAFF;
  --border-color: #EFEEFF;
  --heading-font: "SUSE", sans-serif;
  --body-font: "Outfit", sans-serif;
}

html {
  font-size: 100%;
}

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

a {
  color: inherit;
  text-decoration: none;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
a:hover, a:focus {
  color: inherit;
  text-decoration: none;
}

a:focus,
input:focus,
textarea:focus,
button:focus {
  text-decoration: none;
  outline: none;
}

i,
span,
a {
  display: inline-block;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  margin: 0px;
  color: var(--heading-color);
  font-family: var(--heading-font);
}

h1 {
  font-size: 60px;
  line-height: 90px;
}

h2 {
  font-size: 48px;
  line-height: 58px;
}

h3 {
  font-size: 27px;
  line-height: 40px;
}

h4 {
  font-size: 20px;
  line-height: 34px;
}

h5 {
  font-size: 18px;
  line-height: 1;
}

h6 {
  font-size: 16px;
  line-height: 1;
}

ul, ol {
  margin: 0px;
  padding: 0px;
  list-style-type: none;
}

p {
  margin: 0px;
  font-size: 18px;
}

input, textarea {
  display: inherit;
}

button {
  border: none;
}

label {
  margin-bottom: 0;
}

iframe {
  width: 100%;
  border: none;
  display: inherit;
}

img {
  max-width: 100%;
}

body {
  font-style: normal;
  font-family: var(--body-font-family);
  font-size: var(--body-font-size);
  line-height: var(--body-line-height);
  font-weight: var(--body-font-weight);
  color: var(--body-color);
  background-color: var(--white-color);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow-x: hidden;
}

/*===== Scrollbar =====*/
::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background: #abafb9;
}

::-webkit-scrollbar-thumb {
  background-color: #13172b;
}

/* Preloader CSS */
.preloader {
  bottom: 0;
  height: 100vh;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  width: 100vw;
  z-index: 99999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: var(--white-color);
}
.preloader .loader img {
  -webkit-animation: zoomInOut 3s ease-in-out infinite;
          animation: zoomInOut 3s ease-in-out infinite;
}

@-webkit-keyframes zoomInOut {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.3);
            transform: scale(1.3);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes zoomInOut {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.3);
            transform: scale(1.3);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
/* Back To Top */
.back-to-top {
  border-radius: 50%;
  bottom: 30px;
  cursor: pointer;
  display: none;
  font-size: 20px;
  width: 50px;
  height: 50px;
  line-height: 50px;
  position: fixed;
  right: 30px;
  text-align: center;
  text-decoration: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  z-index: 337;
  color: var(--white-color);
  background-color: var(--primary-color);
}
.back-to-top:hover {
  color: var(--white-color);
}

/*---- 

====================
01. Base CSS
    # Common CSS
====================

----*/
/* Common  CSS */
label {
  margin-bottom: 0;
}

@media (min-width: 1451px) {
  .container {
    max-width: 1314px;
  }
}
@media (min-width: 1200px) and (max-width: 1450px) {
  .container {
    max-width: 1200px;
  }
}
.p-r {
  position: relative;
}

.bg_cover {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 100% 100%;
}

.font-200 {
  font-weight: 200;
}

.form-group {
  position: relative;
}

.form_control {
  width: 100%;
}

.primary-bg {
  background-color: var(--primary-color);
}

.primary-black-bg {
  background-color: var(--primary-black-color);
}

.gray-bg {
  background-color: var(--gray-color);
}

/* Section Title */
.sub-heading {
  color: #f26d21;
  font-size: 18px;
  font-weight: 500;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.sub-heading i {
  margin-right: 10px;
  line-height: 0;
}

.section-title .sub-heading {
  margin-bottom: 10px;
}
@media (min-width: 1200px) and (max-width: 1450px) {
  .section-title h2 {
    font-size: 44px;
  }
}
@media (max-width: 767px) {
  .section-title h2 {
    font-size: 32px;
    line-height: 45px;
  }
}
.section-title h2 span {
  color: #f26d21;
}
.section-title.style-one h2 span:after {
  display: block;
  content: "";
  background: url(../images/gallery/line.png) no-repeat center;
  background-size: contain;
  width: 100%;
  height: 30px;
}
.section-title.style-two .sub-heading {
  padding: 7px 20px;
  line-height: 20px;
  border-radius: 40px;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

/* Text White */
.text-white p,
.text-white h6,
.text-white h5,
.text-white h4,
.text-white h3,
.text-white h2, .text-white h1 {
  color: var(--white-color);
}
.text-white .sub-heading {
  color: var(--primary-color);
}

/* Ratings */
.ratings li {
  display: inline-block;
  color: #FF8601;
}

/* Video popup */
.video-popup {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 1;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background-color: var(--white-color);
  color: var(--primary-color);
  font-size: 24px;
}
.video-popup:hover {
  color: var(--primary-color);
}
.video-popup:after, .video-popup:before {
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  border-radius: 50%;
  width: 100%;
  height: 100%;
  border: 1px solid var(--white-color);
  -webkit-animation: playpopup infinite ease-in 2s;
          animation: playpopup infinite ease-in 2s;
}
.video-popup:before {
  -webkit-animation: playpopup infinite ease-in-out 3s;
          animation: playpopup infinite ease-in-out 3s;
}

@-webkit-keyframes playpopup {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 0.6;
  }
  50% {
    -webkit-transform: scale(1.5);
            transform: scale(1.5);
    opacity: 0.3;
  }
  100% {
    -webkit-transform: scale(2);
            transform: scale(2);
    opacity: 0;
  }
}

@keyframes playpopup {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 0.6;
  }
  50% {
    -webkit-transform: scale(1.5);
            transform: scale(1.5);
    opacity: 0.3;
  }
  100% {
    -webkit-transform: scale(2);
            transform: scale(2);
    opacity: 0;
  }
}
/* All Button */
.theme-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  font-size: 18px;
}
.theme-btn i {
  margin-left: 7px;
}
.theme-btn.style-one {
  position: relative;
  background-color: #f26d21;
  color: var(--white-color);
  padding: 15px 36px;
  font-weight: 400;
  font-size: 16px;
  border-radius: 12px;
  line-height: 25px;
}
.theme-btn.style-one:hover {
  background-color: var(--secondary-color);
}
.theme-btn.style-two {
  border: 1px solid #737477;
  border-radius: 12px;
  padding: 11.5px 35px;
  font-weight: 400;
}
.theme-btn.style-two:hover {
  background-color: var(--primary-color);
  color: var(--white-color);
  border-color: transparent;
}
.theme-btn.sm-btn {
  background-color: var(--primary-color);
  color: var(--white-color);
  padding: 10px 15px;
  line-height: 20px;
  border-radius: 5px;
  font-size: 16px;
}
.theme-btn.sm-btn:hover {
  background-color: var(--secondary-color);
}

.read-more {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: var(--primary-color);
  font-weight: 500;
}
.read-more i {
  margin-left: 10px;
  -webkit-transition: all 0.35s;
  transition: all 0.35s;
}
.read-more:hover {
  color: var(--primary-color);
}
.read-more:hover i {
  margin-left: 13px;
}

.icon-btn.style-one {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background-color: var(--primary-color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: var(--white-color);
}
.icon-btn.style-one i {
  -webkit-transition: all 0.35s;
  transition: all 0.35s;
}

/* Check List */
.check-list.style-one li {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 16px;
}
.check-list.style-one li i {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 15px;
          flex: 0 0 15px;
  max-width: 15px;
  line-height: 0;
  color: var(--primary-color);
  margin-right: 10px;
}

/* Offcanvas Overlay */
.offcanvas__overlay {
  position: fixed;
  height: 100%;
  width: 100%;
  background: #151515;
  z-index: 999;
  top: 0;
  opacity: 0;
  visibility: hidden;
  right: 0;
}
.offcanvas__overlay.overlay-open {
  opacity: 0.8;
  visibility: visible;
}

/* Animated List Wrap */
.headline-wrap {
  font-size: 40px;
  line-height: normal;
  font-family: var(--heading-font);
  text-transform: capitalize;
}
.headline-wrap .marquee-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  white-space: nowrap;
}
.headline-wrap .marquee-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.headline-wrap .marquee-item i {
  color: var(--primary-color);
  margin-left: 50px;
  margin-right: 50px;
}
.headline-wrap .marquee-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: var(--white-color);
}
.headline-wrap .marquee-inner.left {
  -webkit-animation: marquee_left 15s linear infinite;
          animation: marquee_left 15s linear infinite;
}

/* Headline Animation */
@-webkit-keyframes marquee {
  100% {
    -webkit-transform: translate(-100%, 0);
    transform: translate(-100%, 0);
  }
}
@keyframes marquee {
  100% {
    -webkit-transform: translate(-100%, 0);
    transform: translate(-100%, 0);
  }
}
@-webkit-keyframes marquee_right {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes marquee_right {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@-webkit-keyframes marquee_left {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes marquee_left {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
.animate-float-bob-x {
  -webkit-animation-name: float-bob-x;
          animation-name: float-bob-x;
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
}

.animate-float-bob-y {
  -webkit-animation-name: float-bob-y;
          animation-name: float-bob-y;
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
}

@-webkit-keyframes float-bob-x {
  0% {
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }
  50% {
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px);
  }
  100% {
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }
}

@keyframes float-bob-x {
  0% {
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }
  50% {
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px);
  }
  100% {
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }
}
@-webkit-keyframes float-bob-y {
  0% {
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  50% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  100% {
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
}
@keyframes float-bob-y {
  0% {
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  50% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  100% {
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
}
@-webkit-keyframes spin {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes spin {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.rotate360 {
  -webkit-animation: spin 7s linear infinite;
  animation: spin 7s linear infinite;
}

.zoomInOut {
  -webkit-animation: zoomInOut 6s linear infinite;
          animation: zoomInOut 6s linear infinite;
}

@keyframes zoomInOut {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
/*  Search Modal  */
.search-modal {
  background-color: rgba(13, 18, 23, 0.95);
}
.search-modal .modal-content {
  padding: 15px 30px;
  background-color: transparent;
  border: none;
}
.search-modal .modal-content label {
  position: absolute;
  top: 15px;
  right: 0;
  color: var(--white-color);
}
.search-modal .modal-content .form_control {
  padding: 15px 30px 15px 0;
  background-color: transparent;
  color: var(--white-color);
  border: none;
  border-radius: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.7);
}
.search-modal .modal-content .form_control::-webkit-input-placeholder {
  color: var(--white-color);
}
.search-modal .modal-content .form_control::-moz-placeholder {
  color: var(--white-color);
}
.search-modal .modal-content .form_control:-ms-input-placeholder {
  color: var(--white-color);
}
.search-modal .modal-content .form_control::-ms-input-placeholder {
  color: var(--white-color);
}
.search-modal .modal-content .form_control::placeholder {
  color: var(--white-color);
}
.search-modal .modal-content .form_control:focus {
  background-color: transparent;
}

.modal-open {
  overflow: auto !important;
  padding-right: 0 !important;
  overflow-x: hidden !important;
}

.modal-open .modal.show {
  padding-right: 0 !important;
  overflow-x: hidden !important;
  overflow-y: hidden !important;
}

/* Edufit Pagination */
.edufit-pagination.text-center li {
  margin-left: 7px;
}
@media (max-width: 575px) {
  .edufit-pagination.text-center li {
    margin-left: 2px;
  }
}
.edufit-pagination li {
  display: inline-block;
  margin-right: 7px;
}
@media (max-width: 575px) {
  .edufit-pagination li {
    margin-right: 2px;
  }
}
.edufit-pagination li a {
  width: 50px;
  height: 50px;
  font-size: 16px;
  border-radius: 50%;
  border: 1px solid var(--border-color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 1px solid rgba(31, 31, 31, 0.1);
  font: 600 16px var(--heading-font);
}
.edufit-pagination li a:hover, .edufit-pagination li a.active {
  background-color: var(--primary-color);
  color: var(--white-color);
  border-color: transparent;
}

/*---- 
====================
02. Components CSS
    # Header CSS
====================

----*/
/* Transparent header */
.transparent-header {
  position: absolute;
  background-color: transparent;
  left: 0;
  width: 100%;
  z-index: 999;
}

/* Edufit Dropdown */
.edufit-dropdown {
  position: relative;
  font-size: 16px;
}
.edufit-dropdown.currency-dropdown {
  margin-left: 25px;
}
.edufit-dropdown > a {
  color: var(--white-color);
}
.edufit-dropdown:hover .dropdown {
  opacity: 1;
  display: block;
  visibility: visible;
  margin: 6px 0 0 0;
}
.edufit-dropdown .dropdown {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  min-width: 100px;
  padding: 10px 15px;
  margin: 25px 0 0 0;
  position: absolute;
  z-index: 16;
  text-align: left;
  opacity: 0;
  visibility: hidden;
  left: 0;
  font-size: 16px;
  right: auto !important;
  background: #fff;
  -webkit-box-shadow: 2px 2px 15px 0 rgba(0, 0, 0, 0.07);
          box-shadow: 2px 2px 15px 0 rgba(0, 0, 0, 0.07);
  border: 1px solid #eee;
  display: block;
  border-radius: 10px;
}
.edufit-dropdown .dropdown a {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  font-size: 14px;
  font-weight: 400;
}
.edufit-dropdown .dropdown a:hover {
  color: var(--primary-color);
}

/* Header TopBar */
.header-top {
  padding: 7px 0;
}
@media screen and (max-width: 991px) {
  .header-top {
    display: none;
  }
}
.header-top .container-fluid {
  padding-left: 60px;
  padding-right: 60px;
}
.header-top .top-left span {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 14px;
  color: var(--white-color);
}
.header-top .top-left span:not(:last-child) {
  margin-right: 15px;
}
.header-top .top-left span i {
  margin-right: 10px;
  color: var(--white-color);
  line-height: 0;
}
.header-top .top-left span a {
  letter-spacing: -0.28px;
}
.header-top .top-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.header-top .top-right ul:not(:last-child):after {
  display: inline-block;
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: var(--heading-color);
  margin-left: 30px;
  margin-right: 30px;
}
.header-top .top-right ul.social-link li:not(:last-child) {
  margin-right: 15px;
}
.header-top .top-right ul.social-link li a {
  color: var(--heading-color);
}

/* Header Navigation */
@media screen and (max-width: 1199px) {
  .header-navigation {
    padding: 15px 0;
  }
}
.header-navigation .primary-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header-navigation .site-branding {
  max-width: 200px;
}
.header-navigation .main-menu ul > li {
  display: inline-block;
  position: relative;
  margin-left: 17px;
  margin-right: 17px;
}
@media screen and (max-width: 1199px) {
  .header-navigation .main-menu ul > li {
    margin-left: 12px;
    margin-right: 12px;
  }
}
.header-navigation .main-menu ul > li > a {
  position: relative;
  display: block;
  font: 600 18px var(--heading-font);
  text-transform: capitalize;
  line-height: 1;
  color: var(--heading-color);
  padding: 36px 0;
}
.header-navigation .main-menu ul > li > a:after {
  position: absolute;
  bottom: 35%;
  right: 0;
  content: "";
  width: 0%;
  height: 1px;
  background-color: var(--primary-color);
  -webkit-transition: 0.35s ease-in-out;
  transition: 0.35s ease-in-out;
}
.header-navigation .main-menu ul > li > a span.dd-trigger {
  margin-left: 5px;
}
.header-navigation .main-menu ul > li .sub-menu {
  position: absolute;
  left: 0;
  top: 120%;
  width: 250px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  z-index: 99;
  padding: 10px 0;
  background-color: var(--white-color);
  height: auto;
  text-align: left;
  -webkit-box-shadow: 0px 20px 30px 15px rgba(0, 0, 0, 0.03);
          box-shadow: 0px 20px 30px 15px rgba(0, 0, 0, 0.03);
  border-radius: 7px;
}
.header-navigation .main-menu ul > li .sub-menu li {
  display: block;
  margin: 0;
}
.header-navigation .main-menu ul > li .sub-menu li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 30px;
  position: relative;
  line-height: 2.5;
  margin: 0;
  color: var(--heading-color);
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.header-navigation .main-menu ul > li .sub-menu li a span.dd-trigger {
  margin-left: auto;
}
.header-navigation .main-menu ul > li .sub-menu li a:hover {
  color: var(--primary-color);
}
.header-navigation .main-menu ul > li .sub-menu li .sub-menu {
  left: 100%;
  top: 50%;
}
@media screen and (max-width: 1199px) {
  .header-navigation .main-menu ul > li .sub-menu li .sub-menu {
    left: auto;
    right: 100%;
    top: 50%;
  }
}
@media (min-width: 1200px) and (max-width: 1450px) {
  .header-navigation .main-menu ul > li .sub-menu li .sub-menu {
    left: auto;
    right: 100%;
    top: 50%;
  }
}
.header-navigation .main-menu ul > li .sub-menu li:hover .sub-menu {
  top: 0%;
}
.header-navigation .main-menu ul > li .sub-menu li:hover > a {
  margin-left: 5px;
  color: var(--primary-color);
}
.header-navigation .main-menu ul > li:hover > a {
  color: var(--primary-color);
}
.header-navigation .main-menu ul > li:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  top: 100%;
}
.header-navigation .navbar-toggler {
  padding: 11px 9px;
  border: 1px solid var(--border-color);
  background-color: transparent;
  cursor: pointer;
  display: none;
  border-radius: 5px;
}
.header-navigation .navbar-toggler span {
  position: relative;
  border-radius: 3px;
  display: block;
  height: 2px;
  padding: 0;
  width: 25px;
  cursor: pointer;
  display: block;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  background-color: var(--heading-color);
}
.header-navigation .navbar-toggler span:not(:first-child) {
  margin-top: 5px;
}
.header-navigation .navbar-toggler.active span:nth-of-type(1) {
  -webkit-transform: rotate3d(0, 0, 1, 45deg);
          transform: rotate3d(0, 0, 1, 45deg);
  top: 7px;
}
.header-navigation .navbar-toggler.active span:nth-of-type(2) {
  opacity: 0;
}
.header-navigation .navbar-toggler.active span:nth-of-type(3) {
  -webkit-transform: rotate3d(0, 0, 1, -45deg);
          transform: rotate3d(0, 0, 1, -45deg);
  top: -7px;
}
@media screen and (max-width: 1199px) {
  .header-navigation .edufit-nav-menu {
    text-align: left;
    position: fixed;
    top: 0;
    left: -290px;
    width: 290px;
    height: 100%;
    -webkit-transition-duration: 500ms;
            transition-duration: 500ms;
    padding: 20px 20px 30px;
    display: block;
    overflow-x: hidden;
    overflow-y: scroll;
    z-index: 9999;
    background-color: var(--white-color);
  }
  .header-navigation .edufit-nav-menu.menu-on {
    left: 0;
  }
  .header-navigation .edufit-nav-menu .main-menu {
    margin-top: 30px;
  }
  .header-navigation .edufit-nav-menu .main-menu ul li {
    display: block;
    margin: 0;
  }
  .header-navigation .edufit-nav-menu .main-menu ul li:not(:last-child) {
    border-bottom: 1px solid var(--border-color);
  }
  .header-navigation .edufit-nav-menu .main-menu ul li a {
    display: block;
    padding: 12px 0;
    font-size: 18px;
  }
  .header-navigation .edufit-nav-menu .main-menu ul li a:after {
    display: none;
  }
  .header-navigation .edufit-nav-menu .main-menu ul li .sub-menu {
    width: 100%;
    position: relative;
    top: 0;
    left: 0;
    padding: 0;
    -webkit-box-shadow: none;
            box-shadow: none;
    background-color: transparent;
    visibility: visible;
    opacity: 1;
    display: none;
    -webkit-transition: none;
    transition: none;
  }
  .header-navigation .edufit-nav-menu .main-menu ul li .sub-menu > li > a {
    padding: 5px 20px;
  }
  .header-navigation .edufit-nav-menu .main-menu ul li .sub-menu > li .sub-menu {
    width: 100%;
    position: relative;
    top: 0;
    left: 0;
    padding: 0;
    -webkit-box-shadow: none;
            box-shadow: none;
    background-color: transparent;
    visibility: visible;
    opacity: 1;
    display: none;
    -webkit-transition: none;
    transition: none;
    margin-left: 30px;
  }
  .header-navigation .edufit-nav-menu .main-menu ul li .dd-trigger {
    position: absolute;
    right: 0;
    top: 10px;
    height: 25px;
    width: 25px;
    border-radius: 3px;
    z-index: 2;
    cursor: pointer;
    font-size: 16px;
  }
  .header-navigation .edufit-nav-menu .edufit-nav-button .theme-btn.style-one {
    padding: 13px 25px;
    border-radius: 5px;
    margin-right: 15px;
    line-height: 24px;
  }
  .header-navigation .edufit-nav-menu .edufit-nav-button .theme-btn.style-two {
    padding: 9px 25px;
    border-radius: 5px;
  }
  .header-navigation .navbar-close {
    width: 35px;
    height: 35px;
    border-radius: 4px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    border: 1px solid var(--border-color);
    font-size: 16px;
  }
  .header-navigation .navbar-toggler {
    display: block;
  }
}

/* Nav Right Item */
.nav-right-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.nav-right-item .search-btn {
  margin-right: 20px;
}
.nav-right-item .search-btn .icon {
  background-color: var(--white-color);
  width: 55px;
  height: 55px;
  border-radius: 13px;
  border: 1px solid var(--border-color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: var(--heading-color);
}
@media screen and (max-width: 1199px) {
  .nav-right-item .search-btn .icon {
    width: 45px;
    height: 40px;
    border-radius: 5px;
  }
}
.nav-right-item .nav-button .theme-btn {
  padding: 12px 25px;
}
.nav-right-item .nav-button .theme-btn.style-two {
  margin-left: 15px;
  padding: 10px 25px;
  line-height: 27px;
}

/* Header Style One */
.header-one .header-top {
  background-color: #06193A;
}
.header-one .header-navigation .container-fluid {
  padding-left: 60px;
  padding-right: 60px;
}
@media screen and (max-width: 1199px) {
  .header-one .header-navigation .container-fluid {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.header-one .header-navigation .primary-menu .edufit-nav-menu {
  margin-left: 6%;
}
@media screen and (max-width: 1199px) {
  .header-one .header-navigation .primary-menu .edufit-nav-menu {
    margin-left: 0;
  }
}
.header-one .header-navigation .primary-menu .nav-right-item {
  margin-left: auto;
}

/* Header Style Two */
.header-two .header-top {
  background-color: #06193A;
}
.header-two .header-navigation .container-fluid {
  padding-left: 60px;
  padding-right: 60px;
}
@media screen and (max-width: 1199px) {
  .header-two .header-navigation .container-fluid {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.header-two .header-navigation .primary-menu {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 1199px) {
  .header-two .header-navigation .primary-menu {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.header-two .header-navigation .site-branding {
  width: 10%;
}
@media screen and (max-width: 1199px) {
  .header-two .header-navigation .site-branding {
    width: auto;
  }
}
.header-two .header-navigation .edufit-nav-menu {
  width: 70%;
  text-align: center;
}
@media screen and (max-width: 1199px) {
  .header-two .header-navigation .edufit-nav-menu {
    width: auto;
    text-align: left;
  }
}
.header-two .header-navigation .nav-right-item {
  width: 20%;
}
@media screen and (max-width: 1199px) {
  .header-two .header-navigation .nav-right-item {
    width: auto;
  }
}

/* Header Sticky */
.header-navigation.sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  border-color: transparent;
  -webkit-box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.08);
          box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.08);
  -webkit-animation: sticky 1.2s;
          animation: sticky 1.2s;
  background-color: var(--white-color);
}

@-webkit-keyframes sticky {
  0% {
    top: -200px;
  }
  100% {
    top: 0;
  }
}
@keyframes sticky {
  0% {
    top: -200px;
  }
  100% {
    top: 0;
  }
}
/*---- 
====================
02. Components CSS
    # Elements CSS
====================

----*/
/* Edufit Image Box */
.edufit-image-box.style-one {
  height: 585px;
  position: relative;
  z-index: 1;
  padding-top: 90px;
}
@media screen and (max-width: 1199px) {
  .edufit-image-box.style-one {
    max-width: 690px;
    margin: 0 auto 50px;
  }
}
.edufit-image-box.style-one .shape {
  position: absolute;
  z-index: -1;
}
.edufit-image-box.style-one .shape.shape_one {
  left: -90px;
  top: 0;
}
.edufit-image-box.style-one .shape.shape_two {
  right: 100px;
  bottom: 20%;
}
.edufit-image-box.style-one .edufit-img.image_one img {
  border-radius: 10px;
}
.edufit-image-box.style-one .edufit-img.image_two {
  position: absolute;
  top: 0;
  right: 30px;
  display: inline-block;
  padding: 20px;
  border-radius: 15px;
  background-color: var(--white-color);
  -webkit-box-shadow: -3px 0px 50px 0px rgba(98, 85, 250, 0.1);
          box-shadow: -3px 0px 50px 0px rgba(98, 85, 250, 0.1);
}
.edufit-image-box.style-one .edufit-img.image_two img {
  width: 100%;
  border-radius: 10px;
}
.edufit-image-box.style-one .edufit-img.image_two .line {
  display: block;
  border-radius: 10px;
  background-color: #F5F5F5;
  height: 10px;
}
.edufit-image-box.style-one .edufit-img.image_two .line.line1 {
  width: 80%;
  margin-top: 20px;
  margin-bottom: 20px;
}
.edufit-image-box.style-one .edufit-img.image_two .line.line2 {
  width: 40%;
}
.edufit-image-box.style-one .ef-iconic-box {
  position: absolute;
  bottom: 0;
  left: 30px;
  max-width: 300px;
  border-radius: 15px;
}
.edufit-image-box.style-two {
  padding-right: 60px;
}
@media (min-width: 1200px) and (max-width: 1450px) {
  .edufit-image-box.style-two {
    padding-right: 20px;
  }
}
.edufit-image-box.style-two .edufit-img img {
  width: 100%;
  border-radius: 10px;
}
.edufit-image-box.style-three {
  position: relative;
  height: 440px;
  max-width: 700px;
}
@media screen and (max-width: 1199px) {
  .edufit-image-box.style-three {
    height: auto;
  }
}
.edufit-image-box.style-three .edufit-img.style-one {
  margin-top: 100px;
}
@media (max-width: 767px) {
  .edufit-image-box.style-three .edufit-img.style-one {
    margin-top: 0;
  }
}
.edufit-image-box.style-three .edufit-img img {
  width: 100%;
  border-radius: 10px;
}
.edufit-image-box.style-three .ef-iconic-box {
  position: absolute;
  bottom: 65px;
  left: 30%;
}
@media (max-width: 767px) {
  .edufit-image-box.style-three .ef-iconic-box {
    left: 0;
  }
}
.edufit-image-box.style-three .ef-iconic-box.style-one {
  padding: 20px;
  min-width: 300px;
  border-radius: 12px;
  background-color: var(--primary-color);
}
.edufit-image-box.style-three .ef-iconic-box.style-one .icon {
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--white-color);
}
.edufit-image-box.style-three .ef-iconic-box.style-one .content {
  line-height: 1;
}
.edufit-image-box.style-three .ef-iconic-box.style-one .content h2 {
  color: var(--white-color);
  line-height: 40px;
}
.edufit-image-box.style-three .ef-iconic-box.style-one .content span {
  font-size: 16px;
  line-height: 1;
  color: rgba(255, 255, 255, 0.8);
}
.edufit-image-box.style-four {
  position: relative;
  height: 570px;
  z-index: 1;
  max-width: 700px;
}
@media screen and (max-width: 1199px) {
  .edufit-image-box.style-four {
    margin: 0 auto 50px;
  }
}
.edufit-image-box.style-four .shape {
  position: absolute;
  z-index: -1;
}
.edufit-image-box.style-four .shape.shape-one {
  top: 80px;
  right: 80px;
}
.edufit-image-box.style-four .shape.shape-two {
  bottom: 50px;
  left: 60px;
}
.edufit-image-box.style-four .edufit-img.image_two {
  position: absolute;
  bottom: 0;
  right: 0;
  border: 8px solid var(--white-color);
}

/*  Edufit Content Box  */
.edufit-content-box > p {
  margin-bottom: 35px;
}
@media screen and (max-width: 1199px) {
  .edufit-content-box.style-one {
    max-width: 630px;
    margin: 0 auto 50px;
  }
}
.edufit-content-box.style-one .about-button-box .author-box {
  margin-left: 40px;
}
@media (max-width: 767px) {
  .edufit-content-box.style-one .about-button-box .author-box {
    margin-left: 10px;
  }
}
.edufit-content-box.style-two {
  padding-left: 40px;
}
@media screen and (max-width: 1199px) {
  .edufit-content-box.style-two {
    padding: 0 30px;
  }
}
.edufit-content-box.style-two > p {
  margin-bottom: 30px;
}
.edufit-content-box.style-two .check-list {
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .edufit-content-box.style-two .content-button {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.edufit-content-box.style-two .content-button .theme-btn {
  margin-right: 40px;
}
@media (max-width: 767px) {
  .edufit-content-box.style-two .content-button .theme-btn {
    margin-bottom: 15px;
  }
}
.edufit-content-box.style-three {
  padding-left: 60px;
}
@media screen and (max-width: 1199px) {
  .edufit-content-box.style-three {
    padding: 0 30px;
  }
}
@media (max-width: 767px) {
  .edufit-content-box.style-three {
    padding-left: 0;
  }
}
.edufit-content-box.style-three .ef-iconic-box.style-two {
  max-width: 570px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

/* Author Box */
.author-box.style-one {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.author-box.style-one .author-thumb {
  width: 55px;
  height: 55px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  margin-right: 15px;
}
.author-box.style-one .author-info {
  margin-top: 3px;
}
.author-box.style-one .author-info h5 {
  margin-bottom: 5px;
}
.author-box.style-one .author-info span.position {
  font-size: 16px;
}

.instructor-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-margin-end: 15px;
          margin-inline-end: 15px;
}
.instructor-box .thumbnail {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 55px;
  height: 55px;
  margin-right: 15px;
}
.instructor-box .thumbnail img {
  width: 100%;
  border-radius: 50%;
}

/* Edufit Iconic Box */
.ef-iconic-box.style-one {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: var(--white-color);
  padding: 20px;
  border-radius: 15px;
  -webkit-box-shadow: -3px 0px 50px 0px rgba(98, 85, 250, 0.1);
          box-shadow: -3px 0px 50px 0px rgba(98, 85, 250, 0.1);
  min-width: 260px;
}
.ef-iconic-box.style-one .icon {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  background-color: rgba(98, 85, 250, 0.1);
  font-size: 30px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-right: 10px;
  color: var(--primary-color);
}
.ef-iconic-box.style-one .content h5 {
  margin-bottom: 3px;
}
.ef-iconic-box.style-one .content p {
  font-size: 16px;
}
.ef-iconic-box.style-two {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.ef-iconic-box.style-two .icon {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  background-color: rgba(98, 85, 250, 0.1);
  font-size: 30px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-right: 20px;
  color: var(--primary-color);
}
.ef-iconic-box.style-two .content h5 {
  margin-bottom: 3px;
}
.ef-iconic-box.style-two .content p {
  font-size: 16px;
}
.ef-iconic-box.style-three {
  position: relative;
  z-index: 1;
  background-color: var(--white-color);
  border-radius: 10px;
  padding: 30px;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  overflow: hidden;
}
.ef-iconic-box.style-three:hover {
  background-color: var(--primary-color);
}
.ef-iconic-box.style-three:hover .shape img {
  -webkit-transform: scale(1.3);
          transform: scale(1.3);
  opacity: 1;
}
.ef-iconic-box.style-three:hover .icon {
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--white-color);
}
.ef-iconic-box.style-three:hover .content h5 {
  color: var(--white-color);
}
.ef-iconic-box.style-three:hover .content p {
  color: rgba(255, 255, 255, 0.8);
}
.ef-iconic-box.style-three .shape {
  position: absolute;
  z-index: -1;
}
.ef-iconic-box.style-three .shape img {
  -webkit-transform: scale(1);
          transform: scale(1);
  opacity: 0.3;
  -webkit-transition: all 0.45s;
  transition: all 0.45s;
}
.ef-iconic-box.style-three .shape.line_one {
  top: 0;
  right: 0;
}
.ef-iconic-box.style-three .shape.line_two {
  top: 0;
  right: 0;
}
.ef-iconic-box.style-three .icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: rgba(98, 85, 250, 0.1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: var(--primary-color);
  font-size: 30px;
  margin-bottom: 20px;
}
.ef-iconic-box.style-three .icon i {
  line-height: 0.8;
  margin-top: 10px;
}
.ef-iconic-box.style-three .content h5 {
  margin-bottom: 18px;
}
.ef-iconic-box.style-three .content p {
  font-size: 16px;
  line-height: 27px;
}
.ef-iconic-box.style-four .icon {
  line-height: 1;
  margin-bottom: 5px;
  font-size: 50px;
  color: var(--secondary-color);
}
.ef-iconic-box.style-four .content h4 {
  margin-bottom: 15px;
}
.ef-iconic-box.style-five {
  position: relative;
  padding: 50px 35px 45px;
  border: 1px solid var(--border-color);
}
@media (min-width: 1200px) and (max-width: 1450px) {
  .ef-iconic-box.style-five {
    padding: 50px 30px 45px;
  }
}
.ef-iconic-box.style-five .step {
  position: absolute;
  top: 10px;
  left: 0;
  padding: 10px 20px;
  background-color: var(--primary-color);
  color: var(--white-color);
  line-height: 10px;
  border-radius: 0px 5px 5px 0px;
}
.ef-iconic-box.style-five .icon {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #f3f6ff;
  color: var(--primary-color);
  font-size: 50px;
  margin-bottom: 15px;
}
.ef-iconic-box.style-five .content h4 {
  margin-bottom: 10px;
}
.ef-iconic-box.style-five .content p {
  font-size: 16px;
  line-height: 28px;
}

/* Edufit Iconic Info Box */
.ef-iconic-info-box.style-one {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.ef-iconic-info-box.style-one .icon {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50px;
          flex: 0 0 50px;
  margin-right: 20px;
  font-size: 55px;
  color: var(--heading-color);
}
@media (max-width: 575px) {
  .ef-iconic-info-box.style-one .icon {
    margin-bottom: 10px;
  }
}
.ef-iconic-info-box.style-one .content p {
  font: 600 20px var(--heading-font);
  color: var(--heading-color);
  line-height: 30px;
}
.ef-iconic-info-box.style-one .content p:hover a {
  color: var(--primary-color);
}
.ef-iconic-info-box.style-two {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.ef-iconic-info-box.style-two .icon-box {
  width: 80px;
  height: 80px;
  border: 2px solid #f26d21;
  border-radius: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  margin-right: 30px;
}
.ef-iconic-info-box.style-two .icon-box .icon {
  width: 55px;
  height: 55px;
  border-radius: 20px;
  background-color: #f26d21;
  color: var(--white-color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 24px;
}
.ef-iconic-info-box.style-two .content h4 {
  font-size: 20px;
}
.ef-iconic-info-box.style-two .content p {
  font-size: 16px;
  line-height: 22px;
}
.ef-iconic-info-box.style-two .content p:hover a {
  color: var(--primary-color);
}

/* Edufit Category Item */
.ef-category-item.style-one {
  padding: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 10px;
}
.ef-category-item.style-one .icon {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  background-color: var(--white-color);
  font-size: 30px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-right: 15px;
  color: var(--primary-color);
  line-height: 1;
}
.ef-category-item.style-one .content {
  line-height: 1;
}
.ef-category-item.style-one .content h5 {
  margin-bottom: 13px;
}
.ef-category-item.style-one .content p {
  font-size: 16px;
}
.ef-category-item.style-one.bg_one {
  background-color: #EEEDFF;
}
.ef-category-item.style-one.bg_one .icon {
  color: var(--primary-color);
}
.ef-category-item.style-one.bg_two {
  background-color: #E9F3F1;
}
.ef-category-item.style-one.bg_two .icon {
  color: var(--primary-color);
}
.ef-category-item.style-one.bg_three {
  background-color: #FFF2EE;
}
.ef-category-item.style-one.bg_three .icon {
  color: #AD86F3;
}
.ef-category-item.style-one.bg_four {
  background-color: #EAFAFF;
}
.ef-category-item.style-one.bg_four .icon {
  color: #04B1E8;
}
.ef-category-item.style-one.bg_five {
  background-color: #FFFEEC;
}
.ef-category-item.style-one.bg_five .icon {
  color: #B7AD00;
}
.ef-category-item.style-one.bg_six {
  background-color: #FFF0FF;
}
.ef-category-item.style-one.bg_six .icon {
  color: #D300D3;
}
.ef-category-item.style-one.bg_seven {
  background-color: #EBFFDF;
}
.ef-category-item.style-one.bg_seven .icon {
  color: #42B000;
}
.ef-category-item.style-one.bg_eight {
  background-color: #EEF3FF;
}
.ef-category-item.style-one.bg_eight .icon {
  color: #0040DB;
}
.ef-category-item.style-two {
  padding: 20px 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 10px;
  border: 1px solid var(--border-color);
}
.ef-category-item.style-two:hover {
  background-color: var(--primary-color);
}
.ef-category-item.style-two:hover .content h5 {
  color: var(--white-color);
}
.ef-category-item.style-two:hover .content span {
  color: var(--white-color);
}
.ef-category-item.style-two .icon {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 60px;
  height: 60px;
  margin-right: 20px;
}
.ef-category-item.style-two .icon img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}
.ef-category-item.style-two .content {
  line-height: 1;
}
.ef-category-item.style-two .content h5 {
  margin-bottom: 13px;
}
.ef-category-item.style-two .content p {
  font-size: 16px;
}

/* Edufit Course Item */
.ef-course-grid-item.style-one .course-thumbnail img {
  width: 100%;
  border-radius: 10px 10px 0 0;
}
.ef-course-grid-item.style-one .course-info {
  padding: 30px;
  border: 1px solid #EFEEFF;
  border-top: none;
  border-radius: 0 0 10px 10px;
}
.ef-course-grid-item.style-one .course-info .course-categories-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.ef-course-grid-item.style-one .course-info .course-categories-wrap .categories-button {
  margin-bottom: 10px;
}
.ef-course-grid-item.style-one .course-info .course-categories-wrap .categories-button a {
  padding: 8px 13px;
  background-color: rgba(98, 85, 250, 0.1);
  color: var(--primary-color);
  line-height: 19px;
}
.ef-course-grid-item.style-one .course-info .course-categories-wrap .course-price {
  margin-bottom: 15px;
}
.ef-course-grid-item.style-one .course-info .course-categories-wrap .course-price span.price {
  color: var(--primary-color);
  font: 700 20px var(--heading-font);
}
.ef-course-grid-item.style-one .course-info h3.title {
  font-size: 20px;
  line-height: 30px;
  margin-bottom: 20px;
}
.ef-course-grid-item.style-one .course-info h3.title:hover {
  color: var(--primary-color);
}
.ef-course-grid-item.style-one .course-info .course-meta {
  border-bottom: 1px solid #EFEEFF;
  padding-bottom: 10px;
  margin-bottom: 30px;
}
.ef-course-grid-item.style-one .course-info .course-meta span {
  margin-bottom: 10px;
}
.ef-course-grid-item.style-one .course-info .course-meta span:not(:last-child) {
  margin-right: 25px;
}
@media screen and (max-width: 991px) {
  .ef-course-grid-item.style-one .course-info .course-meta span:not(:last-child) {
    margin-right: 10px;
  }
}
.ef-course-grid-item.style-one .course-info .course-meta span i {
  color: var(--primary-color);
  margin-right: 5px;
}
.ef-course-grid-item.style-one .course-info .course-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.ef-course-grid-item.style-two {
  padding: 20px;
  border-radius: 10px;
  border: 1px solid rgba(33, 37, 41, 0.1);
  background-color: rgba(26, 26, 26, 0.01);
}
.ef-course-grid-item.style-two .course-thumbnail {
  position: relative;
  overflow: hidden;
}
.ef-course-grid-item.style-two .course-thumbnail img {
  width: 100%;
}
.ef-course-grid-item.style-two .course-thumbnail .category {
  position: absolute;
  top: 30px;
  left: 30px;
}
.ef-course-grid-item.style-two .course-thumbnail .category a {
  padding: 10px 20px;
  background-color: var(--primary-color);
  color: var(--white-color);
  border-radius: 30px;
  line-height: 15px;
  font-size: 16px;
}
.ef-course-grid-item.style-two .course-info {
  padding-top: 25px;
}
.ef-course-grid-item.style-two .course-info h3.title {
  font-size: 20px;
  line-height: 30px;
}
.ef-course-grid-item.style-two .course-info h3.title:hover {
  color: var(--primary-color);
}
.ef-course-grid-item.style-two .course-info .course-meta span {
  margin-bottom: 10px;
}
.ef-course-grid-item.style-two .course-info .course-meta span:not(:last-child) {
  margin-right: 25px;
}
@media screen and (max-width: 991px) {
  .ef-course-grid-item.style-two .course-info .course-meta span:not(:last-child) {
    margin-right: 10px;
  }
}
.ef-course-grid-item.style-two .course-info .course-meta span i {
  color: var(--primary-color);
  margin-right: 5px;
}
.ef-course-grid-item.style-two .course-info .course-footer {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border-color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.ef-course-grid-item.style-two .course-info .course-footer .instructor-box .info span {
  font-size: 16px;
}
.ef-course-grid-item.style-two .course-info .course-footer .course-price span.price {
  color: var(--primary-color);
  font: 700 20px var(--heading-font);
}
.ef-course-grid-item.style-three .course-thumbnail {
  position: relative;
  z-index: 1;
}
.ef-course-grid-item.style-three .course-thumbnail img {
  width: 100%;
  border-radius: 20px 20px 0 0;
}
.ef-course-grid-item.style-three .course-thumbnail .share-button {
  position: absolute;
  top: 20px;
  right: 20px;
}
.ef-course-grid-item.style-three .course-thumbnail .share-button .icon-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--white-color);
  color: var(--primary-color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.ef-course-grid-item.style-three .course-info {
  padding: 20px;
  border: 1px solid rgba(33, 37, 41, 0.1);
  border-top: none;
  border-radius: 0 0 20px 20px;
}
.ef-course-grid-item.style-three .course-info .course-categories-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.ef-course-grid-item.style-three .course-info .course-categories-wrap .categories-button {
  margin-bottom: 10px;
}
.ef-course-grid-item.style-three .course-info .course-categories-wrap .categories-button a {
  padding: 7px 15px;
  border-radius: 30px;
  line-height: 21px;
  background-color: rgba(98, 85, 250, 0.1);
  color: var(--primary-color);
}
.ef-course-grid-item.style-three .course-info .course-categories-wrap .course-rating {
  margin-bottom: 10px;
}
.ef-course-grid-item.style-three .course-info .course-categories-wrap .course-rating span i {
  color: #FF8601;
  margin-right: 8px;
}
.ef-course-grid-item.style-three .course-info h3.title {
  font-size: 20px;
  line-height: 30px;
  font-weight: 600;
  margin-bottom: 20px;
}
.ef-course-grid-item.style-three .course-info h3.title:hover {
  color: var(--primary-color);
}
.ef-course-grid-item.style-three .course-info .course-meta span {
  margin-bottom: 10px;
}
.ef-course-grid-item.style-three .course-info .course-meta span:not(:last-child) {
  margin-right: 10px;
}
.ef-course-grid-item.style-three .course-info .course-meta span i {
  margin-right: 7px;
  color: var(--primary-color);
}
.ef-course-grid-item.style-three .course-info .course-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-top: 1px solid var(--border-color);
  padding-top: 15px;
}
.ef-course-grid-item.style-three .course-info .course-footer .instructor-box span i {
  color: var(--primary-color);
  margin-right: 7px;
}
.ef-course-grid-item.style-three .course-info .course-footer .course-price span.price {
  color: var(--heading-color);
  font-size: 22px;
  font-weight: 500;
}

.ef-course-list-item.style-one {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 767px) {
  .ef-course-list-item.style-one {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.ef-course-list-item.style-one .course-thumbnail {
  position: relative;
  z-index: 1;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 200px;
}
.ef-course-list-item.style-one .course-thumbnail img {
  width: 100%;
  border-radius: 10px 0 0 10px;
}
@media (max-width: 767px) {
  .ef-course-list-item.style-one .course-thumbnail {
    width: 100%;
  }
  .ef-course-list-item.style-one .course-thumbnail img {
    border-radius: 10px 10px 0 0;
  }
}
.ef-course-list-item.style-one .course-thumbnail .share-button {
  position: absolute;
  top: 20px;
  right: 20px;
}
.ef-course-list-item.style-one .course-thumbnail .share-button .icon-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--white-color);
  color: var(--primary-color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.ef-course-list-item.style-one .course-info {
  padding: 30px 20px;
  border: 1px solid rgba(33, 37, 41, 0.1);
  background-color: rgba(26, 26, 26, 0.01);
  font-size: 16px;
  width: 100%;
  border-radius: 0 10px 10px 0;
  line-height: 30px;
}
@media (max-width: 767px) {
  .ef-course-list-item.style-one .course-info {
    border-radius: 0 0 10px 10px;
  }
}
.ef-course-list-item.style-one .course-info .course-categories-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.ef-course-list-item.style-one .course-info .course-categories-wrap .categories-button {
  margin-bottom: 10px;
}
.ef-course-list-item.style-one .course-info .course-categories-wrap .categories-button a {
  padding: 7px 15px;
  border-radius: 30px;
  line-height: 21px;
  background-color: rgba(98, 85, 250, 0.1);
  color: var(--primary-color);
}
.ef-course-list-item.style-one .course-info .course-categories-wrap .course-rating {
  margin-bottom: 10px;
}
.ef-course-list-item.style-one .course-info .course-categories-wrap .course-rating span i {
  color: #FF8601;
  margin-right: 8px;
}
.ef-course-list-item.style-one .course-info h3.title {
  font-size: 18px;
  line-height: 30px;
  font-weight: 600;
  margin-bottom: 10px;
}
.ef-course-list-item.style-one .course-info h3.title:hover {
  color: var(--primary-color);
}
@media (min-width: 1200px) and (max-width: 1450px) {
  .ef-course-list-item.style-one .course-info h3.title {
    font-size: 16px;
    line-height: 26px;
  }
}
.ef-course-list-item.style-one .course-info .course-meta span {
  margin-bottom: 10px;
}
.ef-course-list-item.style-one .course-info .course-meta span:not(:last-child) {
  margin-right: 10px;
}
.ef-course-list-item.style-one .course-info .course-meta span i {
  margin-right: 7px;
  color: var(--primary-color);
}
.ef-course-list-item.style-one .course-info .course-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.ef-course-list-item.style-one .course-info .course-footer .instructor-box span i {
  color: var(--primary-color);
  margin-right: 7px;
}
.ef-course-list-item.style-one .course-info .course-footer .course-price span.price {
  color: var(--heading-color);
  font-size: 22px;
  font-weight: 500;
}

/* Event Item */
.ef-event-item.style-one {
  background-color: #1E304D;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 20px 30px;
  border-radius: 10px;
}
@media (min-width: 1200px) and (max-width: 1450px) {
  .ef-event-item.style-one {
    padding: 15px 30px;
  }
}
@media (max-width: 767px) {
  .ef-event-item.style-one {
    padding: 20px 15px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.ef-event-item.style-one .event-thumbnail {
  width: 160px;
  height: 160px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  margin-right: 20px;
}
@media (max-width: 767px) {
  .ef-event-item.style-one .event-thumbnail {
    margin-bottom: 20px;
  }
}
.ef-event-item.style-one .event-thumbnail img {
  border-radius: 10px;
}
@media (max-width: 767px) {
  .ef-event-item.style-one .event-info .event-meta {
    margin-bottom: 15px;
  }
}
.ef-event-item.style-one .event-info .event-meta span {
  color: var(--white-color);
}
.ef-event-item.style-one .event-info .event-meta span:not(:last-child) {
  margin-right: 25px;
}
.ef-event-item.style-one .event-info .event-meta span i {
  color: var(--primary-color);
  margin-right: 5px;
}
.ef-event-item.style-one .event-info h4 {
  font-size: 20px;
  line-height: 30px;
  font-weight: 600;
  color: var(--white-color);
  margin-bottom: 10px;
}
@media (min-width: 1200px) and (max-width: 1450px) {
  .ef-event-item.style-one .event-info h4 {
    font-size: 17px;
    line-height: 27px;
  }
}
@media (max-width: 767px) {
  .ef-event-item.style-one .event-info h4 {
    margin-bottom: 20px;
  }
}
.ef-event-item.style-two {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  border-radius: 20px;
  border: 1px solid rgba(33, 37, 41, 0.1);
  background-color: rgba(26, 26, 26, 0.01);
  padding: 10px;
}
@media screen and (max-width: 991px) {
  .ef-event-item.style-two {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 20px;
  }
}
.ef-event-item.style-two .event-thumbnail {
  position: relative;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 20%;
          flex: 0 0 20%;
  max-width: 200px;
  width: 100%;
}
@media screen and (max-width: 991px) {
  .ef-event-item.style-two .event-thumbnail {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 20px;
  }
}
.ef-event-item.style-two .event-thumbnail img {
  width: 100%;
  border-radius: 7px;
}
.ef-event-item.style-two .event-thumbnail .share-button {
  position: absolute;
  top: 20px;
  right: 20px;
}
.ef-event-item.style-two .event-thumbnail .share-button .icon-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: var(--white-color);
  color: var(--primary-color);
}
.ef-event-item.style-two .event-info {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 60%;
          flex: 0 0 60%;
  padding: 0 30px;
}
@media screen and (max-width: 991px) {
  .ef-event-item.style-two .event-info {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    padding: 0;
    margin-bottom: 20px;
  }
}
.ef-event-item.style-two .event-info .event-meta span {
  font-size: 16px;
}
.ef-event-item.style-two .event-info .event-meta span:not(:last-child) {
  margin-right: 20px;
}
@media screen and (max-width: 991px) {
  .ef-event-item.style-two .event-info .event-meta span:not(:last-child) {
    margin-right: 7px;
  }
}
.ef-event-item.style-two .event-info .event-meta span i {
  margin-right: 7px;
  color: var(--primary-color);
}
.ef-event-item.style-two .event-info h4.title {
  line-height: 30px;
}
.ef-event-item.style-two .event-info h4.title:hover {
  color: var(--primary-color);
}
@media screen and (max-width: 991px) {
  .ef-event-item.style-two .event-info h4.title {
    font-size: 18px;
  }
}
.ef-event-item.style-two .event-info p {
  font-size: 16px;
}
.ef-event-item.style-two .edufit-button {
  text-align: right;
  width: 20%;
  padding-right: 20px;
}
@media screen and (max-width: 991px) {
  .ef-event-item.style-two .edufit-button {
    padding-right: 0;
    width: auto;
    text-align: left;
  }
}

/*  Pricing Item  */
.ef-pricing-item.style-one {
  padding: 40px 40px 45px;
  border-radius: 10px;
  border: 1px solid rgba(33, 37, 41, 0.1);
  background-color: rgba(26, 26, 26, 0.01);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.ef-pricing-item.style-one:hover {
  background-color: var(--primary-color);
  color: var(--white-color);
}
.ef-pricing-item.style-one:hover .pricing-top h4 {
  color: var(--white-color);
}
.ef-pricing-item.style-one:hover .pricing-top h2.price {
  color: var(--white-color);
}
.ef-pricing-item.style-one:hover .pricing-body .check-list li {
  color: var(--white-color);
}
.ef-pricing-item.style-one:hover .pricing-body .check-list li i {
  color: var(--white-color);
}
.ef-pricing-item.style-one:hover .pricing-body .check-list li.uncheck {
  color: rgba(255, 255, 255, 0.75);
}
.ef-pricing-item.style-one:hover .pricing-footer .theme-btn.style-one {
  background-color: var(--white-color);
  color: var(--heading-color);
}
.ef-pricing-item.style-one .pricing-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 20px;
}
.ef-pricing-item.style-one .pricing-top h2.price span.duration {
  font-size: 16px;
  font-family: var(--body-font);
}
.ef-pricing-item.style-one .pricing-body {
  margin-bottom: 45px;
}
.ef-pricing-item.style-one .pricing-body p {
  margin-bottom: 25px;
}
.ef-pricing-item.style-one .pricing-body ul.check-list li {
  font-weight: 500;
  color: var(--heading-color);
}
.ef-pricing-item.style-one .pricing-body ul.check-list li:not(:last-child) {
  margin-bottom: 15px;
}
.ef-pricing-item.style-one .pricing-body ul.check-list li i {
  color: var(--heading-color);
}
.ef-pricing-item.style-one .pricing-body ul.check-list li.uncheck {
  color: rgba(33, 37, 41, 0.5);
}
.ef-pricing-item.style-one .pricing-footer {
  text-align: center;
}
.ef-pricing-item.style-one .pricing-footer .theme-btn {
  width: 100%;
  margin-bottom: 15px;
}
.ef-pricing-item.style-one .pricing-footer .theme-btn.style-one {
  background-color: #212529;
}

/*  Accordion Item  */
.ef-accordion-item {
  border-radius: 10px;
  border: 1px solid rgba(33, 37, 41, 0.1);
  background-color: rgba(26, 26, 26, 0.01);
}
.ef-accordion-item .accordion-title {
  padding: 18px 20px;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 10px 10px 0 0;
}
.ef-accordion-item .accordion-title:after {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  content: "\f067";
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
  margin-left: auto;
}
@media (max-width: 767px) {
  .ef-accordion-item .accordion-title {
    font-size: 14px;
    line-height: 27px;
  }
}
.ef-accordion-item .accordion-title[aria-expanded=true] {
  background-color: var(--secondary-color);
  color: var(--white-color);
}
.ef-accordion-item .accordion-title[aria-expanded=true]:after {
  content: "\f068";
}
.ef-accordion-item .accordion-content {
  padding: 15px 20px 15px;
}
.ef-accordion-item .accordion-content p {
  font-size: 16px;
}

/*  Edufit Instructor Item  */
.ef-instructor-item.style-one {
  border-radius: 10px;
  background-color: var(--white-color);
  padding: 20px;
}
.ef-instructor-item.style-one:hover .instructor-thumbnail .hover-item {
  top: 10px;
  visibility: visible;
  opacity: 1;
}
.ef-instructor-item.style-one .instructor-thumbnail {
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.ef-instructor-item.style-one .instructor-thumbnail img {
  width: 100%;
  border-radius: 10px;
}
.ef-instructor-item.style-one .instructor-thumbnail .hover-item {
  position: absolute;
  top: -50%;
  right: 10px;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.ef-instructor-item.style-one .instructor-thumbnail .hover-item ul.social-link li:not(:last-child) {
  margin-bottom: 10px;
}
.ef-instructor-item.style-one .instructor-thumbnail .hover-item ul.social-link li a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: var(--white-color);
  color: var(--heading-color);
}
.ef-instructor-item.style-one .instructor-info {
  padding-top: 20px;
}
.ef-instructor-item.style-two:hover .instructor-thumbnail .hover-item {
  top: 10px;
  visibility: visible;
  opacity: 1;
}
.ef-instructor-item.style-two .instructor-thumbnail {
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.ef-instructor-item.style-two .instructor-thumbnail img {
  width: 100%;
  border-radius: 10px;
}
.ef-instructor-item.style-two .instructor-thumbnail .hover-item {
  position: absolute;
  top: -50%;
  right: 10px;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.ef-instructor-item.style-two .instructor-thumbnail .hover-item ul.social-link li:not(:last-child) {
  margin-bottom: 10px;
}
.ef-instructor-item.style-two .instructor-thumbnail .hover-item ul.social-link li a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: var(--white-color);
  color: var(--heading-color);
}
.ef-instructor-item.style-two .instructor-thumbnail .instructor-info {
  bottom: -35%;
}
.ef-instructor-item.style-three:hover .instructor-thumbnail ul.social-link li:nth-child(2) {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  visibility: visible;
}
.ef-instructor-item.style-three:hover .instructor-thumbnail ul.social-link li:nth-child(3) {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  visibility: visible;
}
.ef-instructor-item.style-three:hover .instructor-thumbnail ul.social-link li:nth-child(4) {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  visibility: visible;
}
.ef-instructor-item.style-three:hover .instructor-thumbnail .instructor-info {
  bottom: -45%;
}
@media (min-width: 1200px) and (max-width: 1450px) {
  .ef-instructor-item.style-three:hover .instructor-thumbnail .instructor-info {
    bottom: -50%;
  }
}
@media screen and (max-width: 1199px) {
  .ef-instructor-item.style-three:hover .instructor-thumbnail .instructor-info {
    bottom: -60%;
  }
}
@media screen and (max-width: 991px) {
  .ef-instructor-item.style-three:hover .instructor-thumbnail .instructor-info {
    bottom: -55%;
  }
}
@media (max-width: 767px) {
  .ef-instructor-item.style-three:hover .instructor-thumbnail .instructor-info {
    bottom: -35%;
  }
}
@media (max-width: 575px) {
  .ef-instructor-item.style-three:hover .instructor-thumbnail .instructor-info {
    bottom: -45%;
  }
}
.ef-instructor-item.style-three .instructor-thumbnail {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}
.ef-instructor-item.style-three .instructor-thumbnail img {
  width: 100%;
  border-radius: 10px;
}
.ef-instructor-item.style-three .instructor-thumbnail .hover-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.ef-instructor-item.style-three .instructor-thumbnail ul.social-link {
  position: absolute;
  top: 20px;
  right: 20px;
}
.ef-instructor-item.style-three .instructor-thumbnail ul.social-link li {
  position: relative;
  z-index: 2;
}
.ef-instructor-item.style-three .instructor-thumbnail ul.social-link li:not(:last-child) {
  margin-bottom: 10px;
}
.ef-instructor-item.style-three .instructor-thumbnail ul.social-link li a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--white-color);
  color: var(--primary-color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 16px;
}
.ef-instructor-item.style-three .instructor-thumbnail ul.social-link li:nth-child(2) {
  -webkit-transform: translateY(-50px);
          transform: translateY(-50px);
  visibility: hidden;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  z-index: 1;
}
.ef-instructor-item.style-three .instructor-thumbnail ul.social-link li:nth-child(3) {
  -webkit-transform: translateY(-100px);
          transform: translateY(-100px);
  visibility: hidden;
  -webkit-transition: all 0.33s;
  transition: all 0.33s;
  z-index: 1;
}
.ef-instructor-item.style-three .instructor-thumbnail ul.social-link li:nth-child(4) {
  -webkit-transform: translateY(-150px);
          transform: translateY(-150px);
  visibility: hidden;
  -webkit-transition: all 0.37s;
  transition: all 0.37s;
  z-index: 1;
}
.ef-instructor-item.style-three .instructor-thumbnail .instructor-info {
  position: absolute;
  bottom: -100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background-color: var(--white-color);
  padding: 30px;
  text-align: center;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.ef-instructor-item.style-four:hover .instructor-thumbnail .hover-content {
  visibility: visible;
  opacity: 1;
}
.ef-instructor-item.style-four:hover .instructor-info {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.ef-instructor-item.style-four .instructor-thumbnail {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}
.ef-instructor-item.style-four .instructor-thumbnail img {
  width: 100%;
  border-radius: 10px;
}
.ef-instructor-item.style-four .instructor-thumbnail .hover-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: rgba(0, 0, 0, 0.6);
  text-align: center;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.ef-instructor-item.style-four .instructor-info {
  background-color: var(--white-color);
  width: 80%;
  margin: 0 auto 40px;
  padding: 15px 15px 20px;
  -webkit-transform: translateY(50px);
          transform: translateY(50px);
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  border-radius: 10px;
}
.ef-instructor-item.style-four .instructor-info span.position {
  margin-bottom: 10px;
}
.ef-instructor-item.style-four .instructor-info ul.social-link li {
  display: inline-block;
  margin-left: 3px;
  margin-right: 3px;
}
.ef-instructor-item.style-four .instructor-info ul.social-link li a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border-color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 16px;
}
.ef-instructor-item.style-four .instructor-info ul.social-link li a:hover {
  background-color: var(--primary-color);
  color: var(--white-color);
}

/*  Testimonial Item  */
.ef-testimonial-item.style-one {
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 30px;
  background-color: var(--white-color);
}
.ef-testimonial-item.style-one .testimonial-content .author-box-rating {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 25px;
}
@media (max-width: 767px) {
  .ef-testimonial-item.style-one .testimonial-content .author-box-rating {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.ef-testimonial-item.style-one .testimonial-content .author-box-rating .rating {
  margin-top: 20px;
}
.ef-testimonial-item.style-two {
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.ef-testimonial-item.style-two .testimonial-content .testimonial-img {
  position: relative;
  overflow: hidden;
  z-index: 1;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 10px;
  padding: 20px 15px;
}
.ef-testimonial-item.style-two .testimonial-content .testimonial-img:after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(35.1%, rgba(0, 0, 0, 0)), to(#000));
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 35.1%, #000 100%);
  z-index: -1;
}
.ef-testimonial-item.style-two .testimonial-content .testimonial-img .play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.ef-testimonial-item.style-two .testimonial-content .testimonial-img .play-button .video-popup {
  width: 60px;
  height: 60px;
}
.ef-testimonial-item.style-two .testimonial-content .testimonial-img .play-button .video-popup:before, .ef-testimonial-item.style-two .testimonial-content .testimonial-img .play-button .video-popup:after {
  display: none;
}
.ef-testimonial-item.style-two .testimonial-content .testimonial-img .content h4 {
  color: var(--white-color);
}

/*  Edufit Blog Post Item  */
.ef-blog-grid-item.style-one {
  padding: 20px;
  border: 1px solid var(--border-color);
  border-radius: 10px;
}
.ef-blog-grid-item.style-one .post-thumbnail {
  margin-bottom: 20px;
}
.ef-blog-grid-item.style-one .post-thumbnail img {
  width: 100%;
  border-radius: 10px;
}
.ef-blog-grid-item.style-one .post-content .post-meta span {
  font-size: 16px;
  margin-bottom: 5px;
}
.ef-blog-grid-item.style-one .post-content .post-meta span:not(:last-child) {
  margin-right: 25px;
}
.ef-blog-grid-item.style-one .post-content .post-meta span a {
  padding: 12px 20px;
  border-radius: 20px;
  font-size: 14px;
  line-height: 11px;
  background: rgba(98, 85, 250, 0.1);
  color: var(--primary-color);
}
.ef-blog-grid-item.style-one .post-content .post-meta span i {
  margin-right: 5px;
  color: var(--primary-color);
}
.ef-blog-grid-item.style-one .post-content h4.title {
  font-size: 20px;
  line-height: 30px;
  margin-bottom: 35px;
}
.ef-blog-grid-item.style-one .post-content h4.title:hover {
  color: var(--primary-color);
}
.ef-blog-grid-item.style-one .post-content .author-box-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.ef-blog-grid-item.style-one .post-content .icon-btn.style-one:hover {
  background-color: var(--heading-color);
  color: var(--white-color);
}
.ef-blog-grid-item.style-one .post-content .icon-btn.style-one:hover i {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.ef-blog-grid-item.style-one .post-content .author-box .author-info {
  line-height: 0;
  margin-top: 0;
}
.ef-blog-grid-item.style-one .post-content .author-box .author-info span {
  font-size: 14px;
  line-height: 12px;
  margin-bottom: 10px;
}
.ef-blog-grid-item.style-one .post-content .author-box .author-info h5 {
  margin-bottom: 0;
}
.ef-blog-grid-item.style-two .post-thumbnail {
  position: relative;
  overflow: hidden;
}
.ef-blog-grid-item.style-two .post-thumbnail img {
  width: 100%;
  border-radius: 10px 10px 0 0;
}
.ef-blog-grid-item.style-two .post-thumbnail .category {
  position: absolute;
  top: 30px;
  left: 30px;
}
.ef-blog-grid-item.style-two .post-thumbnail .category a {
  padding: 5px 10px;
  background-color: var(--primary-color);
  color: var(--white-color);
  border-radius: 30px;
  line-height: 24px;
}
.ef-blog-grid-item.style-two .post-content {
  padding: 30px;
  border-radius: 0 0 10px 10px;
  border: 1px solid rgba(33, 37, 41, 0.1);
  border-top: none;
  background: rgba(26, 26, 26, 0.01);
}
@media screen and (max-width: 1199px) {
  .ef-blog-grid-item.style-two .post-content {
    padding: 30px 15px;
  }
}
.ef-blog-grid-item.style-two .post-content h4.title {
  font-size: 20px;
  line-height: 30px;
  margin-bottom: 15px;
}
.ef-blog-grid-item.style-two .post-content h4.title:hover {
  color: var(--primary-color);
}
.ef-blog-grid-item.style-two .post-content .post-meta span {
  font-size: 16px;
  margin-bottom: 10px;
}
.ef-blog-grid-item.style-two .post-content .post-meta span:not(:last-child) {
  margin-right: 20px;
}
.ef-blog-grid-item.style-two .post-content .post-meta span i {
  margin-right: 10px;
  color: var(--primary-color);
}
.ef-blog-grid-item.style-three .post-thumbnail img {
  width: 100%;
  border-radius: 10px;
}
.ef-blog-grid-item.style-three .post-content {
  position: relative;
  padding: 25px 30px;
  border-radius: 10px;
  background-color: var(--white-color);
  -webkit-box-shadow: 0px 2px 30px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 2px 30px 0px rgba(0, 0, 0, 0.1);
  margin-left: 30px;
  margin-right: 30px;
  margin-top: -90px;
}
@media screen and (max-width: 1199px) {
  .ef-blog-grid-item.style-three .post-content {
    margin-left: 20px;
    margin-right: 20px;
  }
}
.ef-blog-grid-item.style-three .post-content .post-categories {
  position: absolute;
  top: -18px;
  left: 30px;
}
.ef-blog-grid-item.style-three .post-content .post-categories a {
  padding: 12px 20px;
  font-size: 14px;
  letter-spacing: 0.14px;
  line-height: 11px;
  background-color: var(--primary-color);
  color: var(--white-color);
  margin-bottom: 15px;
  border-radius: 20px;
}
.ef-blog-grid-item.style-three .post-content .post-meta span {
  font-size: 16px;
  margin-bottom: 10px;
}
@media screen and (max-width: 991px) {
  .ef-blog-grid-item.style-three .post-content .post-meta span {
    font-size: 14px;
  }
}
.ef-blog-grid-item.style-three .post-content .post-meta span:not(:last-child) {
  margin-right: 10px;
}
@media screen and (max-width: 991px) {
  .ef-blog-grid-item.style-three .post-content .post-meta span:not(:last-child) {
    margin-right: 5px;
  }
}
.ef-blog-grid-item.style-three .post-content .post-meta span i {
  margin-right: 7px;
  color: var(--primary-color);
}
.ef-blog-grid-item.style-three .post-content h4.title {
  margin-bottom: 10px;
  line-height: 30px;
}
.ef-blog-grid-item.style-three .post-content h4.title:hover {
  color: var(--primary-color);
}
@media screen and (max-width: 991px) {
  .ef-blog-grid-item.style-three .post-content h4.title {
    font-size: 18px;
  }
}

/*  Blog List Item  */
.ef-blog-list-item.style-one {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  border-radius: 10px;
  background: var(--white-color);
  -webkit-box-shadow: 0px 2px 24px 0px rgba(0, 0, 0, 0.08);
          box-shadow: 0px 2px 24px 0px rgba(0, 0, 0, 0.08);
  padding: 30px;
}
@media (min-width: 1200px) and (max-width: 1450px) {
  .ef-blog-list-item.style-one {
    padding: 20px;
  }
}
@media (max-width: 767px) {
  .ef-blog-list-item.style-one {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.ef-blog-list-item.style-one .post-thumbnail {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  max-width: 44%;
  width: 100%;
  margin-right: 30px;
}
@media (max-width: 767px) {
  .ef-blog-list-item.style-one .post-thumbnail {
    max-width: 100%;
    margin-bottom: 20px;
  }
}
.ef-blog-list-item.style-one .post-thumbnail img {
  width: 100%;
  border-radius: 10px;
}
.ef-blog-list-item.style-one .post-content {
  width: 50%;
}
@media (max-width: 767px) {
  .ef-blog-list-item.style-one .post-content {
    width: 100%;
  }
}
.ef-blog-list-item.style-one .post-content .post-categories a {
  padding: 12px 20px;
  font-size: 14px;
  letter-spacing: 0.14px;
  line-height: 11px;
  background-color: var(--primary-color);
  color: var(--white-color);
  margin-bottom: 15px;
  border-radius: 20px;
}
@media (min-width: 1200px) and (max-width: 1450px) {
  .ef-blog-list-item.style-one .post-content .post-categories a {
    margin-bottom: 5px;
  }
}
.ef-blog-list-item.style-one .post-content .post-meta span {
  font-size: 16px;
  margin-bottom: 7px;
}
@media (min-width: 1200px) and (max-width: 1450px) {
  .ef-blog-list-item.style-one .post-content .post-meta span {
    margin-bottom: 5px;
  }
}
@media screen and (max-width: 991px) {
  .ef-blog-list-item.style-one .post-content .post-meta span {
    font-size: 14px;
  }
}
.ef-blog-list-item.style-one .post-content .post-meta span:not(:last-child) {
  margin-right: 10px;
}
@media screen and (max-width: 991px) {
  .ef-blog-list-item.style-one .post-content .post-meta span:not(:last-child) {
    margin-right: 5px;
  }
}
.ef-blog-list-item.style-one .post-content .post-meta span i {
  margin-right: 7px;
  color: var(--primary-color);
}
.ef-blog-list-item.style-one .post-content h4.title {
  margin-bottom: 10px;
  line-height: 30px;
}
.ef-blog-list-item.style-one .post-content h4.title:hover {
  color: var(--primary-color);
}
@media (min-width: 1200px) and (max-width: 1450px) {
  .ef-blog-list-item.style-one .post-content h4.title {
    font-size: 18px;
    margin-bottom: 5px;
  }
}
@media screen and (max-width: 991px) {
  .ef-blog-list-item.style-one .post-content h4.title {
    font-size: 18px;
  }
}

/*---- 
====================
02. Components CSS
    # Footer CSS
====================

----*/
.footer-default {
  position: relative;
  background-color: #010101;
  position: relative;
  z-index: 1;
}
.footer-default .shape {
  position: absolute;
  z-index: -1;
}
@media screen and (max-width: 991px) {
  .footer-default .shape {
    display: none;
  }
}
.footer-default .shape span img {
  width: 60px;
  opacity: 0.5;
}
.footer-default .shape.shape-one {
  top: 10%;
  left: 3%;
}
.footer-default .shape.shape-two {
  top: 7%;
  right: 7%;
}
.footer-default .shape.shape-three {
  bottom: 25%;
  left: 6%;
}
.footer-default .shape.shape-four {
  bottom: 25%;
  right: 3%;
}
.footer-default .shape.shape-five {
  bottom: 25%;
  right: 50%;
}

.footer-widget .footer-content h4.widget-title {
  margin-bottom: 20px;
  font-size: 22px;
  color: var(--white-color);
}
.footer-widget .footer-content p {
  color: rgba(255, 255, 255, 0.8);
}
.footer-widget .footer-content .widget-nav li:not(:last-child) {
  margin-bottom: 15px;
}
.footer-widget .footer-content .widget-nav li a {
  color: rgba(255, 255, 255, 0.8);
}
.footer-widget .footer-content .widget-nav li a:hover {
  color: var(--primary-color);
}

.footer-about-widget {
  max-width: 370px;
}
.footer-about-widget .footer-content .footer-logo {
  margin-bottom: 25px;
}
.footer-about-widget .footer-content p {
  margin-bottom: 25px;
}
.footer-about-widget .footer-content .social-link li {
  display: inline-block;
}
.footer-about-widget .footer-content .social-link li:not(:last-child) {
  margin-right: 10px;
}
.footer-about-widget .footer-content .social-link li a {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white-color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.footer-about-widget .footer-content .social-link li a:hover {
  background-color: var(--white-color);
  color: var(--primary-color);
}

.footer-contact-widget .footer-content .info-box span {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 5px;
}
.footer-contact-widget .footer-content .info-box h5 {
  color: rgba(255, 255, 255, 0.6);
}
.footer-contact-widget .footer-content .info-box h5 a:hover {
  color: var(--primary-color);
}

.footer-newsletter-widget .footer-content p {
  margin-bottom: 25px;
}
.footer-newsletter-widget .footer-content .form-group {
  position: relative;
}
.footer-newsletter-widget .footer-content .form-group label {
  position: absolute;
  top: 13px;
  left: 15px;
  color: var(--primary-color);
}
.footer-newsletter-widget .footer-content .form-group .form_control {
  width: 100%;
  padding: 16px 30px 16px 40px;
  line-height: 20px;
  border-radius: 10px;
  border: 1.2px solid rgba(16, 16, 16, 0.1);
  font-size: 14px;
  margin-bottom: 15px;
  background-color: rgba(28, 28, 28, 0.85);
  color: var(--white-color);
}
.footer-newsletter-widget .footer-content .form-group .form_control::-webkit-input-placeholder {
  color: var(--white-color);
}
.footer-newsletter-widget .footer-content .form-group .form_control::-moz-placeholder {
  color: var(--white-color);
}
.footer-newsletter-widget .footer-content .form-group .form_control:-ms-input-placeholder {
  color: var(--white-color);
}
.footer-newsletter-widget .footer-content .form-group .form_control::-ms-input-placeholder {
  color: var(--white-color);
}
.footer-newsletter-widget .footer-content .form-group .form_control::placeholder {
  color: var(--white-color);
}

.footer-copyright {
  border-top: 1px solid rgba(33, 37, 41, 0.8);
  padding: 25px 0;
}
@media screen and (max-width: 991px) {
  .footer-copyright .copyright-text {
    margin-bottom: 15px;
    text-align: center;
  }
}
.footer-copyright .copyright-text p {
  color: rgba(255, 255, 255, 0.8);
}
.footer-copyright .copyright-text p span {
  color: var(--primary-color);
}

/* --- assets\css\home-inline.css --- */
.home-inline-1 {
    background: var(--epa-bg-light);
}

.home-inline-2 {
    height: 40px; width: auto; filter: invert(0);
}

.home-inline-3 {
    display: none;
}

.home-inline-4 {
    padding-top: var(--header-height);
}

.home-inline-5 {
    padding: var(--sp-16) 0 var(--sp-12); position: relative; overflow: hidden;
}

.home-inline-6 {
    max-width: 900px; margin: 0 auto;
}

.home-inline-7 {
    max-width: 700px; margin: 0 auto;
}

.home-inline-8 {
    display: flex; gap: var(--sp-4); justify-content: center; flex-wrap: wrap;
}

.home-inline-9 {
    text-align: center;
}

.home-inline-10 {
    font-size: 2rem; font-weight: 800; color: var(--epa-text);
}

.home-inline-11 {
    color: var(--epa-text-muted);
}

.home-inline-12 {
    text-align: center;
}

.home-inline-13 {
    font-size: 2rem; font-weight: 800; color: var(--epa-text);
}

.home-inline-14 {
    color: var(--epa-text-muted);
}

.home-inline-15 {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: var(--sp-8);
}

.home-inline-16 {
    color: #3b82f6; background: rgba(59, 130, 246, 0.1);
}

.home-inline-17 {
    text-align: left; margin-bottom: var(--sp-8); display: flex; flex-direction: column; gap: var(--sp-2);
}

.home-inline-18 {
    transition-delay: 0.1s;
}

.home-inline-19 {
    color: #ca8a04; background: rgba(234, 179, 8, 0.1);
}

.home-inline-20 {
    text-align: left; margin-bottom: var(--sp-8); display: flex; flex-direction: column; gap: var(--sp-2);
}

.home-inline-21 {
    color: #ca8a04; border-color: #ca8a04;
}

.home-inline-22 {
    transition-delay: 0.2s;
}

.home-inline-23 {
    color: #dc2626; background: rgba(239, 68, 68, 0.1);
}

.home-inline-24 {
    text-align: left; margin-bottom: var(--sp-8); display: flex; flex-direction: column; gap: var(--sp-2);
}

.home-inline-25 {
    color: #dc2626; border-color: #dc2626;
}

.home-inline-26 {
    transition-delay: 0.3s;
}

.home-inline-27 {
    color: #10b981; background: rgba(16, 185, 129, 0.1);
}

.home-inline-28 {
    text-align: left; margin-bottom: var(--sp-8); display: flex; flex-direction: column; gap: var(--sp-2);
}

.home-inline-29 {
    color: #10b981; border-color: #10b981;
}

.home-inline-30 {
    transition-delay: 0.4s;
}

.home-inline-31 {
    color: #009688; background: rgba(0, 150, 136, 0.1);
}

.home-inline-32 {
    text-align: left; margin-bottom: var(--sp-8); display: flex; flex-direction: column; gap: var(--sp-2);
}

.home-inline-33 {
    color: #009688; border-color: #009688;
}

.home-inline-34 {
    grid-template-columns: 1fr 1fr; gap: var(--sp-12); align-items: center;
}

.home-inline-35 {
    display: flex; gap: var(--sp-6); margin-top: var(--sp-6);
}

.home-inline-36 {
    display: block; font-size: 14px;
}

.home-inline-37 {
    display: block; font-size: 14px;
}

.home-inline-38 {
    display: block; font-size: 14px;
}

.home-inline-39 {
    width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
}

.home-inline-40 {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: var(--sp-8);
}

.home-inline-41 {
    text-align: left;
}

.home-inline-42 {
    background: rgba(59, 130, 246, 0.1); width: 48px; height: 48px; display: flex; align-items: center; justify-content: center; border-radius: 8px; font-size: 24px; color: #3b82f6; margin-bottom: var(--sp-4);
}

.home-inline-43 {
    font-size: 14px;
}

.home-inline-44 {
    text-align: left;
}

.home-inline-45 {
    background: rgba(234, 179, 8, 0.1); width: 48px; height: 48px; display: flex; align-items: center; justify-content: center; border-radius: 8px; font-size: 24px; color: #ca8a04; margin-bottom: var(--sp-4);
}

.home-inline-46 {
    font-size: 14px;
}

.home-inline-47 {
    text-align: left;
}

.home-inline-48 {
    background: rgba(239, 68, 68, 0.1); width: 48px; height: 48px; display: flex; align-items: center; justify-content: center; border-radius: 8px; font-size: 24px; color: #dc2626; margin-bottom: var(--sp-4);
}

.home-inline-49 {
    font-size: 14px;
}

.home-inline-50 {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: var(--sp-6);
}

.home-inline-51 {
    font-size: 32px; margin-bottom: 16px;
}

.home-inline-52 {
    font-size: 32px; margin-bottom: 16px;
}

.home-inline-53 {
    font-size: 32px; margin-bottom: 16px;
}

.home-inline-54 {
    font-size: 32px; margin-bottom: 16px;
}

.home-inline-55 {
    font-size: 32px; margin-bottom: 16px;
}

.home-inline-56 {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: var(--sp-6);
}

.home-inline-57 {
    background: linear-gradient(135deg, #1e3a8a, #3b82f6); color: white;
}

.home-inline-58 {
    background: rgba(255,255,255,0.2); color: white; margin-bottom: 8px;
}

.home-inline-59 {
    color: white;
}

.home-inline-60 {
    background: linear-gradient(135deg, #854d0e, #ca8a04); color: white;
}

.home-inline-61 {
    background: rgba(255,255,255,0.2); color: white; margin-bottom: 8px;
}

.home-inline-62 {
    color: white;
}

.home-inline-63 {
    background: linear-gradient(135deg, #7f1d1d, #dc2626); color: white;
}

.home-inline-64 {
    background: rgba(255,255,255,0.2); color: white; margin-bottom: 8px;
}

.home-inline-65 {
    color: white;
}

.home-inline-66 {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: var(--sp-6);
}

.home-inline-67 {
    background: var(--epa-primary); color: white;
}

.home-inline-68 {
    background: white; color: black;
}

.home-inline-69 {
    display: flex; gap: var(--sp-8); justify-content: center; flex-wrap: wrap; align-items: center;
}

.home-inline-70 {
    text-decoration: none; color: inherit; text-align: center; width: 150px; border-radius: 50%; height: 150px; display: flex; align-items: center; justify-content: center; flex-direction: column;
}

.home-inline-71 {
    font-size: 32px; margin-bottom:8px;
}

.home-inline-72 {
    text-decoration: none; color: inherit; text-align: center; width: 150px; border-radius: 50%; height: 150px; display: flex; align-items: center; justify-content: center; flex-direction: column;
}

.home-inline-73 {
    font-size: 32px; margin-bottom:8px;
}

.home-inline-74 {
    text-decoration: none; color: inherit; text-align: center; width: 150px; border-radius: 50%; height: 150px; display: flex; align-items: center; justify-content: center; flex-direction: column;
}

.home-inline-75 {
    font-size: 32px; margin-bottom:8px;
}

.home-inline-76 {
    text-decoration: none; color: inherit; text-align: center; width: 150px; border-radius: 50%; height: 150px; display: flex; align-items: center; justify-content: center; flex-direction: column;
}

.home-inline-77 {
    font-size: 32px; margin-bottom:8px;
}

.home-inline-78 {
    text-decoration: none; color: inherit; text-align: center; width: 150px; border-radius: 50%; height: 150px; display: flex; align-items: center; justify-content: center; flex-direction: column;
}

.home-inline-79 {
    font-size: 32px; margin-bottom:8px;
}

.home-inline-80 {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: var(--sp-6);
}

.home-inline-81 {
    font-size: 32px; margin-bottom: 16px; color: #ff0000;
}

.home-inline-82 {
    font-size: 32px; margin-bottom: 16px;
}

.home-inline-83 {
    font-size: 32px; margin-bottom: 16px;
}

.home-inline-84 {
    background: linear-gradient(135deg, var(--epa-primary-dark), var(--epa-primary)); color: white; padding: var(--sp-12); border-radius: var(--radius-lg);
}

.home-inline-85 {
    color: white; font-size: 2.5rem; margin-bottom: var(--sp-4);
}

.home-inline-86 {
    margin-bottom: var(--sp-8); opacity: 0.9;
}

.home-inline-87 {
    display: flex; gap: var(--sp-4); justify-content: center; flex-wrap: wrap;
}

.home-inline-88 {
    color: var(--epa-primary);
}

.home-inline-89 {
    color: white; border-color: white;
}

.home-inline-90 {
    max-width: 800px; margin: 0 auto;
}

.home-inline-91 {
    grid-template-columns: 1fr 1fr; gap: var(--sp-12);
}

.home-inline-92 {
    display: flex; flex-direction: column; gap: var(--sp-6);
}

.home-inline-93 {
    display: flex; gap: var(--sp-4); align-items: center;
}

.home-inline-94 {
    width: 48px; height: 48px; border-radius: 50%; background: var(--epa-white); display:flex; align-items:center; justify-content:center; box-shadow: var(--shadow-sm);
}

.home-inline-95 {
    color: var(--epa-text-muted); text-decoration: none;
}

.home-inline-96 {
    display: flex; gap: var(--sp-4); align-items: center;
}

.home-inline-97 {
    width: 48px; height: 48px; border-radius: 50%; background: var(--epa-white); display:flex; align-items:center; justify-content:center; box-shadow: var(--shadow-sm);
}

.home-inline-98 {
    color: var(--epa-text-muted); text-decoration: none;
}

.home-inline-99 {
    display: flex; gap: var(--sp-4); align-items: center;
}

.home-inline-100 {
    width: 48px; height: 48px; border-radius: 50%; background: var(--epa-white); display:flex; align-items:center; justify-content:center; box-shadow: var(--shadow-sm);
}

.home-inline-101 {
    color: var(--epa-text-muted);
}

.home-inline-102 {
    display: flex; flex-direction: column; gap: var(--sp-4);
}

.home-inline-103 {
    display:block; margin-bottom: 8px; font-weight: 500;
}

.home-inline-104 {
    width: 100%; padding: 12px; border-radius: var(--radius-md); border: 1px solid var(--epa-border);
}

.home-inline-105 {
    display:block; margin-bottom: 8px; font-weight: 500;
}

.home-inline-106 {
    width: 100%; padding: 12px; border-radius: var(--radius-md); border: 1px solid var(--epa-border);
}

.home-inline-107 {
    display:block; margin-bottom: 8px; font-weight: 500;
}

.home-inline-108 {
    width: 100%; padding: 12px; border-radius: var(--radius-md); border: 1px solid var(--epa-border); background: white;
}

