/* section */
.saliva-section {
  display: block;
  margin-bottom: 50px;
}
/* image wrapper */
.saliva-section .saliva-wrapper {
  position: relative;
  display: inline-block;
}

/* main image */
.saliva-section .main-img {
  max-width: 850px;
}

/* info boxes */
.saliva-section .info-box {
  position: absolute;
  border-radius: 12px;
  background: var(--White, #fff);
  box-shadow: 0 24px 50px 0 rgba(0, 0, 0, 0.1);
  padding: 5px 16px;
  text-decoration: none;
  color: var(--Text-Navigation, #727272);
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 40px; /* 285.714% */
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* hover animation */
.saliva-section .info-box:hover {
  transform: translateY(-6px) scale(1.05);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
  color: #141b5d;
}

/* icon */
.saliva-section .icon {
  font-size: 18px;
}

/* positions */

.saliva-section .detect-box {
  left: 0%;
  top: 25%;
}

.saliva-section .home-box {
  right: -40px;
  top: 60px;
}

.saliva-section .review-box {
  right: -20%;
  bottom: 20%;
}
.saliva-section .expert-box {
  right: -30%;
  top: 40%;
}
.saliva-section .use-box {
  left: -20%;
  bottom: 10%;
}
.saliva-section-img {
  display: none;
}
/* responsive */

@media (max-width: 768px) {
  .saliva-section {
    display: none;
  }
  .saliva-section-img {
    display: block;
  }
}

.vid-con-hero-section {
  position: relative;
  background: url(../img/saliva-testing/ban-bg.webp) no-repeat center;
  background-size: cover;
  padding-bottom: 0px;
}

.den-section-btn-cta {
  color: #fff;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 135%;
  display: inline;
  padding: 12px 16px;
  gap: 10px;
  transition: all 0.3s;
  border-radius: 72px;
  background: #141b5d;
  box-shadow: 0 -1px 1px 0 rgba(0, 0, 0, 0.12) inset,
    0 1px 1.5px 0 rgba(255, 255, 255, 0.25) inset,
    0 2px 6px 0 rgba(74, 58, 255, 0.1);
  color: #fff;
  border: 1px solid #141b5d;
}

.den-section-btn-cta:hover {
  background: #141b5d;
  box-shadow: 0 -1px 1px 0 rgba(0, 0, 0, 0.12) inset,
    0 1px 1.5px 0 rgba(255, 255, 255, 0.25) inset,
    0 2px 6px 0 rgba(74, 58, 255, 0.1);
  color: #fff;
  border: 1px solid #141b5d;
}

/* =========================================
   Dual Audience Intro
========================================= */

.dual-audience-section {
  position: relative;
  background: #fff;
  overflow: hidden;
}

/* Audience Card */
.audience-card {
  position: relative;
  height: 100%;
  padding: 40px;
  gap: 25px;
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.35s ease;
}

/* Office Card */
.audience-office-card {
  border: 0.75px solid #e2e2e4;
  background: #fcfcfc;
  padding: 20px;
  height: 100%;
  border-radius: 24px;
}

/* Patient Card */
.audience-patient-card {
  border-radius: 24px;
  border: 0.75px solid #e2e2e4;
  background: #fcfcfc;
  padding: 20px;
  height: 100%;
}

/* Hover */
.audience-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 45px rgba(20, 27, 93, 0.1);
}

/* Icon */
.audience-card-icon {
  flex: 0 0 64px;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  font-size: 28px;
  transition: all 0.3s ease;
}

.audience-office-card .audience-card-icon {
  background: #1c3fc6;
  color: #fff;
}

.audience-patient-card .audience-card-icon {
  background: #fff;
  color: #1c3fc6;
  border: 1px solid #dfe2ec;
}

.audience-card:hover .audience-card-icon {
  transform: scale(1.08);
}

/* Content */
.audience-card-content {
  flex: 1;
}

.audience-card-label {
  display: inline-block;
  margin-bottom: 10px;
  color: #141b5d;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  font-style: normal;
  margin: auto;
  line-height: 200%;
}

/* Heading */
.audience-card h3 {
  margin-bottom: 0px;
  color: #58595b;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 200%;
}

/* Description */
.audience-card p {
  color: #58595b;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 200%;
}

/* CTA */
.audience-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  color: #1c3fc6;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;

  transition: all 0.3s ease;
}

.audience-card-link i {
  transition: transform 0.3s ease;
}

.audience-card-link:hover {
  color: #141b5d;
}

.audience-card-link:hover i {
  transform: translateX(5px);
}

/* =========================================
   Tablet
========================================= */

@media (max-width: 991.98px) {
  .audience-card {
    padding: 32px;
  }

  .audience-card h3 {
    font-size: 22px;
  }
}

/* =========================================
   Mobile
========================================= */

@media (max-width: 767.98px) {
  .audience-card {
    padding: 28px;
    gap: 18px;
    border-radius: 16px;
  }

  .audience-card-icon {
    flex: 0 0 54px;
    width: 54px;
    height: 54px;
    border-radius: 13px;
    font-size: 23px;
  }

  .audience-card h3 {
    font-size: 21px;
  }

  .audience-card p {
    font-size: 15px;
    line-height: 1.6;
  }
}

/* =========================================
   Small Mobile
========================================= */

@media (max-width: 575.98px) {
  .audience-card {
    display: block;
    padding: 25px;
  }

  .audience-card-icon {
    margin-bottom: 20px;
  }

  .audience-card h3 {
    font-size: 20px;
  }

  .audience-card p {
    font-size: 14px;
  }
}

/* =========================================
   PRODUCT & SERVICE TUTORIALS
========================================= */

.product-tutorials-section {
  position: relative;
  background: #141b5d;
  overflow: hidden;
}

/* Section Label */
.tutorial-section-label {
  color: #fff;
  text-align: center;
  font-size: 40px;
  font-weight: 700;
  line-height: 120%;
}

/* Section Heading */
.product-tutorials-section .den-section-title {
  color: #fff;
  text-align: center;
}

.product-tutorials-section .den-section-subtext {
  color: #cbd2ec;
  text-align: center;
}

/* =========================================
   Tutorial Grid
========================================= */

.tutorial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* =========================================
   Tutorial Card
========================================= */

.tutorial-card {
  min-height: 230px;

  display: flex;
  align-items: flex-start;
  gap: 20px;

  padding: 28px;

  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 18px;

  text-decoration: none;

  transition: transform 0.35s ease, background 0.35s ease,
    border-color 0.35s ease, box-shadow 0.35s ease;
}

.tutorial-card:hover {
  transform: translateY(-6px);

  background: rgba(255, 255, 255, 0.11);
  border-color: rgba(255, 255, 255, 0.25);

  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

/* =========================================
   Tutorial Icon
========================================= */

.tutorial-icon {
  flex: 0 0 58px;

  width: 58px;
  height: 58px;

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

  border-radius: 15px;

  background: #fff;
  color: #1c3fc6;

  font-size: 25px;

  transition: transform 0.3s ease, background 0.3s ease;
}

.tutorial-card:hover .tutorial-icon {
  transform: scale(1.08);
  background: #e9edff;
}

/* =========================================
   Tutorial Content
========================================= */

.tutorial-content {
  flex: 1;
}

.tutorial-type {
  display: block;
  margin-bottom: 7px;

  color: #9fb1ff;

  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
}

/* Title */
.tutorial-content h3 {
  margin: 0 0 9px;

  color: #fff;

  font-size: 19px;
  font-weight: 700;
  line-height: 1.35;
}

/* Description */
.tutorial-content p {
  margin: 0 0 18px;

  color: #cbd2ec;

  font-size: 14px;
  line-height: 1.6;
}

/* Link */
.tutorial-link {
  min-height: 44px;

  display: inline-flex;
  align-items: center;
  gap: 7px;

  color: #fff;

  font-size: 14px;
  font-weight: 700;
}

.tutorial-link i {
  font-size: 13px;

  transition: transform 0.3s ease;
}

.tutorial-card:hover .tutorial-link i {
  transform: translate(3px, -3px);
}

/* =========================================
   TABLET
========================================= */

@media (max-width: 991.98px) {
  .tutorial-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .tutorial-card {
    min-height: 220px;
    padding: 24px;
  }
}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 767.98px) {
  .product-tutorials-section {
    padding-top: 45px !important;
    padding-bottom: 45px !important;
  }

  /*
       Horizontal scrolling tutorial cards
       on mobile
    */
  .tutorial-grid {
    display: flex;

    gap: 15px;

    overflow-x: auto;
    overflow-y: hidden;

    padding-bottom: 15px;

    scroll-snap-type: x mandatory;

    -webkit-overflow-scrolling: touch;

    scrollbar-width: thin;
  }

  .tutorial-grid::-webkit-scrollbar {
    height: 5px;
  }

  .tutorial-grid::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 10px;
  }

  .tutorial-card {
    flex: 0 0 82%;
    min-height: 215px;

    scroll-snap-align: start;

    padding: 23px;
  }
}

