/* Fonts */
:root {
  --default-font: "Roboto", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Poppins", sans-serif;
  --nav-font: "Raleway", sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root {
  --background-color: #ffffff;
  /* Background color for the entire website, including individual sections */
  --default-color: #444444;
  /* Default color used for the majority of the text content across the entire website */
  --heading-color: #0f4c72;
  /* Color for headings, subheadings and title throughout the website */
  --accent-color: #f6931e;
  /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff;
  /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff;
  /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #084a72;
  /* The default color of the main navmenu links */
  --nav-hover-color: #0f4c72;
  /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff;
  /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff;
  /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #2c4964;
  /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #1977cc;
  /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #f1f7fc;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/* Pulsating Play Button
------------------------------*/
.pulsating-play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(var(--accent-color) 50%, color-mix(in srgb, var(--accent-color), transparent 75%) 52%);
  border-radius: 50%;
  display: block;
  position: relative;
  overflow: hidden;
}

.pulsating-play-btn:before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  animation-delay: 0s;
  animation: pulsate-play-btn 2s;
  animation-direction: forwards;
  animation-iteration-count: infinite;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid color-mix(in srgb, var(--accent-color), transparent 30%);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.pulsating-play-btn:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.pulsating-play-btn:hover:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  animation: none;
  border-radius: 0;
}

.pulsating-play-btn:hover:after {
  border-left: 15px solid var(--accent-color);
  transform: scale(20);
}

@keyframes pulsate-play-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

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

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  color: var(--default-color);
  transition: all 0.5s;
  z-index: 997;
  background-color: var(--background-color);
  box-shadow: 0 10px 60px rgba(38, 45, 118, .08);
}

.header .topbar {
  height: 80px;
  background-image: url(../img/header-banner.webp);
  max-width: 100vw !important;
  overflow: hidden;
  display: flex;
  align-items: center;

}

.header .topbar .contact-info i {
  font-style: normal;
  color: var(--contrast-color);
}

.header .topbar .contact-info i a,
.header .topbar .contact-info i span {
  padding-left: 5px;
  color: var(--contrast-color);
}

@media (max-width: 575px) {

  .header .topbar .contact-info i a,
  .header .topbar .contact-info i span {
    font-size: 13px;
  }
}

.header .topbar .contact-info i a {
  line-height: 0;
  transition: 0.3s;
}

.header .topbar .contact-info i a:hover {
  color: var(--contrast-color);
  text-decoration: underline;
}

.header .topbar .social-links a {
  color: color-mix(in srgb, var(--contrast-color), transparent 40%);
  line-height: 0;
  transition: 0.3s;
  margin-left: 20px;
}

.header .topbar .social-links a:hover {
  color: var(--contrast-color);
}

.header .branding {
  min-height: 60px;
  padding: 10px 0;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 80px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}

.header .cta-btn,
.header .cta-btn:focus {
  color: var(--contrast-color);
  background: #0f4c72;
  font-size: 20px;
  padding: 12px 55px;
  margin: 0 0 0 30px;
  border-radius: 5px;
  transition: 0.3s;
  font-weight: 700;
}

.header .cta-btn:hover,
.header .cta-btn:focus:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, #0f4c72, transparent 15%);
}

