
/* Fonts */
:root {
  --default-font: "Lato",  system-ui, -apple-system, "Segoe UI", Lato, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Lato",  sans-serif;
  --nav-font: "Poppins",  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: #040677; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #1a47cc; /* 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: #ffffff;  /* The default color of the main navmenu links */
  --nav-hover-color: #1acc8d; /* 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: #444444; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #1acc8d; /* 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: #f4f5fe;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #08005e;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #0c0091;
  --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);
  overflow-x: hidden !important;
}

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);
}

.container, .container-fluid, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
  --bs-gutter-x: 1.75rem;
  --bs-gutter-y: 0;
  width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 1);
  padding-left: calc(var(--bs-gutter-x) * 1);
  margin-right: auto;
  margin-left: auto;
}
.border-tt {
  border-top: 2px solid red;
  border-bottom: 2px solid red;
  padding: 8px;
  text-align: center;
  font-weight: 600;
  margin: 36px 3% 16px;
}
.gap4 {
  min-height: 40px;
}
.buyONEpnl:hover {
  cursor: pointer !important;
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  /* --background-color: rgba(0, 0, 0, 0.43); */
  --default-color: #ffffff;
  --heading-color: #ffffff;
  color: var(--default-color);
  background-color: rgb(0, 0, 0);
  padding: 18px 0 12px;
  transition: all 0.5s;
  z-index: 997;
  box-shadow: 0 3px 12px #000;
}
.header .logo {
  line-height: 1;
}
.header .logo img {
  max-height: 58px;
  margin: 14px 8px 0 0;
}
.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}
.fixed-top {
  position: absolute;
}
/* .scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
} */


.mbr-welcome {
  background-color: #6f0f0f;
  color: #fdecbb;
  padding: 9px;
  width: 100%;
  text-align: center;
  font-size: 1.8rem;
  margin: 82px 0 0;
}




/* Global Header on Scroll
------------------------------*/
.scrolled .header {
  /* --background-color: #4d0707; */
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
    margin:6px 0 -8px 0;
  }
  .fixed-top {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030;
  padding: 5px 0;
}
#navmenu img {
  max-width: 150px;
  margin: 12px 0 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: color-mix(in srgb, #ffffffa8, transparent 20%);
    font-size: 1rem;
    letter-spacing: 1px;
    padding: 0 12px 0 0;
    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;
  }

  .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;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: red;
    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: 40px;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-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) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    max-height: 260px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: #ffe4e4cc;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

  .buyMnu img {
  max-width: 190px;
  margin: 0 0 0 -6px;
  }

  .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 .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .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;
  }
}

p {
  margin-top: 0;
  margin-bottom: 0.75rem;
  font-size: 1.35rem;
  line-height: 1.3;
}
.prdctSml {
  font-size: 1.2rem;
  line-height: 1.3;
  margin-left: 20px;
}
.bi.bi-check {
  font-size: 2.5rem;
  color: green;
  margin: -14px 0 16px -32px !important;
  float: left;
}
.img-fluid.prdctImg {
  max-width: 80% !important;
  height: auto;
  max-width: 360px;
}
.avatar {
  max-width: 200px;
  float: right;
  border-radius: 50%;
  rotate: 5deg;
  margin: 6px -14px 0 10px;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: #333;
  font-size: 14px;
  position: relative;
  margin-top: -40px;
}

.footer .footer-top {
  padding-top: 50px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .footer-about .logo {
  line-height: 1;
  margin-bottom: 25px;
}

.footer .footer-about .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.footer .footer-about .logo span {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 1px;
  font-family: var(--heading-font);
  color: var(--heading-color);
}

.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 30%);
  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 .footer-newsletter .newsletter-form {
  margin-top: 30px;
  margin-bottom: 15px;
  padding: 6px 8px;
  position: relative;
  border-radius: 4px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  display: flex;
  background-color: var(--background-color);
  transition: 0.3s;
}

.footer .footer-newsletter .newsletter-form:focus-within {
  border-color: var(--accent-color);
}

.footer .footer-newsletter .newsletter-form input[type=email] {
  border: 0;
  padding: 4px;
  width: 100%;
  background-color: var(--background-color);
  color: var(--default-color);
}

.footer .footer-newsletter .newsletter-form input[type=email]:focus-visible {
  outline: none;
}

.footer .footer-newsletter .newsletter-form input[type=submit] {
  border: 0;
  font-size: 16px;
  padding: 0 20px;
  margin: -7px -8px -7px 0;
  background: var(--accent-color);
  color: var(--contrast-color);
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
}

.footer .footer-newsletter .newsletter-form input[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.footer .copyright {
  padding: 25px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 6px;
  font-size: 13px;
}
.copyright img {
  max-width: 300px;
}
.cpyrht {
  color: #686868;
  font-weight: 400;
  letter-spacing: 0.5px;
  margin: 9px 0 12px;
}

.finals {
border-top: 5px solid red;
  border-bottom: 5px solid red;
  padding: 0px 0 34px;
  background-color: #ffea4145;
  border-radius: 26px;
}
.finals h3 {
  background-color: red;
  padding: 9px;
  margin: -4px 0 12px;
  border-radius: 26px 26px 0 0;
  color: #fff;
}
.finals h4 {
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1;
  margin: -2px 0 16px 0;
  font-size: 1.5rem;
}
.finals p {
  font-size: 1.2rem;
  line-height: 1;
  max-width: 800px;
  margin: 0 auto;
}

/*--------------------------------------------------------------
# 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: 160px 0 80px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.page-title .heading h1 {
  font-size: 38px;
  font-weight: 700;
}

.page-title nav {
  background-color: color-mix(in srgb, var(--default-color), transparent 88%);
  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 {
  background-image: url('/spartamax/assets/images/mbr-bg-6e0933463d.jpg');
  background-color: #1a1a1a;
  background-size: 4%;
  padding: 40px 1%;
  scroll-margin-top: 100px;
  overflow: clip;
}

@media (max-width: 1199px) {
  section,
  .section {
    scroll-margin-top: 66px;
  }
}
  @media(max-width:992px){
  .col-lg-4.order-lg-last.hero-img.aos-init.aos-animate {display:none;}
  .img-fluid.heroBndle {
    display: none;
}
  .col-lg-4.order-lg-last.hero-img {
    display: none;
}
.bnsWide {
  margin: 50px auto;
  display: block !important;
}
.shesays {
  width: 80% !important;
  margin: 0 auto 20px !important;
}

ul.strip3-list li {
  color: #5b5b5b !important;
    float: left;
    padding: 7px 0 8px 38px !important;
  }

}

  @media(min-width:992px){
    .hero-img-mbl {display:none;}
}


  .hero-img-mbl img {
  max-height: 460px;
  margin: -22px 4% 34px;
  }


/* -------------------------
inline copy
---------------------------- */

.assurBadges {
  border-top: 1px solid red;
  margin: 30px auto 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  padding: 16px 5% 0px;
}
.assurBadges h3 {
  color: red !important;
  letter-spacing: 0.9px;
}
.assurBadges {
  color: #fff !important;
  letter-spacing: 0.9px;
}
.assurBadges img {
  max-width: 188px;
  margin: 0 4%;
}



/*--------------------Banner-------------------*/
.banner {
  background:url('../images/banner.jpg') center top no-repeat;
  padding:30px 0 56px 0;
}
.bnrhding {
  font-weight:800;
  font-size:56px;
  line-height:66px;
  color:#fff;
  text-align:center;
}
.bnrhding span {
  color:#fff000;
}
.bnrtxt {
  font-size:24px;
  line-height:34px;
  color:#fff;
  text-align:center;
  margin-top:8px;
}
.bnrbx {
  margin: -1rem auto 0;
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  justify-content: center !important;
}
.bnrbxlft {
  width:60%;
  margin-top:20px;
}
.bnrbxrgt {
  width:36.75%;
  background:#fff;
  margin-top:20px;
  border-radius:14px;
  z-index: 3333;
  height: fit-content;
}
.video-box {
  margin-left: 8px;
}
.video {
  margin:0 auto;
  display:block;
  max-width:100%;
  height:auto;
  box-shadow:0 0 10px #076ca5;
}
.bnrtbx1,
.bnrtbx2 {
  margin-top: 36px;
  border-radius: 10px;
  padding: 9px 6rem 0px 10px;
  position: relative;
  color: #fff;
}
.bnrtbx2 {
  margin-top:-18px;
}
.lftqt {
  position:absolute;
  left:68px;
  top:10px;
}
.bnrtimg {
  position:absolute;
  left:25px;
  top:22px;
}
.bnrstars {
  margin:0;
  display:block;
}
.bnrtbxtxt1 {
  font-weight:500;
  font-size:18px;
  line-height:26px;
  text-align:left;
  font-style:italic;
  margin-top:10px;
}
.bnrtbxtxt2 {
  font-size:18px;
  line-height:26px;
  text-align:left;
  margin-top:10px;
}
.rgtqt {
  position:absolute;
  right:32px;
  bottom:46px;
}
/*------------------right side------------------*/
.bnrbxrgt-hd {
  background:#fa5e41;
  padding:13px 18px;
  border-radius:14px 14px 0 0;
  color:#fff;
  border-bottom: 1px solid #666;
}
.bnrbxrgt-hd p {
  font-weight:bold;
  font-size:32px;
  line-height:40px;
  text-align:center;
}
.bnrbxrgt-hd p span {
  color: #ffffffde;
}
.bnrbxrgt-btm {
  padding:20px 18px 22px 18px;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.46) 0%,rgba(0,0,0,0.03) 89%,rgba(0,0,0,0) 94%);
}
.bnrbxrgtprd {
  margin: 10px auto 0px;
  display: block;
  max-width: 100%;
  height: auto;
  max-width: 350px;
  width: 100%;
}
.bnrbxrgt-btmhding {
  font-weight:800;
  font-size:18px;
  line-height:26px;
  text-align:center;
  text-transform:uppercase;
  position:relative;
  margin-top:16px;
}
.gifticon {
  margin: -7px 5px -3px 5px;
  width: 37px;
}
.bnrbxrgt-btmhding::before,
.bnrbxrgt-btmhding::after {
  content:"";
  position:absolute;
  top:12px;
  height:1px;
  width:80px;
  /* background:#cecece; */
}
.bnrbxrgt-btmhding::before {
  left:0;
}
.bnrbxrgt-btmhding::after {
  right:0;
}
.bonusbx {
  display:flex;
  justify-content:space-between;
  flex-wrap:wrap;
  padding:4px 0 0 0;
  margin: -34px auto 22px;
}
.bonusbx-lft,
.bonusbx-rgt {
  width: 49%;
  margin-top: 24px;
  position: relative;
  padding: 20px 10px 14px 100px;
  border-radius:12px;
  background-color: #ccc;
  border-top: 1px solid #f2f2f2;
  border-left: 1px solid #f2f2f2;
}
.bonusimg {
  position: absolute;
  left: 0;
  top: 2px;
  height: 137px;
  width: 100px;
}
.bonus1-textBlck {
  padding-left: 9px;
}
.bonusbx-lft-txt1 {
  background: #ff0000;
  font-weight: bold;
  font-size: 13px !important;
  line-height: 20px;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  margin: -32px 6px 0 0;
  padding: 2px 9px 3px !important;
  display: inline;
}
.bonusbx-lft-txt2 {
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  color: #fa5e41;
  text-transform: uppercase;
  margin-top: 5px;
  margin: 10px 0 !important;
  padding: 0 !important;
}
.bonusbx-lft-txt3 {
  font-size: 14px;
  line-height: 1;
  text-align: left;
  margin-top: -10px !important;
}

