@font-face {
  font-family: "Poppins";
  src: url("../src/assets/fonts/Poppins-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("../src/assets/fonts/Poppins-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --brand: #1d8cdc;
  --brand-dark: #0f6fb5;
  --brand-deep: #0369a1;
  --ink: #263238;
  --muted: #64748b;
  --line: rgba(29, 140, 220, 0.22);
  --soft: #eef8ff;
  --softest: #f7fcff;
  --white: #ffffff;
  --success: #0aa66a;
  --warning: #facc15;
  --danger: #b91c1c;
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: "Poppins", Arial, sans-serif;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  justify-content: space-between;
  min-height: 74px;
  padding: 0.75rem clamp(1rem, 7vw, 7rem);
  border-bottom: 1px solid rgba(29, 140, 220, 0.16);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
}

.brand img {
  display: block;
  width: 142px;
  height: auto;
}

.header-nav {
  display: flex;
  gap: 3rem;
  align-items: center;
}

.header-nav a {
  color: var(--ink);
  font-size: 0.95rem;
  text-decoration: none;
}

.header-nav a:hover {
  color: var(--brand);
}

.header-cta,
.primary-btn,
.secondary-btn,
.secondary-outline-btn,
.section-tabs button,
.module-list button,
.mobile-sticky button {
  min-height: 46px;
  border-radius: var(--radius);
  font-weight: 700;
  transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.header-cta,
.primary-btn {
  border: 1px solid var(--brand);
  background: var(--brand);
  color: var(--white);
  padding: 0.85rem 1.2rem;
}

.secondary-btn {
  border: 1px solid var(--white);
  background: transparent;
  color: var(--white);
  padding: 0.85rem 1.2rem;
}

.secondary-outline-btn {
  border: 1px solid var(--brand);
  background: var(--white);
  color: var(--brand);
  padding: 0.85rem 1.2rem;
}

.header-cta:hover,
.primary-btn:hover,
.secondary-btn:hover,
.secondary-outline-btn:hover,
.section-tabs button:hover,
.module-list button:hover {
  transform: translateY(-2px);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: center;
  padding: clamp(3rem, 7vw, 4rem) clamp(1rem, 8vw, 7rem);
  background: linear-gradient(180deg, var(--brand) 0%, var(--brand-dark) 100%);
  color: var(--white);
}

.hero-copy {
  max-width: 780px;
}

.pill,
.eyebrow {
  display: inline-flex;
  color: var(--brand);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.pill {
  margin-bottom: 1rem;
  border-radius: 999px;
  background: #faf574;
  color: #1f2933;
  padding: 0.45rem 0.85rem;
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  color: var(--white);
  font-size: 50px;
  line-height: 1.3;
  letter-spacing: 0;
}

.hero-subtitle {
  max-width: 650px;
  margin: 1rem 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.12rem;
  line-height: 1.7;
}

.rating-row,
.hero-actions,
.price-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.rating-row {
  margin-top: 1.4rem;
}

.stars {
  color: var(--warning);
  letter-spacing: 1px;
}

.hero-actions {
  margin-top: 2rem;
}

.course-card {
  border-radius: var(--radius);
  background: var(--white);
  padding: 1rem;
  color: #1f2933;
  box-shadow: 0 20px 48px rgba(15, 42, 68, 0.24);
}

.video-frame {
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 16 / 10;
  background: #0f172a;
}

.video-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.price-row {
  margin: 1rem 0;
}

.price-row strong {
  color: #111827;
  font-size: 1.55rem;
}

.price-row span {
  color: #7a8794;
  text-decoration: line-through;
}

.price-row em {
  color: var(--danger);
  font-style: normal;
  font-weight: 700;
}

.urgency {
  display: grid;
  gap: 0.45rem;
  margin-bottom: 1rem;
}

.urgency p {
  margin: 0;
  color: var(--muted);
}

.full-width {
  width: 100%;
}

.section-tabs {
  position: sticky;
  top: 84px;
  z-index: 90;
  display: flex;
  gap: 0.6rem;
  overflow-x: auto;
  padding: 0.8rem clamp(1rem, 8vw, 7rem);
  border-bottom: 1px solid rgba(29, 140, 220, 0.16);
  background-color: #eef8ff;
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 11px -6px;
}

.section-tabs button {
  border: 1px solid #106db2;
  background: var(--white);
  color: var(--brand-deep);
  padding: 0.7rem 1rem;
  white-space: nowrap;
}

.quick-facts,
.split-section,
.modules-section,
.certificate-section,
.enquiry-section,
.graduate-section,
.faq-section,
.final-cta {
  margin-left: clamp(1rem, 8vw, 7rem);
  margin-right: clamp(1rem, 8vw, 7rem);
}

.quick-facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  padding: clamp(2rem, 4vw, 3rem) 0;
}

.quick-facts article,
.panel,
.module-detail,
.enquiry-form {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.quick-facts article {
  padding: 1.15rem;
}

.quick-facts span,
.include-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  background: #1d8cdc;
  color: #FFF;
  font-weight: 700;
  padding: 0.45rem 0.65rem;
}

.quick-facts strong {
  display: block;
  margin-top: 0.9rem;
  color: #1f2933;
  font-size: 1.25rem;
}

.quick-facts p,
.panel p,
.module-detail p,
.certificate-copy p,
.final-cta p {
  color: var(--muted);
  line-height: 1.65;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 1rem;
  padding: clamp(1rem, 3vw, 2rem) 0 clamp(2rem, 5vw, 4rem);
}

.panel {
  padding: clamp(1.25rem, 3vw, 2rem);
}

.panel h2,
.section-heading h2,
.certificate-copy h2,
.final-cta h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.85rem, 3vw, 2.65rem);
  line-height: 1.18;
  letter-spacing: 0;
}