@media (max-width: 1200px) {
  .header .logo {
    order: 1;
  }

  .header .cta-btn {
    order: 2;
    margin: 0 15px 0 0;
    padding: 6px 15px;
  }

  .header .navmenu {
    order: 3;
  }
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

.scrolled .header .topbar {
  height: 0;
  visibility: hidden;
  overflow: hidden;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu>ul>li {
    white-space: nowrap;
    padding: 15px 14px;
  }

  .navmenu>ul>li:last-child {
    padding-right: 0;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    font-size: 15px;
    padding: 0 2px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
    font-weight: 600;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu>ul>li>a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: var(--nav-hover-color);
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
  }

  .navmenu a:hover:before,
  .navmenu li:hover>a:before,
  .navmenu .active:before {
    visibility: visible;
    width: 100%;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Mobile Navigation */
@media (max-width: 1199px) {


  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }



  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  border-top: 1px solid color-mix(in srgb, var(--accent-color), transparent 75%);
  font-size: 14px;
  position: relative;
}

.footer .footer-top {
  padding-top: 50px;
}

.footer .footer-about .logo {
  line-height: 1;
  margin-bottom: 25px;
}

.footer .footer-about .logo img {
  max-height: 85px;
  margin-right: 6px;
}

.footer .footer-about .logo span {
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 1px;
}

.footer .footer-about p {
  font-size: 14px;
  font-family: var(--heading-font);
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.footer h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

.footer .footer-links {
  margin-bottom: 30px;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul i {
  padding-right: 2px;
  font-size: 12px;
  line-height: 0;
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  display: inline-block;
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: var(--accent-color);
}

.footer .footer-contact p {
  margin-bottom: 5px;
}

.footer .copyright {
  padding-top: 25px;
  padding-bottom: 25px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 8px;
  font-size: 13px;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  position: relative;
}

.page-title .heading {
  padding: 80px 0;
  border-top: 1px solid color-mix(in srgb, var(--accent-color), transparent 80%);
}

.page-title .heading h1 {
  font-size: 38px;
  font-weight: 700;
}

.page-title nav {
  background-color: color-mix(in srgb, var(--accent-color), transparent 94%);
  padding: 20px 0;
}

.page-title nav ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

.page-title nav ol li+li {
  padding-left: 10px;
}

.page-title nav ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  scroll-margin-top: 72px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 60px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 25px;
  position: relative;
}

.section-title h3 {
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  font-weight: 700;
  text-transform: capitalize;
}

.section-title h3:before {
  content: "";
  position: absolute;
  display: block;
  width: 160px;
  height: 1px;
  background: color-mix(in srgb, var(--default-color), transparent 60%);
  left: 0;
  right: 0;
  bottom: 1px;
  margin: auto;
}

.section-title h3::after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  padding: 70px 0 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero .slider-background {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero .container {
  z-index: 3;
}

.welcome h1 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
}

.welcome .website-name {
  margin: 0;
  font-size: 30px;
  font-weight: 700;
  color: #ffffff;
}

.welcome p {
  font-size: 24px;
  margin: 0;
}

.content {
  margin-top: 20px;
}

.content .why-box {
  color: var(--contrast-color);
  background: var(--accent-color);
  padding: 30px;
  border-radius: 4px;
}

.content .why-box h3 {
  color: var(--contrast-color);
  font-weight: 700;
  font-size: 34px;
  margin-bottom: 30px;
}

.content .why-box p {
  margin-bottom: 30px;
}

.content .why-box .more-btn {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--contrast-color), transparent 80%);
  display: inline-block;
  padding: 6px 30px 8px 30px;
  border-radius: 50px;
  transition: all ease-in-out 0.4s;
}

.content .why-box .more-btn i {
  font-size: 14px;
}

.content .why-box .more-btn:hover {
  background: var(--surface-color);
  color: var(--accent-color);
}

.content .icon-box {
  text-align: center;
  border-radius: 10px;
  background: color-mix(in srgb, var(--surface-color), transparent 20%);
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  padding: 40px 30px;
  width: 100%;
}

.content .icon-box i {
  font-size: 40px;
  color: var(--accent-color);
}

.content .icon-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 10px 0 20px 0;
}