.domSexPwer {
  min-height: 138px;
  min-width: 108px;
  float: left;
  margin: -19px -5px -13px -6.2rem;
}
.bnrbtn.scroll-to-section {
  text-align: center !important;
  margin: 12px auto !important;
  padding: 12px 3%;
  background-color: #5abb57;
  display: block;
  color: #fff;
  border-radius: 6px;
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}
.bnrbtn.scroll-to-section:hover {
  background-color: green;
  cursor: pointer !important;
}

.badge.seenon {
  /* background-color: black; */
  padding: 20px;
  display: block;
  text-align: center;
  background: linear-gradient(to right, rgba(0,0,0,0) 0%,rgba(0,0,0,0.74) 18%,rgb(0, 0, 0) 50%,rgba(0,0,0,0.54) 85%,rgba(0,0,0,0) 100%);
}
.badge.seenon img {
  max-width: 383px;
  padding: 4px 0 0 20px;
  width: 54%;
}
.badge.seenon p {
  padding: 16px 0 0;
}
.gaur365 {
  text-align: center;
  padding: 0 6% 20px;
}
.freeShip-big {
  max-width: 300px;
  margin: -8rem auto -8px;
  filter: drop-shadow(0px 5px 16px #000000);
}
.accordion-button:not(.collapsed)::after {
  background-image: var(--bs-accordion-btn-active-icon);
  transform: var(--bs-accordion-btn-icon-transform);
  background-color: #8e8e8e !important;
  border-radius: 20px;
}





/*--------------------------------------------------------------
# EXIT modal
--------------------------------------------------------------*/
/* Overlay background */
#exitModal {
  display: none; /* hidden by default */
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.7);
  z-index: 9999;
}

/* Modal box */
#exitModal .modal-content {
  background: #fff;
  width: 400px;
  max-width: 90%;
  margin: 10% auto;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  position: relative;
  box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}
/* Close button */
#exitModal .close {
  position: absolute;
  top: -14px;
  right: -14px;
  font-size: 30px;
  cursor: pointer;
  background-color: #ccc;
  border-radius: 30px;
  padding: 0 14px 2px;
}
.close:hover {
  color: #fff;
}
#claimBtn {
  background-color: red;
  border: 0;
  padding: 6px;
  color: #fff;
  font-size: 1.3rem;
}
#claimBtn:hover {
  background-color: #444;
}

.modal-wrapper.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 999;
  overflow: hidden;
  display: block;
}
.modal-wrapper {
  text-align: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  outline: 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.3s;
  background-color: #000000bf;
}
  /* Minimal safety styles in case your CSS doesn't define them */
  #exitModal, .exit-modal, [data-exit-modal] {
    display: none; position: fixed; inset: 0;
    background: rgba(0,0,0,0.7); z-index: 99999;
  }
  /* Try to find an inner box; if not, any first child becomes the box */
  #exitModal .modal-content, .exit-modal .modal-content, [data-exit-modal] .modal-content {
    background: #fff; width: min(420px, 92vw);
    margin: 10vh auto 0; padding: 22px 24px; border-radius: 12px;
    position: relative; text-align: center; box-shadow: 0 12px 30px rgba(0,0,0,0.25);
    border: 8px solid red;
    flex-direction: column;
  }
  /* Close button (supports .close or [data-close]) */
  .modal-content .close { position: absolute; top: 8px; right: 12px; font-size: 24px; cursor: pointer; background: none; border: 0; }



/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  /* padding-bottom: 60px; */
  position: relative;
}

.section-title h2 {
  font-size: 3.3rem;
  line-height: 1.2;
  text-transform: initial;
  font-weight: 500;
  padding: 0;
  margin: 0;
  letter-spacing: 0.5px;
  color: #fff;
  position: relative;
  text-shadow: 3px 3px 9px #000;
}

.section-title div {
  color: var(--heading-color);
  margin: 0;
  margin: 0;
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: var(--heading-font);
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 64vh;
  position: relative;
  padding: -12px auto 22px;
  align-items: center;
}
.Header.withGrad {
  background: linear-gradient(to bottom, rgb(14, 14, 14) 0%,rgba(0, 0, 0, 0.76) 24%,rgba(147,147,147,0) 100%);
  padding: 5rem 0 35px;
  justify-content: center;
  display: block;
  text-align: center;
  margin: 0 -1%;
}
.Header.withGrad h4 {
  font-size: 2.6rem;
  line-height: 1;
}
.Header.withGrad p {
  color: #aaa;
  font-size: 1.6rem;
  line-height: 1.2;
  padding: 8px 5% 0;
}
.hero .hero-bg {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.hero:before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  /* background: linear-gradient(to bottom, rgb(14, 14, 14) 0%,rgba(0, 0, 0, 0.76) 24%,rgba(147,147,147,0) 100%); */
}
.hero .container {
  position: relative;
  z-index: 3;
  margin-top: 7rem;
}

.img-fluid.heroBndle {
  max-width: 536px;
  margin: 65px 0 -78px -14rem;
  z-index: 900;
  position: relative;
}
.introHero {
  padding: 0 0 50px;
  margin: 0 auto 0 3%;
}

.hero-intro {
  background: linear-gradient(135deg, rgba(254, 255, 255, 0.4) 0%,rgba(187, 180, 180, 0.65) 35%,rgb(66, 59, 59) 100%);
  padding: 0px;
  border-radius: 26px;
  box-shadow: 3px 3px 18px #00000082;
  border-top: 1px solid #f0f8ffa1;
  border-left: 1px solid #f0f8ffa1;
  display: inline-block !important;
}
.fromLow {
  background-color: #ffffff70 !important;
  border-radius: 0 0 20px 20px;
  margin: 0;
  padding: 11px 6% 1px;
}
.fromLow h4 {
  font-size: 1.4rem !important;
  line-height: 1 !important;
  color: #000;
}
.fromLow p {
  font-size: 1rem !important;
  line-height: 1 !important;
  color: #666 !important;
}
.heroTxt {
  padding: 32px 6% 8px;
}
.herolist li {
  font-size: 1.4rem;
  line-height: 1.45;
  margin-left: 19px;
  color: #1c1b1b;
  border-bottom: 1px dotted aliceblue;
  max-width: 500px;
}
.hero h1 {
  margin: -0.7rem 0 8px -2px;
  font-size: 5.3rem;
  font-weight: 600;
  line-height: 1;
  color: #f00;
  text-shadow: 1px 2px 5px #000000a3;
}
.hero h1 span {
  color: var(--heading-color);
  border-bottom: 4px solid var(--accent-color);
}

