:root {
  --primary: #02acc8;
  --secondary: #0992c9;
  --third: #e01272;
  --light: #f5f9fc;
  --dark: #333333;
  --gray: #6c757d;
  --light-gray: #f8f9fa;
}
* {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}
body,
html {
  overflow-x: hidden;
  width: 100%;
  position: relative;
}
body {
  color: var(--dark);
  line-height: 1.6;
}
img.width-100 {
  width: 100px;
}
.bg-primary {
  background-color: #3787b4 !important;
}
.text-primary {
  color: var(--primary) !important;
}

.logo:hover {
  animation: pulse 1s ease-in-out;
}

.nav-links a:not(.btn):hover {
  color: var(--primary);
}

.nav-links .btn-primary:hover {
  background-color: transparent !important;
  color: var(--primary) !important;
}

.nav-links .btn-secondary:hover {
  background-color: transparent !important;
  color: var(--third) !important;
}

.card {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

nav {
  background-color: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
}

.logo {
  font-size: 24px;
  font-weight: bold;
  color: var(--primary);
  text-decoration: none;
  display: flex;
  align-items: center;
}

.logo span {
  color: var(--third);
}

.nav-links {
  display: flex;
  list-style: none;
}

.nav-links li {
  margin-left: 2rem;
}

.nav-links a {
  text-decoration: none;
  color: var(--dark);
  font-weight: 500;
  transition: color 0.3s;
  border-color: var(--primary);
}

.nav-links a.btn-primary {
  background-color: var(--primary);
  color: white;
  border: 2px solid var(--primary);
}

.nav-links .btn-secondary {
  color: var(--light);
  border-color: var(--third);
}

.nav-links .btn-secondary:hover {
  border-color: var(--third);
}

.nav-links a:hover {
  color: var(--primary);
}

.btn {
  padding: 0.5rem 1.5rem;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s;
  text-decoration: none;
}

.btn-primary {
  background-color: var(--primary);
  color: white;
  border: 2px solid var(--primary);
}

.btn-primary:hover {
  background-color: transparent;
  border-color: var(--primary);
  color: var(--primary);
}

.btn-secondary {
  background-color: var(--third);
  color: white;
  border: 2px solid var(--third);
}

.btn-secondary:hover {
  background-color: transparent;
  color: var(--third);
  border-color: var(--third) !important;
}

.btn-outline {
  background-color: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
}

.btn-outline:hover {
  background-color: var(--primary);
  color: white;
}

#hero {
  padding: 9rem 0 0rem;
  position: relative;
  background-color: #107181;
}
#hero h1,
#hero p {
  color: #fff;
}
.hero-bg-slider img {
  width: 100%;
  background-size: cover;
  position: relative;
  top: 70px;
  height: 100%;
  filter: blur(2px);
}
.hero-bg-slider {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}
#hero {
  position: relative;
  overflow: hidden;
}
#hero > .container {
  position: relative;
  z-index: 2;
}
#hero::after {
  display: none; /* Remove the old background */
}
.text-primary-gradient {
  background: linear-gradient(135deg, #02acc8 0%, #e01272 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-secondary-gradient {
  background: linear-gradient(135deg, #e01272 0%, #02acc8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-media {
  transform: perspective(1500px) rotateY(5deg);
  transition: transform 0.5s ease;
}

.hero-media:hover {
  transform: perspective(1500px) rotateY(0);
}

.bg-primary-gradient {
  background: linear-gradient(135deg, #02acc8 0%, #e01272 100%);
}

.hover-lift {
  transition: all 0.3s ease;
}

.hover-lift:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(2, 172, 200, 0.2);
}

@media (max-width: 992px) {
  #hero {
    padding: 8rem 0 4rem;
  }

  h1.display-4 {
    font-size: 2.5rem !important;
  }

  .hero-media {
    margin-top: 2rem;
    transform: none !important;
  }
}

section {
  padding: 5rem 0;
}

.section-title {
  margin-bottom: 3rem;
  text-align: center;
}
.section-title.text-left {
  text-align: left;
}
.section-title h2 {
  font-size: 2.2rem;
  color: var(--primary);
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.section-title h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background-color: var(--third);
}

.section-title p {
  font-size: 1.1rem;
  color: var(--gray);
  max-width: 700px;
  margin: 0 auto;
}

#about {
  padding: 6rem 0;
  background: linear-gradient(135deg, #f8fcff 0%, #fff9fb 100%);
}

.hover-lift {
  transition: all 0.3s ease;
  border: 1px solid rgba(2, 172, 200, 0.1);
}

.hover-lift:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(2, 172, 200, 0.1) !important;
}