.content .icon-box p {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/

div,
p,
h1,
h2,
h3,
h4,
h5,
h6,
li,
label,
button,
ul,
span {
  text-transform: capitalize;
}

.lowercase {
  text-transform: lowercase !important;
}

.topbar .tablet-box img {
  height: 60px;
  width: auto;
}

.topbar .tablet-box {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.topbar .tablet-box-left {
  display: flex;
  justify-content: right;
  align-items: center;
  height: 100%;
}

.topbar .tablet-box-right {
  display: flex;
  justify-content: left;
  align-items: center;
  height: 100%;
}

.tablet-box-left p {
  color: white;
  font-size: 2vw;
  font-weight: 700;
  margin: 0;
  font-family: "Bebas Neue", sans-serif;
  font-style: normal;
  letter-spacing: 1.3px;
}

.tablet-box-left p span {
  font-weight: normal;
}

.tablet-box-right p {
  color: white;
  font-size: 1.4vw;
  font-weight: 500;
  margin: 0;
  font-family: "Bebas Neue", sans-serif;
  font-style: normal;
  letter-spacing: 1.3px;
  line-height: 22px;
}

.tablet-box-right p span {
  color: white;
  font-size: 1vw;
  font-weight: 500;
  margin: 0;
  font-family: "Bebas Neue", sans-serif;
  font-style: normal;
  letter-spacing: 1.3px;
  line-height: 22px;
}

.container-padding-left-right {
  padding-left: 5vw;
  padding-right: 5vw;
}

/* ===== RX HERO COLUMN FIX ===== */
.rx-hero-wrap {
  position: relative;
  display: flex;
  align-items: center;
  /* vertical center */
  padding: 40px 30px;
  background: #ffffff;
  overflow: hidden;
  font-family: 'Inter', system-ui, sans-serif;
}

/* container full width inside column */
.rx-hero-content {
  position: relative;
  z-index: 5;
  width: 100%;
  overflow: hidden;
}

/* ===== TEXT ===== */
.rx-hero-eyebrow {
  font-size: 14px;
  font-weight: 600;
  color: #6c757d;
  margin-bottom: 8px;
}

.rx-hero-title {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 20px;
  color: #111;
}

.rx-hero-points {
  list-style: none;
  padding: 0;
  margin-bottom: 28px;
}

.rx-hero-points li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 6px;
  font-size: 16px;
}

.rx-hero-points li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #111;
  font-weight: 700;
}

.rx-highlight {
  font-weight: 700;
}

.rx-highlight-red {
  color: #b11226;
  font-weight: 700;
}

/* ===== BUTTON ===== */
.rx-hero-btn {
  display: inline-block;
  padding: 14px 34px;
  background: #b11226;
  color: #fff;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.rx-hero-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(15, 76, 114, 0.30);
  color: #f1f1f1;
}

.rx-hero-rating {
  margin-top: 16px;
  color: #0f4b72;
  font-size: 18px;
  font-weight: 600;
  display: flex;
  flex-direction: row;
  gap: 10px;
}

.rx-hero-rating .star-icon-box i {
  color: #f6931e;
}

.banner-left-side-img img {
  width: 100%;
}

/* =================================================
   🔥 NEW PREMIUM BACKGROUND ANIMATION (NO HEIGHT)
   ================================================= */
/* ==============================
   RX MEDICAL HERO BASE
================================ */
.rx-hero-wrap {
  position: relative;
  display: flex;
  align-items: center;
  padding: 40px 30px;
  background: #ffffff;
  overflow: hidden;
}

/* ==============================
   MEDICAL BACKGROUND LAYERS
================================ */

/* ==============================
   RX HERO – ULTRA CLEAN
================================ */
.rx-hero-wrap {
  position: relative;
  display: flex;
  align-items: center;
  padding: 40px 30px;
  background: #f6931e26;
  /* plain white */
  overflow: hidden;
}

/* remove all background effects */
.rx-hero-bg {
  display: none;
}

/* content stays normal */
.rx-hero-content {
  position: relative;
  z-index: 1;
  padding-left: 5vh;
}

/* text (unchanged, clean) */
.rx-hero-eyebrow {
  font-size: 20px;
  font-weight: 700;
  color: #003253;
}

.rx-hero-title {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.25;
  color: #111;
}

/* button */
.rx-hero-btn {
  background: #0f4c72;
  color: #ffffff;
  border-radius: 5px;
  padding: 14px 34px;
  text-decoration: none;
}

/* responsive */
@media (max-width: 768px) {
  .rx-hero-title {
    font-size: 30px;
  }
}

/* Animation Css */

/* soft fog near the ground */
.scene::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 22vh;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(to top, rgba(255, 255, 255, 0.1), transparent);
  filter: blur(2px);
  opacity: 0.6;
}

/* Touch-friendly info panel */
details.panel {
  position: absolute;
  top: calc(12px + env(safe-area-inset-top));
  left: calc(12px + env(safe-area-inset-left));
  z-index: 5;
  width: min(38rem, calc(100% - 24px));
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
  box-shadow: 0 14px 44px rgba(0, 0, 0, 0.4);
  overflow: hidden;
}