.hero-intro h4 {
  font-size: 1.9rem;
}
.hero p {
  /* color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 0 0 10px 0;
  font-size: 1.5rem;
  letter-spacing: 0.25px;
  line-height: 1.2; */
}
.hero-intro h3 {
  font-size: 2.1rem;
  font-weight: 700;
  margin: 14px 0 -2px;
}
.hero-intro h3 span {
  color: #ffef00;
}
.hero .btn-get-started {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-family: var(--heading-font);
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 28px 12px 28px;
  border-radius: 50px;
  transition: 0.5s;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.hero .btn-get-started:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.hero .btn-watch-video {
  font-size: 16px;
  transition: 0.5s;
  margin-left: 25px;
  color: var(--default-color);
  font-weight: 600;
}

.hero .btn-watch-video i {
  color: var(--accent-color);
  font-size: 32px;
  transition: 0.3s;
  line-height: 0;
  margin-right: 8px;
}

.hero .btn-watch-video:hover {
  color: var(--accent-color);
}

.hero .btn-watch-video:hover i {
  color: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.hero .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}
#about ul li {
  font-size: 1.4rem;
  line-height: 1.4;
  font-weight: 700;
}
#about ul li span {
  color: #b31111;
}
#about ul {
  border-top: 1px dotted;
  border-bottom: 1px dotted;
  padding: 4px 0 7px 32px;
}

/*  */
.container.highPoint {
  border-top: 1px solid red;
  border-bottom: 1px solid red;
  margin: 40px auto;
  display: flex;
  color: #fffc;
  justify-content: space-around;
  padding: 9px 5% 2px;
  text-transform: uppercase;
  text-shadow: 1px 1px 3px #000;
  letter-spacing: 1px;
}
.container.highPoint.scndTmr {
  border-bottom: 1px solid #848383 !important;
  margin: 26px auto;
  border-top: 1px solid #848383 !important;
}
.highPoint p {
  font-size: 1.9rem;
  line-height: 1;
  letter-spacing: 2.8px !important;
  text-align: center;
  font-family: "Bebas Neue", Sans-serif !important;
  padding: 9px 0 0;
}
.highPoint p b {
  color: #bfb797;
  font-weight: initial;
}

/* ---- Percentage ---- */
.shesays {
  background-color: #b9b9b9ba;
  margin: 0 1.5% 20px;
  padding: 10px 9px;
  /* border: 4px solid #989898; */
  border-radius: 24px;
  box-shadow: 0px 3px 13px #00000080;
  width: 22%;
}
.percent h1 {
  font-family: "Bebas Neue", Sans-serif !important;
  font-size: 6rem !important;
  line-height: 1 !important;
  font-weight: 400;
  letter-spacing: -1px;
  margin: 4px 0 -6px;
  color: #000 !important;
  padding: 0 !important;
}
.percent p {
  text-transform: uppercase;
  font-size: 1.2rem;
  line-height: 1.1;
  padding: 0 8% 0;
}
.percent img {
  border-radius: 12px;
  /* border: 1px solid #f0f8ff9e; */
  margin: 12px 0 20px;
  max-width: 220px;
  width: 100%;
}
#whyWomen h1,
#ingredients h1,
.faqHdr {
  color: #fff;
  font-family: var(--heading-font);
  font-size: 3.6rem;
  line-height: 1;
  /* padding: 0 0 36px; */
  text-align: center;
  text-shadow: 2px 2px 4px #000;
}
#whyWomen h1 {
text-shadow: 1px 1px 2px #ffffff6e !important;
}

@media (max-width: 992px) {
  .atc-box-wrapper.section {
    margin-top: -40px;
  }
  .strip3-list img {
    max-width: 170px;
  }
  .bnrbxlft {
  width: 100% !important;
  margin-top: 0px !important;
  }
  .bnrbxrgt {
  width: 92% !important;
  max-width:500px
  }
  .bnrtbx1, .bnrtbx2 {
  margin: 22px 0 0;
  padding: 9px 3rem 0px 10px !important;
  }
  .bonusbx {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 4px 0 0 0;
  margin: -14px auto 22px;
  width: 100%;
  flex-direction: column;
}
  .bonusbx-lft, .bonusbx-rgt {
  width: 100%;
  margin-top: 24px;
  position: relative;
  padding: 12px 0px 0px 145px;
  }
  .bonusbx-lft, .bonusbx-rgt {
    width: 100% !important;
    margin-top: 11px;
    padding: 20px 10px 0px 104px;
  }
  .hero p {
    font-size: 29px;
    line-height: 1;
    margin: 6px 0;
  }
  .bnrbxrgt-btmhding {
  font-size: 1.4rem !important;
  line-height: 2 !important;
  margin-top: -6px !important;
  }
  .bonusbx-lft-txt3 {
  font-size: 1.3rem !important;
  line-height: 1.2 !important;
  padding: 4px 0 8px;
  }

  .bonusbx-lft {
    padding: 20px 10px 0px 100px !important;
  }
  #letDown h2 {
    font-size: 2.9rem !important;
    line-height: 1.1 !important;
  }
  .introElite p {
    font-size: 1.6rem !important;
    padding: 0 9px;
  }
  ul.bnrbxrgt-btm-list {
    padding: 10px 0 0 0 !important;
    display: flex !important;
    justify-content: center !important;
    flex-wrap: nowrap !important;
    margin: -22px 2% !important;
    list-style: none !important;
    line-height: 1 !important;
  }
  ul.bnrbxrgt-btm-list li {
    font-size: 13px;
    line-height: 14px;
    text-align: left;
    margin: 10px 20px 0 27px;
    display: inline-block;
  }
  .freeShipPnl {
      margin: 0rem auto 3.5rem !important;
  }

ul.bnrbxrgt-btm-list li img {
  margin: 1px 4px 26px 0 !important;
  float: left;
}
}



.bnrbxrgt-btm-list {
  display: flex;
  margin: -6px;
}
ul.bnrbxrgt-btm-list li {
  font-size:13px;
  line-height:16px;
  text-align:left;
  margin:10px 12px 0 0;
  list-style: none;
}
ul.bnrbxrgt-btm-list li:last-child {
  margin:10px 0 0 0;
}

@media (max-width: 640px) {
  .hero h1 {
    font-size: 4rem;
    line-height: 0.9;
    margin: 0.5rem 0 20px 0;
  }
  .Header.withGrad h4 {
  font-size: 1.7rem;
  line-height: 1;
}
  .hero p {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }

  .hero .btn-get-started,
  .hero .btn-watch-video {
    font-size: 13px;
  }
    .hero p {
    font-size: 18px;
    line-height: 24px;
    margin: 12px 0;
  }
}

.hero .hero-waves {
  display: block;
  width: 100%;
  height: 60px;
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 3;
}

.hero .wave1 use {
  animation: move-forever1 10s linear infinite;
  animation-delay: -2s;
  fill: var(--default-color);
  opacity: 0.6;
}

.hero .wave2 use {
  animation: move-forever2 8s linear infinite;
  animation-delay: -2s;
  fill: var(--default-color);
  opacity: 0.4;
}

.hero .wave3 use {
  animation: move-forever3 6s linear infinite;
  animation-delay: -2s;
  fill: var(--default-color);
}

@keyframes move-forever1 {
  0% {
    transform: translate(85px, 0%);
  }

  100% {
    transform: translate(-90px, 0%);
  }
}

@keyframes move-forever2 {
  0% {
    transform: translate(-90px, 0%);
  }

  100% {
    transform: translate(85px, 0%);
  }
}

@keyframes move-forever3 {
  0% {
    transform: translate(-90px, 0%);
  }

  100% {
    transform: translate(85px, 0%);
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}

/* **** Let Down **** */
#letDown {
  background-image: none;
  padding: 30px 3% 10px;
  box-shadow: 0 -4px 12px #00000047;
  border-top: 1px solid #f0f8ff2b;
}
#letDown h2 {
  color: #f00;
  text-align: center;
  font-size: 3.7rem;
  line-height: 1.2;
  padding: 0;
  margin: 0;
}
#letDown h2 span {
  font-weight: 800;
}
.letDown-txt {
  padding: 26px 0 0 40px;
}
.letDown-txt p {
  color: #dbd9d9;
  font-size: 1.7rem;
  line-height: 1.4;
  font-weight: 400;
  letter-spacing: 0.8px;
}
.letDown-img img {
  max-width: 250px;
  margin: 34px 0 0 0px;
  padding: 0;
  border-radius: 16px;
}
.btn-try {
  background-color: red;
  color: #e8e89a;
  font-size: 2rem;
  line-height: 1;
  padding: 5px 32px 12px;
  border-radius: 32px;
}
.btn-try:hover {
  color: #fff;
  background-color: brown;
}

/* *****  Your Shot  ***** */