.eyebrow {
  margin: 0 0 0.65rem;
}

.top-checklist {
  display: grid;
  gap: 0.6rem;
  margin: 1.4rem 0 0;
  padding: 0;
  list-style: none;
}

.check-list {
  display: grid;
  gap: 0.9rem;
  margin: 1.4rem 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 0.75rem;
  align-items: start;
  color: #34465a;
  line-height: 1.55;
}

.top-checklist li {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 0.75rem;
  align-items: start;
  color: #fff;
  line-height: 1.55;
}

.check-list li::before {
  content: "✓";
  margin-top: 0.05rem;
  color: var(--success);
  font-weight: 700;
}

.top-checklist li::before {
  content: "✓";
  margin-top: 0.05rem;
  color: #fff;
  font-weight: 700;
}

.include-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
  margin-top: 1.4rem;
}

.include-grid div {
  display: grid;
  gap: 0.45rem;
  border-radius: var(--radius);
  background: var(--softest);
  padding: 0.9rem;
  border: 1px solid #1d8cdc;
}

.include-grid p {
  margin: 0;
  color: #000;
  text-align: center;
}

.modules-section {
  padding: clamp(2rem, 5vw, 4.5rem) 0;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 1.5rem;
}

.modules-layout {
  display: grid;
  grid-template-columns: minmax(260px, 420px) minmax(0, 1fr);
  gap: 1rem;
}

.module-list {
  display: grid;
  gap: 0.55rem;
  align-content: start;
}

.module-list button {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) 18px;
  gap: 0.7rem;
  align-items: center;
  border: 1px solid var(--line);
  background: var(--white);
  color: #34465a;
  padding: 0.85rem;
  text-align: left;
}

.module-list button span {
  color: var(--brand);
  font-weight: 700;
}

.module-list button.active {
  border-color: var(--brand);
  background: var(--soft);
  color: var(--brand-dark);
}

.module-detail {
  position: sticky;
  top: 150px;
  min-height: 360px;
  padding: clamp(1.25rem, 3vw, 2.4rem);
}