details.panel>summary {
  list-style: none;
  cursor: pointer;
  padding: 12px 14px;
  font-weight: 700;
  letter-spacing: 0.2px;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

details.panel>summary::-webkit-details-marker {
  display: none;
}

.panel .content {
  padding: 0 14px 14px;
  color: rgba(238, 246, 255, 0.86);
  font-size: 0.95rem;
  line-height: 1.45;
}

.panel code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas,
    "Liberation Mono", monospace;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: 0.12em 0.42em;
  border-radius: 8px;
  color: #fff;
}

/* Snow layers (parallax/depth) */
.snow {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  /* does not block touch */
  overflow: hidden;
  transform: translateZ(0);
  /* compositor hint */
}

/* Each flake: parent falls (Y), pseudo-element drifts+spins (X+rotate) */
.flake {
  position: absolute;
  top: -14vh;
  left: calc(var(--x, 50) * 1%);
  animation: fall var(--fall, 16s) linear infinite;
  animation-delay: var(--delay, 0s);
  will-change: transform;
}

.flake::before {
  content: "💊";
  display: block;
  font-size: 18px;
  opacity: 0.6;
  filter: blur(var(--blur, 0px));
  transform-origin: 50% 50%;
  will-change: transform;
  animation: drift var(--driftDur, 6s) ease-in-out infinite;
  animation-delay: calc(var(--delay, 0s) * 0.5);
  text-shadow: 0 10px 18px rgba(0, 0, 0, 0.18);
}


.flake:nth-child(3n + 2)::before {
  content: "➕";
  opacity: 0.4;
}

/* Parallax presets */
.snow--far .flake {
  --size: clamp(9px, 1vw, 13px);
  --opacity: 0.22;
  --blur: 1.2px;
  --driftDur: 10s;
}

.snow--mid .flake {
  --size: clamp(12px, 1.4vw, 18px);
  --opacity: 0.42;
  --blur: 0.55px;
  --driftDur: 8s;
}

.snow--near .flake {
  --size: clamp(16px, 2vw, 28px);
  --opacity: 0.7;
  --blur: 0px;
  --driftDur: 6s;
}

/* Motion */
@keyframes fall {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(0, 132vh, 0);
  }
}

/* Natural-ish flutter: drift left/right + rotate (per-flake amplitude via --drift) */
@keyframes drift {
  0% {
    transform: translateX(0) rotate(0turn);
  }

  35% {
    transform: translateX(calc(var(--drift, 40px) * -0.6)) rotate(0.35turn);
  }

  70% {
    transform: translateX(var(--drift, 40px)) rotate(0.75turn);
  }

  100% {
    transform: translateX(0) rotate(1turn);
  }
}

/* Responsive: reduce flakes on very small screens (perf + clarity) */
@media (max-width: 480px) {

  .snow--far .flake:nth-child(n + 11),
  .snow--mid .flake:nth-child(n + 11),
  .snow--near .flake:nth-child(n + 11) {
    display: none;
  }

  details.panel .content {
    font-size: 0.9rem;
  }
}

/* Accessibility: respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .flake {
    animation: none;
  }

  .flake::before {
    animation: none;
    opacity: 0.25;
  }
}

.company-logo {
  margin-top: 30px;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  gap: 20px;
}

.company-logo img {
  width: 15%;
  height: auto;
  border-radius: 10px;

}

.uc-product-slider {
  padding: 40px 0;
  background: #ffffff;
}

.uc-product-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  margin: 30px 10px;
}

.uc-title {
  font-size: 25px;
  margin-bottom: 6px;
}

.uc-duration {
  font-size: 14px;
  color: #666;
  margin-bottom: 12px;
}

.uc-tags {
  display: flex;
  justify-content: space-between;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.uc-tags span {
  background: #f1f3f5;
  padding: 5px 20px;
  border-radius: 20px;
  font-size: 14px;
}

.uc-verified {
  color: #0d6efd;
  font-weight: 600;
}

.uc-product-img {
  margin: 10px auto;
  height: 220px;
  width: auto !important;
}
.a2zrx-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 10px;
}
.a2zrx-title {
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    color: #111;
}
.uc-btn {
  position: relative;
  display: inline-block;
  overflow: hidden;
  background: #0f4c72;
  color: #ffffff;
  padding: 10px 40px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 15px;
  z-index: 1;
}

/* animated layer */
.uc-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #f6931e;
  /* hover color */
  transition: all 0.35s ease;
  z-index: -1;
}