.spacer4 {
  padding: 40px;
  background-color: black;
  overflow: visible;
  margin-bottom: -60px;
}
.col-xl-8.yourShot {
  background-color: #bbb;
  padding: 38px 5% 40px;
  border-radius: 16px;
  box-shadow: 0px 4px 20px #0f0a0a;
  margin: 2rem 16% !important;
  z-index: 300;
  display: inline-block;
}
.yourShot h2 {
  font-size: 4.2rem;
  line-height: 1.2;
  color: #d70101;
  margin: 12px 0 -9px;
  padding: 0 0 20px;
  font-weight: 600;
  text-shadow: 2px 2px 3px #3c3c3c8c;
}
.bestHigh {
  border-top: 1px solid red;
  border-bottom: 1px solid red;
  margin: 30px auto 30px;
  display: flex;
  color: #000c;
  justify-content: space-around;
  padding: 14px 0 6px 20px;
  letter-spacing: 1px;
}
.bestHigh p {
  font-family: "Bebas Neue", Sans-serif;
  font-size: 2.5rem;
  line-height: 0.9;
  letter-spacing: 0px;
  padding: 8px 56px 0 0;
  color: #515151;
}
.bestTxt p {
  font-size: 1.8rem;
  line-height: 1.1;
  font-weight: 600;
}
.weapon {display: flex;}
.weaponTxt h2 {
  font-size: 4.6rem;
  line-height: 1;
  color: brown;
  padding: 0px 0% 24px 0;
  font-weight: 600;
  text-shadow: 2px 2px 3px #4444448c;
}
.weapon-img img {
  max-width: 234px;
  margin: 14px 0;
  padding: 0;
  border-radius: 16px;
}



#about {
  padding: 0;
  margin: -7rem;
}

/*  **** revolution  **** */
.revolution {
  background-color: #f0f8ff4f;
  margin: 12px -2%;
  padding: 30px 5%;
  border-radius: 18px;
  text-align: center;
 /* background-image: url('/spartamax/assets/images/transform-bf81bb9f78.png');
  background-position-y: 158%;
  background-position-x: 136%;
  background-repeat: no-repeat; */
}
.revolution h2 {
  color: #444;
  font-size: 2.8rem;
  line-height: 1;
  margin: 0 0 -8px;
}
.revolution p {
  text-align: left;
  font-size: 1.55rem !important;
  line-height: 1.2;
}
.revoltBot {
  max-width: 336px;
  float: left;
  margin: -65px 12px 0 -80px;
  rotate: -5deg;
}

/* ****. The Science. ***** */
.col-xl-8.ourScience {
  padding: 0 0 36px;
  border-radius: 16px;
  border-top: 1px solid #f0f8ff9e;
  border-left: 1px solid #f0f8ff9e;
  /* background: linear-gradient(135deg, rgb(211, 217, 221) 0%,rgb(128, 136, 140) 100%); */
  background: radial-gradient(ellipse at center, rgba(220, 222, 223, 0.87) 11%,rgb(120, 125, 130) 85%);
  margin-top: 30px;
}
.scienceTxt {
  padding: 6px 12px 40px;
}
.science h2 {
  font-family: "Bebas Neue", Sans-serif;
  font-size: 3.3rem;
  line-height: 0.9;
  text-align: center;
  padding: 0 8%;
  color: #000;
}
.nitric {
  max-width: 438px;
  width: 100%;
  border-radius: 18px;
  border: 1px solid aliceblue;
  box-shadow: 2px 3px 6px #555554;
}
.scnceExpl {
  margin: 12px auto 30px;
  display: flex;
  color: #000c;
  justify-content: space-around;
  padding: 14px 0px 6px 0px;
  letter-spacing: 1px;
}
.scHdr h2 {
  background-color: red;
  padding: 24px 5% 30px;
  text-align: center;
  font-size: 3.1rem;
  line-height: 1;
  color: white;
  border-radius: 16px 16px 0 0;
}
p.techSub {
  font-size: 1.1rem !important;
  line-height: 1 !important;
  padding: 0 0 12px;
  color: #555;
  margin-top: -4px;
}
.scnInfo {
  width: 47%;
  margin: 0 0 -20px;
  border-radius: 14px;
  background-color: #eef2ff29;
  text-align: center;
  padding: 20px 14px 10px;
  border-top: 1px solid #cccccc57;
  border-left: 1px solid #cccccc57;
}
.scnInfo h2 {
  font-family: "Bebas Neue", Sans-serif;
  font-size: 2.77rem;
  line-height: 0.9;
  letter-spacing: 0px;
  padding: 18px 0 0;
  color: #383838;
}
.scnInfo p {
  font-family: inherit;
  font-size: 1.3rem;
  line-height: 1.2;
  margin: 12px 5% 18px;
}
.bns-text {
  color: #fff;
  font-weight: 300;
  letter-spacing: 1.5px;
  line-height: 1.4 !important;
}
.science {
  background-color: #f0f8ff38;
  margin: 12px 4%;
  padding: 40px 4% 4px;
  border-radius: 18px;
  border-top: 1px solid #ddd;
  border-left: 1px solid #ddd;
  border-right: 1px solid #aaa;
  border-bottom: 1px solid #aaa;
}
.scienceCols {
  margin: 12px auto 30px;
  display: flex;
  color: #000c;
  justify-content: space-around;
  padding: 14px 0px 6px 0px;
  letter-spacing: 1px;
}
.scnCol {
  width: 30%;
  margin: 0 2.5%;
}
.scnCol img {
  max-width: 270px;
  width: 100%;
}
.scnCol h4 {
  font-size: 1.5rem;
  line-height: 1;
  font-weight: 600;
  color: #000;
  margin: 10px 0 4px;
  letter-spacing: 0.2px;
}
.scnCol p {
  font-family: inherit;
  font-size: 1.2rem;
  line-height: 1.2;
  margin-bottom: 0;
}
.scnCol img {
  border-radius: 11px;
}






/* *** Quotes *** */
.mbrQuotes {
  margin: 30px auto;
  padding: 12px;
  border-top: 2px dotted #888;
  border-bottom: 2px dotted #888;
  color: #eee;
}
.mbrQuotes h1 {
  font-size: 3.7rem;
  line-height: 1.2;
  color: red;
  text-shadow: 2px 2px 5px #000;
}
.member {
  margin: 30px 0;
}
.addquote p {
  text-align: left;
  font-size: 1.15rem;
  padding: 8px 6px;
  font-style: italic;
  color: #959595;
  border-top: 1px dotted #f00;
}
.img-fluid.character {
  max-width: 70px;
  max-height: 70px;
  border-radius: 50%;
  float: right;
  margin: -24px -10px 0 6px;
  box-shadow: -2px 3px 9px #000;
  border: 5px solid #fff0;;
}
.smlAuthor img {
  max-width: 85px;
  float: left;
  margin: 9px 8px 0 0;
}
.smlAuthor {
  font-size: 0.9rem;
  line-height: 2;
}
.introBottle {
  max-width: 420px;
  float: right;
  rotate: 4deg;
  margin: 20px 0 10px 0;
}
.container.introElite {
  text-align: left;
  padding: 60px 4% 40px;
}
.ingrdtxt p {
  color: #5b5b5b !important;
  font-size: 1.25rem !important;
  line-height: 1.1 !important;
  padding-bottom: 12px;
}







/*  ***** Ingredients  ***** */
.col-xl-10.ingredient {
  display: flex;
  padding: 56px 3.5% 20px;
  border-radius: 40px;
  margin: 30px auto;
  border-top: 1px solid #f0f8ff9e;
  border-left: 1px solid #f0f8ff9e;
  background: linear-gradient(135deg, rgb(211, 217, 221) 0%,rgb(128, 136, 140) 100%);
  /* background: radial-gradient(ellipse at center, rgba(220, 222, 223, 0.87) 11%,rgb(120, 125, 130) 85%); */
  box-shadow: 3px 4px 18px #04040487;
}
.ingredient {
  margin: 0 auto;
  max-width: 1200px;
  width: 94%;
}
.ingrdCol {
  flex-direction: column;
  margin: 30px auto 6px;
  display: flex;
  color: #000c;
  padding: 14px 0 6px 20px;
  width: 42%;
}
.ingrdtxt {
  margin-bottom: 16px;
}
.ingredsub {
  /* text-align: center; */
  color: aliceblue;
  padding: 10px 0 30px;
  font-size: 1.7rem;
  letter-spacing: 0.5px;
  max-width: 60%;
  margin: 0 auto;
}
.ingrdCol p {
  font-size: 1.2rem;
  line-height: 1;
  margin: -8px 0 0;
  color: #555;
}
.ingredientPic {
  border-radius: 50%;
  margin: -12px 22px 8px -24px;
  float: left;
  max-width: 116px;
  border: 9px solid #b2b9bd;
  box-shadow: 4px 6px 12px #3f4c57b5;
}
.ingrdtxt h4 {
  color: #000c;
  letter-spacing: 1px;
  font-family: "Bebas Neue", Sans-serif;
  font-size: 2.1rem;
  line-height: 1;
  border-top: 1px solid #777;
  padding-top: 10px;
}
.ingredientProd {
  max-width: 490px;
  margin: 0px -22px 0 -14px;
  width: 100%;
}
.ingrdimg {
  margin-right: -14%;
}


/*--------------------------------------------------------------
@media 992
--------------------------------------------------------------*/

