/* InMode Design System */

/* FONTS */
/* We're now using TypeKit fonts loaded via link in the HTML head */

/* TYPOGRAPHY */
h1, .h1 {
  font-family: 'brandon-grotesque', sans-serif;
  font-weight: 500;
  font-size: 3.75rem;
  line-height: 4.125rem;
  letter-spacing: 0.5625rem;
  color: #000;
}

h2, .h2 {
  font-family: 'brandon-grotesque', sans-serif;
  font-weight: 450;
  font-size: 2.1875rem;
  line-height: 2.4375rem;
  letter-spacing: 0.328125rem;
  color: #000;
}

h3, .h3 {
  font-family: 'brandon-grotesque', sans-serif;
  font-weight: 450;
  font-size: 1.25rem;
  line-height: 1.5625rem;
  letter-spacing: 0.1875rem;
  color: #000;
}

h4, .h4 {
  font-family: 'brandon-grotesque', sans-serif;
  font-weight: 450;
  font-size: 1.125rem;
  line-height: 1.25rem;
  color: #000;
}

/* PARAGRAPH STYLES */
.p1 {
  font-family: 'franklin-gothic-atf', sans-serif;
  font-weight: 400;
  font-size: 1.5625rem;
  line-height: 2rem;
  color: #000;
}

.p2 {
  font-family: 'franklin-gothic-atf', sans-serif;
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 1.875rem;
  color: #000;
}

.p3 {
  font-family: 'franklin-gothic-atf', sans-serif;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.125rem;
  color: #000;
}

.caption {
  font-family: 'franklin-gothic-atf', sans-serif;
  font-weight: 400;
  font-size: 0.6875rem;
  line-height: 1rem;
  color: #000;
}

/* COLORS */
:root {
  --teal: #59B7B3;
  --soft-black: #221F20;
  --midnight: #0D1F2C;
  --chrome: #4F5050;
  --white: #FFFFFF;
}

.bg-teal {
  background-color: var(--teal);
}

.bg-soft-black {
  background-color: var(--soft-black);
}

.bg-midnight {
  background-color: var(--midnight);
}

.bg-chrome {
  background-color: var(--chrome);
}

.text-teal {
  color: var(--teal);
}

.text-soft-black {
  color: var(--soft-black);
}

.text-midnight {
  color: var(--midnight);
}

.text-chrome {
  color: var(--chrome);
}