.uc-btn:hover::before {
  left: 0;
}

.uc-btn:hover {
  color: #fff;
}


.uc-note {
    display: block;
    margin-top: 10px;
    font-size: 14px;
    color: #f6931e;
    font-weight: 500;
}

.product-fda-logo {
  height: auto;
  width: 80% !important;
  margin-bottom: 5px;
}

.product-bottom-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.uc-product-slider .name {
  text-align: center;
  font-size: 15px;
  color: #f6931e;
  font-weight: 600;
}

.uc-product-slider .name .c-blue {
  color: #609ad9;
  font-weight: 500;
}

.uc-product-slider .name .c-yellow {
  color: #ffbe60;
  font-weight: 500;
}

.uq-improve-section {
  min-height: 90vh;
  background: #ffffff;
  display: flex;
  justify-content: center;
  position: relative;
  padding-top: 50px;
}

.uq-improve-wrapper {
  text-align: center;
  width: 100%;
}

.uq-crown {
  margin-bottom: 16px;
}

/* steps */
.uq-steps {
  display: inline-flex;
  background: #f1f1f1;
  border-radius: 30px;
  overflow: hidden;
  margin-bottom: 28px;
}

.uq-step {
  width: 70px;
  height: 35px;
  border-radius: 30px;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
}

.uq-step.uq-active {
  background: #f6931e;
  color: #fff;
}

/* heading */
.uq-heading {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 30px;
  color: #000;
}

/* buttons */
.uq-options {
  display: flex;
  flex-direction: column;
  gap: 14px;
  justify-content: center;
  align-items: center;
}



.uq-option-btn {
  position: relative;
  display: inline-block;
  overflow: hidden;
  background: #0f4c72;
  color: #ffffff;
  padding: 10px 50px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 16px;
  z-index: 1;
  width: 350px;
  max-width: 420px;
}

/* animated layer */
.uq-option-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #f6931e;
  /* hover color */
  transition: all 0.35s ease;
  z-index: -1;
}

.uq-option-btn:hover::before {
  left: 0;
}

.uq-option-btn:hover {
  color: #fff;
}

.uq-crown span {
  font-size: 100px;
}

.animation-logo-box {
  position: absolute;
  z-index: 9;
  top: 20px;
  width: 20vw;
}

.animation-logo-box img {
  width: 100%;
}

.right-4per {
  right: 4%;
}

.left-4per {
  left: 4%;
}


.uq-dots-only {
  position: relative;
  width: 100%;
  height: 250px;
  overflow: hidden;
}

/* dots layer */
.uq-dots-only::before {
  content: "";
  position: absolute;
  inset: 0;

  background:
    radial-gradient(circle, rgba(201, 164, 92, 0.9) 2px, transparent 3px) 0 0 / 14px 14px;

  mask-image: linear-gradient(90deg,
      transparent 0%,
      #000 40%,
      #000 60%,
      transparent 100%);
  -webkit-mask-image: linear-gradient(90deg,
      transparent 0%,
      #000 40%,
      #000 60%,
      transparent 100%);

  animation: uq-dots-sweep 4s linear infinite;
}

/* animation */
@keyframes uq-dots-sweep {
  0% {
    background-position: -200px 0;
  }

  100% {
    background-position: 200px 0;
  }
}

.c-gray {
  background: #F7F7F7;
}

.ur-consult-section {
  background: #fff;
}

/* brand */
.ur-brand-text {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 2px;
}

.ur-brand-badge {
  background: #b91c1c;
  color: #fff;
  padding: 4px 8px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 14px;
}

/* heading */
.ur-heading {
  font-size: 35px;
  font-weight: 700;
  line-height: 1.2;
}

.ur-heading span {
  font-weight: 800;
}

.ur-subtext {
  font-size: 15px;
  color: #333;
}