@media (max-width: 992px) {
  .col-xl-10.ingredient {
  padding: 56px 1.5% 20px !important;
  width: 85% !important;
  display: block;
}
.ingrdCol {
  margin: 30px auto 6px;
  display: flex;
  color: #000c;
  padding: 0px 0 9px 20px;
  width: 88%;
}
.ingrdimg {
  margin: 0 auto !important;
  display: flex !important;
  justify-content: center;
}
.bestHigh {
  display: block !important;
  text-align: center;
}
.testimonials .testimonial-item p {
    width: 80%;
  }
.bestHigh {
  display: block !important;
  text-align: center;
}
.revoltBot {
  /* max-width: 336px; */
  float: none;
  margin: -88px auto 0px;
  rotate: 0deg;
}

/* buy options */
.atc-box { 
  display: flex !important;
  justify-content: center;
  flex-direction: column;
}
.atc-box__item {
  width: 94% !important;
  margin: 20px auto !important;
  margin-top: 22px;
}
.bestBuy {
  width: 94% !important;
}
/* .bOpt {
  background-position-x: center;
  text-align: center !important; 
}*/
.atc-box__item.bestBuy {
order: -1;
}
.atc-box__item.atc-one.oneBot {
  order: 2 !important;
}
.sixbtl {
  max-width: 380px !important;
}
#bonuses h2 {
  font-size: 3.8rem !important;
  text-align: center;
}
.introBottle {
  margin: -46px 0 18px 0 !important;
}
.freeShip-big {
  margin: -5rem auto 0px !important;
}
.scnceExpl {
  width: auto;
  margin: 30px auto 40px;
  display: flex;
  color: #000c;
  justify-content: space-around;
  padding: 14px 0px 6px 0px;
  letter-spacing: 1px;
  flex-direction: column !important;
  gap: 40px;
}
.scnInfo {
  width: auto;
}
.scnInfo p {
  font-size: 1.2rem;
  line-height: 1.2 !important;
  margin: 12px 0 18px;
  text-align: left;
}
.col-xl-8.yourShot {
  display: block;
  margin: 0 5% !important;
}
.scienceCols {
  flex-direction: column;
}
.scnCol {
  width: 90%;
  margin: 0 2.5% 20px;
}

.yourShot h2 {
  font-size: 2.7rem;
  line-height: 1;
  margin: 12px 0 9px;
}
.weapon {
  display: flex;
  flex-direction: column;
}
.mbrQuotes h1 {
  font-size: 3.1rem;
  line-height: 1;
  padding: 0 0 9px;
}

}



caps {
  text-transform: uppercase;
  font-size: 105%;
}
.assurance {
  max-width: 650px;
  margin: -30px auto 40px;
  display: block;
  opacity: 0.35;
  transition: opacity 0.3s ease-in-out;
  filter: drop-shadow(2px 2px 5px rgb(0, 0, 0));
}
#freeShipping {
  margin: -50px 0 -20px 0;
  background-image: url('/spartamax/assets/images/mbr-bg-6e0933463d.jpg');
  background-size: 3.8%;
}
.freeShipPnl {
  justify-content: center;
  border-radius: 20px;
  padding: 20px 30px;
  background-color: #f0f8ff1a;
  margin: 5rem auto 3.5rem;
  box-shadow: 0 0 20px #00000038;
}
.shipingTxt {
  margin-right: 20px;
}
.small-title.text-white.medium span {
  color: #fff1e3b0;
}
.freeShip {
  max-width: 200px;
  rotate: -8deg;
  margin: 0 0 0 24px !important;
  filter: drop-shadow(2px 2px 5px rgb(0, 0, 0));
}
.small-title {
  font-size: 1.2rem;
  color: #f0f8ff61 !important;
}

.lrg-text {
  font-size: 1.5rem;
  color: #ffffffb0 !important;
  line-height: 1.4;
  letter-spacing: 0.8px;
  margin-bottom: 16px;
}
.lrg-text span {
  color: #e39d43;
}

.assurBadges {
  border-top: 1px solid red;
  /* border-bottom: 1px solid red; */
  margin: 30px auto 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  padding: 16px 5% 0px;
}
.assurBadges h3 {
  color: red !important;
  letter-spacing: 0.9px;
}
.assurBadges {
  color: #fff !important;
  letter-spacing: 0.9px;
}
.assurBadges img {
  max-width: 188px;
  margin: 0 4%;
}

/* ***** FAQ adds ****** */
.accordion {
  --bs-accordion-btn-focus-box-shadow: 0;
}
.accordion-item {
  color: var(--bs-accordion-color);
  background-color: #ffffffb2;
  box-shadow: 0px 4px 16px #000;
  border: var(--bs-accordion-border-width) solid #0c0c0d;
}
.accordion-button {
  background-color: #bdbdbd;
  font-size: 1.4rem;
  padding: 12px 2% 10px 18px;
  font-weight: 600;
}
.accordion-body {
  padding: 6px 4% 18px;
  background-color: #f2f2f2d6;
  font-size: 1.3rem;
  line-height: 1.3;
}
.accordion-button:not(.collapsed) {
  color: #ff3a3a;
  background-color: #000;
}
.accordion-button:focus {
  box-shadow: var(--bs-accordion-btn-focus-box-shadow);
  /* border-top: 2px solid #bdbdbd; */
}






/*--------------------------------------------------------------
# Notes Timer & Welcome
--------------------------------------------------------------*/
.col-xl-8.content {
  background-color: #fffbf4c2;
  padding: 38px 46px 60px;
  border-radius: 16px;
  box-shadow: 0px 4px 20px #0f0a0a;
}
.emailNote {
  background-color: #f0f8ff6b;
  border-radius: 12px;
  padding: 30px 4%;
  margin: 0 5% 40px;
  font-size: 1rem !important;
  box-shadow: 2px 4px 16px #44444438;
}
.emailNote h3 {
  text-align: left !important;
  font-size: 2.2rem !important;
}
.cntctSml p {
  text-align: left !important;
  padding: 0 !important;
  margin-left: 0px !important;
}
.cntctSml h4 {
  color: rgb(255, 132, 0);
  font-size: 1.6rem;
  line-height: 1;
  margin: -10px 0 0;
}
#notes h2 {
  text-align: center;
  font-size: 3rem;
  line-height: 1.2;
  color: brown;
  padding: 0 0 20px;
  font-weight: 600;
  text-shadow: 2px 2px 3px #4444448c;
}
#notes h3 {
  text-align: center;
  font-size: 3rem;
  font-weight: 300;
  color: brown;
  letter-spacing: -0.5px;
}
.noteTxt p {
  text-align: center;
  padding: 0 8% 0;
  font-size: 1.5rem;
  margin: 6px;
  line-height: 1.3;
}
#notes ul {
  margin: 0 4% 0 2%;
  font-size: 1.4rem;
  line-height: 1.2;
}
#notes ul li {
  font-size: 1.25rem;
  line-height: 1.2;
  margin: 10px auto;
}
.cntctSml {
  color: #8c4646;
  padding: 8px 5% 4px;
  text-align: left;
  margin-top: 20px;
  border-top: 1px dotted #555;
}
.cntctSml h3 {
  color: rgb(255, 94, 0);
  font-size: 2.4rem !important;
  line-height: 1;
  margin: 6px 0;
}
.deanSign {
  margin: 0 auto -20px !important;
  max-width: 260px;
}
.limitedTime {
    font-family: "Bebas Neue", Sans-serif;
  font-size: 2.9rem;
  line-height: 1.1;
  text-align: center;
  padding: 4px 0 7px;
  color: yellow;
}
span.timer { color:red}


/*--------------------------------------------------------------
# Product Section
--------------------------------------------------------------*/
.container.disc-prdcts {
  padding: 20px 3.5%;
  border-radius: 40px;
  margin: 30px auto;
  border-top: 1px solid aliceblue;
  border-left: 1px solid aliceblue;
  background: linear-gradient(135deg, rgb(211, 217, 221) 0%,rgb(128, 136, 140) 100%);
  box-shadow: 3px 4px 18px #04040487;
}
.prdctHd {
  padding: 10px 0;
  border-top: 1px solid red;
  margin: 34px 0 18px;
  border-bottom: 1px solid red;
}
.prdctHd h2 {
  font-weight: 700;
  font-size: 3.3rem;
  text-transform: inherit;
  line-height: 1;
  margin: -2px 0 4px;
}
.prdctHd h3 {
  font-size: 2.2rem !important;
  line-height: 1;
  padding: 0 0 6px 0;
  color: red;
}
.prdctHd .fst-italic {
  font-style: italic !important;
  font-size: 1.35rem;
  line-height: 1;
  margin: 0px 0 10px 0;
  color: #777;
}
.prdctHd p {
  color: #353232;
  font-size: 1.3rem;
  line-height: 1;
}
.prdctHd p s {
  text-decoration: line-through;
  text-decoration-thickness: 2px;
}
.prdctDesc em {
  font-weight: 700;
  color: #c83d1e;
  font-style: normal;
}
.bundleProd {
  justify-content: center;
}
.custQuote {
  padding: 18px 30px 20px 5rem;
  background-color: #ffffff4a;
  border-radius: 18px;
  margin: 24px -2% 20px 0;
  background-image: url('/spartamax/assets/images/dng-quote-7b0cadd7b3.png');
  background-repeat: no-repeat;
  background-size: 70px;
  background-position: -6px -14px;
}
.custQuote p {
  font-size: 1.1rem;
  line-height: 1.4;
  font-style: italic;
}
.custQuote span img {
  max-width: 124px !important;
  padding-right: 12px;
}