/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 575.98px) {
  .tutorial-card {
    flex-basis: 88%;
    gap: 16px;
    padding: 21px;
    border-radius: 15px;
  }

  .tutorial-icon {
    flex: 0 0 52px;
    width: 52px;
    height: 52px;
    border-radius: 13px;
    font-size: 22px;
  }

  .tutorial-content h3 {
    font-size: 17px;
  }

  .tutorial-content p {
    font-size: 13px;
  }
}

/* ==========================================
   Patient Video Language Tabs
========================================== */

.patient-video-tabs-section {
  padding: 20px 0 10px 0;
}

.patient_video_button {
  display: flex;
  justify-content: center;
}

/* Main tab container */
.patient_video_link {
  display: inline-flex;
  align-items: center;
  gap: 5px;

  padding: 6px;

  margin: 0 auto 20px;

  background: #f5f7fb;
  border: 1px solid #e4e8f0;

  border-radius: 50px;

  box-shadow: 0 8px 25px rgba(20, 27, 93, 0.08);

  position: relative;
}

/* Remove Bootstrap default */
.patient_video_link .nav-item {
  margin: 0;
}

/* Tab button */
.patient_video_link .nav-link {
  position: relative;

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

  gap: 8px;

  min-width: 170px;

  padding: 12px 24px;

  border: 0;
  border-radius: 40px;

  background: transparent;

  color: #5f6775;

  font-size: 15px;
  font-weight: 600;

  transition: color 0.35s ease, transform 0.3s ease, box-shadow 0.35s ease;
}