/* checklist */
.ur-checklist {
  list-style: none;
  padding-left: 0;
}

.ur-checklist li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  font-size: 25px;
}

.ur-checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 700;
}

/* button */



/* reviews */
.ur-stars {
  color: #d4af37;
  font-size: 16px;
}

.ur-reviews span {
  font-size: 14px;
}

/* links & text */
.ur-safety-link {
  font-size: 15px;
  color: #475569;
  text-decoration: underline;
}

.ur-disclaimer {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.5;
}

/* dots decor */
.ur-dots-pattern {
  position: absolute;
  top: 40px;
  right: -40px;
  width: 160px;
  height: 160px;
  background:
    radial-gradient(circle, rgba(201, 164, 92, .9) 2px, transparent 3px) 0 0 / 16px 16px;
}

.middle-logo {
  width: 150px;
  height: auto;
}

.image-slider img {
  border-radius: 20px;
}

.post-slider-section .owl-stage {
  transition-timing-function: linear !important;
}



.post-marquee-wrapper {
  width: 100%;
  overflow: hidden;
}

.post-marquee-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: postScroll 30s linear infinite;
  will-change: transform;
}

/* MOBILE FIRST — 1 CARD PERFECT */
.post-marquee-card {
  flex: 0 0 calc(100vw - 32px);
  border-radius: 16px;
  overflow: hidden;
}

/* ≥500px → 2 cards */
@media (min-width: 500px) {
  .post-marquee-card {
    flex: 0 0 calc((100vw - 48px) / 2);
  }
}

/* ≥700px → 3 cards */
@media (min-width: 700px) {
  .post-marquee-card {
    flex: 0 0 calc((100vw - 64px) / 3);
  }
}

/* ≥900px → 4 cards */
@media (min-width: 900px) {
  .post-marquee-card {
    flex: 0 0 calc((100vw - 80px) / 4);
  }
}

/* ≥1200px → 5 cards */
@media (min-width: 1200px) {
  .post-marquee-card {
    flex: 0 0 calc((100vw - 96px) / 5);
  }
}

@keyframes postScroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.post-marquee-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.a2zrx-steps-section {
  background-color: #ffffff;
}

/* Header */
.a2zrx-steps-header .a2zrx-steps-subtitle {
  font-size: 14px;
  color: #6c757d;
  letter-spacing: 0.5px;
}

.a2zrx-steps-header .a2zrx-steps-title {
  font-size: 42px;
  font-weight: 700;
  color: #0f4c72;
  line-height: 1.3;
}

.a2zrx-steps-header .a2zrx-steps-title span {
  color: #f6931e;
}

/* Cards */
.a2zrx-step-card {
  padding: 20px;
}

.a2zrx-step-image {
  width: 100%;
  max-width: 260px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 18px;
  margin: 0 auto;
  display: block;
}

.a2zrx-step-label {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #0f1e2e;
}

.a2zrx-step-text {
  font-size: 15px;
  color: #5f6b76;
  max-width: 280px;
  margin: 0 auto;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .a2zrx-steps-header .a2zrx-steps-title {
    font-size: 28px;
  }
}

/* Image wrapper for safe zoom */
.a2zrx-step-card {
  overflow: hidden;
}

/* Zoom effect */
.a2zrx-step-image {
  transition: transform 0.4s ease;
}

/* Hover zoom */
.a2zrx-step-card:hover .a2zrx-step-image {
  transform: scale(1.08);
}

/* Disable hover zoom on touch devices */
@media (hover: none) {
  .a2zrx-step-card:hover .a2zrx-step-image {
    transform: none;
  }
}