.col-xl-8.warning {
  background-color: #fd0;
  padding: 28px 46px 2px;
  border-radius: 30px;
  border: 4px solid #fff;
  text-align: center;
  box-shadow: 0px 0px 17px #bd2603;
  margin: 80px auto 30px !important;
}
.warning h1 {
  font-size: 2.2rem !important;
  font-weight: 800;
}
.warning p{
  font-size: 1.1rem;
}
.introFree {
  text-align: center;
  line-height: 1;
  padding: 20px 0;
}

#about .introFree h3 {
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1;
  padding: 0px 0px;
  margin: -6px auto 10px;
}

/* * * * BLINK  * * */
    @keyframes blink {
      0%, 100% { background-color: #fff2d0;}
      50% {background-color: #ffe45da4;}
    }
    .blinking-element {
      animation: blink 1s linear infinite;
    }

    @keyframes click-box-blink {
      0%, 100% { background-color: #fff2d0;}
      50% {background-color: #ffe45da4;}
    }
    .blinking-element {
      animation: blink 1s linear infinite;
    }
    

.about .content h3 {
  font-size: 2.2rem !important;
  font-weight: 600;
  line-height: 1.6;
  padding: 0px;
  border-top: 1px dotted #000;
  border-bottom: 1px dotted #000;
  display: block;
}
.about .content h3 span {
  color: #757575a1;
  font-weight: 800;
}
.about .content h2 {
  font-weight: 800;
  color: red;
  font-size: 2.7rem;
}

.about .content p:last-child {
  margin-bottom: 0;
}

.about .content .read-more {
  background: var(--accent-color);
  color: var(--contrast-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  padding: 12px 24px;
  border-radius: 5px;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.about .content .read-more i {
  font-size: 18px;
  margin-left: 5px;
  line-height: 0;
  transition: 0.3s;
}

.about .content .read-more:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
  padding-right: 19px;
}

.about .content .read-more:hover i {
  margin-left: 10px;
}

.about .icon-box {
  background-color: var(--surface-color);
  padding: 50px 40px;
  box-shadow: 0px 10px 50px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  transition: all 0.3s ease-out 0s;
}

.about .icon-box i {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 32px;
  line-height: 0;
  transition: all 0.4s ease-out 0s;
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  color: var(--accent-color);
}

.about .icon-box h3 {
  margin-bottom: 10px;
  font-size: 24px;
  font-weight: 700;
}

.about .icon-box p {
  margin-bottom: 0;
}

.about .icon-box:hover i {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.about .icon-boxes .col-md-6:nth-child(2) .icon-box,
.about .icon-boxes .col-md-6:nth-child(4) .icon-box {
  margin-top: -40px;
}

@media (max-width: 768px) {
  .about .icon-boxes .col-md-6:nth-child(2) .icon-box,
  .about .icon-boxes .col-md-6:nth-child(4) .icon-box {
    margin-top: 0;
  }
}





/*--------------------------------------------------------------
# Buy Panels
--------------------------------------------------------------*/

.atc-box {
  display: flex;
  justify-content: center;
}
.atc-one .title {
  background-color: #262626 !important;
}
.atc-box__item {
  width: 32%;
  margin: 2.5%;
  border-radius: 20px;
  background-color: #e3ded9;
  text-align: center;
  border:11px solid #e8e8dc;
  box-shadow: 0px 3px 12px #753b3b91;
  height: fit-content;
  margin-top: 22px;
  max-width: 500px;
}
.atc-box__item.active {
  margin-top: 0 !important;
  background:linear-gradient(to bottom, rgb(255, 229, 190) 0%,rgb(249, 247, 234) 100%);
  border:0;
  padding:0 12px;
  max-width: 500px;
}
.bestBuy {
  width: 33%;
}
.atc-box__item:hover {
  transform: scale(1.05);
  box-shadow: 0px 6px 26px #0009;
}
.atc-box__item {
  transition: transform .3s;
}
.atc-box__item.atc-one {
  margin-top: 22px;
}
.optnBttle img {
  max-width: 340px !important;
  margin: -30px auto 8px;
  width: 100%;
}
.six-wBns img {
  max-width: 350px;
  margin-left: 8px;
  overflow: hidden !important;
  margin-bottom: -5px;
  width: 100%;
}
.title {
  background-color: #aa3815;
  margin: -12px;
  border-radius: 20px 20px 0 0;
  height: 49px;
  color: #fff;
  text-transform: uppercase;
  font-size: 1.4rem;
  padding: 10px 0 0;
  letter-spacing: 1px;
}
.bottles-count {
  font-size: 2.9rem !important;
  line-height: 0.8 !important;
  font-weight: 800;
  margin: 6px auto 9px !important;
  color: #394d9d;
  letter-spacing: -1px;
  padding: 22px 0 0px;
}
.supply-txt {
  font-size: 1.1rem;
  text-transform: uppercase;
  color: #a6a6a6;
  line-height: 1;
}

/* FREE BONUS..  FREE SHIPPING  */
/* *** BUTTONS  *** */
.atc-button {
  font-size: 2.4rem;
  line-height: 1;
  font-weight: 800;
  color: #fff;
  padding: 9px 19px 6px;
  border-radius: 50px;
  display: inline-block;
  margin: 6px;
  border: 1px solid #ffc823;
  background: linear-gradient(to bottom, rgb(249, 209, 132) 0%,rgb(237,144,23) 100%);
  box-shadow: 0 3px 6px #0000005e;
}
.atc-button:hover {
background: linear-gradient(to bottom, rgb(237,144,23) 0%,rgb(249, 203, 132) 100%);
border-top: 1px solid #fff;
}
.buyOpt {
  margin: 7px auto 18px;
}
.bOpt {
  margin: 2px 7% 5px !important;
  font-weight: 500;
  color: #fff;
  line-height: 1 !important;
  text-align: left;
  padding: 7px 0 7px 40px;
  background-size: 20px;
  border-radius: 20px;
  font-size: 1.15rem;
}

.price {
  padding: 0;
  font-size: 5rem;
  line-height: 63px;
  font-weight: 800;
  color: #d23809;
  letter-spacing: -2px;
}
.per-bottle-txt {
  font-size: 1.3rem;
  margin: 0 0 0 -6px;
  word-spacing: -1px;
  letter-spacing: 0 !important;
  font-weight: 500;
}
.o-ship,
.o-books,
.o-support {
  background-image: url('/spartamax/assets/images/dng-tick-bb7bf9e41b.png');
  background-repeat: no-repeat;
  background-position: 8px 7px;
}
.o-plus {
  background-image: url('/spartamax/assets/images/dng-plus-095f19db75.png');
  background-repeat: no-repeat;
  background-position: 8px 7px;
}
.bOpt.o-plus {
  background-color: #999;
}
.bOpt.o-ship {
  background-color: #37b347;
}
.bOpt.o-books {
  background-color: #678ac1;
}
.bOpt.o-support {
  background-color: #f26161;
}
.bonusTxt {
  font-size: 1.1rem;
}
.extra-text {
  font-size: 1.2rem;
  line-height: 1;
  margin: 2px 0;
}

.payCard img {
  max-width: 250px;
  margin:4px auto 6px;
}
.noRisk img {
  max-width: 230px;
  margin:6px auto 2px;
  padding-bottom: 20px;
}
.smlBttn {
  max-width: 230px !important;
  padding: 9px 0;
}
.sixbtl img {
  max-width: 96%;
}
.guarantee-img {
  text-align: center;
}
.guarantee-img img {
  display: initial;
  max-width: 476px;
  height: 100% !important;
  margin-top: 16px;
  width: 90%;
}


@media (max-width: 768px) {
.container.highPoint {
  flex-direction: column;
}
}





/*--------------------------------------------------------------
# Bonuses Section
--------------------------------------------------------------*/
#bonusSct {
  /* background: linear-gradient(135deg, rgb(140, 145, 149) 0%,rgb(89, 106, 114) 100%); */
  padding: 60px;
}
.bonuses {
  background-image: none;
  padding: 2px;
  box-shadow: 0 -4px 12px #00000047;
  border-top: 1px solid #f0f8ff2b;
}
#bonuses {
  background-color: #000 !important;
  text-align: center;
  margin: 0 auto !important;
}

#bonuses h2 {
  color: #f00;
  font-size: 5.6rem;
  line-height: 1;
  font-weight: 500;
  padding: 30px 0;
  margin: 0;
  letter-spacing: -1px;
}
.bonus-img {
  max-width: 316px;
  border: 22px solid transparent;
  margin: -50px 0 0 -20px;
  max-height: 410px;
}
.introElite p {
  color: #fff;
  font-size: 1.8rem;
}
 
.bonus2-img {
  width: 100%;
  max-width: 370px;
  min-width: 312px;
  margin: 0 auto 0 -15%;
}

#addBonus {
  display: inline-block;
}

.bnsText {
  margin-top: -12px;
}

.bonus-bg {
  max-width: 100%;
  border-top: 1px solid aliceblue;
  border-left: 1px solid aliceblue;
  background: linear-gradient(135deg, rgb(211, 217, 221) 0%,rgb(128, 136, 140) 100%);
  box-shadow: 3px 4px 18px #04040487;
  border-radius: 30px;
  margin: 0 0 -16px;
}
.crdHdr {
  background-color: #af2a02;
  float: left;
  margin: -22px 0 0 -16px !important;
  box-shadow: 2px 4px 4px #00000073;
  display: initial;
  padding: 6px 50px 6px 22px;
  border-radius: 16px 0;
  color: #fff;
  text-shadow: 1.5px 2px 2px #0000005e;
  letter-spacing: 1.5px;
  font-size: 1.25em;
  font-weight: 400;
  font-style: italic;
}
.bnsWide {
  display: flex;
  margin: 50px auto;
}
.bnsText h3 {
  text-align: left !important;
  font-family: "Bebas Neue", Sans-serif;
  color: red;
  font-size: 3.3rem;
  line-height: 1;
}
.container-md.bnsOne,
.container-md.bnsTwo {
  background-repeat: no-repeat;
  background-size: contain;
  border-radius: 16px 16px 0 0;
  padding-bottom: 40px;
  background-position-y: -12px;
}
.bnsOne {
  background-image: url('../imgs/bns-Filter.jpg');
}
.bnsTwo {
  background-image: url('../imgs/bnsEBk-33hacks2.png');
}
/* .bnsText {
  
} */
.bonus-title {
  font-size: 2.6rem;
  line-height: 1;
  margin-bottom: 8px;
}
.bonus-title span {
	color:#aaa;
	font-size:2rem;
}
.bonus-card p.medium {
  font-size: 1.35rem;
  line-height: 1.2;
  padding: 0 0 12px;
}
.bonus-card p.bonus-disc {
  font-size: 1rem !important;
  line-height: 1;
  color: #888;
  letter-spacing: 0.5px;
  margin: -6px auto;
}
p.bns-value {
  font-weight: 700;
  font-size: 1.4rem;
  line-height: 1 !important;
  margin: 10px 0 16px 0;
  color: #3d7393;
  border-top: 1px dotted red;
  border-bottom: 1px dotted red;
  padding: 9px 9px 12px;
}

.button-Dwnld {
  /* background-color: red; */
  background: linear-gradient(90deg, rgb(206, 4, 7) 0%,rgb(109, 0, 25) 100%);
  float: right;
  padding: 12px 36px 10px;
  border-radius: 10px;
  font-size: 1.25rem;
  line-height: 1;
  color: #fff;
  box-shadow: 1px 2px 4px #444;
  cursor: pointer;
}
.button-Dwnld:hover {
  background: linear-gradient(190deg, rgb(206, 4, 7) 0%,rgb(109, 0, 25) 100%);
}
.button-Dwnld span img {
  max-width: 43px;
  border-right: 2px solid;
  padding-right: 12px;
}
.button-Dwnld span {
  padding: 0 18px 0 0;
}
.prdct-vc {
  min-width: 561px;
  max-width: 100%;
}

/*  buy Members buy */
.mbrsBuy {
  max-width: 750px;
  padding: 20px 2.3rem 16px;
  background-color: #ffffff4a;
  border-radius: 18px;
  margin: 24px 2% 20px 0;
  border-top: 1px solid aliceblue;
  border-left: 1px solid aliceblue;
  text-align: left;
}
.mbrsBuy p {
  font-size: 1.2rem;
  line-height: 1;
}
.mbrsCards {
  max-width: 240px;
}

.button-2Cart {
  background: linear-gradient(15deg, rgb(30, 87, 153) 0%,rgb(125, 185, 232) 100%);
  float: right;
  padding: 7px 36px 4px;
  border-radius: 10px;
  font-size: 1.25rem;
  line-height: 2;
  color: #fff;
  box-shadow: 1px 2px 4px #444;
  cursor: pointer;
}
.button-2Cart:hover {
   background: linear-gradient(165deg, rgb(30, 87, 153) 0%,rgb(125, 185, 232) 100%);
}
.button-2Cart span img {
  max-width: 39px !important;
  margin: -4px 12px 0 0px;
  border-right: 2px solid #fff;
  padding-right: 10px;
}






/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features .features-item {
  background-color: var(--surface-color);
  display: flex;
  align-items: center;
  padding: 20px;
  transition: 0.3s;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  position: relative;
}

.features .features-item i {
  font-size: 32px;
  padding-right: 10px;
  line-height: 0;
}

.features .features-item h3 {
  font-weight: 700;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-size: 16px;
}

.features .features-item h3 a {
  color: var(--heading-color);
  transition: 0.3s;
}

.features .features-item:hover {
  border-color: var(--accent-color);
}

.features .features-item:hover h3 a {
  color: var(--accent-color);
}

.content h1 {
  font-size: 3.4rem;
  font-weight: 800;
  line-height: 1;
  padding: 12px 0;
}
/* .addquote {
  background-color: #eee;
  margin: 0 1.5%;
  padding: 20px 30px;
  border: 12px solid #404040;
  border-radius: 26px;
  background-image: url('/spartamax/assets/images/dng-quote-7b0cadd7b3.png');
  background-repeat: no-repeat;
  background-size: 70px;
  background-position: -4px -11px;
  width: 47%;
} */



/*-------------------------------------------------------------- */
#accelerate {
  margin: -30px 0 0 0 !important;
}
.img-fluid.prdctBundle {
  max-width: 700px;
  margin: 0px auto 0px;
  width: 85%;
}
.noThanks {
  border: 1px solid #b3b3b3;
  padding: 16px 20px;
  border-radius: 18px;
  margin: 40px auto;
  background-color: #b3b3b3;
}
.noThanks h4 {
  font-weight: 700;
}
.noThanks p {
  font-size: 1rem;
  line-height: 1.1;
  color: #fff;
  padding: 0 3%;
}
.noThanks:hover {
  background-color: #888;
  border: 1px solid red;
}

.priceComp {
  display: flex;
  justify-content: center;
}
.earlyPrice {
  padding: 18px;
  margin: 9px 5px;
  border-radius: 12px;
  background-color: #bbb;
  font-size: 1.3rem;
  line-height: 1.2;
  min-width: 290px;
  border: 4px solid #aaa;
}
.earlyPrice span {
  font-weight: 500;
  font-size: 2rem;
}
.latePrice {
  padding: 16px;
  margin: 9px 5px;
  border-radius: 12px;
  background-color: #fd3a3a;
  font-size: 1.4rem;
  line-height: 1.2;
  min-width: 290px;
  color: #fff;
  border: 4px solid #c43737;
}
.latePrice span {
  font-weight: 700;
  font-size: 2.3rem;
  color: yellow;
}

@media (max-width: 640px) {
  .priceComp {
    display: block;
    align-items: center;
  }
}
/*-----------------------------------------------------------
 Click to Upgrade
-------------------------------------------------------------*/
/* Pulse animation */
@keyframes pulse {
  0%   { transform: scale(1);   box-shadow: 0 0 0 0 rgba(123, 30, 5, 0.7); }
  70%  { transform: scale(1.3); box-shadow: 0 0 0 8px rgba(0, 150, 255, 0); }
  100% { transform: scale(1);   box-shadow: 0 0 0 0 rgba(0, 150, 255, 0); }
}

/* Apply to checkbox until checked */
input[type="checkbox"].pulse:not(:checked) {
  animation: pulse 1.5s infinite;
  border-radius: 4px; /* smooth glowing edges */
}

.custom-checkbox {
  appearance: none;       /* Remove default browser style */
  -webkit-appearance: none;
  -moz-appearance: none;

  min-width: 44px;
  height: 44px;
  border: 5px solid #000;
  border-radius: 4px;
  cursor: pointer;
  position: relative;
  margin: 15px 10px 0 0;
  background-color: aliceblue;
}

/* When checked, show a checkmark */
.custom-checkbox:checked {
  background-color:#ffb300ff;
}

.custom-checkbox:checked::after {
  content: "â";
  color: white;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -55%);
  font-size: 30px;
}