/* Icon */
.patient_video_link .tab-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  font-size: 17px;

  transition: transform 0.35s ease, opacity 0.35s ease;
}

/* Hover */
.patient_video_link .nav-link:hover {
  color: #141b5d;
  transform: translateY(-1px);
}

/* Active */
.patient_video_link .nav-link.active {
  color: #ffffff;
  background: #141b5d;

  box-shadow: 0 7px 18px rgba(28, 63, 198, 0.25);
}

/* Active icon */
.patient_video_link .nav-link.active .tab-icon {
  transform: scale(1.1);
}

/* ==========================================
   Tab Content Animation
========================================== */

.patient-video-content-section {
  padding-bottom: 80px;
}

.patient-video-content-section .tab-pane {
  transform: translateY(20px);
}

.patient-video-content-section .tab-pane.show {
  animation: videoContentFade 0.5s ease forwards;
}

@keyframes videoContentFade {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ==========================================
   Video Cards Animation
========================================== */

.patient-video-content-section .video-category-card {
  animation: videoCardFade 0.55s ease both;
}

.patient-video-content-section .col-lg-3:nth-child(1) .video-category-card {
  animation-delay: 0.05s;
}

.patient-video-content-section .col-lg-3:nth-child(2) .video-category-card {
  animation-delay: 0.1s;
}

.patient-video-content-section .col-lg-3:nth-child(3) .video-category-card {
  animation-delay: 0.15s;
}

.patient-video-content-section .col-lg-3:nth-child(4) .video-category-card {
  animation-delay: 0.2s;
}

.patient-video-content-section .col-lg-3:nth-child(5) .video-category-card {
  animation-delay: 0.25s;
}

.patient-video-content-section .col-lg-3:nth-child(6) .video-category-card {
  animation-delay: 0.3s;
}

.patient-video-content-section .col-lg-3:nth-child(7) .video-category-card {
  animation-delay: 0.35s;
}

.patient-video-content-section .col-lg-3:nth-child(8) .video-category-card {
  animation-delay: 0.4s;
}

@keyframes videoCardFade {
  from {
    opacity: 0;
    transform: translateY(15px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ==========================================
   Mobile
========================================== */

@media (max-width: 575.98px) {
  .patient_video_link {
    width: 100%;
    max-width: 360px;

    padding: 5px;

    gap: 3px;
  }

  .patient_video_link .nav-item {
    flex: 1;
  }

  .patient_video_link .nav-link {
    width: 100%;
    min-width: 0;

    padding: 11px 10px;

    font-size: 13px;

    gap: 5px;
  }

  .patient_video_link .tab-icon {
    font-size: 15px;
  }
}

/* =========================================
   VIDEO CATEGORIES
========================================= */

.video-categories-section {
  background: #fff;
}

.video-category-group {
  margin-bottom: 75px;
}

.video-category-group:last-child {
  margin-bottom: 0;
}

/* Category Heading */
.video-category-heading {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 30px;
}

.video-category-number {
  flex: 0 0 48px;
  width: 48px;
  height: 48px;

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

  border-radius: 12px;
  background: #1c3fc6;
  color: #fff;

  font-size: 14px;
  font-weight: 700;
}

.video-category-heading h3 {
  margin: 0 0 8px;

  color: #141b5d;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.3;
}

.video-category-heading p {
  max-width: 850px;
  margin: 0;

  color: #656b7b;
  font-size: 16px;
  line-height: 1.7;
}

/* =========================================
   VIDEO CARD
========================================= */

.video-category-card {
  display: flex;
  flex-direction: column;
  height: 100%;

  overflow: hidden;

  background: rgb(255, 255, 255);
  border: 1px solid rgb(229, 233, 242);
  border-radius: 18px;
  box-shadow: rgba(20, 27, 93, 0.06) 0px 8px 30px;

  text-decoration: none;

  transition: transform 0.35s ease, box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.video-category-card:hover {
  transform: translateY(-6px);
  border-color: #cbd4f5;
  box-shadow: 0 15px 35px rgba(20, 27, 93, 0.12);
}

/* Image */
.video-card-image {
  position: relative;
  height: 190px;
  overflow: hidden;
  background: #eef1f7;
}

.video-card-image img {
  width: 100%;
  height: 100%;

  object-fit: cover;
  display: block;

  transition: transform 0.45s ease;
}

.video-category-card:hover .video-card-image img {
  transform: scale(1.06);
}

/* Video Count */
.video-count-badge {
  position: absolute;
  top: 12px;
  right: 12px;

  padding: 6px 10px;

  background: rgba(20, 27, 93, 0.9);
  color: #fff;

  border-radius: 20px;

  font-size: 12px;
  font-weight: 700;

  white-space: nowrap;
}

/* Play Button */
.video-play-button {
  position: absolute;
  left: 50%;
  top: 50%;

  width: 52px;
  height: 52px;

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

  transform: translate(-50%, -50%);

  background: rgba(255, 255, 255, 0.95);
  color: #141b5d;

  border-radius: 50%;

  font-size: 25px;

  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);

  transition: transform 0.3s ease, background 0.3s ease;
}

.video-category-card:hover .video-play-button {
  transform: translate(-50%, -50%) scale(1.1);
  background: #141b5d;
  color: #fff;
}

/* Card Body */
.video-card-body {
  flex: 1;

  display: flex;
  flex-direction: column;

  padding: 22px;
}

.video-card-body h4 {
  margin-bottom: 10px;

  color: #141b5d;

  font-size: 19px;
  font-weight: 700;
  line-height: 1.35;
}

.video-card-body p {
  flex: 1;
  margin-bottom: 18px;
  color: rgb(88, 89, 91);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 180%;
}

/* Card Link */
.video-card-link {
  min-height: 44px;

  display: inline-flex;
  align-items: center;
  gap: 7px;

  color: #141b5d;

  font-size: 14px;
  font-weight: 700;
}

.video-card-link i {
  transition: transform 0.3s ease;
}

.video-category-card:hover .video-card-link i {
  transform: translateX(5px);
}

/* =========================================
   TABLET
========================================= */

@media (max-width: 991.98px) {
  .video-category-group {
    margin-bottom: 60px;
  }

  .video-category-heading h3 {
    font-size: 25px;
  }

  .video-card-image {
    height: 180px;
  }
}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 767.98px) {
  .video-category-group {
    margin-bottom: 50px;
  }

  .video-category-heading {
    gap: 14px;
    margin-bottom: 24px;
  }

  .video-category-number {
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    border-radius: 10px;
  }

  .video-category-heading h3 {
    font-size: 22px;
  }

  .video-category-heading p {
    font-size: 14px;
  }

  .video-card-image {
    height: 200px;
  }

  .video-card-body {
    padding: 20px;
  }
}

/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 575.98px) {
  .video-category-heading {
    display: block;
  }

  .video-category-number {
    margin-bottom: 15px;
  }

  .video-category-heading h3 {
    font-size: 21px;
  }

  .video-card-image {
    height: 210px;
  }

  .video-card-body h4 {
    font-size: 18px;
  }

  .video-card-body p {
    font-size: 14px;
  }
}

/* ==========================================
   DENTAL OFFICES SECTION
========================================== */

.dental-office-section {
  position: relative;
  overflow: hidden;
  padding-top: 80px;
  padding-bottom: 80px;
}

/* Decorative background */
.dental-office-section::before {
  content: "";
  position: absolute;

  width: 420px;
  height: 420px;

  top: -220px;
  right: -180px;

  border-radius: 50%;

  background: rgba(28, 63, 198, 0.06);

  pointer-events: none;
}

/* Eyebrow */
.dental-office-eyebrow {
  color: #141b5d;
  text-align: center;
  font-size: 40px;
  font-weight: 700;
  line-height: 120%;
}

/* Feature Card */
.dental-office-feature-card {
  height: 100%;

  display: flex;
  align-items: flex-start;

  gap: 22px;

  padding: 32px;

  background: #ffffff;

  border: 1px solid #e5e9f2;

  border-radius: 18px;

  box-shadow: 0 8px 30px rgba(20, 27, 93, 0.06);

  transition: transform 0.35s ease, box-shadow 0.35s ease,
    border-color 0.35s ease;
}

/* Card Hover */
.dental-office-feature-card:hover {
  transform: translateY(-6px);

  border-color: rgba(28, 63, 198, 0.2);

  box-shadow: 0 18px 40px rgba(20, 27, 93, 0.12);
}

/* Icon */
.dental-office-icon {
  flex: 0 0 58px;

  width: 58px;
  height: 58px;

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

  border-radius: 14px;

  background: #eef2ff;

  color: #1c3fc6;

  font-size: 25px;

  transition: background 0.35s ease, color 0.35s ease, transform 0.35s ease;
}

/* Icon Hover */
.dental-office-feature-card:hover .dental-office-icon {
  background: #1c3fc6;

  color: #ffffff;

  transform: scale(1.08) rotate(-3deg);
}

/* Card Content */
.dental-office-content h3 {
  color: #58595b;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 200%;
}

.dental-office-content p {
  color: #58595b;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 200%;
}

/* CTA */
.dental-office-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  gap: 10px;

  padding: 13px 25px;

  border-radius: 8px;

  background: #141b5d;

  color: #ffffff;

  font-size: 15px;
  font-weight: 600;

  border: 1px solid #141b5d;

  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.dental-office-cta:hover {
  background: #141b5d;

  color: #ffffff;

  transform: translateY(-2px);

  box-shadow: 0 10px 25px rgba(28, 63, 198, 0.22);
}

.dental-office-cta i {
  transition: transform 0.3s ease;
}

.dental-office-cta:hover i {
  transform: translateX(4px);
}

/* ==========================================
   MOBILE
========================================== */

@media (max-width: 767.98px) {
  .dental-office-section {
    padding-top: 65px;
    padding-bottom: 65px;
  }

  .dental-office-feature-card {
    padding: 25px;

    gap: 17px;

    border-radius: 15px;
  }

  .dental-office-icon {
    flex: 0 0 50px;

    width: 50px;
    height: 50px;

    font-size: 21px;
  }

  .dental-office-content h3 {
    font-size: 18px;
  }

  .dental-office-content p {
    font-size: 14px;
    line-height: 1.65;
  }
}

/* Extra Small Screens */
@media (max-width: 479.98px) {
  .dental-office-feature-card {
    display: block;
  }

  .dental-office-icon {
    margin-bottom: 18px;
  }
}

/* ==========================================
   FOR PATIENTS — AT-HOME LEARNING
========================================== */

.patient-home-learning-section {
  padding-top: 80px;
  padding-bottom: 80px;
}

/* Eyebrow */
.patient-learning-eyebrow {
  color: #141b5d;
  text-align: center;
  font-size: 40px;
  font-weight: 700;
  line-height: 120%;
}

/* ==========================================
   Learning Cards
========================================== */

.patient-learning-card {
  border-radius: 16px;
  border: 0.5px solid #d8d8d8;
  background: #fff;
  box-shadow: 4px 4px 4px 0 rgba(227, 223, 255, 0.18);
  padding: 20px;
  height: 100%;

  transition: transform 0.35s ease, box-shadow 0.35s ease,
    border-color 0.35s ease;
}

/* Hover */
.patient-learning-card:hover {
  transform: translateY(-7px);

  border-color: rgba(28, 63, 198, 0.18);

  box-shadow: 0 18px 40px rgba(70, 55, 40, 0.11);
}

/* ==========================================
   Icon
========================================== */

.patient-learning-icon {
  width: 68px;
  height: 68px;

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

  margin: 0 auto 22px;

  border-radius: 18px;

  background: #eef2ff;

  color: #1c3fc6;

  font-size: 28px;

  transition: transform 0.35s ease, background 0.35s ease, color 0.35s ease;
}

/* Icon Hover */
.patient-learning-card:hover .patient-learning-icon {
  background: #1c3fc6;

  color: #ffffff;

  transform: translateY(-3px) scale(1.08);
}

/* ==========================================
   Content
========================================== */

.patient-learning-content h3 {
  margin-bottom: 13px;
  color: #58595b;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 200%;
}

.patient-learning-content p {
  color: #58595b;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 217.188%;
  margin-bottom: 0;
}

/* ==========================================
   Mobile
========================================== */

@media (max-width: 767.98px) {
  .patient-home-learning-section {
    padding-top: 65px;
    padding-bottom: 65px;
  }

  .patient-learning-card {
    padding: 28px 24px;
  }

  .patient-learning-icon {
    width: 60px;
    height: 60px;

    margin-bottom: 18px;

    font-size: 24px;

    border-radius: 15px;
  }

  .patient-learning-content h3 {
    font-size: 18px;
  }

  .patient-learning-content p {
    font-size: 14px;
    line-height: 1.7;
  }
}