.module-detail > span {
  color: var(--brand);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.module-detail h3 {
  margin: 0.8rem 0 1rem;
  color: var(--ink);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  line-height: 1.22;
}

.certificate-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 1fr);
  gap: clamp(1rem, 4vw, 3rem);
  align-items: center;
  padding: clamp(2rem, 5vw, 4rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--softest);
}

.certificate-section img {
  width: 100%;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: 0 16px 32px rgba(3, 105, 161, 0.12);
}

.enquiry-section {
  padding: clamp(2rem, 5vw, 4rem) 0;
}

.enquiry-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.enquiry-info h3 {
  margin: 0 0 1rem;
  color: var(--ink);
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.enquiry-info p {
  margin: 0 0 1rem;
  color: #666666;
  line-height: 1.6;
}

.enquiry-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
  padding: clamp(1rem, 3vw, 1.6rem);
  border: 1px solid rgba(100, 116, 139, 0.2);
  border-radius: 12px;
  background: linear-gradient(180deg, var(--brand) 0%, var(--brand-dark) 100%);
}

.enquiry-form label {
  display: grid;
  gap: 0.4rem;
  color: #fff;
}

.enquiry-form input,
.enquiry-form select,
.enquiry-form textarea {
  width: 100%;
  border: 1px solid rgba(100, 116, 139, 0.35);
  border-radius: 6px;
  padding: 0.78rem 0.85rem;
  color: var(--ink);
}

.enquiry-form input:focus,
.enquiry-form select:focus,
.enquiry-form textarea:focus {
  outline: 2px solid rgba(29, 140, 220, 0.2);
  border-color: var(--brand);
}

.error-message {
  color: #dc2626;
  font-size: 0.875rem;
  font-weight: 500;
  margin-top: 0.25rem;
}

.full-field,
.form-submit,
.form-message {
  grid-column: 1 / -1;
}

.consent {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  align-items: start;
  font-weight: 400;
  line-height: 1.45;
}

.consent input {
  width: 18px;
  margin-top: 0.25rem;
}

.form-submit {
  justify-self: start;
}

.form-message {
  margin: 0;
  color: var(--brand-deep);
  font-weight: 700;
}

.final-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  margin-top: clamp(1rem, 4vw, 3rem);
  margin-bottom: clamp(3rem, 6vw, 5rem);
  padding: clamp(1.4rem, 4vw, 2.4rem);
  border-radius: var(--radius);
  background: var(--ink);
}

.final-cta div {
  max-width: 760px;
}

.final-cta h2,
.final-cta p {
  color: var(--white);
}

.final-cta p {
  margin: 0.7rem 0 0;
  opacity: 0.88;
}

.footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
  background: var(--softest);
  
}

.footer img {
  width: 150px;
}

.footer p {
  margin: 0;
  color: var(--muted);
}




/*Whatsapp Floating Icon*/
.whatsapp-float {
  position: fixed;
  right: 25px;
  bottom: 25px;

  width: 62px;
  height: 62px;

  background: #25D366;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  text-decoration: none;
  overflow: hidden;

  z-index: 9999;

  box-shadow:
    0 10px 25px rgba(37, 211, 102, 0.45),
    0 4px 10px rgba(0,0,0,0.15);

  transition: all 0.3s ease;
  animation: whatsappPulse 2s infinite;
}

/* ICON */
.whatsapp-float img {
  width: 32px;
  height: 32px;

  display: block;
  object-fit: contain;
}

/* Hover */
.whatsapp-float:hover {
  transform: translateY(-5px) scale(1.08);

  box-shadow:
    0 14px 30px rgba(37, 211, 102, 0.6),
    0 6px 14px rgba(0,0,0,0.2);
}