/*.   */

.col-xl-9.cntntOffer {
  background-color: #ccc;
  border-radius: 26px;
  padding: 0;
}
#checkBox {
  padding: 0 0 20px !important;
}
.cntdwnClick {
  margin: 0px auto;
  padding: 20px 0 12px;
  font-size: 1.7rem;
  line-height: 1.2;
  text-transform: uppercase;
  background-color: #000;
  color: #ffe247;
  border-radius: 26px 26px 0 0;
}

.box-form {
  position: relative;
  background-color: red;
  padding: 12px;
  display: flex;
  justify-content: center;
}

  #consent {
  width: 38px;
  height: 38px;
  cursor: pointer;
}
.accBtn {
  width: 50px;
  height: 50px;
  border: 6px solid #000;
  box-shadow: 0 0 24px yellow;
  margin: 12px 6px 0 0;
  border-radius: 12px;
  cursor:pointer;
  animation: pulse 1.5s infinite;
}

.form-title {
  font-size: 1.9rem;
  font-weight: 700;
  color: #fff;
  padding: 12px;
}
.clickCnt {
  padding: 20px 3%;
}
.clickCnt p {
  font-size: 1.1rem;
}
.btn-send {
  background-color: red;
  color: #fff;
  font-size: 2.3rem;
  display: block;
  padding: 20px 0 22px;
  line-height: 1;
  border-radius: 20px;
  max-width: 700px;
  margin: -10px auto 16px;
  box-shadow: 0 3px 10px #666;
}
.btn-send p {
  color: yellow;
}
.btn-send:hover {
  color: #fdfd8f;
  background-color: #345f8c;
  text-shadow: 2px 2px 4px #000;
}
.btn-send h2 {
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1;
  margin: 12px 0 2px;
  color: #fff;
}
.sndLnk {
  padding: 0 22px;
  margin-bottom: 36px;
}
.sndLnk a {
  color: #777 !important;
  text-decoration: underline;
  line-height: 1.2;
}
.sndLnk a:hover {
  color: #333 !important;
}
.guarantees, .cards {
  display: flex;
  justify-content: center;
}
.ccards {
  margin: 0 auto !important;
  max-width: 340px;
}
.guarantees {
  font-size: 2rem;
  line-height: 1;
  padding-top: 20px;
  font-weight: 500;
  margin: 12px 0 0 0;
}
.guar365 {
  max-width: 108px;
  rotate: -3deg;
  margin: -20px 6px;
  max-height: 108px;
}