/* GRADIENTS */
.bg-teal-gradient {
  background: linear-gradient(270deg, #59B7B3 0%, #021F2C 100%);
}

.bg-teal-gradient-reverse {
  background: linear-gradient(270deg, #021F2C 0%, #59B7B3 100%);
}

.bg-chrome-gradient {
  background: radial-gradient(ellipse 50% 50% at 50% 50%, #D9D9D9 0%, #737373 100%);
}
.bg-teal-gradient-start {
  background: linear-gradient(270deg, #59B7B3 0%, #021F2C 100%);
  background-size: 1320px;
  background-position: left;
}
.bg-teal-gradient-mid{
  background: linear-gradient(270deg, #59B7B3 0%, #021F2C 100%);
  background-size: 1320px;
  background-position: center;
}
.bg-teal-gradient-end {
  background: linear-gradient(270deg, #59B7B3 0%, #021F2C 100%);
  background-size: 1320px;
  background-position: right;
}
.bradius-20 {
  border-radius: 1.25rem;
}

/* BUTTONS */
.btn-large {
  font-family: 'brandon-grotesque', sans-serif;
  font-weight: 450;
  font-size: 1.25rem;
  line-height: 1.375rem;
  letter-spacing: 0.1875rem;
  text-transform: uppercase;
  padding: 1.3125rem 1.875rem;
  border-radius: 0.625rem;
}

.btn-medium {
  font-family: 'brandon-grotesque', sans-serif;
  font-weight: 450;
  font-size: 1.125rem;
  line-height: 1.25rem;
  letter-spacing: 0.16875rem;
  text-transform: uppercase;
  padding: 1rem 1.875rem;
  border-radius: 0.625rem;
}

.btn-small {
  font-family: 'brandon-grotesque', sans-serif;
  font-weight: 450;
  font-size: 0.75rem;
  line-height: 1rem;
  letter-spacing: 0.1125rem;
  text-transform: uppercase;
  padding: 0.75rem 1.3125rem;
  border-radius: 0.625rem;
}

.btn-teal-gradient {
  background: linear-gradient(270deg, #59B7B3 0%, #021F2C 100%);
  color: var(--white);
  outline: 0.1875rem solid #D9D9D9;
  outline-offset: -0.1875rem;
  border: none;
}

.btn-teal-gradient:hover {
  background: linear-gradient(270deg, #021F2C 0%, #59B7B3 100%);
  color: var(--white);
}

.btn-teal-gradient:focus,
.btn-teal-gradient:active,
.btn-teal-gradient:focus-visible {
  background: linear-gradient(270deg, #59B7B3 0%, #021F2C 100%) !important;
  color: var(--white) !important;
  box-shadow: none !important;
  outline: 0.1875rem solid #D9D9D9 !important;
  outline-offset: -0.1875rem !important;
  border: none !important;
}

/* LINKS */
a {
  color: var(--soft-black);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--teal);
}

.white-bg-link {
  color: var(--soft-black);
}

.white-bg-link:hover {
  color: var(--teal);
}

.dark-bg-link {
  color: var(--white);
}

.dark-bg-link:hover {
  color: var(--teal);
}

.gradient-bg-link {
  color: var(--white);
}

.gradient-bg-link:hover {
  color: var(--soft-black);
}

p a {
  text-decoration: underline;
}

/* COMPONENTS */
/* Navigation */
.navigation-section {
  background-color: var(--soft-black);
  width: 100%;
  position: sticky;
  top: 0;
  left: 0;
  z-index: 999;
}

.navigation-section .container {
  display: flex;
  height: 9.375rem;
  position: relative;
}

.navbar {
  background-color: var(--soft-black);
  height: 9.375rem;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0;
}

.navbar-brand {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.navbar-brand img {
  max-height: 5rem;
  width: auto;
}

.navbar .dropdown {
  position: absolute;
  right: 0;
  top: 3.125rem;
}
.navbar .dropdown .icon{
  margin-top: 0.75rem;
}

/* Header Search Form - Desktop */
.search-container.d-none.d-xl-block,
.search-container.d-none.d-xl-none {
  margin: 0 auto;
  max-width: 327px;
  position: absolute;
  right: 350px;
  top: 3.125rem;
}

.search-container.d-none.d-xl-block .input-group,
.search-container.d-block.d-xl-none .input-group {
  border: 1px solid var(--teal);
  border-radius: 1rem;
  overflow: hidden;
  background-color: transparent;
}

.search-container.d-none.d-xl-block .form-control,
.search-container.d-block.d-xl-none .form-control {
  background-color: transparent;
  border: none;
  color: var(--white);
  font-family: 'brandon-grotesque', sans-serif;
  font-weight: 450;
  letter-spacing: 0.1rem;
  padding: 0.5rem 1rem;
}

.search-container.d-none.d-xl-block .form-control::placeholder,
.search-container.d-block.d-xl-none .form-control::placeholder {
  color: var(--white);
  opacity: 1;
}

.search-container.d-none.d-xl-block .btn,
.search-container.d-block.d-xl-none .btn {
  background-color: transparent;
  border: none;
  padding: 0.5rem 1rem;
}

.search-container.d-none.d-xl-block .btn img,
.search-container.d-block.d-xl-none .btn img {
  width: 20px;
  height: 20px;
  margin-top: -0.25rem;
}

/* BROWSE button styling */
.btn-outline-teal {
  background-color: var(--soft-black);
  border: 0.0625rem solid var(--teal);
  font-family: 'brandon-grotesque', sans-serif;
  font-weight: 450;
  font-size: 1.25rem;
  line-height: 1.5625rem;
  letter-spacing: 0.1875rem;
  width: 20.4375rem;
  height: 3rem;
  border-radius: 1rem;
  color: var(--white);
  padding: 0;
}

.btn-outline-teal:hover,
.btn-outline-teal:focus {
  background-color: var(--soft-black);
  border-color: var(--teal);
  color: var(--white);
}

.dropdown .btn-outline-teal {
  border: 0.0625rem solid var(--teal) !important;
}

.icon {
  width: 1.5rem;
  height: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.icon img {
  transition: transform 0.3s ease;
}

.navbar-toggler {
  border-color: var(--teal);
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2889, 183, 179, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Combined Menu Styling */
.dropdown-menu {
  background-color: var(--soft-black);
  border: 0.0625rem solid var(--teal);
  border-radius: 1rem;
  width: 100%;
  max-width: 20.4375rem;
  margin-top: 0.5rem;
  padding: 0;
  overflow: visible;
  box-shadow: 0 0.25rem 1.25rem rgba(0, 0, 0, 0.2);
  display: none; /* Hidden by default */
  position: absolute;
  right: 0;
  z-index: 100;
}

.dropdown-menu.show {
  display: block;
  top: 6.25rem; /* Position below the browse button */
}

/* For mobile dropdown menu */
@media (max-width: 991.98px) {
  .navbar .dropdown {
    top: unset;
  }
  
  .navbar .dropdown img {
    display: block;
  }
  
  .dropdown-menu#menuDropdown {
    position: absolute;
    top: 5.1875rem !important;
    left: 0;
    right: 0;
    margin: 0 auto;
  }
  
  /* Mobile submenu styling */

  .submenu-items.mobile-view {
    max-width: 20.4375rem;
    max-height: 335px;
    overflow-y: scroll;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;
  }
  
  .submenu-items.mobile-view.show {
    top: 10.9375rem;
  }
  
  /* Mobile navigation general styles */
  .navigation-section {
    height: 5.0625rem;
  }
  
  .navigation-section .container {
    height: 5.0625rem;
    padding: 0 1.875rem;
  }
  
  .navbar {
    height: 5.0625rem;
    position: relative;
  }
  
  .navbar-brand {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
  }
  
  .navbar-brand img {
    max-height: 3rem;
  }
  
  .menu-categories .dropdown-item,
  .submenu-items .dropdown-item {
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
  }
}

/* Menu structure */
.menu-categories {
  border-radius: 1rem;
  overflow: hidden;
}

/* Main Category Items */
.menu-categories .dropdown-item {
  padding: 0.9375rem 1.25rem;
  font-family: 'brandon-grotesque', sans-serif;
  font-size: 1.125rem;
  font-weight: 450;
  letter-spacing: 0.125rem;
  color: var(--white);
  background-color: var(--soft-black);
  transition: all 0.3s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.menu-categories .dropdown-item:hover,
.menu-categories .dropdown-item:focus,
.menu-categories .dropdown-item.active {
  background-color: #4F5050;
  color: var(--white);
}

/* Indicator for category items */
.indicator {
  width: 0.375rem;
  height: 1.5rem;
  background-color: var(--teal);
  display: block;
  border-radius: 0.1875rem;
}

/* Submenu Items Container */
.submenu-items {
  background-color: var(--soft-black);
  border: 0.0625rem solid var(--teal);
  border-radius: 1rem;
  margin-top: 0rem;
  box-shadow: 0 0.25rem 1.25rem rgba(0, 0, 0, 0.2);
  overflow: hidden;
  display: none;
  position: absolute;
  right: 0;
  z-index: 1000;
}

.submenu-items .dropdown-item {
  padding: 0.9375rem 1.25rem;
  font-family: 'brandon-grotesque', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.0625rem;
  color: var(--white);
  transition: all 0.3s ease;
  position: relative;
  border-top: 0.0625rem solid rgba(89, 183, 179, 0.1);
}

.submenu-items .dropdown-item:first-child {
  border-top: none;
}

.submenu-items .dropdown-item:hover,
.submenu-items .dropdown-item:focus {
  background-color: rgba(89, 183, 179, 0.1);
  color: var(--teal);
}

.submenu-items.show {
  display: block;
  top: 14.5rem;
}

/* Mobile Menu Styles */
.custom-toggler {
  border: none;
  padding: 0;
  width: 1.625rem;
  height: 1rem;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 100;
  background-color: transparent;
}

.custom-toggler:focus {
  box-shadow: none;
}

.custom-toggler img {
  transition: transform 0.3s ease;
}

/* Adjust selectors for menu icons when dropdown is opened */
#menuDropdown.show ~ .navbar-toggler img {
  transform: rotate(90deg);
}

/* For desktop browse button */
#menuDropdown.show + #browseDropdown .icon img,
#browseDropdown[aria-expanded="true"] .icon img {
  transform: rotate(180deg);
}

/* Footer */
.footer {
  background: linear-gradient(270deg, #59B7B3 0%, #021F2C 100%);
  padding: 5rem 0;
}

.footer-logo {
  max-width: 15rem;
  margin-bottom: 2.5rem;
}

.contact-title {
  font-family: 'brandon-grotesque', sans-serif;
  font-weight: 450;
  font-size: 1.25rem;
  line-height: 1.5625rem;
  letter-spacing: 0.1875rem;
  color: var(--white);
  margin-bottom: 0.9375rem;
}

.contact-email {
  font-family: 'brandon-grotesque', sans-serif;
  font-weight: 450;
  font-size: 1.375rem;
  line-height: 1.875rem;
}

.social-icons {
  /*margin-bottom: 1.875rem;*/
}

.social-icons a {
  margin: 0 0.78rem;
  color: var(--white);
}
.social-icons a:hover svg path{  
  fill: var(--soft-black);
}
.footer-links {
  font-family: 'brandon-grotesque', sans-serif;
  font-weight: 450;
  font-size: 1.125rem;
  line-height: 1.875rem;
  color: var(--white);
}

.footer-links a {
  color: var(--white);
  margin: 0 0.9375rem;
}

/* RESPONSIVE ADJUSTMENTS */
@media (max-width: 991.98px) {
  .dropdown-menu {
    border: none;
    border-radius: 0;
  }

  .submenu-items{
    border: none;
    border-radius: 0;
  }

  .menu-categories{
    border-radius: 0;
  }

  .submenu-items{
    border-top: 0.0625rem solid var(--teal);
  }

  h1, .h1 {
    font-size: 2.1875rem;
    line-height: 2.375rem;
    letter-spacing: 0.328125rem;
  }
  
  h2, .h2 {
    font-size: 1.75rem;
    line-height: 2.125rem;
    letter-spacing: 0.2625rem;
  }
  
  h3, .h3 {
    font-size: 0.9375rem;
    line-height: 1.125rem;
    letter-spacing: 0.140625rem;
  }
  
  h4, .h4 {
    font-size: 1.1875rem;
    line-height: 1.25rem;
  }
  
  .btn-large {
    font-size: 0.875rem;
    line-height: 1rem;
    letter-spacing: 0.13125rem;
    padding: 1.3125rem 1.875rem;
  }
  
  .btn-medium {
    font-size: 0.75rem;
    line-height: 0.875rem;
    letter-spacing: 0.1125rem;
  }
  
  .btn-small {
    font-size: 0.75rem;
    line-height: 0.75rem;
    letter-spacing: 0.1125rem;
    border-radius: 0.3125rem;
  }
  .social-icons a{
    margin: 0 0.125rem;
  }
}

/* Logo Carousel Section */
.logo-carousel-section {
  background-color: var(--white);
  overflow: hidden;
  padding: 2rem 0;
  position: relative;
}

.logo-carousel {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.logo-slider {
  display: flex;
  align-items: center;
  animation: scrollLogos 30s linear infinite;
  width: max-content;
  padding: 1rem 0;
}

.logo-item {
  flex: 0 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 2.5rem;
  transition: all 0.3s ease;
}

.logo-item img {
  max-height: 5rem;
  width: auto;
  object-fit: contain;
  filter: grayscale(0);
  opacity: 1;
  transition: all 0.3s ease;
}

.logo-item:hover img {
  transform: scale(1.05);
}

@keyframes scrollLogos {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Responsive adjustments for logo carousel */
@media (max-width: 1199.98px) {
  .logo-item {
    padding: 0 2rem;
  }
  
  .logo-item img {
    max-height: 4.375rem;
  }
}

@media (max-width: 991.98px) {
  .logo-carousel-section {
    padding: 1.5rem 0;
  }
  
  .logo-item {
    padding: 0 1.5rem;
  }
  
  .logo-item img {
    max-height: 3.75rem;
  }
}

@media (max-width: 767.98px) {
  .logo-carousel-section {
    padding: 1rem 0;
  }
  
  .logo-item {
    padding: 0 1.25rem;
  }
  
  .logo-item img {
    max-height: 3.125rem;
  }
}

@media (max-width: 575.98px) {
  .logo-item {
    padding: 0 1rem;
  }
  
  .logo-item img {
    max-height: 2.5rem;
  }
}

/* Hero Section */
.hero-section {
  width: 100%;
  overflow: hidden;
  position: relative;
  min-height: 28.625rem;
}

.hero-content {
  max-width: 37.5rem;
  padding: 4rem 0;
}

.search-container {
  border-radius: 0.9375rem;
  width: 35.1875rem;
  max-width: 100%;
}

.search-container .input-group-text {
  color: var(--white);
}

.search-container .form-control {
  color: var(--white);
  font-size: 1.25rem;
  height: auto;
  background-color: transparent;
  flex: 1;
}

.search-container .form-control::placeholder {
  color: var(--white);
  opacity: 1;
}

.search-container .form-control:focus {
  box-shadow: none;
  outline: none;
}

.hero-image-container {
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center left;
}

.z-index-1 {
  z-index: 1;
}

@media (max-width: 991.98px) {
  .hero-section {
    min-height: auto;
  }
  
  .hero-content {
    padding: 3rem 0;
    margin: 0 auto;
    max-width: 100%;
    text-align: center;
  }

  .hero-image{
    object-position: center;
  }
  
  .search-container {
    margin: 0 auto;
    min-height: auto;
  }
  
  .search-container .btn {
    padding: 0.75rem 1rem;
  }
  
  .hero-image-container {
    width: 100%;
    /*background-color: var(--chrome);*/
  }

  .hero-image-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
  }
  
  .hero-image-container::after {
    background: rgba(0, 0, 0, 0.3);
  }
  .search-container .form-control{
    font-size: 1rem;
  }
}

@media (max-width: 767.98px) {
  .search-container .btn {
    font-size: 0.75rem;
    padding: 0.75rem 0.5rem;
  }
}

/* Educational Series Section Styles */
.educational-series {
  position: relative;
  padding: 0;
  overflow: hidden;
  min-height: 50rem;
}

.educational-series-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  opacity: 0.15;
}

.educational-series .container,
.practice-management .container {
  position: relative;
  z-index: 1;
}

.educational-card {
  background-color: white;
  border-radius: 1.25rem;
  height: 100%;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  padding-bottom: 2.5rem;
  position: relative;
}

.educational-card:hover {
  /*transform: translateY(-5px);*/
  box-shadow: 0 0.625rem 1.25rem rgba(0, 0, 0, 0.1);
}

.educational-card-img-container {
  height: 10rem;
  background-color: #EEEEEE;
  overflow: hidden;
  border-radius: 1.25rem 1.25rem 0 0;
  flex: 0 0 10rem;
}

.educational-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.educational-card:hover img {
  transform: scale(1.05);
}

.educational-card-content {
  padding: 1.5rem;
}

.educational-card-content .btn{
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
}

.educational-card-content h4 {
  min-height: 1.25rem;
  margin-bottom: 1rem !important;
}

.educational-card-content .p3 {
  flex-grow: 1;
  min-height: 5.5rem;
  margin-bottom: 1rem !important;
}

.educational-card-content .caption {
  min-height: 2rem;
  /*margin-bottom: 1.5rem !important;*/
}

.navigation-arrows .nav-arrow {
  width: 3.3125rem;
  height: 3.3125rem;
  border-radius: 50%;
  border: 0.1875rem solid white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.3s ease;
  position: unset;
  margin-top: unset;
  z-index: 10;
  background-color: transparent;
}

.navigation-arrows .nav-arrow:after{
  display: none;
}

.navigation-arrows .nav-arrow:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.navigation-arrows .nav-arrow.is-disabled {
  opacity: 0.5;
  cursor: not-allowed !important;
  pointer-events: auto !important;
}

.splide {
  width: 100%;
  position: relative;
  margin-bottom: 2rem;
}

.splide__list {
  height: auto;
  align-items: stretch;
  display: flex;
}

.splide__slide {
  height: auto;
  display: flex;
  opacity: 1;
}

/* Fix for Splide to have equal height slides */
.splide__track {
  overflow: visible;
  margin: 0 -0.625rem;
}

/* Add container margins */
#educational-splide {
  margin: 0 auto;
  max-width: 100%;
}

/* Fix spacing */
.splide__slide {
  padding: 0 0.625rem;
}

.practice-management{
  position: relative;
  padding: 0;
  overflow: hidden;
}

.practice-management .educational-series-bg{
  opacity: 0.1;
}

/* Educational Series Responsive Styles */
@media (max-width: 1199.98px) {
  .quick-pick-buttons {
    gap: 1rem !important;
  }
  
  .quick-pick-btn {
    padding: 1rem 1.5rem;
  }
}

@media (max-width: 991.98px) {
  .educational-series {
    min-height: 43.75rem;
  }
  
  .educational-card-img-container {
    height: 11.25rem;
    flex: 0 0 12rem;
  }
}

@media (max-width: 767.98px) {
  .educational-series-header {
    flex-direction: column;
    align-items: flex-start !important;
  }
  
  .quick-pick-buttons {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem !important;
  }
  
  .quick-pick-buttons .btn {
    margin-bottom: 1rem;
    font-size: 1rem;
  }
  
  .view-all-link {
    position: relative;
    display: block;
    text-align: center;
  }
}

@media (max-width: 575.98px) {
  .educational-series {
    min-height: 37.5rem;
  }
  
  .educational-card-img-container {
    height: 10rem;
  }

  .educational-swiper .educational-card-img-container, .practice-management-swiper .educational-card-img-container{
    flex: unset;
    height: auto !important;
  }

  .educational-swiper .educational-card-img-container img, 
  .practice-management-swiper .educational-card-img-container img{
    position: unset !important;
  }
}

.quick-pick-btn {
  white-space: nowrap;
}

.view-all-link {
  font-family: 'brandon-grotesque', sans-serif;
  font-weight: 450;
  font-size: 1.25rem;
  line-height: 1.5625rem;
  letter-spacing: 0.1875rem;
  color: white;
  text-decoration: none;
}

/* Clinical Papers */
.clinical-papers .carousel-slider {
  --carousel-slider-max-width: 100%;
  --carousel-slider-width: 32.5rem;
  --carousel-slider-height: auto;
  --carousel-slider-navigation-color: #fff;
  --carousel-slider-pagination-color: #fff;
  --swiper-navigation-color: var(--carousel-slider-navigation-color);
  --swiper-pagination-color: var(--carousel-slider-pagination-color);
  --swiper-pagination-bullet-inactive-color: var(--carousel-slider-pagination-color);
  position: relative;
  width: var(--carousel-slider-max-width);
  margin: 0 auto;
  max-width: 100%;
  overflow: hidden;
}

.clinical-papers .carousel-slider .swiper {
  padding-bottom: 2rem;
}

.clinical-papers .carousel-slider .swiper-slide {
  width: var(--carousel-slider-width);
  height: var(--carousel-slider-height);
  position: relative;
  border-radius: 0.5rem;
  background: #18212b;
  max-width: calc(100% - 3rem);
  border-radius: 1.25rem;
}

.clinical-papers .carousel-slider .swiper-pagination-bullets {
  bottom: 0;
}

.clinical-papers .carousel-slider .carousel-slider-animate-opacity {
  height: 100%;
}

.clinical-papers .carousel-slider img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: 0.5rem;
  -webkit-box-reflect: below 0.3125rem -webkit-linear-gradient(bottom, rgba(255, 0, 0, 0.1) 0%, transparent 2rem, transparent 100%);
}

.clinical-papers .carousel-slider .slide-content {
  position: absolute;
  left: 0;
  width: 100%;
  bottom: 0;
  padding: 5.5rem 1rem 1.5rem;
  box-sizing: border-box;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.75));
  border-radius: 0 0 0.5rem 0.5rem;
}

.clinical-papers .carousel-slider .slide-content h2 {
  margin: 0;
  font-weight: bold;
  font-size: 1.5rem;
  line-height: 1.1;
}

.clinical-papers .carousel-slider .slide-content p {
  margin: 0.5rem 0 0;
  opacity: 0.65;
  font-size: 0.875rem;
  font-weight: 500;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.paper-card {
  background-color: white;
  border-radius: 1.25rem;
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: 0 0.3125rem 0.9375rem rgba(0,0,0,0.1);
  height: 100%;
  margin: 0 auto;
  position: relative;
  transform-origin: center bottom;
  padding-bottom: 2.5rem;
  position: relative;
}

.paper-cover {
  height: 10rem;
  overflow: hidden;
}

.paper-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.paper-card:hover .paper-cover img {
  transform: scale(1.05);
}

.paper-content {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.clinical-papers-swiper .paper-cover {
  height: 13rem;
}

.paper-content h4 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.paper-content .btn {
  margin-top: auto;
  align-self: flex-start;
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
}

/* Media Queries for Responsive Design */
@media (max-width: 1199px) {
  .educational-card-img-container,
  .paper-cover {
    height: 12.5rem;
  }
}

@media (max-width: 991px) {
  .educational-card-img-container,
  .paper-cover {
    height: 11.25rem;
  }
}

@media (max-width: 767px) {
  .educational-card-img-container,
  .paper-cover {
    height: 13.75rem;
  }

  .educational-card-img-container {
    flex: 0 0 15rem;
  }
  
}

/* About Section */
.about-section {
    position: relative;
    overflow: hidden;
}

.stats-container {
    border-radius: 1.25rem;
}

.display-4 {
    font-family: 'brandon-grotesque', sans-serif;
    font-weight: 450;
    font-size: 4rem;
    line-height: 3.125rem;
    letter-spacing: 0.2rem;
}

.feature-list {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.feature-icon img.teal-icon {
    filter: invert(69%) sepia(13%) saturate(1360%) hue-rotate(128deg) brightness(93%) contrast(86%);
    width: 1.9375rem;
    height: 1.625rem;
}

.checkmark-icon {
    width: 1.9375rem;
    height: 1.625rem;
}

.checkmark-icon path {
    stroke: var(--teal);
}

.about-bottom {
    padding: 5rem 0;
    background-color: transparent;
    position: relative;
    z-index: 1;
}

.about-image-container {
    position: relative;
    z-index: 2;
    overflow: hidden;
    max-height: 37.5rem;
    border-radius: 1.25rem;
}

.about-image-container img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.chrome-background {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.chrome-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}
.rgt{
  grid-template-columns: 1fr 1fr 1fr;
}
@media (max-width: 991.98px) {
    .about-bottom {
        padding: 3rem 0;
    }
    
    .display-4 {
        font-size: 3rem;
    }
    
    .feature-list {
        margin-top: 1.25rem;
    }
    .rgt{
      grid-template-columns: 1fr;
    }
}

@media (max-width: 767.98px) {
    .about-bottom {
        padding: 2rem 0;
    }
    
    .display-4 {
        font-size: 2.5rem;
    }
    
    .stats-container .caption {
        font-size: 0.75rem;
    }
}

.video-container {
  position: relative;
  width: 100%;
}
.embed-responsive {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
  max-width: 100%;
}
.embed-responsive iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.resource-img-container{
  width: 100%;
  height: 12.5rem;
}
.resource-img-container img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.resource-card-img-container{
  width: 100%;
  height: 14.688rem;
}
.resource-card-img-container img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* EQUAL HEIGHT SLIDES FOR SWIPERS */
.educational-swiper .swiper-wrapper,
.practice-management-swiper .swiper-wrapper {
  display: flex;
  align-items: stretch;
}

.educational-swiper .swiper-slide,
.practice-management-swiper .swiper-slide {
  height: auto;
  display: flex;
}

.educational-swiper .educational-card,
.practice-management-swiper .educational-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
}

.educational-swiper .educational-card-img-container,
.practice-management-swiper .educational-card-img-container {
  height: 0;
  /*padding-bottom: 56.25%;*/
  position: relative;
  overflow: hidden;
}

.educational-swiper .educational-card-img-container img,
.practice-management-swiper .educational-card-img-container img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.educational-swiper .educational-card-content,
.practice-management-swiper .educational-card-content {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.educational-swiper .educational-card-content .btn,
.practice-management-swiper .educational-card-content .btn {
  margin-top: auto;
}
.resource-content h2,
.resource-content h3,
.resource-content h4{
	color:#fff;
}

/* Technology Hero Section */
.technology-hero {
  min-height: 30rem;
  position: relative;
  padding: 4rem 0;
  background-color: #221F20;
}

.technology-hero .technology-content {
  position: relative;
  z-index: 2;
}

.technology-hero .technology-title-image {
  max-width: 100%;
  margin-bottom: 1.5rem;
}

.technology-hero .technology-title-image img {
  /*max-height: 5rem;*/
  width: auto;
}

.technology-hero .technology-description {
  /*margin-bottom: 2rem;*/
}

.technology-hero .technology-image-container {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
}

.technology-hero .technology-image {
  max-width: 100%;
  max-height: 30rem;
  object-fit: contain;
}

.technology-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.z-index-n1 {
  z-index: -1;
}

.object-fit-cover {
  object-fit: cover;
}

.opacity-15 {
  opacity: 0.15;
}

@media (max-width: 991.98px) {
  .technology-hero {
    min-height: auto;
    padding: 3rem 0;
  }
  
  .technology-hero .technology-title-image img {
    /*max-height: 3.5rem;*/
  }
  
  .technology-hero .technology-image {
    max-height: 20rem;
    /*margin: 2rem 0;*/
  }
}

@media (max-width: 767.98px) {
  .technology-hero {
    text-align: center;
    padding: 2rem 0;
  }
  
  .technology-hero .technology-title-image {
    margin: 0 auto 1.5rem;
  }
  
  .technology-hero .technology-title-image img {
   /*max-height: 3rem;*/
  }
  
  .technology-hero .d-flex {
    justify-content: center;
  }
}

/* About Technology Section */
.about-technology {
  position: relative;
  padding: 4rem 0;
}

/*.about-technology h2 {
  position: relative;
  margin-bottom: 2rem;
}

.about-technology h2:after {
  content: '';
  position: absolute;
  bottom: -0.75rem;
  left: 0;
  width: 4rem;
  height: 0.25rem;
  background-color: var(--teal);
}*/

.about-technology-content {
  margin-bottom: 1.5rem;
}
.about-technology h2 {
  margin-bottom: 2rem;
  
}
.about-technology-content p {
  margin-bottom: 2rem;
}

.about-technology-image-container {
  overflow: hidden;
  box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.15);
  height: 100%;
  border-radius: 1.25rem;
  position: relative;
}

.about-technology-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  position: absolute;
  object-position: center;
}

.about-technology-image-container:hover img {
  transform: scale(1.03);
}

@media (max-width: 991.98px) {
  .about-technology {
    padding: 3rem 0;
  }
  
  .about-technology-content {
    margin-bottom: 2rem;
  }

  .about-technology-image-container {
    height: 20rem;
    margin-bottom: 1.5rem;
  }
}

@media (max-width: 767.98px) {
  .about-technology {
    padding: 2.5rem 0;
  }
  
  .about-technology h2 {
    text-align: center;
  }
  
  .about-technology h2:after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .about-technology-content {
    text-align: center;
  }
  
  .about-technology-image-container {
    max-height: 20rem;
    margin-bottom: 1.5rem;
  }
}

/* Explore Technology Section */
.explore-technology {
  padding: 4rem 0 0 0;
  background-color: #2c2a2b;
  color: #fff;
  overflow: hidden;
}

.explore-technology .container .container{
  padding: 0;
}

.explore-technology-header {
  margin-bottom: 2.5rem;
  max-width: 37.5rem;
  margin-left: auto;
  margin-right: auto;
}

.explore-technology-header h2 {
  color: #fff;
  text-align: center;
}

.explore-technology-header h2 span{
  color: #9FA1A2;
}

.explore-technology-header .p2 {
  color: #fff;
  text-align: center;
}

.explore-tabs {
  margin-bottom: 0;
  border-bottom: none;
  display: flex;
  justify-content: center;
}

.explore-tabs .nav-item {
  margin-right: 0;
}

.explore-tabs .nav-link {
  font-family: 'brandon-grotesque', sans-serif;
  font-weight: 450;
  font-size: 1rem;
  line-height: 1.25rem;
  letter-spacing: 0.1rem;
  color: #fff;
  padding: 0.75rem 1.5rem;
  border: none;
  background-color: transparent;
  border-radius: 0.5rem 0.5rem 0 0;
  position: relative;
  transition: all 0.3s ease;
}

.explore-tabs .nav-link.active {
  color: #fff;
  background-color: #4F5050;
}

.explore-tabs .nav-link:hover:not(.active) {
  background-color: #5a5a5a;
}

.tab-content {
  background-color: #4F5050;
  padding: 2rem 0;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
}

.tab-content > .tab-pane {
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
}

.tab-content-header {
  margin-bottom: 2rem;
  text-align: center;
}

.tab-content-header h3 {
  color: var(--teal);
  font-size: 1.125rem;
  letter-spacing: 0.1rem;
  margin-bottom: 0;
  text-transform: uppercase;
}

.webinar-item,
.paper-item {
  margin-bottom: 2rem;
}

.load-more-container {
  margin-top: 2rem;
  text-align: center;
}

/* Swiper for mobile view */
.explore-swiper-container {
  position: relative;
  padding: 0 3rem;
  overflow: hidden;
}

.explore-swiper-container .swiper{
  overflow: unset;
}

/* Equal height slides for mobile */
.explore-swiper-container .swiper-slide {
  height: auto;
}

.explore-swiper-container .educational-card,
.explore-swiper-container .paper-card {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.explore-swiper-container .educational-card-img-container,
.explore-swiper-container .paper-cover {
  height: 0;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  position: relative;
  overflow: hidden;
}

.explore-swiper-container .educational-card-img-container img,
.explore-swiper-container .paper-cover img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.explore-swiper-container .educational-card-content,
.explore-swiper-container .paper-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
}

.explore-swiper-container .educational-card-content h4,
.explore-swiper-container .paper-content h4 {
  min-height: 2.5rem;
  margin-bottom: 0.75rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.explore-swiper-container .educational-card-content .p3 {
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.explore-swiper-container .paper-content .p3,
.explore-swiper-container .paper-content .caption {
  margin-bottom: 0.5rem;
}

.explore-swiper-container .educational-card-content .btn,
.explore-swiper-container .paper-content .btn {
  margin-top: auto;
}

.explore-swiper-container .swiper-navigation {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  left: 0;
  z-index: 10;
  pointer-events: none;
}

.explore-swiper-container .swiper-button {
  width: 1.813rem;
  height: 1.813rem;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  pointer-events: auto;
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.explore-swiper-container .swiper-button:after{
  display: none;
}

.explore-swiper-container .swiper-button:hover {
  /*background-color: var(--teal);*/
}

.explore-swiper-container .swiper-button-prev {
  position: absolute;
  left: -3rem;
}

.explore-swiper-container .swiper-button-next {
  position: absolute;
  right: -3rem;
}

.explore-swiper-container .swiper-button svg {
  width: 1rem;
  height: 1rem;
  fill: var(--soft-black);
}

.explore-swiper-container .swiper-button:hover svg {
  fill: white;
}

@media (max-width: 991.98px) {
  .explore-technology {
    padding: 3rem 0 0 0;
  }
}

@media (max-width: 767.98px) {
  .explore-technology {
    padding: 2.5rem 0 0 0;
  }
  
  .explore-technology-header {
    text-align: center;
    margin-bottom: 2rem;
  }
  
  .explore-tabs {
    justify-content: center;
  }
  
  .explore-tabs .nav-link {
    font-size: 1rem;
    padding: 0.5rem 1rem;
  }
}

/* Before & After Section */
.before-after-section {
    padding: 5rem 0;
    background: linear-gradient(270deg, #59B7B3 0%, #021F2C 100%);
    position: relative;
}

.before-after-header h2 {
    margin-bottom: 3rem;
    color: var(--white);
}

.before-after-image-container {
    /*border-radius: 1.25rem;*/
    overflow: hidden;
    box-shadow: 0 0.25rem 1rem rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    max-width: 900px;
    margin: 0 auto;
}

/*.before-after-image-container:hover {
    transform: translateY(-0.3125rem);
}*/

.before-after-image-container img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.3s ease;
    display: block;
}

.before-after-swiper {
    padding: 0 4rem;
    position: relative;
    margin: 0 auto;
    max-width: 1000px;
}

.before-after-swiper .swiper-button {
    position: absolute;
    top: 50%;
    /*transform: translateY(-50%);*/
    transform: translateY(0);
    width: 3.3125rem;
    height: 3.3125rem;
    border-radius: 50%;
    border: 0.1875rem solid white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
    z-index: 10;
    background-color: transparent;
}

.before-after-swiper .swiper-button:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.before-after-swiper .swiper-button:after{
  display: none;
}

.before-after-swiper .swiper-button-prev {
    left: 0;
}

.before-after-swiper .swiper-button-next {
    right: 0;
}

.before-after-swiper .swiper-button img {
    width: 0.70813rem;
    height: auto;
}

/* Media Queries for Before & After Section */
@media (max-width: 991.98px) {
    .before-after-section {
        padding: 4rem 0;
    }
    
    .before-after-header h2 {
        margin-bottom: 2.5rem;
    }
}

@media (max-width: 767.98px) {
    .before-after-section {
        padding: 3rem 0;
    }
    
    .before-after-header h2 {
        margin-bottom: 2rem;
    }
    
    .before-after-swiper {
        padding: 0 3rem;
    }
    
    .before-after-swiper .swiper-button {
        width: 2.5rem;
        height: 2.5rem;
    }
    
    .before-after-swiper .swiper-button img {
        width: 0.370813rem;
    }
}

@media (max-width: 575.98px) {
    .before-after-section {
        padding: 2.5rem 0;
    }
    
    .before-after-header h2 {
        margin-bottom: 1.5rem;
    }
    
    .before-after-swiper {
        padding: 0 2.5rem;
    }
    
    .before-after-image-container {
        border-radius: 1rem;
    }
    
    .before-after-swiper .swiper-button {
        width: 2rem;
        height: 2rem;
        border-width: 0.125rem;
    }
    
    .before-after-swiper .swiper-button-prev {
        left: 0;
    }
    
    .before-after-swiper .swiper-button-next {
        right: 0;
    }
    
    .before-after-swiper .swiper-button img {
        width: 0.370813rem;
    }
}

/* Disclaimer Section */
.disclaimer-section {
    position: relative;
    padding: 4rem 0;
    background-color: var(--soft-black);
    color: var(--white);
    overflow: hidden;
}

.disclaimer-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.disclaimer-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.15;
}

.disclaimer-content {
    position: relative;
    z-index: 1;
}

.disclaimer-content h2 {
    margin-bottom: 2rem;
    color: var(--white);
}

.disclaimer-content .p2 {
    color: var(--white);
    margin-bottom: 2rem;
}

.disclaimer-image-container {
    position: relative;
    z-index: 1;
    border-radius: 1.25rem;
    overflow: hidden;
    margin-bottom: 2rem;
}

.disclaimer-image-container img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.physician-presenters-toggle {
    display: flex;
    align-items: center;
    color: var(--white);
    background: transparent;
    border: none;
    padding: 0;
    margin-bottom: 1.5rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.physician-presenters-toggle:hover {
    color: var(--teal);
}

.physician-presenters-toggle .h3 {
    color: inherit;
    margin-bottom: 0;
}

.physician-presenters-toggle svg {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.physician-presenters-toggle[aria-expanded="true"] svg {
    transform: rotate(90deg);
}

.physician-presenters-content {
    color: var(--white);
    padding-top: 0.5rem;
}

.physician-presenters-content p:last-child {
    margin-bottom: 0;
}

@media (max-width: 991.98px) {
    .disclaimer-section {
        padding: 3rem 0;
    }
    
    .disclaimer-content h2 {
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 767.98px) {
    .disclaimer-section {
        padding: 2.5rem 0;
    }
    
    .disclaimer-content h2 {
        margin-bottom: 1.25rem;
    }
    
    .disclaimer-image-container {
        margin-bottom: 1.5rem;
    }
}

.single-page-main {
  padding: 5rem 0;
}
.single-page-main h2{
  margin-bottom: 2rem;
  color: var(--teal);
}
.single-page-main p{
  margin-bottom: 2rem;
}
.single-page-main ul,
.single-page-main ol{
  margin-bottom: 2rem;
}
.single-page-main ul li,
.single-page-main ol li{
  margin-bottom: 2rem;
}
.single-page-main ul li::marker,
.single-page-main ol li::marker{
  color: var(--white);
}
.single-page-main p a,
.single-page-main ul li a,
.single-page-main ol li a{
  color: var(--white);
}
.single-page-main p a:hover,
.single-page-main ul li a:hover,
.single-page-main ol li a:hover{
  color: var(--teal);
}

@media (max-width: 767.98px) {
  .single-page-main p,
  .single-page-main ul li,
  .single-page-main ol li{
    font-size: 1rem;
    line-height: 1.375rem;
  }
  .single-page-main h2{
    font-size: 0.9375rem;
    font-style: normal;
    font-weight: 450;
    line-height: 1.125rem;
    letter-spacing: 0.14063rem;
  }
  .single-page-main h1{
    font-size: 2.1875rem;
    font-style: normal;
    font-weight: 500;
    line-height: 2.375rem; /* 108.571% */
    letter-spacing: 0.32813rem;
  }
}

/* Cookie Policy Table Styles */
.cpoltable {
  width: 100%;
  margin-bottom: 2rem;
  overflow: hidden;
}

.cpoltable table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 0.625rem;
  overflow: hidden;
  border: 1px solid #B9B9B9;
}

.cpoltable th, 
.cpoltable td {
  border-right: 1px solid #B9B9B9;
  border-bottom: 1px solid #B9B9B9;
}

.cpoltable th:last-child, 
.cpoltable td:last-child {
  border-right: none;
}

.cpoltable tr:last-child td {
  border-bottom: none;
}

.cpoltable thead {
  background-color: var(--teal);
}

.cpoltable th {
  font-family: 'brandon-grotesque', sans-serif;
  font-weight: 450;
  font-size: 1.125rem;
  line-height: 1.25rem;
  color: var(--white);
  text-align: left;
  padding: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
}

/* Ensure header borders are visible but with teal background */
.cpoltable thead th {
  border-color: #B9B9B9;
}

.cpoltable tbody tr:nth-child(odd) {
  background-color: var(--chrome);
}

.cpoltable tbody tr:nth-child(even) {
  background-color: var(--chrome);
}

.cpoltable td {
  font-family: 'franklin-gothic-atf', sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.5rem;
  color: var(--white);
  padding: 1rem;
  vertical-align: top;
}

/* Responsive styles for mobile */
@media (max-width: 767.98px) {
  .cpoltable table {
    display: block;
    border: none;
  }
  
  .cpoltable thead {
    display: none; /* Hide table header on mobile */
  }
  
  .cpoltable tbody,
  .cpoltable tr,
  .cpoltable td {
    display: block;
    width: 100%;
  }
  
  .cpoltable tr {
    margin-bottom: 1.5rem;
    border-radius: 0.625rem;
    overflow: hidden;
    border: 1px solid #B9B9B9;
  }
  
  .cpoltable td {
    position: relative;
    padding-left: 50%;
    text-align: left;
    border-right: none;
    border-bottom: 1px solid #B9B9B9;
    font-size: 0.875rem;
    line-height: 1.25rem;
  }
  
  .cpoltable td:last-child {
    border-bottom: none;
  }
  
  .cpoltable td::before {
    content: attr(data-label);
    position: absolute;
    left: 1rem;
    width: 45%;
    font-family: 'brandon-grotesque', sans-serif;
    font-weight: 450;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.0875rem;
    color: var(--white);
  }
  
}

/* Resource Category Hero Section */
.resource-category-hero {
  min-height: 25rem;
  position: relative;
  overflow: hidden;
}

.resource-category-hero .hero-content {
  padding: 5rem 0;
  max-width: unset;
}
.resource-category-hero .search-container{
  margin: 0 auto;
  background: var(--chrome);
  border: 2px solid var(--teal);
}
.resource-category-hero .hero-image-container{
  width: 100%;
}
.resource-category-hero h1{
  text-transform: uppercase;
}
@media (max-width: 991.98px) {
  .resource-category-hero .hero-content {
    padding: 3rem 0;
    text-align: center;
    margin: 0 auto;
  }
  
  .resource-category-hero .search-container {
    margin: 0 auto;
  }
  
  .resource-category-hero .hero-image-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
  }
  
  .resource-category-hero .hero-image {
    object-position: center;
  }
}

@media (max-width: 767.98px) {
  .resource-category-hero .hero-content {
    padding: 2.5rem 0;
  }
  
  .resource-category-hero h1 {
    font-size: 2.1875rem;
    line-height: 2.375rem;
    letter-spacing: 0.328125rem;
  }
}

/* Resource Category Results Section */
.resource-results {
  min-height: 50rem;
  position: relative;
}

.filters-container {
  border-radius: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(255, 255, 255, 0.05);
  height: 100%;
}

.filter-group {
  margin-bottom: 2rem;
  position: relative;
  padding-bottom: 2rem;
  border-bottom: 0.0625rem solid rgba(255, 255, 255, 0.10);
  position: relative;
}

.filter-group::after {
  content: '';
  position: absolute;
  bottom: -0.0625rem;
  left: 0;
  width: 100%;
  height: 0.0625rem;
  border-radius: 0.625rem;
  background: rgba(255, 255, 255, 0.10);
}

.filter-group:first-child {
  padding-bottom: 1rem;
}

.filter-group h4 {
  font-family: 'brandon-grotesque', sans-serif;
  font-weight: 450;
  font-size: 1rem;
  line-height: 1.25rem;
  letter-spacing: 0.1rem;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1rem;
}

.filter-group h4.filter-title {
  font-family: 'brandon-grotesque', sans-serif;
  font-weight: 450;
  font-size: 1rem;
  line-height: 1.25rem;
  letter-spacing: 0.1rem;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
}

.filter-toggle-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
}

.filter-toggle-icon i {
  color: var(--soft-black);
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1;
}

.filter-title .filter-toggle-icon i.bi-dash,
.filter-title .filter-toggle-icon i.bi-plus {
  color: var(--white);
  opacity: 0.6;
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1;
}

/* Default state - expanded with minus icon */
.filter-title .filter-toggle-icon i.bi-dash {
  display: block;
}

.filter-title .filter-toggle-icon i.bi-plus {
  display: none;
}

/* Collapsed state - with plus icon */
.filter-title.collapsed .filter-toggle-icon i.bi-dash {
  display: none;
}

.filter-title.collapsed .filter-toggle-icon i.bi-plus {
  display: block;
}

.filter-options {
  max-height: 15rem;
  overflow-y: auto;
  padding-right: 0;
  transition: max-height 0.3s ease;
}

.filter-options::-webkit-scrollbar {
  width: 0.5rem;
}

.filter-options::-webkit-scrollbar-track {
  background: #333;
  border-radius: 0.25rem;
}

.filter-options::-webkit-scrollbar-thumb {
  background: var(--teal);
  border-radius: 0.25rem;
}

.form-check-label {
  font-family: 'franklin-gothic-atf', sans-serif;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.125rem;
  color: var(--white);
  padding-right: 2.5rem;
}

.form-check {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
  padding-left: 0;
}

.filter-checkbox {
  width: 1.25rem;
  height: 1.25rem;
  border: 2px solid var(--teal);
  background-color: transparent;
  margin-right: 0.75rem;
  flex-shrink: 0;
  position: relative;
}

.filter-checkbox:checked {
  background-color: var(--teal);
  border-color: var(--teal);
}

.filter-checkbox:checked::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--teal);
  font-size: 0.875rem;
  font-weight: bold;
}

.filter-buttons {
  margin-top: 2rem;
}

.filter-buttons .btn-small {
  padding: 0.625rem 0.25rem;
  border: 1px solid #fff;
  outline: 0;
}

.results-header h2 {
  font-family: 'brandon-grotesque', sans-serif;
  font-weight: 450;
  font-size: 1.25rem;
  line-height: 1.5625rem;
  letter-spacing: 0.1875rem;
  text-transform: uppercase;
  text-align: center;
}

/* Badge Styling */
.badge.bg-teal {
  font-family: 'franklin-gothic-atf', sans-serif;
  font-weight: 400;
  font-size: 0.75rem;
  line-height: 1rem;
  border-radius: 0.5rem;
}

/* Mobile Filter Toggle Button */
#mobileFilterToggle {
  display: flex;
  align-items: center;
  justify-content: center;
}

#mobileFilterToggle i {
  font-size: 1.125rem;
}

/* Resource Card Duration Badge */
.educational-card .duration .badge {
  display: inline-flex;
  align-items: center;
}

.educational-card .duration .badge i {
  margin-right: 0.375rem;
}

/* Mobile Filter Styles */
@media (max-width: 767.98px) {
  .filters-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1050;
    background-color: var(--soft-black);
    padding: 2rem !important;
    overflow-y: auto;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
  }
  
  .filters-container.show {
    transform: translateX(0);
  }
  
  body.filters-open {
    overflow: hidden;
  }
  
  .resource-swiper {
    margin: 0 -0.5rem;
    padding: 0 0.5rem;
  }
  
  .resource-swiper .swiper-slide {
    height: auto;
  }
  
  .resource-results {
    min-height: auto;
    padding-bottom: 4rem;
  }
  
  .results-header h2 {
    font-size: 0.9375rem;
    line-height: 1.125rem;
    letter-spacing: 0.14063rem;
    text-align: center;
  }
}

/* Load More Button */
.load-more-container {
  margin-top: 2.5rem;
  margin-bottom: 1.5rem;
}

.resource-results .paper-card,
.resource-results .educational-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 1.25rem;
  border: 2px solid #59B7B3;
}
.resource-results .paper-cover,
.resource-results .educational-card-img-container{
  border-bottom: 2px solid #59B7B3;
}
.resource-results .educational-card-content h4,
.resource-results .paper-content h4{
  color: var(--white);  
}
.resource-results .educational-card-content .p3,
.resource-results .paper-content .p3,
.resource-results .paper-content .caption{
  color: var(--white);
}
.resource-results .btn-medium{
  border-radius: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(255, 255, 255, 0.05);
  color: var(--white);
  font-size: 1.75rem;
  line-height: 2.125rem;
  letter-spacing: 0.2625rem;
  text-transform: uppercase;
  font-family: 'brandon-grotesque', sans-serif;
  font-weight: 450;
}
.resource-results .btn-medium svg{
  margin-left: 0.5rem;
}
.filter-group-title{
  font-size: 2.1875rem;
  font-style: normal;
  font-weight: 450;
  line-height: 2.4375rem;
  letter-spacing: 0.32813rem;
  width: calc(100% - 24px);
  text-align: center;
}

.educational-series-single-header{
  background: rgba(34, 31, 32, 1) url(../images/chrome-bg-trans.png) no-repeat center center;
  background-size: cover;
}
.single-post-title-badge{
    font-family: 'brandon-grotesque', sans-serif;
    font-weight: 450;
    font-size: 1.125rem;
    line-height: 1.25rem;
    letter-spacing: 0.16875rem;
    text-transform: uppercase;
    padding: 1rem 1.875rem;
    border-radius: 0.625rem;
    color: var(--white);
    outline: 0.1875rem solid #D9D9D9;
    outline-offset: -0.1875rem;
    border: none;
    text-decoration: none;
    display: inline-block
}
.single-post-title{
  font-family: 'brandon-grotesque', sans-serif;
  font-weight: 450;
  font-size: 2.1875rem;
  line-height: 2.4375rem;
  letter-spacing: 0.32813rem;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 0;
}
.single-video-container{
  border-radius: 30px;
  overflow: hidden;
  position: relative;
}
.single-video-details-container .single-video-duration{
  position: absolute;
  top: 20px;
  right: 20px;
  display: inline-block;
  padding: 10px 20px;
}
.single-video-details-container .single-video-duration::before{
  content: "\f291";
  font-family: bootstrap-icons;
  display: block;
  width: 16px;
  height: 16px;
  font-size: 16px;
  line-height: 16px;
  text-align: center;
  color: var(--white);
  position: absolute;
  left: -15px;
  top: 9px;
}
.single-video-details-container{
  border-radius: 30px;
  overflow: hidden;
  background: linear-gradient(270deg, #59B7B3 0%, #021F2C 100%);
  position: relative;
  padding: 64px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100%;
}
.single-video-details-container h3{
  font-family: 'brandon-grotesque', sans-serif;
  font-weight: 450;
  font-size: 20px;
  line-height: 25px;
  letter-spacing: 15%;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 30px;
}
.single-video-details-container i{
  font-size: 18px;
}
.single-watch-video-button {
  margin-top: 20px;
  width: 100%;
}
.single-watch-video-button a{
  border: 2px solid #737373;
  letter-spacing: 0.15em;
  display: inline-block;
  border-radius: 10px;
  padding: 15px 30px;
  font-size: 1.1rem;
  min-width: 180px;
  text-align: center;
  overflow: hidden;
}
.educational-series-single-content{
  background: rgba(34, 31, 32, 1);
}
.single-summary, .single-topics{
  background: rgba(255, 255, 255, 0.05);
  padding: 64px;
  margin-bottom: 3rem;
  border-radius: 30px;
  overflow: hidden;
}
.single-summary-title, .single-topics-title{
  padding: 0 0 20px;
}
.single-summary a, .single-topics a{
  color: var(--teal);
  text-decoration: underline;
}
.single-summary a:hover, .single-topics a:hover{
  color: var(--white);
  text-decoration: underline;
}
.single-summary-title h3, .single-topics-title h3{
  font-family: 'brandon-grotesque', sans-serif;
  font-weight: 450;
  /*font-size: 35px;*/
  line-height: 39px;
  letter-spacing: 15%;
  /*max-width: 0;*/
  padding: 0;
}
.single-summary-body h2, .single-summary-body h3{
	color: #fff;
}
.single-summary-title-icon, .single-topics-title-icon{
  width: 45px;
}
.single-summary-body, .single-topics-body, .single-topics-body ul li{
  font-family: 'franklin-gothic-atf', sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
  letter-spacing: 0%;
}
.single-summary-body p, .single-topics-body p{
  margin: 0;
  padding: 0 0 20px;
}
.single-summary-body p:last-child, .single-topics-body p:last-child{
  padding: 0;
}
.single-topics-body ul{
  padding-left: 25px;
  margin-bottom: 0px;
  padding-bottom: 20px;
}
.single-topics-body ul:last-child{
  padding-bottom: 0px;
}
.practice-management.single-practice-management{
  background: #2d2a2b;
}
.disclaimer-section.single-disclaimer{
  background: rgba(34, 31, 32, 1) url(../images/chrome-bg-trans.png) no-repeat center center;
  background-size: cover;
}
.play-button {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: white;
  font-size: 18px;
  font-weight: 500;
}

.play-icon {
  position: relative;
  width: 100px;
  height: 100px;
  background: rgba(0, 0, 0, 0.3); 
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.play-icon::before {
  content: '';
  display: block;
  margin-left: 4px; 
  width: 0;
  height: 0;
  border-left: 35px solid white;
  border-top: 20px solid transparent;
  border-bottom: 20px solid transparent;
}

.search-results .tab-content{
	width: auto;
	margin-left: 0px;
	margin-right: 0px;
	border-radius: 1.25rem;
	border-top-left-radius: 0px;
	overflow: hidden;
}
.search-results .filters-container{
	height: auto;
}
.search-results .col-lg-3{
	padding-right: 0px;
}
.search-results .col-lg-9{
	padding-left: 0px;
}
.search-results h2{
	font-size: 35px;
	color: #59B7B3;
	text-align: center;
	text-transform: uppercase;
	line-height: 39px;
	font-weight: 700;
    margin: 0;
    padding: 0 0 40px;
}
.search-results .tab-content > .tab-pane{
	padding-left: 30px;
	padding-right: 30px;
}
.search-results .resource-results .paper-card, .search-results .resource-results .educational-card{
	background: #fff;
	border: none;
}
.search-results .resource-results .paper-cover, .search-results .resource-results .educational-card-img-container{
	border: none;
}
.search-results .resource-results .educational-card-content .p3, .search-results .resource-results .paper-content .p3{
	color: #444444;
}
.search-results .resource-results .paper-content .caption{
	color: #444444;
}
.search-results .resource-results .paper-cover{
	background: #F6F2F2;
}
.search-results-hero{
  	background: rgba(34, 31, 32, 1) url(../images/chrome-bg-trans.png) no-repeat center center;
  	background-size: cover;
}
.search-results-hero h1{
	text-transform: uppercase;
}
.contactform{
	background: #221F20;
	padding: 40px 40px 10px;
	color: #fff;
	width: 100%;
	max-width: 550px;
}
.contactform .formtitle{
	font-family: 'brandon-grotesque', sans-serif;
	font-weight: 700;
	margin: 0;
	padding: 0 0 20px;
	font-size: 35px;
	line-height: 39px;
}
.contactform input, .contactform select, .contactform textarea{
	width: 100%;
	display: block;
	color: #fff;
	font-size: 14px;
	line-height: 18px;
	box-sizing: border-box;
	background: #2d2a2b;
	border: 1px rgba(255, 255, 255, 0.2) solid;
	border-radius: 5px;
	padding: 12px;
}
.contactform .eseminar-title{
	font-size: 14px;
	line-height: 18px;
	color: #fff;
	margin: 0;
	padding: 0 0 30px;
}
.contactform textarea{
	height: 60px;
}
.contactform input[type="submit"]{
	font-family: 'brandon-grotesque', sans-serif;
	font-weight: 450;
	font-size: 18px;
	line-height: 1rem;
	letter-spacing: 0.1125rem;
	text-transform: uppercase;
	padding: 0.75rem 1.3125rem;
	border-radius: 5px;
	background: linear-gradient(270deg, #59B7B3 0%, #021F2C 100%);
	color: var(--white);
	border: none;
}
.contactform input[type="checkbox"] {
    background-color: #221F20;
    width: 7px;
    height: 7px;
    border: 1px solid #fff;
	appearance:none;
	padding: 8px;
	margin-right: 10px;
}

.contactform input[type="checkbox"]:checked {
	background-color: #59B7B3;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='rgb(255, 255, 255)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
	background-size: contain;
}
.contactform .wpcf7-not-valid-tip {
	font-size: 12px;
}
.contactform  .wpcf7-list-item{
	width: 100%;
	margin-left: 2px;
}
.contactform  .wpcf7-list-item label{
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	font-size: 14px;
}
.contactform span.wpcf7-list-item-label{
	width: calc(100% - 25px);
}
.contactform  .wpcf7-list-item label a{
	color: #fff;
}
#registerform .modal-body{
	margin: 0;
	padding: 0;
}
#registerform .modal-dialog{
	border-radius: 10px;
	overflow: hidden;
}
#contactform .modal-body{
	margin: 0;
	padding: 0;
}
#videoplay .modal-dialog{
	max-width: 1200px
}
#videoplay .videowraper{
	width: 100%;
	max-width: 1200px;
}
#videoplay .videobox{
	position: relative;
	width: 100%;
	overflow: hidden;
	padding-top: 56.25%;
}
#videoplay .videobox iframe{
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
	height: 100%;
	border: none;
}

@media (max-width: 991.98px) {
	.search-results h2{
		font-size: 24px;
		line-height: 28px;
	}
}