/* Pulse Animation */
@keyframes whatsappPulse {
  0% {
    box-shadow:
      0 10px 25px rgba(37, 211, 102, 0.45),
      0 0 0 0 rgba(37, 211, 102, 0.5);
  }

  70% {
    box-shadow:
      0 10px 25px rgba(37, 211, 102, 0.45),
      0 0 0 18px rgba(37, 211, 102, 0);
  }

  100% {
    box-shadow:
      0 10px 25px rgba(37, 211, 102, 0.45),
      0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* Hide on Mobile */
@media (max-width: 768px) {
  .whatsapp-float {
    display: none !important;
  }
}


/* Hide on Mobile */
@media only screen and (max-width: 767px) {
  .footer,
  .faq-help-card img {
    display: none !important;
  }
}

.graduate-section,
.faq-section {
  padding: clamp(2rem, 5vw, 4rem) 0;
}

.section-heading h2 span,
.faq-grid h2 span {
  background: linear-gradient(120deg, var(--brand-deep), #67e8f9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.graduate-carousel-shell {
  position: relative;
}

.graduate-carousel {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(280px, 1fr);
  gap: 1rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  padding: 0.75rem 0.5rem 1rem;
  scrollbar-width: none;
}

.graduate-carousel.dragging {
  scroll-behavior: auto;
}

.graduate-carousel::-webkit-scrollbar {
  display: none;
}

.graduate-card {
  scroll-snap-align: start;
  min-width: 280px;
  border: 1px solid rgba(29, 140, 220, 0.24);
  border-radius: 18px;
  background: var(--white);
  padding: 1rem;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.graduate-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 35px rgba(15, 42, 68, 0.12);
}

.graduate-thumbnail {
  position: relative;
  width: 100%;
  height: 200px;
  border-radius: var(--radius);
  background-position: center;
  background-size: cover;
}

.play-story {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 0;
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.6);
  color: var(--white);
  padding: 10px;
  font-size: 16px;
  font-weight: 700;
}

.play-story:hover {
  background: rgba(0, 0, 0, 0.8);
}

.graduate-content {
  padding: 15px;
  text-align: left;
}

.graduate-text {
  margin: 0 0 10px;
  color: #333333;
  font-size: 14px;
  line-height: 1.6;
}

.read-more {
  border: 0;
  background: transparent;
  color: var(--brand);
  font-weight: 700;
  padding: 0;
}

.graduate-content strong {
  display: block;
  color: var(--ink);
  font-weight: 700;
  margin-top: 10px;
}

.graduate-content span {
  display: block;
  color: #777777;
  font-size: 12px;
  margin-top: 4px;
}

.carousel-btn {
  position: absolute;
  top: 42%;
  z-index: 2;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  color: var(--brand);
  font-size: 1.8rem;
  line-height: 1;
  box-shadow: 0 8px 18px rgba(15, 42, 68, 0.16);
}

.carousel-prev {
  left: -21px;
}

.carousel-next {
  right: -21px;
}

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(5px);
  padding: 1rem;
}

.video-modal.show {
  display: flex;
}

body.modal-open {
  overflow: hidden;
}

.video-modal-content {
  position: relative;
  width: min(860px, 100%);
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  background: #000000;
}

.video-modal-content iframe {
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: var(--radius);
}

.video-modal-close {
  position: absolute;
  top: -44px;
  right: 0;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: var(--white);
  color: var(--ink);
  font-size: 1.5rem;
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: clamp(1.25rem, 4vw, 3rem);
  align-items: start;
}

.faq-grid h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.85rem, 3vw, 2.65rem);
  line-height: 1.18;
}

.faq-list {
  display: grid;
  gap: 8px;
  margin-top: 1.5rem;
}

.faq-list .faq-item {
  border: 1px solid rgba(29, 140, 220, 0.24);
  border-radius: 16px;
  background: #ffffff;
  overflow: hidden;
  box-shadow: 0 18px 35px rgba(39, 100, 169, 0.06);
}

.faq-question {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 24px;
  gap: 0.75rem;
  align-items: center;
  width: 100%;
  border: 0;
  background: transparent;
  padding: 1.1rem 1.2rem;
  color: #212121;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
}

.faq-question::after {
  content: "⌄";
  transition: transform 0.3s ease;
  color: #1976d2;
  font-size: 1.15rem;
}