.cntdwn {
  margin: 30px auto;
  padding: 12px;
  font-size: 1.6rem;
  line-height: 1.2;
  text-transform: uppercase;
  border-top: 2px dotted #888;
  border-bottom: 2px dotted #888;
  color: red;
}
.timer {
  display: contents;
  font-weight: 600;
  text-transform: initial;
}

/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stats i {
  background-color: var(--surface-color);
  color: var(--accent-color);
  box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.1);
  width: 54px;
  height: 54px;
  font-size: 24px;
  border-radius: 50px;
  border: 2px solid var(--background-color);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.stats .stats-item {
  background-color: var(--surface-color);
  margin-top: -27px;
  padding: 30px 30px 25px 30px;
  width: 100%;
  position: relative;
  text-align: center;
  box-shadow: 0px 2px 35px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  z-index: 0;
}

.stats .stats-item span {
  font-size: 36px;
  display: block;
  font-weight: 700;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.stats .stats-item p {
  padding: 0;
  margin: 0;
  font-family: var(--heading-font);
  font-size: 16px;
}

/*--------------------------------------------------------------
# Product Details Section
--------------------------------------------------------------*/
.details .features-item {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.details .features-item+.features-item {
  margin-top: 20px;
}

@media (max-width: 640px) {
  .details .features-item+.features-item {
    margin-top: 40px;
  }
}

.details .features-item h3 {
  font-weight: 700;
  font-size: 26px;
}

.details .features-item ul {
  list-style: none;
  padding: 0;
}

.details .features-item ul li {
  padding-bottom: 10px;
  display: flex;
  align-items: center;
}

.details .features-item ul li:last-child {
  padding-bottom: 0;
}

.details .features-item ul i {
  font-size: 20px;
  padding-right: 4px;
  color: var(--accent-color);
}

.details .features-item p:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Gallery Section
--------------------------------------------------------------*/
.gallery .gallery-item {
  overflow: hidden;
  border-right: 3px solid var(--background-color);
  border-bottom: 3px solid var(--background-color);
}

.gallery .gallery-item img {
  transition: all ease-in-out 0.4s;
}

.gallery .gallery-item:hover img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials {
  padding: 80px 0;
  position: relative;
}

.testimonials:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 30%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.testimonials .testimonials-bg {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.testimonials .container {
  position: relative;
  z-index: 3;
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  text-align: center;
}

.testimonials .testimonial-item .testimonial-img {
  width: 100px;
  border-radius: 50%;
  border: 6px solid color-mix(in srgb, var(--default-color), transparent 85%);
  margin: 0 auto;
}

.testimonials .testimonial-item h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0 5px 0;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  margin: 0 0 15px 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.testimonials .testimonial-item .stars {
  margin-bottom: 15px;
}

.testimonials .testimonial-item .stars i {
  color: #ffc107;
  margin: 0 1px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 26px;
  line-height: 0;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 auto 15px auto;
}

.testimonials .swiper-wrapper {
  height: auto;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: color-mix(in srgb, var(--default-color), transparent 50%);
  opacity: 0.5;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--default-color);
  opacity: 1;
}

@media (min-width: 992px) {
  /* .testimonials .testimonial-item p {
    width: 80%;
  } */
}

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .member {
  position: relative;
}

.team .member .pic {
  overflow: hidden;
  margin-bottom: 50px;
}

.team .member .member-info {
  background-color: var(--surface-color);
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  position: absolute;
  bottom: -50px;
  left: 20px;
  right: 20px;
  padding: 20px 15px;
  overflow: hidden;
  transition: 0.5s;
}

.team .member h4 {
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 16px;
  position: relative;
  padding-bottom: 10px;
}

.team .member h4::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 1px;
  background: color-mix(in srgb, var(--default-color), transparent 60%);
  bottom: 0;
  left: 0;
}

.team .member span {
  font-style: italic;
  display: block;
  font-size: 13px;
}

.team .member .social {
  position: absolute;
  right: 15px;
  bottom: 15px;
}

.team .member .social a {
  transition: color 0.3s;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.team .member .social a:hover {
  color: var(--accent-color);
}

.team .member .social i {
  font-size: 16px;
  margin: 0 2px;
}

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing .pricing-item {
  background-color: color-mix(in srgb, var(--accent-color), transparent 96%);
  padding: 40px 40px;
  height: 100%;
  border-radius: 15px;
}

.pricing h3 {
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 20px;
}

.pricing h4 {
  color: var(--accent-color);
  font-size: 48px;
  font-weight: 700;
  font-family: var(--heading-font);
  margin-bottom: 0;
}

.pricing h4 sup {
  font-size: 28px;
}

.pricing h4 span {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 18px;
  font-weight: 500;
}

.pricing .description {
  font-size: 14px;
}

.pricing .cta-btn {
  border: 1px solid var(--default-color);
  color: var(--default-color);
  display: block;
  text-align: center;
  padding: 10px 35px;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 500;
  font-family: var(--heading-font);
  transition: 0.3s;
  margin-top: 20px;
  margin-bottom: 6px;
}

.pricing .cta-btn:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  border-color: var(--accent-color);
}

.pricing ul {
  padding: 0;
  list-style: none;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  text-align: left;
  line-height: 20px;
}

.pricing ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.pricing ul li:last-child {
  padding-bottom: 0;
}

.pricing ul i {
  color: #059652;
  font-size: 24px;
  padding-right: 3px;
}

.pricing ul .na {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.pricing ul .na i {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.pricing ul .na span {
  text-decoration: line-through;
}

.pricing .featured {
  position: relative;
}

.pricing .featured .popular {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 4px 15px 6px 15px;
  margin: 0;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 500;
}

.pricing .featured .cta-btn {
  background: var(--accent-color);
  color: var(--contrast-color);
  border-color: var(--accent-color);
}

@media (max-width: 992px) {
  .pricing .box {
    max-width: 60%;
    margin: 0 auto 30px auto;
  }
}

@media (max-width: 767px) {
  .pricing .box {
    max-width: 80%;
    margin: 0 auto 30px auto;
  }
}

@media (max-width: 420px) {
  .pricing .box {
    max-width: 100%;
    margin: 0 auto 30px auto;
  }
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .content h3 {
  font-weight: 400;
  font-size: 34px;
}

.faq .content p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.faq .faq-container {
  margin-top: 15px;
}

.faq .faq-container .faq-item {
  background-color: var(--surface-color);
  position: relative;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0px 5px 25px 0px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.faq .faq-container .faq-item:last-child {
  margin-bottom: 0;
}

.faq .faq-container .faq-item h3 {
  font-weight: 600;
  font-size: 17px;
  line-height: 24px;
  margin: 0 30px 0 32px;
  transition: 0.3s;
  cursor: pointer;
}

.faq .faq-container .faq-item h3 span {
  color: var(--accent-color);
  padding-right: 5px;
}

.faq .faq-container .faq-item h3:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
}

.faq .faq-container .faq-item .faq-content p {
  margin-bottom: 0;
  overflow: hidden;
}

.faq .faq-container .faq-item .faq-icon {
  position: absolute;
  top: 22px;
  left: 20px;
  font-size: 22px;
  line-height: 0;
  transition: 0.3s;
  color: var(--accent-color);
}

.faq .faq-container .faq-item .faq-toggle {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 16px;
  line-height: 0;
  transition: 0.3s;
  cursor: pointer;
}

.faq .faq-container .faq-item .faq-toggle:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-active h3 {
  color: var(--accent-color);
}

.faq .faq-container .faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
  padding-top: 10px;
}

.faq .faq-container .faq-active .faq-toggle {
  transform: rotate(90deg);
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-item+.info-item {
  margin-top: 40px;
}

.contact .info-item i {
  color: var(--accent-color);
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  font-size: 20px;
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  margin-right: 15px;
}

.contact .info-item h3 {
  padding: 0;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
}

.contact .info-item:hover i {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.contact .php-email-form {
  height: 100%;
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  background-color: color-mix(in srgb, var(--background-color), transparent 50%);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--accent-color);
}

.contact .php-email-form input[type=text]::placeholder,
.contact .php-email-form input[type=email]::placeholder,
.contact .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact .php-email-form button[type=submit] {
  color: var(--contrast-color);
  background: var(--accent-color);
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 50px;
}

.contact .php-email-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 25%);
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter-section {
  /* Add your styles here */
}