.media-container {
  padding: 15px;
  background: white;
  border-radius: 1.5rem;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.decorative-border {
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  background: linear-gradient(135deg, #02acc8 0%, #e01272 100%);
  border-radius: 2rem;
  z-index: 0;
  opacity: 0.1;
}

.about-image img {
  border: 3px solid white;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

#pharmacists {
  padding: 6rem 0;
  background: linear-gradient(135deg, #f8fcff 0%, #fff9fb 100%);
}

.bg-soft-primary {
  background: linear-gradient(135deg, #f0fcff 0%, #fef7fa 100%);
  border: 1px solid rgba(2, 172, 200, 0.15);
}

.icon-box {
  width: 70px;
  height: 70px;
  transition: transform 0.3s ease;
}

.shadow-sm-hover {
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.shadow-sm-hover:hover {
  box-shadow: 0 5px 20px rgba(2, 172, 200, 0.1);
  transform: translateY(-3px);
}

.step-badge {
  display: inline-block;
  width: 32px;
  height: 32px;
  line-height: 32px;
  border-radius: 8px;
  position: relative;
  top: -28px;
  font-size: 0.9rem;
}
.card .card-top i {
  color: #02acc8 !important;
}
.bg-primary-10 {
  background: rgba(2, 172, 200, 0.1);
}

.transition-all {
  transition: all 0.3s ease;
}

.display-6 {
  font-size: 1.8rem;
}

#distributors {
  padding: 6rem 0;
  background: linear-gradient(135deg, #f8fdff 0%, #fff9fb 100%);
}

.content-card,
.form-card {
  transition: transform 0.3s ease;
  border: 1px solid rgba(2, 172, 200, 0.15);
}

.content-card:hover,
.form-card:hover {
  transform: translateY(-5px);
}

.benefits-box {
  border-left: 3px solid #02acc8;
  background: rgba(2, 172, 200, 0.05);
}

.form-control {
  border: 1px solid rgba(2, 172, 200, 0.2);
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: #02acc8;
  box-shadow: 0 0 0 3px rgba(2, 172, 200, 0.1);
}

.btn-primary-gradient {
  background: linear-gradient(135deg, #02acc8 0%, #e01272 100%);
  border: none;
  color: white;
  transition: all 0.3s ease;
}

.btn-primary-gradient:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(2, 172, 200, 0.2);
  color: white;
}
.section-title .white {
  color: white;
}
.bg-info-soft {
  background: rgba(23, 162, 184, 0.1);
}
.bg-success-soft {
  background: rgba(40, 167, 69, 0.1);
}
.bg-primary-soft {
  background: rgba(2, 172, 200, 0.1);
}

@media (max-width: 992px) {
  #distributors {
    padding: 4rem 0;
  }

  .form-card {
    margin-top: 2rem;
  }
}
#partners {
  padding: 6rem 0;
  background: linear-gradient(135deg, #f8fcff 0%, #fff9fb 100%);
}

.title-line {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #02acc8 0%, #e01272 100%);
}

.partner-logo {
  transition: all 0.3s ease;
  border: 1px solid rgba(2, 172, 200, 0.1);
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.partner-logo:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(2, 172, 200, 0.1) !important;
}
.partners-slider .partner-logo {
  background-color: white;
  margin: 15px;
  padding: 0px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
}
.partner-logo img {
  width: 100%;
  height: 100%;
}
.partners-slider .slick-slide {
  padding: 10px;
}

.slick-prev:before,
.slick-next:before {
  color: #02acc8 !important;
  font-size: 30px;
}

.slick-prev {
  left: -40px;
}

.slick-next {
  right: -40px;
}
.text-primary-gradient {
  background: linear-gradient(135deg, #02acc8 0%, #e01272 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.stat-card {
  transition: all 0.3s ease;
  border: 6px solid rgb(2 172 200 / 27%);
  background-color: #ffffff1c;
}
.stat-card:hover {
  transform: translateY(-3px);
}

.counter {
  font-size: 2.5rem;
  font-weight: 700;
}

#learning {
  background: linear-gradient(150deg, #f8fcff 0%, #fff9fb 100%);
  padding: 6rem 0;
}

.title-underline {
  width: 80px;
  height: 3px;
  margin: 1.5rem auto;
  background: linear-gradient(90deg, #02acc8 0%, #e01272 100%);
}

.learning-intro-card {
  border: 1px solid rgba(2, 172, 200, 0.1);
  transition: transform 0.3s ease;
}

.step-card {
  border: 1px solid rgba(2, 172, 200, 0.1);
  position: relative;
  transition: all 0.3s ease;
}

.step-number {
  position: absolute;
  top: -15px;
  left: -15px;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  box-shadow: 0 3px 10px rgba(2, 172, 200, 0.2);
}

.why-matters {
  border-left: 4px solid #02acc8;
  background: rgba(2, 172, 200, 0.05);
}

.text-primary-gradient {
  background: linear-gradient(135deg, #02acc8 0%, #e01272 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.shadow-sm-hover:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(2, 172, 200, 0.1) !important;
}

#feedback {
  background: linear-gradient(135deg, #f8fcff 0%, #fff9fb 100%);
}

.testimonial-inner {
  border: 1px solid rgba(2, 172, 200, 0.1);
  margin: 0 15px;
  transition: all 0.3s ease;
}

.slick-slide.slick-active .testimonial-inner {
  transform: scale(0.95);
}

.slick-center .testimonial-inner {
  transform: scale(1);
  box-shadow: 0 15px 30px rgba(2, 172, 200, 0.1);
}

.slick-prev,
.slick-next {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: white !important;
  border: 1px solid #02acc8 !important;
  transition: all 0.3s ease;
}

.slick-prev:hover,
.slick-next:hover {
  background: #02acc8 !important;
}

.slick-prev:before,
.slick-next:before {
  color: #02acc8;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}

.slick-prev:before {
  content: "\f053";
}

.slick-next:before {
  content: "\f054";
}

.slick-prev:hover:before,
.slick-next:hover:before {
  color: white !important;
}

.slick-dots li.slick-active button:before {
  color: var(--primary) !important;
}

#contact {
  padding: 6rem 0;
  background: linear-gradient(150deg, #f8fcff 0%, #fff9fb 100%);
}

.title-line {
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #02acc8 0%, #e01272 100%);
  margin: 1rem auto;
}

.contact-info-card,
.contact-form-card {
  border: 1px solid rgba(2, 172, 200, 0.1);
  transition: transform 0.3s ease;
}

.contact-info-card:hover,
.contact-form-card:hover {
  transform: translateY(-5px);
}

.detail-item {
  padding: 1rem;
  border-radius: 8px;
  transition: background 0.3s ease;
}

.detail-item:hover {
  background: rgba(2, 172, 200, 0.05);
}

.social-icon {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-icon:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(2, 172, 200, 0.2);
}

.form-control {
  border: 1px solid rgba(2, 172, 200, 0.2);
  transition: all 0.3s ease;
}

.footer {
  background: linear-gradient(135deg, #02acc8 0%, #e01272 100%);
}

.bg-dark-gradient {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

.social-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.social-icon:hover {
  transform: translateY(-3px);
}

.app-download-btn {
  border-radius: 8px;
  transition: all 0.3s ease;
  padding: 0.75rem 1.5rem;
}

.hover-lift:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 255, 255, 0.1);
}

.text-primary-gradient {
  background: linear-gradient(135deg, #02acc8 0%, #e01272 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.border-light-10 {
  border-color: rgba(255, 255, 255, 0.1) !important;
}

.opacity-75 {
  opacity: 0.75;
}

.counter {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s, transform 0.8s;
}

.fade-in-up.show {
  opacity: 1;
  transform: none;
}

.modal-content {
  position: relative;
}

.auth-form {
  display: none !important;
  position: absolute;
  width: 100%;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.auth-form.active {
  display: block !important;
  opacity: 1;
  position: relative;
}
.role-selection-form {
  display: none !important;
  position: absolute;
  width: 100%;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.role-selection-form.active {
  display: block !important;
  opacity: 1;
  position: relative;
}
.modal.fade .modal-dialog {
  transition: transform 0.3s ease-out;
  transform: translate(0, -50px);
}

.modal.show .modal-dialog {
  transform: none;
}
.auth-form.active {
  display: block;
}
.modal-lg {
  max-width: 800px;
}
.modal-content {
  border-radius: 1rem;
  border: 2px solid;
  border: unset;
  background: #fff;
}

.separator {
  color: #6c757d;
  margin: 1.5rem 0;
  text-align: center;
  position: relative;
}

.separator::before,
.separator::after {
  content: "";
  flex: 1;
  border-bottom: 1px solid #dee2e6;
  margin: auto;
}

.separator::before {
  margin-right: 1rem;
}

.separator::after {
  margin-left: 1rem;
}
.custom-file {
  position: relative;
  overflow: hidden;
}

.custom-file-input {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  height: 100%;
  cursor: pointer;
}

.custom-file-label {
  display: block;
  padding: 0.5rem 1rem;
  border: 1px solid #dee2e6;
  border-radius: 0.375rem;
  background-color: #f8f9fa;
  cursor: pointer;
}

.custom-file-label::after {
  content: "Browse";
  background: #f8f9fa;
  border-left: 1px solid #dee2e6;
  color: #02acc8;
  font-weight: 500;
  padding-left: 10px;
}

.invalid-feedback {
  font-size: 0.85em;
}
.role-option {
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.role-option:hover {
  border-color: #02acc8;
  transform: translateY(-5px);
}

.cursor-pointer {
  cursor: pointer;
}
.back-to-role {
  color: black;
  text-decoration: none;
}

.back-to-role:hover {
  text-decoration: underline;
}
.validation-message {
  font-size: 0.85rem;
  margin-top: 0.25rem;
}
.loader-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9998;
}

.loader {
  border: 4px solid #f3f3f3;
  border-top: 4px solid var(--primary);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.success-message {
  position: fixed;
  top: 20px;
  right: 20px;
  background: var(--primary);
  color: white;
  padding: 10px 20px;
  border-radius: 5px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  animation: fadeInOut 3s ease-in-out;
}

@keyframes fadeInOut {
  0% {
    opacity: 0;
    transform: translateY(-10px);
  }
  10%,
  90% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(-10px);
  }
}

.footer {
  background: linear-gradient(135deg, #02acc8 0%, #e01272 100%);
}

.bg-dark-gradient {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

.social-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.social-icon:hover {
  transform: translateY(-3px);
}

.app-download-btn {
  border-radius: 8px;
  transition: all 0.3s ease;
  padding: 0.75rem 1.5rem;
}

.hover-lift:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 255, 255, 0.1);
}

.text-primary-gradient {
  background: linear-gradient(135deg, #02acc8 0%, #e01272 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.border-light-10 {
  border-color: rgba(255, 255, 255, 0.1) !important;
}

.opacity-75 {
  opacity: 0.75;
}
.huawei-icon:hover img {
  filter: invert(1);
}
.social-icons h5 {
  flex: 100%;
  margin-bottom: -5px;
}
.agencies {
  flex-wrap: wrap;
  justify-content: center;
}

/* error */
.error-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.error-popup {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.error-popup p {
  margin: 0 0 20px;
  font-size: 16px;
  color: #333;
}

.close-error-popup {
  background: #e74c3c;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 4px;
  cursor: pointer;
}

/* resend */
#resendOtpButton {
  background-color: #6c757d;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

#resendOtpButton:hover {
  background-color: #5a6268;
}

/* to stop AOS */
[data-aos] {
  opacity: 1 !important;
  transform: none !important;
}

/* sticky menu */
.sticky-side-menu {
  position: fixed;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  z-index: 1050;
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: rgb(2 172 200);
  border-radius: 0 12px 12px 0;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.07);
  padding: 12px 8px;
}

.sticky-side-menu .side-menu-link {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.7rem;
  padding: 10px;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
  text-decoration: none;
}

.sticky-side-menu .side-menu-link:hover {
  background: #fff;
  color: rgb(2 172 200);
}

.side-menu-link {
  position: relative;
}

.side-menu-link .link-label {
  position: absolute;
  left: 100%;
  margin-left: 10px;
  background: #fff;
  color: rgb(2 172 200);
  padding: 6px 10px;
  font-size: 0.9rem;
  white-space: nowrap;
  border-radius: 6px;
  opacity: 0;
  transform: translateX(-10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.side-menu-link:hover .link-label {
  opacity: 1;
  transform: translateX(0);
}
.note {
  font-size: 0.75rem;
  color: #222;
  margin-top: 1rem;
}
.benefits-list-number {
  font-size: 1rem;
  background-color: #04acc8;
  height: 2rem;
  padding: 0.25rem 0.75rem;
  color: #fff;
  border-radius: 0.5rem;
  margin-right: 10px;
}
#inner_hero {
  background: linear-gradient(90deg, #1c3b41 0%, #02acc8 100%);
  color: #fff;
  display: flex;
  padding: 12rem 0 8rem;
}
.community img {
  object-fit: cover;
  max-height: 350px;
  width: 100%;
}
.testimonial img {
  object-fit: scale-down;
  height: 350px;
  width: 100%;
}

.custom-modal-size {
  height: 90vh;
}

.custom-modal-size .modal-content {
  height: 90vh;
  max-height: 90vh;
}
.custom-modal-size .modal-content .community img {
  object-fit: contain;
  max-height: 80vh;
  width: 100%;
}
.custom-modal-size .modal-content .testimonial img {
  object-fit: scale-down;
  height: 80vh;
  width: 100%;
}

.custom-modal-size .slick-arrow,
#testimonialModal .slick-arrow {
  z-index: 9999;
}
.custom-modal-size .modal-content {
  border: unset;
}
section#wework {
  position: relative;
  z-index: 99;
}

@media (max-width: 768px) {
  .community-modal-slider .community {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60vh;
    min-height: 250px;
  }

  .community-modal-slider .community img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    display: block;
  }
  .custom-modal-size .modal-content {
    height: unset;
    max-height: unset;
  }
  .hero-bg-slider,
  .hero-bg-slider .hero-item,
  .hero-bg-slider .slick-slide {
    height: 60vh;
    min-height: 320px;
  }
  .hero-bg-slider img {
    height: 60vh;
    min-height: 320px;
    object-fit: cover;
  }
  .navbar .navbar-nav {
    display: flex;
    flex-direction: row;
    margin: 2rem 0;
    justify-content: center;
  }

  .navbar-toggler {
    border: none;
    padding: 0.75rem;
  }

  .navbar-toggler:focus {
    box-shadow: none;
  }

  .custom-toggler {
    position: relative;
    width: 30px;
    height: 20px;
    display: block;
    background-image: none !important;
    margin-inline-end: 5px;
  }

  .line {
    position: absolute;
    width: 100%;
    height: 2px;
    background: #333;
    border-radius: 2px;
    transition: all 0.3s ease;
  }

  .line1 {
    top: 0;
    transform: rotate(0);
  }

  .line2 {
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
  }

  .line3 {
    bottom: 0;
    transform: rotate(0);
  }

  /* When menu is open */
  .navbar-toggler:not(.collapsed) .line1 {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
  }

  .navbar-toggler:not(.collapsed) .line2 {
    opacity: 0;
  }

  .navbar-toggler:not(.collapsed) .line3 {
    bottom: 50%;
    transform: translateY(50%) rotate(-45deg);
  }

  #contact {
    padding: 4rem 0;
  }

  .contact-info-card,
  .contact-form-card {
    margin-bottom: 2rem;
  }
  #learning {
    padding: 4rem 0;
  }

  .step-card {
    margin-bottom: 2rem;
  }

  #partners {
    padding: 4rem 0;
  }

  .counter {
    font-size: 2rem;
  }
  #pharmacists {
    padding: 4rem 0;
  }

  .display-6 {
    font-size: 1.5rem;
  }
  #about {
    padding: 4rem 0;
  }

  .about-content {
    flex-direction: column;
  }

  .about-image {
    margin-top: 2rem;
  }

  .slick-prev,
  .slick-next {
    width: 40px;
    height: 40px;
  }

  .slick-prev {
    left: -15px;
  }

  .slick-next {
    right: -15px;
  }

  .nav-links {
    display: none;
  }
  #hero::after {
    background-color: #107181;
    background-image: url(img/hero-mob.jpg);
    top: 70px;
    background-repeat: no-repeat;
    background-size: 100% 33%;
  }
  #hero h1,
  #hero p {
    color: #fff;
  }
  .hero-content,
  .about-content,
  .distributors-content {
    flex-direction: column;
  }

  .hero-text,
  .about-text,
  .distributors-text {
    margin-bottom: 2rem;
  }

  .section-title h2 {
    font-size: 1.8rem;
  }
  .partner-logo {
    height: 150px;
  }
  .temp_space {
    display: none;
  }
  .agencies {
    justify-content: flex-start;
  }
  .sticky-side-menu {
    display: none;
  }
  .step-number {
    top: -20px;
    left: 0px;
  }
  .why-matters {
    border-left: none;
  }

  .form-floating > .form-control:focus ~ label,
  .form-floating > .form-control:not(:placeholder-shown) ~ label,
  .form-floating > .form-select ~ label {
    white-space: nowrap;
  }
  .form-floating > label {
    font-size: 12px;
    white-space: wrap;
  }
}