.faq-item.open .faq-question::after {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, opacity 0.35s ease;
  opacity: 0;
  padding: 0 1.2rem;
}

.faq-item.open .faq-answer {
  opacity: 1;
}

.faq-answer p {
  margin: 0;
  padding: 1rem 0 1.2rem;
  color: #555555;
  line-height: 1.75;
}

.faq-help-card {
  border-radius: 16px;
  background: var(--white);
  padding: 1rem;
}

.faq-help-card img {
  display: block;
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
  margin-bottom: 1rem;
}

.faq-help-card h3 {
  margin: 0 0 0.65rem;
  color: var(--brand);
  font-size: 1.35rem;
}

.faq-help-card p {
  color: #666666;
  line-height: 1.65;
}

.toast {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 120;
  max-width: min(360px, calc(100vw - 2rem));
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--white);
  padding: 0.9rem 1rem;
  box-shadow: 0 12px 30px rgba(15, 42, 68, 0.22);
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

.mobile-sticky {
  display: none;
}

@media (max-width: 1100px) {
  .hero,
  .split-section,
  .modules-layout,
  .certificate-section,
  .enquiry-grid {
    grid-template-columns: 1fr;
  }

  .quick-facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .module-detail {
    position: static;
  }
}

@media (max-width: 820px) {
  .header-nav {
    display: none;
  }
}

@media (max-width: 760px) {
  .site-header,
  .hero,
  .section-tabs {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .header-cta {
    display: none;
  }

  .quick-facts,
  .split-section,
  .modules-section,
  .certificate-section,
  .enquiry-section,
  .graduate-section,
  .faq-section,
  .final-cta {
    margin-left: 1rem;
    margin-right: 1rem;
  }

  .quick-facts,
  .include-grid,
  .enquiry-form {
    grid-template-columns: 1fr;
  }
  
  
  .quick-facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  
  .fa-hourglass-half,
  .fa-clock-o,
  .fa-video-camera,
  .fa-support {
      display: none !important;
  }
  
  .quick-facts article {
      display: flex;
      flex-direction: column;
      text-align: center;
      padding-top: 5px;
      padding-bottom: 5px;
  }

  .graduate-carousel {
    grid-auto-columns: 100%;
  }

  .carousel-btn {
    display: none;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .final-cta {
    align-items: stretch;
    flex-direction: column;
  }

  .primary-btn,
  .secondary-btn,
  .secondary-outline-btn {
    width: 100%;
  }

  .certificate-section {
    padding: 1rem;
  }

  .form-submit,
  .form-message {
    grid-column: 1;
  }

  .mobile-sticky {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 110;
    display: grid;
    grid-template-columns: 1fr 1fr;
    box-shadow: 0 -8px 20px rgba(15, 42, 68, 0.18);
  }

  .mobile-sticky button {
    border: 0;
    border-radius: 0;
    padding: 0.8rem 0.5rem;
  }

  .mobile-sticky button:first-child {
    background: var(--brand);
    color: var(--white);
  }

  .mobile-sticky button:last-child {
    background: var(--white);
    color: var(--brand);
    border-top: 1px solid rgba(29, 140, 220, 0.3);
  }

  .hero h1 {
    font-size: 35px;
  }
  
  .hero-subtitle {
    font-weight: 100;
    line-height: 1.4;
    font-size: 17px;
  }


  .enquiry-info {
    display: none;
  }

}



@media (max-width: 320px) {
    .quick-facts {
        grid-template-columns: 1fr;
    }
    
  .fa-hourglass-half,
  .fa-clock-o,
  .fa-video-camera,
  .fa-support {
      display: block !important;
      margin-bottom: 5px !important;
  }
}



/* ACTIVE SECTION TAB */

.section-tabs button {
  transition: all 0.3s ease;
}

.section-tabs button.active-tab {
  background-color: #1881CD;
  color: #fff;
  border-radius: 8px;
}