.a2zrx-steps-section {
  background-image: url(../img/section-bg.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.a2zrx-authority-section {
  background-color: #ffffff;
}

/* Text styles */
.a2zrx-authority-eyebrow {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #6c757d;
  text-transform: uppercase;
}

.a2zrx-authority-title {
  font-size: 42px;
  font-weight: 600;
  line-height: 1.3;
  color: #0f1e2e;
}

.a2zrx-authority-description {
  font-size: 16px;
  color: #4f5d6b;
  max-width: 520px;
}

.a2zrx-authority-quote {
  font-size: 15px;
  color: #5f6b76;
  line-height: 1.7;
  max-width: 560px;
}

.a2zrx-authority-doctor {
  font-size: 14px;
  color: #0f1e2e;
}

.a2zrx-authority-doctor span {
  color: #6c757d;
}

/* Image */


.a2zrx-authority-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Responsive */
@media (max-width: 991px) {
  .a2zrx-authority-title {
    font-size: 28px;
  }

  .a2zrx-authority-content {
    text-align: center;
  }

  .a2zrx-authority-description,
  .a2zrx-authority-quote {
    margin-left: auto;
    margin-right: auto;
  }
}

.dfjc {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.gap10 {
  gap: 10px;
}

.star-icon-box i {
  color: #f6931e;
}

.plr-50f-18 {
  padding-left: 50px;
  padding-right: 50px;
  font-size: 20px;
  font-weight: 600;
}

.uc-note-two {
  display: block;
  margin-top: 10px;
  font-size: 16px;
  color: #777;
}

.faq-container {
  max-width: 800px;
  margin: 50px auto 0;
  padding: 20px;
  flex: 1;
}

.accordion-button {
  background-color: #ffffff;
  color: #333;
  border: none;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) {
  background-color: #f6931e;
  color: white;
}

.accordion-button:focus {
  box-shadow: 0 0 0 0.2rem rgba(35, 34, 138, 0.25);
}

.accordion-body {
  background-color: #f8f9fa;
  border-left: 4px solid #f6931e;
  animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

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

.faq-icon {
  margin-right: 10px;
  color: #edbe00;
}

.accordion-item {
  margin-bottom: 10px;
  border-radius: 8px;
  overflow: hidden;
}

.imp-note {
  text-align: center;
  margin-top: 2px;
}

.imp-note span {
  color: #aaaaaa;
  font-size: 14px;
  font-weight: 600;
}

/* modal CSS */
/* Modal shell */
.a2zrx-safety-content {
  border-radius: 12px;
  overflow: hidden;
  border: none;
}

/* Header */
.a2zrx-safety-header {
  background: #0f4c72;
  color: #ffffff;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.a2zrx-safety-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 4px;
}

.a2zrx-safety-subtitle {
  font-size: 14px;
  opacity: 0.85;
}

.a2zrx-safety-close {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.6);
  color: #fff;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  font-size: 18px;
  cursor: pointer;
}

/* Body */
.a2zrx-safety-body {
  padding: 30px 32px;
  max-height: 70vh;
  overflow-y: auto;
}

.a2zrx-safety-body h3 {
  margin-top: 32px;
  font-weight: 700;
}

.a2zrx-safety-body h4 {
  font-weight: 700;
  margin-bottom: 16px;
}

.a2zrx-safety-body h5 {
  margin-top: 20px;
  font-weight: 600;
}

.a2zrx-safety-body p,
.a2zrx-safety-body li {
  font-size: 15px;
  line-height: 1.7;
  color: #2f3a44;
}

.a2zrx-safety-disclaimer {
  background: #f6f7f9;
  padding: 16px;
  border-radius: 8px;
  font-size: 14px;
}

/* Mobile */
@media (max-width: 576px) {
  .a2zrx-safety-body {
    padding: 20px;
    max-height: 65vh;
  }

  .a2zrx-safety-title {
    font-size: 18px;
  }
}

@media (max-width: 992px) {
  .topbar .tablet-box img {
    height: 25px;
  }

  .tablet-box-right p {
    font-size: 12px;

  }

  .tablet-box-left p {
    font-size: 12px;

  }

  .tablet-box-right p span {
    font-size: 11px;
  }
}

.content-box {
  padding: 20px 30px;
}


/* form design */

/* form design css */
/* ===== Wrapper ===== */
.shed-funnel-wrapper {
  margin: auto;
  background: #ffffff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

/* ===== Progress Bar ===== */
.shed-progress {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}

.shed-progress-step {
  display: flex;
  align-items: center;
  flex: 1;
}

.shed-progress-circle {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 2px solid #cfcfcf;
  color: #cfcfcf;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: bold;
  background: #fff;
  z-index: 2;
}

.shed-progress-line {
  flex: 1;
  height: 2px;
  background: #cfcfcf;
}

.shed-progress-step:last-child .shed-progress-line {
  display: none;
}

.shed-progress-step.shed-active .shed-progress-circle {
  border-color: #f6931e;
  color: #f6931e;
}

.shed-progress-step.shed-done .shed-progress-circle {
  background: #f6931e;
  border-color: #f6931e;
  color: #ffffff;
}

.shed-progress-step.shed-done .shed-progress-line {
  background: #f6931e;
}

/* ===== Form ===== */


.shed-funnel-wrapper h2 {
  color: #084a72;
  margin-bottom: 20px;
}

.shed-funnel-label {
  color: #084a72;
  font-size: 14px;
  margin-bottom: 6px;
  display: block;
}

.shed-funnel-input,
.shed-funnel-select {
  width: 100%;
  padding: 12px;
  margin-bottom: 18px;
  border-radius: 5px;
  border: 1px solid #ccc;
}

.shed-funnel-button {
  width: 100%;
  padding: 14px;
  background: #f6931e;
  border: none;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  border-radius: 5px;
  cursor: pointer;
}

.shed-funnel-note {
  font-size: 12px;
  color: #666;
  margin-top: 10px;
}

.cursor-pointer {
  cursor: pointer;
}

.shed-consent-wrapper {
  margin: 15px 0 20px;
  font-size: 12px;
  color: #333;
}

.shed-consent-label {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  cursor: pointer;
}

.shed-consent-checkbox {
  margin-top: 3px;
}

.shed-privacy-link {
  display: inline-block;
  margin-top: 6px;
  color: #084a72;
  font-size: 12px;
  text-decoration: underline;
}

.shed-sticky-anchor {
  position: fixed;
  bottom: 10px;
  left: 20px;
  background-color: #f6931e;
  color: #ffffff;
  padding: 14px 22px;
  font-size: 15px;
  font-weight: bold;
  border-radius: 30px;
  text-decoration: none;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
  z-index: 9999;
}

.shed-sticky-anchor:hover {
  background-color: #e68412;
  color: #ffffff;
}


@media (max-width: 1600px) {
  .rx-hero-title {
    font-size: 34px;
  }

  .rx-hero-points {
    list-style: none;
    padding: 0;
    margin-bottom: 15px;
  }
}

@media (max-width: 1500px) {
  .company-logo {
    margin-top: 15px;
  }

  .company-logo img {
    width: 14%;
    height: auto;
    border-radius: 10px;
  }
}

@media (max-width: 1450px) {
  .rx-hero-wrap {
    padding: 20px 10px;

  }
}

@media (max-width: 1350px) {
  .rx-hero-wrap {
    padding: 20px 10px;

  }

  .company-logo img {
    width: 12%;
  }

  .rx-hero-title {
    font-size: 30px;
  }
}

@media (max-width: 1230px) {
  .rx-hero-points li {
    margin-bottom: 5px;
    font-size: 12px;
  }

  .rx-hero-title {
    font-size: 28px;
  }

  .rx-hero-btn {
    background: #0f4c72;
    color: #ffffff;
    border-radius: 5px;
    padding: 10px 34px;
    text-decoration: none;
  }

  .rx-hero-rating {
    margin-top: 10px;
    color: #0f4b72;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    flex-direction: row;
    gap: 10px;
  }
}

@media (max-width: 767px) {

  .button-box a {
    font-size: 12px;
  }

  .header .cta-btn,
  .header .cta-btn:focus {
    font-size: 12px;
    padding: 14px 20px;
  }

  .welcome h1 {
    margin: 0;
    font-size: 25px;
    font-weight: 700;
  }

  .welcome p {
    font-size: 16px;
    margin: 0;
  }
}

.form-page {
  padding-top: 60px;
  padding-bottom: 60px;
}

 .bbb-footer-float{
    position:fixed;
    bottom:10px;
    
    padding:0;
    border-radius:8px;
    display:flex;
    align-items:center;gap:10px;z-index:9999
    
}
.bbb-footer-float img{
    max-height:120px;display:block
}

.bbb-footer-float a{
  width: auto !important;
}
.bbb-footer-float{
  flex-direction: column;
  width: auto !important;
}