/* Base Root */
:root {

  /* Hero */
  --hero-title: #000000;
  --hero-list-text: #0132fa;
  --black: #000;
  
  
    /* FAQ marquee */
  --question-border: #fff;
  --question-width: 0;
  --question-negated-width: 0;
  --glowEffect: #0132fa;
  --question-background: #050e18;
  
  
    /* AI assistance */
  --text-color: white;
  --paragraph-text-color: #e6e6e6;
  --review-section: #04072a;
  --course-box: #20223e;
  --glow-effect-thin-border: #0312fa;

  
 
    /* Course Demo */
  --course-demo-text-color: #fff;
  --course-demo-text-color-faded: #ffffff99;
  --course-demo-text-active-color: #e6e6e6;
  --logo-color: #0312fa;
  
  
  
  /* Course curriculum */
  --tab-comp-background: #0e0c14;
  --tab-comp-text: #000000;
  --tab-comp-btn-disabled: #ffffff80;
  --tab-comp-border: #ffffff80;
  --tab-comp-scroll: #DEDFF1;
  --tab-comp-scroll-piece: #010066;
  --tab-comp-border-hover: #ffffff33;
  --arrows-color: #0132fa;
  
  
  

  /* Course Features */
  --course-details-bg-color: #000;
  --course-details-img-color: #ffffff;
  --course-details-img-border-color: #0132fa;
  --course-details-title-color: #ffffff;
  --course-details-description-color: #e6e6e6;
  
  
    /* WHATS INSIDE */
  --title-text: #ffffff;
  --carousel-fill: #0d1735;
  --carousel-p: #e6e6e6;
  --carousel-slider-active: #012ab9;
  --carousel-slider-inactive: #808080;
  --arrows-color: #0132fa;
  --bg: #070d1e;
  

  /* Signature */
  --white: #fff;
  --lite: rgba(255, 255, 255, 0.6);
  --disclaimer-text: #e6e6e6;
  --logo-color: #0132fa;
  --signature-background: #1E183E;
  
  
  

}

/***********************************************************
 * Make shadow text for Course certificate section
 ***********************************************************/

.text-shadow {
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.25);
}



/***********************************************************
 * HIDE DIV CONTAINER
 ***********************************************************/

#iframe-container {
position: relative;
}

.bottom-overlay {
height: 55px;
position: absolute;
/*bottom: 0;*/
top: 50;
background-color: #3D317D;
width: 100%;
}



/***********************************************************
 * Hero CSS (Updated for Inline + Mobile Variants)
 ***********************************************************/
.hero__content__head__title {
  text-transform: uppercase;
  margin: 0;
  font-size: 4vw;
  width: fit-content;
  padding: 0 1.5%;
  color: var(--hero-title) !important;
  font-family: "Archivo", sans-serif !important;
  font-weight: 600 !important;
}
.hero__content__head__title h1 {
  font-family: "Archivo", sans-serif !important;
  font-weight: 600 !important;
}

.hero__mobile__view {
  display: none;
}


.hero__desktop__view {
  display: flex;
  justify-content: center;
  text-align: center;
}



.hero__content__head__list-animate-text-scroll,
.hero-animate-text-scroll-mobile {
  display: inline-flex;
  align-items: baseline; /* aligns animated text with surrounding text */
  justify-content: flex-start;
  width: 12ch; /* or 14ch if needed */
  height: auto;
  overflow: hidden;
  white-space: nowrap;
  vertical-align: baseline;
}



.hero__content__head__list-animate-text-scroll span,
.hero-animate-text-scroll-mobile span {
  display: none;
  color: var(--hero-list-text);
  font-weight: 600;
  font-family: "Archivo", sans-serif;
  text-transform: uppercase;
  font-size: inherit;
  line-height: inherit;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.3s ease;
}




.hero__content__head__list-animate-text-scroll span.add,
.hero-animate-text-scroll-mobile span.add {
  display: inline;
  opacity: 1;
}

.hero__content__head__list-animate-text-scroll span.remove,
.hero-animate-text-scroll-mobile span.remove {
  animation: fadeOut 0.5s ease;
}

.hero p {
  padding: 0 1.5%;
  color: var(--hero-title) !important;
  text-transform: uppercase;
  margin: 0;
  font-family: "Hind", sans-serif !important;
  font-weight: 300 !important;
  letter-spacing: 5px !important;
}

.hero__content__head {
  margin: 1.5% 0;
}

.hero__content__footer {
  font-size: 1.7vw !important;
}


.js-hidden {
  visibility: hidden;
}


/* =========================
   Responsive Typography
========================= */
@media screen and (max-width: 1440px) and (min-width: 1024px) {
  .hero__content__head__title {
    font-size: 4.3125rem;
  }
  .hero p {
    letter-spacing: 5px !important;
  }
  .hero__content__footer {
    font-size: 1.5rem !important;
  }
}

@media screen and (max-width: 1023px) and (min-width: 769px) {
  .hero__content__head__title {
    font-size: 3.8rem;
  }
  .hero p {
    letter-spacing: 5px !important;
  }
  .hero__content__footer {
    font-size: 1.6rem !important;
  }
}

@media screen and (max-width: 768px) and (min-width: 600px) {
  .hero__mobile__view {
    display: block;
  }
  .hero__desktop__view {
    display: none;
  }
  .hero__content__head__title {
    font-size: 3rem;
  }
  .hero p {
    letter-spacing: 5px !important;
  }
  .hero__content__footer {
    font-size: 1.1rem !important;
  }
}

@media screen and (max-width: 599px) and (min-width: 426px) {
  .hero__mobile__view {
    display: block;
  }
  .hero__desktop__view {
    display: none;
  }
  .hero__content__head__title {
    font-size: 2.1rem;
  }
  .hero p {
    letter-spacing: 2.5px !important;
  }
  .hero__content__footer {
    font-size: 1rem !important;
  }
}

@media screen and (max-width: 425px) {
  .hero__mobile__view {
    display: block;
  }
  .hero__desktop__view {
    display: none;
  }
  .hero__content__head__title {
    font-size: 8vw;
    padding-left: 3.5vw;
    width: 100%;
  }
  .hero p {
    padding-left: 3.5vw;
    letter-spacing: 2.5px !important;
  }
  .hero__content__footer {
    font-size: 3.5vw !important;
  }
}

/* =========================
   Animations
========================= */
@keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

@keyframes fadeOut {
  0% { opacity: 1; }
  100% { opacity: 0; }
}
/***********************************************************
 * Hero END
 ***********************************************************/
 
 
 
 
/*
**************************** FAQ marquee CSS ***************************
*/

.marquee__content > li img {
  height: 2.2vw;
  max-height: 50px;
  width: auto;
  object-fit: contain;
  filter: brightness(1.1) contrast(1.1);
  transition: transform 0.3s ease;
}

.marquee__content > li:hover img {
  transform: scale(1.05);
}


.marquee__content > li img {
  height: 2.2vw;
  max-height: 50px;
  width: auto;
  object-fit: contain;
  filter: brightness(1.1) contrast(1.1);
  transition: transform 0.3s ease;
}

/* Hover effect — KEEP THIS */
.marquee__content > li:hover img {
  transform: scale(1.05);
}

/* ✅ NEW: Medium screens (tablets) */
@media screen and (max-width: 1024px) {
  .marquee__content > li img {
    height: 32px;
  }
}

/* ✅ NEW: Small screens (mobiles) */
@media screen and (max-width: 768px) {
  .marquee__content > li img {
    height: 28px;
  }
}

/* ✅ NEW: Extra small screens (narrow phones) */
@media screen and (max-width: 480px) {
  .marquee__content > li img {
    height: 24px;
  }
}



.questions {
  /* Only keep responsive overrides if needed */
}

.question_content {
  background-color: var(--question-background) !important;
  border-top: 2px solid var(--glowEffect) !important;
  border-bottom: 2px solid var(--glowEffect) !important;
  box-shadow: 
    0 2px 7.5px 2px var(--glowEffect),
    0 -2px 7.5px 2px var(--glowEffect) !important;
}

.marquee {
  --gap: 1rem;
  position: relative;
  user-select: none;
  gap: var(--gap);
}

.marquee__content {
  gap: var(--gap);
}

body:not(.no-marquee) .marquee__content {
  opacity: 1;
  visibility: visible;
}

.marquee ul {
  padding-inline-start: 0 !important;
  margin: 0;
}

.marquee__content > * {
  list-style: none;
  color: var(--question-border) !important;
  font-size: 1.7vw;
  white-space: nowrap;
  margin: 7px 0;
  align-items: center;
  border-radius: 12px;
  padding: 0 1rem;
  display: flex;
  font-family: "Archivo", sans-serif !important;
  font-weight: 500 !important;
}

/* Animation keyframes */
@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-100% - var(--gap)));
  }
}

/* Pause animation on hover */
.marquee--hover-pause:hover .marquee__content {
  animation-play-state: paused;
}

/* ========== Responsive adjustments ========== */

@media screen and (min-width: 1440px) {
  .question_content {
    padding: 1% 0;
    border-top: 2px solid var(--glowEffect) !important;
    border-bottom: 2px solid var(--glowEffect) !important;
    box-shadow: 
      0 0.175vw 7.5px 0.175vw var(--glowEffect),
      0 -0.175vw 7.5px 0.175vw var(--glowEffect) !important;
  }
}

@media screen and (min-width: 1024px) and (max-width: 1440px) {
  .questions {
    height: 11em;
  }

  .marquee__content > * {
    font-size: 1.3rem;
  }

  .marquee_container {
    padding: 0;
  }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .questions {
    height: 11em;
  }

  .marquee__content > * {
    font-size: 1.35rem;
  }
}

@media screen and (min-width: 424px) and (max-width: 768px) {
  .questions {
    height: 10em;
  }

  .marquee__content > * {
    font-size: 1.2rem;
  }
}

@media screen and (max-width: 424px) {
  .questions {
    height: 10em;
  }

  .marquee__content > * {
    font-size: 1rem;
  }

  .marquee_container {
    padding: 0;
  }
}

/*
*************************** FAQ marquee END *************************** 








/**
* Course Curriculum CSS
*/
.tab-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.tabs-comp {
  width: 75%;
  height: fit-content;
  display: flex;
  color: var(--tab-comp-text) !important;
  border: 1px solid #0132fa;
  border-radius: 12px;
  padding: 1.2rem 0.5rem 0.5rem 0%;
}

[data-tab-content] {
  display: none;
}

.active-content[data-tab-content] {
  position: relative;
  display: block;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.tab_item-header {
  height: 100%;
}

.tab_item-header h1 {
  margin: 0;
  font-size: 2vw;
  padding-left: 2%;
}
.tab_item-description section h3 {
  margin: 0;
  font-size: 1.75vw;
  padding-left: 2%;
  font-weight: 400 !important;
  font-family: "Hind", sans-serif !important;
}
.tab_item-description section ul {
  margin: 0;
  font-size: 1vw;
  padding-left: 6%;
  font-weight: 400 !important;
  font-family: "Hind", sans-serif !important;
}
.tab_item-description section h4 {
  margin: 0;
  font-size: 1vw;
  padding-left: 2%;
  font-weight: 400 !important;
  font-family: "Hind", sans-serif !important;
}
.tab_item-description section p {
  margin: 0;
  font-size: 1vw;
  padding-left: 2%;
  font-weight: 400 !important;
  font-family: "Hind", sans-serif !important;
}
.tab_item-description {
  position: relative;
  margin: 0;
  font-size: 0.7rem;
  overflow: auto;
  overflow-x: hidden;
  height: 29em;
}

.tab_item-description::-webkit-scrollbar {
  width: 15px !important;
}

.tab_item-description::-webkit-scrollbar-track {
  background-color: var(--tab-comp-scroll-piece) !important;
}

.tab_item-description::-webkit-scrollbar-thumb {
  background-color: var(--tab-comp-scroll);
  border-radius: 6px;
  border: 2px solid transparent;
  background-clip: content-box;
}

/* Firefox */
.tab_item-description {
  scrollbar-width: thin;
  scrollbar-color: var(--tab-comp-scroll) var(--tab-comp-scroll-piece);
}

.tab_item-description::-webkit-scrollbar-thumb:vertical {
  height: 30px;
  background-color: var(--tab-comp-border) !important;
}

.tab_item-btn {
  position: absolute;
  bottom: 0;
  box-sizing: border-box;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.tab_item-btn button {
  background-color: transparent;
  border: none;
  color: var(--tab-comp-text) !important;
  font-size: 2.25vw;
  height: fit-content;
  margin: 1rem 0 0;
  cursor: pointer;
}

.tab_item-btn button:disabled {
  color: var(--tab-comp-btn-disabled) !important;
  cursor: default;
}

.tabs-comp-list {
  display: flex;
  flex-direction: column;
  list-style-type: none;
  margin: 0;
  padding: 0 1%;
  width: 130px;
}

.tab_item {
  cursor: pointer;
  padding: 1% 1% 1% 5%;
  font-size: 1.25vw;
  border-right: 0.125rem solid var(--tab-comp-border);
  margin: 0;
  font-family: "Hind", sans-serif !important;
  font-weight: 400 !important;
  line-height: 1.3; /* add this if still too spaced */
}

.tab_item-header > h1 {
  font-family: "Archivo", sans-serif !important;
  font-weight: 600 !important;
}

.tab_item.active-content {
  color: white !important; /* or any color you prefer */
  border-right: 0.125rem solid var(--arrows-color);
    background-image: linear-gradient(70deg, #0132fa, black);
}

.tab_item:hover {
  background-color: var(--tab-comp-border);
}


.tabs-comp-contents {
  margin-top: 2%;
  width: 85%;
  font-family: "Hind", sans-serif !important;
  font-weight: 400 !important;
}

@media (min-width: 3300px) {
  .tabs-comp-contents {
    width: 90%;
  }
  .tabs-comp-list {
    width: 15%;
  }
  .tabs-comp-list > li {
    font-size: 2.6rem;
  }
  .tab_item-description {
    height: 84em;
  }

  .tab_item-description section {
    padding: 0 1% 1% 1%;
  }
  .tab_item-btn button {
    font-size: 4rem;
  }
  .tab_item-btn:last-child button {
    margin-right: 1em;
  }
  .tab_item-header > h1 {
    font-size: 2.85rem;
    padding-bottom: 2%;
    margin: 0;
    padding-left: 3%;
  }
  .tab_item-description section h3 {
    margin: 0;
    font-size: 2.35rem;
  }
  .tab_item-description section ul {
    margin: 0;
    font-size: 2.35rem;
    padding-left: 4em;
  }
  .tab_item-description section h4 {
    margin: 0;
    font-size: 2.475rem;
  }
  .tab_item-description section p {
    margin: 0;
    font-size: 2.35rem;
  }
}
@media (min-width: 2560px) and (max-width: 3300px) {
  .tabs-comp-contents {
    width: 90%;
  }
  .tabs-comp-list {
    width: 15%;
  }
  .tabs-comp-list > li {
    font-size: 1.75rem;
  }
  .tab_item-description {
    height: 56em;
  }

  .tab_item-description section {
    padding: 0 1% 1% 1%;
  }
  .tab_item-btn button {
    font-size: 2.5rem;
  }
  .tab_item-btn:last-child button {
    margin-right: 1em;
  }
  .tab_item-header > h1 {
    font-size: 2rem;
    padding-bottom: 2%;
    margin: 0;
    padding-left: 3%;
  }
  .tab_item-description section h3 {
    margin: 0;
    font-size: 1.5rem;
  }
  .tab_item-description section ul {
    margin: 0;
    font-size: 1.5rem;
    padding-left: 4em;
  }
  .tab_item-description section h4 {
    margin: 0;
    font-size: 1.625rem;
  }
  .tab_item-description section p {
    margin: 0;
    font-size: 1.5rem;
  }
}
@media (min-width: 1441px) and (max-width: 2560px) {
  .tabs-comp {
    padding: 1.2rem 1rem 1rem 0%;
  }
  .tabs-comp-contents {
    width: 90%;
  }
  .tabs-comp-list {
    width: 11em;
  }
  .tabs-comp-list > li {
    font-size: 1.5rem;
  }
  .tab_item-description {
    height: 45em;
  }
  .tab_item-description section {
    padding: 0 2% 2% 2%;
  }
  .tab_item-btn button {
    margin-top: 0em;
    font-size: 2.5rem;
  }
  .tab_item-btn:last-child button {
    margin-right: 0.5em;
  }
  .tab_item-header > h1 {
    font-size: 2rem;
    padding-bottom: 1.5%;
    margin: 0;
    padding-left: 4%;
  }
  .tab_item-description section h3 {
    margin: 0;
    font-size: 1.25rem;
  }
  .tab_item-description section ul {
    margin: 0;
    font-size: 1.25rem;
    padding-left: 4em;
  }
  .tab_item-description section h4 {
    margin: 0;
    font-size: 1.375rem;
  }
  .tab_item-description section p {
    margin: 0;
    font-size: 1.25rem;
  }
}

@media (min-width: 1024px) and (max-width: 1440px) {
  .tabs-comp-list {
    width: 10em;
  }
  .tab_item-description {
    height: 38em;
  }
  .tab_item-description section {
    padding: 0 2% 2% 2%;
  }
  .tab_item {
    font-size: 1.25rem;
  }
  .tab_item-btn button {
    font-size: 2rem;
  }
  .tab_item-header > h1 {
    font-size: 1.75rem;
    padding-bottom: 3%;
    padding-left: 4%;
  }
  .tab_item-description section h3 {
    margin: 0;
    font-size: 1rem;
  }
  .tab_item-description section ul {
    margin: 0;
    font-size: 1rem;
    padding-left: 4em;
  }
  .tab_item-description section h4 {
    margin: 0;
    font-size: 1.125rem;
  }
  .tab_item-description section p {
    margin: 0;
    font-size: 1rem;
  }
}

@media (min-width: 769px) and (max-width: 1023px) {
  .tabs-comp-list {
    width: 9em;
  }

  .tab_item-description section {
    padding: 0 3% 3% 3%;
  }
  .tab_item {
    font-size: 1rem;
  }
  .tab_item-btn button {
    font-size: 1.75rem;
  }
  .tab_item-header > h1 {
    font-size: 2rem;
    padding-bottom: 3%;
    padding-left: 5%;
  }
  .tab_item-description section h3 {
    margin: 0;
    font-size: 1rem;
  }
  .tab_item-description section ul {
    margin: 0;
    font-size: 1rem;
    padding-left: 4em;
  }
  .tab_item-description section h4 {
    margin: 0;
    font-size: 1.125rem;
  }
  .tab_item-description section p {
    margin: 0;
    font-size: 1rem;
  }
}

@media (min-width: 560px) and (max-width: 768px) {
  .tabs-comp {
    width: 95%;
  }
  .tabs-comp-list {
    width: 9em;
  }
  .tab_item-description section {
    padding: 0 3% 3% 3%;
  }

  .tab_item {
    font-size: 1rem;
  }
  .tab_item-btn button {
    font-size: 2rem;
  }
  .tab_item-header > h1 {
    font-size: 1.75rem;
    padding-bottom: 3%;
    padding-left: 5%;
  }
  .tab_item-description section h3 {
    margin: 0;
    font-size: 1rem;
  }
  .tab_item-description section ul {
    margin: 0;
    font-size: 1rem;
    padding-left: 3em;
  }
  .tab_item-description section h4 {
    margin: 0;
    font-size: 1.125rem;
  }
  .tab_item-description section p {
    margin: 0;
    font-size: 1rem;
  }
}

@media (max-width: 560px) {
  .tabs-comp {
    margin: 0;
    padding: 0;
    flex-direction: column;
    width: 95%;
  }
  .tabs-comp-contents {
    margin: 0;
    width: 100%;
  }
  .tab_item-description section {
    padding: 0 5% 5% 5%;
  }
  .tab_item-header {
    padding-bottom: 5%;
  }
  .tab_item-header h1 {
    font-size: 1.328125rem;
    text-align: center;
    padding: 0;
  }
  .tabs-comp-list {
    padding: 0;
    width: 100%;
    flex-direction: row;
    overflow: auto;
    display: none;
  }
  .tab_item-description section h3 {
    margin: 0;
    font-size: 1rem;
    padding-left: 0;
  }
  .tab_item-description section ul {
    margin: 0;
    font-size: 1rem;
    padding-left: 2.5em;
  }
  .tab_item-description section h4 {
    margin: 0;
    font-size: 1.125rem;
    padding-left: 0;
  }
  .tab_item-description section p {
    margin: 0;
    font-size: 1rem;
    padding-left: 0;
  }

  .tab_item {
    padding: 2%;
    font-size: 1rem;
  }
  .tab_item:first-child.active-content {
    border-radius: 10% 0 0 0;
  }
  .tab_item:last-child.active-content {
    border-radius: 0 10% 0 0;
  }
  .tab_item-btn button {
    font-size: 2rem;
  }
  .tab_item-btn {
    margin-top: 5%;
    margin-bottom: 2%;
    padding: 0;
    position: static;
    width: 100%;
    justify-content: space-between;
  }

  .tab_item-btn button {
    margin: 0;
  }
}
/**
* Course Curriculum END
*/







/*Pricing Table CSS*/
:root {
  --price-cell-seperator: rgba(213, 210, 222, 1);
  --price-data-seperator: rgba(172, 165, 189, 0.5);
  --pricing-header: rgba(76, 66, 102, 1);
  --sky-blue: #84c4ff;
  --payment-trial: #77b8f8;
  --payment-starter: #5271FF;
  --payment-free: #9716db;
  --payment-pro: #012AB3;
  --payment-enterprise: #9716db;
  
  --logo-blue: #4b86f6;
  --logo-grey: #7a748a;
  --logo-off: #7a748ab3;
  --white: #ffffff;
  --black: #000;
  --pricing--border-color: #4696f3;
  --payment-text: #808080;
  --payment-btn-text: #ffffff;
  --card-cell-bg: #e6e6e680;
}
.price-section h1 {
  font-family: "Archivo", sans-serif !important;
  font-weight: 600 !important;
  font-size: 2vw;
  margin: 0 15%;
  text-align: center;
  padding: 2%;
}

.card_data--text p {
  font-family: "Archivo", sans-serif !important;
  font-weight: 700;
}

.price-active button,
.price_container_content_card_header button,
.card_benefit p,
.card_data_heading p,
.triangle,
.triangle-left {
  font-family: "Archivo", sans-serif !important;
  font-weight: 400;
}
.data_module p,
.payment__price-text p,
.price_container_content_card_brand p {
  font-family: "Hind", sans-serif !important;
}
/*colored border*/
.price_container {
  /* background: var(--pricing--border-color);
  border-radius: 0.75rem;
  padding: 0.25vw;
  width: 75%;
  margin: auto; */
}

/*cards grid container*/
.price_container_content {
  border-radius: 0.75rem;
  background: white;
  width: 60%;
  margin: auto;
  display: grid;
  grid-template-rows: auto;
  border: 0.25rem solid var(--pricing--border-color);
}

/*card*/
.price_container_content_card {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr; /* First column is wider */
}

.price_container_content_card p,
h2,
h3 {
  margin: 0;
  padding: 0;
  color: var(--black) !important;
}

.card-logo-grey {
  color: var(--logo-grey) !important;
}

.card-logo-off {
  color: var(--logo-off) !important;
}


.payment__button-trial {
  background-color: var(--payment-trial);
}

.payment__button-free {
  background-color: var(--payment-free);
}


.payment__button-starter {
  background-color: var(--payment-starter);
}

.payment__button-pro {
  background: var(--payment-pro);
}

.payment__button-entreprise {
  background: var(--payment-enterprise);
}

.card__cell-background {
  background: var(--card-cell-bg) !important;
}
/* card container header legend*/
.card_header--title {
  justify-content: center !important;
  align-items: center;
  border-left: none !important;
}
.card_header--title h2 {
  text-transform: uppercase;
  text-align: left;
  font-family: "Archivo", sans-serif;
  font-weight: 600 !important;
}

/*card header*/
.price_container_content_card_header {
  border-bottom: 0.125rem solid var(--price-data-seperator);
  border-left: 0.125rem solid var(--price-data-seperator);
  text-align: center;
  padding: 5% 0;
  display: flex;
  justify-content: center;
  flex-direction: column;
}

/* new code */
.payment__price-section-title {
  height: 2em;
}

.payment--centering {
  display: flex;
  justify-content: center;
  text-align: center;
  align-items: center;
}
.payment__price-new-price {
  height: 6rem;
  margin: 0.5rem 0;
  border-radius: 10px;
  transform: translate(0, -0.6rem);
  
}
.payment__price-text > p {
  font-weight: 400 !important;
  font-family: "Hind", sans-serif !important;
  margin: 0;
  color: var(--payment-text) !important;
  opacity: 0.8;
}
.price_container_content_card_header button {
  border: none;
  border-radius: 5px;
  color: var(--payment-btn-text) !important;
  font-size: 1.2rem;
  font-family: "Archivo", sans-serif !important;
  font-weight: 600 !important;
  padding: 0.8rem 1.5rem;
  margin: 0.4rem auto;
  cursor: pointer;
}
.payment__companies-icons {
  display: flex;
  justify-content: center;
}
.payment__companies-icons > * {
  width: 1.5em;
}

.payment__price-lets-talk {
  height: 7rem;
  margin: 1rem 0;
}

/*end new code*/

/*card body data*/
/* .price_container_content_card_data:last-child {
  border-bottom: none;
} */
.price_container_content_card_data {
  position: relative;
  border-bottom: 0.125rem solid var(--price-data-seperator);
  display: flex;
  align-items: center;
}
/* .price_container_content_card_data_mobile {
  display: none;
} */

.card-logo-ticks {
  color: var(--logo-grey) !important;
}

.card_data--text {
  text-align: center;
  font-weight: 800;
  justify-content: center;
  border-left: 0.125rem solid var(--price-data-seperator);
}
.card_data--text--content {
  display: none;
  align-items: center;
  width: 100%;
}

/*card brand*/
.price_container_content_card_brand_header {
  border-top: 0.125rem solid var(--price-data-seperator);
  border-bottom: none;
}
.price_container_content_card_brand {
  border-top: 0.125rem solid var(--price-data-seperator);
  border-left: 0.125rem solid var(--price-data-seperator);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2%;
}
.price_card-branding {
  height: 6rem;
}

.price_container_content_card:last-child {
  border: none;
}

.card_data_heading {
  display: flex;
  /* justify-content: space-between; */
  position: relative;
  padding: 0 5%;
}
/* 
.info-display {
  margin-left: 5%;
} */

.payment__description-section-information {
  display: flex;
  position: relative;
}

.data-info {
  font-weight: 400 !important;
  font-family: "Hind", sans-serif !important;
  display: none;
  position: absolute;
  /* background: var(--white) !important;
  box-shadow: 0 0 2px var(--black); */
  width: 8em;
  height: fit-content;
  right: 0;
  /* padding: 2%; */
  transform: translate(42%, -106%);
  z-index: 2;
}

/*card benefits section*/
.data_heading_benefits {
  border: none;
}

.price_container_content_card_benefits {
  display: flex;
  flex-direction: column;
  border-left: 0.125rem solid var(--price-data-seperator);
}

.price_container_content_card_benefits_item {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 2% 0;
  margin: 0 auto;
  width: 90%;
}
.price_container_content_card_benefits_item_heading {
  display: flex;
  justify-content: space-between;
}

.card_benefit {
  display: flex;
  width: 90%;
  align-items: center;
    margin-left: 15%;
}

.card_benefit_title {

    margin-left: 10%;
}

.card_benefit_format {
    
        margin-left: 1.5%;
}


.card_benefit p {
  margin-left: 2%;
}
.card_benefit i {
  margin: 0;
}
/*information display for each feature*/

.data-info-mobile {
  background: transparent;
  padding: 3% 7%;
}

.data_module p {
  color: var(--black) !important;
}
.data-module-entreprise {
  transform: translate(0, -100%) !important;
}
.payment-switch {
  background: var(--sky-blue);
  border: none;
  border-radius: 20px;
  width: fit-content;
  margin: 1rem auto;
  cursor: pointer;
  display: flex;
}

.payment-option {
  background: inherit;
  color: white;
  padding: 10px;
  border-radius: 20px;
  border: 0 transparent;
  text-transform: uppercase;
  font-size: 0.7rem;
  font-weight: 600;
  text-align: center;
}

.payment-active {
  background: var(--logo-blue);
}

.price-content {
  display: none;
}

.price-info-icons {
  display: none !important;
}


@media (min-width: 2561px) {
  .card_header--title h2 {
    font-size: 4.5rem;
  }
  .payment__price-lets-talk {
    height: 11rem;
    margin: 1rem 0;
  }
  .payment__price-new-price {
    height: 10rem;
    margin: 1.5rem 0;
    transform: translate(0, -0.6rem);
  }
  .payment__price-section-title {
    height: 4rem;
  }
  .payment__companies-icons > * {
    width: 2.5em;
  }
  .price_container_content_card_header button,
  .price-active button {
    /* font-size: 2rem; */
    width: 20rem;
    padding: 1rem 1.5rem;
  }
  /* .price_container_content_card p,
  .card-logo-grey,
  .card-logo-ticks,
  .card-logo-plus,
  .card_data_heading p {
    font-size: 1.9rem;
  } */
  /* .price_container_content_card_data p {
  } */
  /* .card_data--text p {
    font-size: 2rem;
  } */
  .price-active button,
  .price_container_content_card_header button,
  .card_data_heading p {
    font-size: 2.375rem;
  }
  .card_data--text p {
    font-size: 2.5rem;
  }
  .card_benefit p {
    font-size: 1vw;
  }
  
  
    .card_benefit_format p strong {
    font-size: 1.75rem !important; /* or any size that looks balanced */
  }
  .data_module p,
  .payment__price-text p,
  .price_container_content_card_brand p,
  .card-logo-grey,
  .card-logo-ticks,
  .card-logo-plus {
    font-size: 1.9rem;
  }

  .price_container_content_card_benefits_item {
    width: 97%;
  }

  .data-info {
    width: 20em;
  }
  .info-display {
    width: 3rem;
    height: 3rem;
  }
  .price_card-branding {
    height: 10rem;
  }
  .card-data-height {
    height: 6rem;
  }
  .triangle-left,
  .triangle {
    font-size: 0.9vw;
    padding: 0.75em;
  }
  .soon-btn {
    width: 3vw;
  }
}
@media (min-width: 1880px) and (max-width: 2560px) {
  .price_container_content {
    width: 70%;
  }
  .card_header--title h2 {
    font-size: 3rem;
  }
  .payment__price-section-title {
  }
  .payment__price-lets-talk {
    height: 4.75rem;
    margin: 1rem 0;
  }
  .payment__price-new-price {
    height: 3.75rem;
    margin: 1.5rem 0;
    transform: translate(0, -0.6rem);
  }

  .payment__companies-icons > * {
    width: 1.2em;
  }
  .price_container_content_card_header button,
  .price-active button {
    /* font-size: 1.5rem; */
    width: 10rem;
  }
  /* .price_container_content_card p,
  .card-logo-grey,
  .card-logo-ticks,
  .card-logo-plus,
  .card_data_heading p {
    font-size: 1.4rem;
  }

  .card_data--text p {
    font-size: 1.5rem;
  } */
  .price-active button,
  .price_container_content_card_header button,
  .card_data_heading p {
    font-size: 1rem;
  }
  .card_data--text p {
    font-size: 1.0625rem;
  }
  .card_benefit p {
    font-size: 1rem;
  }
  .data_module p,
  .payment__price-text p,
  .price_container_content_card_brand p,
  .card-logo-grey,
  .card-logo-ticks,
  .card-logo-plus {
    font-size: 1rem;
  }
  .price_container_content_card_benefits_item {
    width: 97%;
  }

  .info-display {
    width: 2rem;
    height: 2rem;
  }
  .data-info {
    width: 14em;
    transform: translate(45%, -106%);
  }
  .price_card-branding {
    height: 3.438rem;
  }
  .card-data-height {
    height: 2.5rem;
  }
  .triangle-left,
  .triangle {
    font-size: 0.875rem;
    padding: 0.5em;
  }
  .info-display {
    width: 1.25rem;
    height: 1.25rem;
  }
  .triangle-enterprise {
    transform: translate(2.5%, -106%) !important;
  }
  .soon-btn {
    width: 3rem;
  }
}

@media (min-width: 1441px) and (max-width: 1880px) {
  .card_header--title h2 {
    font-size: 3rem;
  }
  .payment__price-section-title {
  }
  .payment__price-lets-talk {
    height: 4.75rem;
    margin: 1rem 0;
  }
  .payment__price-new-price {
    height: 3.75rem;
    margin: 1.5rem 0;
    transform: translate(0, -0.6rem);
  }

  .payment__companies-icons > * {
    width: 1.2em;
  }
  .price_container_content_card_header button,
  .price-active button {
    /* font-size: 1.5rem; */
    width: 10rem;
  }
  /* .price_container_content_card p,
  .card-logo-grey,
  .card-logo-ticks,
  .card-logo-plus,
  .card_data_heading p {
    font-size: 1.4rem;
  }

  .card_data--text p {
    font-size: 1.5rem;
  } */
  .price-active button,
  .price_container_content_card_header button,
  .card_data_heading p {
    font-size: 1rem;
  }
  .card_data--text p {
    font-size: 1.0625rem;
  }
  .card_benefit p {
    font-size: 1rem;
  }
  .data_module p,
  .payment__price-text p,
  .price_container_content_card_brand p,
  .card-logo-grey,
  .card-logo-ticks,
  .card-logo-plus {
    font-size: 1rem;
  }
  .price_container_content_card_benefits_item {
    width: 97%;
  }

  .info-display {
    width: 2rem;
    height: 2rem;
  }
  .data-info {
    width: 14em;
    transform: translate(45%, -106%);
  }
  .price_card-branding {
    height: 3.438rem;
  }
  .card-data-height {
    height: 2.5rem;
  }
  .triangle-left,
  .triangle {
    font-size: 0.875rem;
    padding: 0.5em;
  }
  .info-display {
    width: 1.25rem;
    height: 1.25rem;
  }
  .triangle-enterprise {
    transform: translate(2.5%, -106%) !important;
  }
  .soon-btn {
    width: 3rem;
  }
}

@media (min-width: 1441px) and (max-width: 1880px) {
  .card_header--title h2 {
    font-size: 3rem;
  }
  .payment__price-section-title {
  }
  .payment__price-lets-talk {
    height: 4.75rem;
    margin: 1rem 0;
  }
  .payment__price-new-price {
    height: 3.75rem;
    margin: 1.5rem 0;
    transform: translate(0, -0.6rem);
  }

  .payment__companies-icons > * {
    width: 1.2em;
  }
  .price_container_content_card_header button,
  .price-active button {
    /* font-size: 1.5rem; */
    width: 10rem;
  }
  /* .price_container_content_card p,
  .card-logo-grey,
  .card-logo-ticks,
  .card-logo-plus,
  .card_data_heading p {
    font-size: 1.4rem;
  }

  .card_data--text p {
    font-size: 1.5rem;
  } */
  .price-active button,
  .price_container_content_card_header button,
  .card_data_heading p {
    font-size: 1rem;
  }
  .card_data--text p {
    font-size: 1.0625rem;
  }
  .card_benefit p {
    font-size: 1rem;
  }
  .data_module p,
  .payment__price-text p,
  .price_container_content_card_brand p,
  .card-logo-grey,
  .card-logo-ticks,
  .card-logo-plus {
    font-size: 1rem;
  }
  .price_container_content_card_benefits_item {
    width: 97%;
  }

  .info-display {
    width: 2rem;
    height: 2rem;
  }
  .data-info {
    width: 14em;
    transform: translate(45%, -106%);
  }
  .price_card-branding {
    height: 3.438rem;
  }
  .card-data-height {
    height: 2.5rem;
  }
  .triangle-left,
  .triangle {
    font-size: 0.875rem;
    padding: 0.5em;
  }
  .info-display {
    width: 1.25rem;
    height: 1.25rem;
  }
  .triangle-enterprise {
    transform: translate(2.5%, -106%) !important;
  }
  .soon-btn {
    width: 3rem;
  }
}

@media screen and (min-width: 1024px) and (max-width: 1440px) {
  .price_container_content {
    width: 85%;
  }
  
  .card_benefit_format {
    
        margin-left: 0.5%;
}

  .card_header--title h2 {
    font-size: 3rem;
  }
  .payment__price-section-title {
  }
  .payment__price-lets-talk {
    height: 4.75rem;
    margin: 1rem 0;
  }
  .payment__price-new-price {
    height: 3.75rem;
    margin: 0.5rem 0;
    transform: translate(0, -0.6rem);
  }


  .payment__companies-icons > * {
    width: 1.2em;
  }
  .price_container_content_card_header button,
  .price-active button {
    /* font-size: 1.5rem; */
    width: 10rem;
  }
  /* .price_container_content_card p,
  .card-logo-grey,
  .card-logo-ticks,
  .card-logo-plus,
  .card_data_heading p {
    font-size: 1.4rem;
  }

  .card_data--text p {
    font-size: 1.5rem;
  } */
  .price-active button,
  .price_container_content_card_header button,
  .card_data_heading p {
    font-size: 1rem;
  }
  .card_data--text p {
    font-size: 1.0625rem;
  }
  .card_benefit p {
    font-size: 0.8rem;
  }
  .data_module p,
  .payment__price-text p,
  .price_container_content_card_brand p,
  .card-logo-grey,
  .card-logo-ticks,
  .card-logo-plus {
    font-size: 1rem;
  }
  .price_container_content_card_benefits_item {
    width: 97%;
  }

  .info-display {
    width: 2rem;
    height: 2rem;
  }
  .data-info {
    width: 12em;
    transform: translate(44%, -106%);
  }
  .price_card-branding {
    height: 3.438rem;
  }
  .card-data-height {
    height: 2.5rem;
  }
  .triangle-left,
  .triangle {
    font-size: 0.75rem;
    padding: 0.5em;
  }
  .info-display {
    width: 1.25rem;
    height: 1.25rem;
  }
  .triangle-enterprise {
    transform: translate(2.5%, -106%) !important;
  }
  .soon-btn {
    width: 3rem;
  }
}
@media screen and (min-width: 769px) and (max-width: 1023px) {
  .price_container_content {
    width: 95%;
  }
  .payment__price-section-title {
    height: 1.5em;
  }
  .payment__companies-icons > * {
    width: 1.25rem;
  }
  .price-section h1 {
    font-size: 1.25rem;
    text-align: center;
  }
  .price_container_content_card_header {
    padding: 0.25rem 0;
  }
  .card_header--title h2 {
    font-size: 1.5rem;
    width: auto;
  }
  .payment__price-lets-talk {
    height: 4rem;
    margin: 0.5rem 0;
  }
  .payment__price-new-price {
    height: 3rem;
    margin: 0.5rem 0;
    transform: translate(0, -0.6rem);
  }

  .price-active button,
  .price_container_content_card_header button {
    width: 8rem;
  }
  .price_container_content_card_header button {
    padding: 0.4rem;
  }
  .price_container_content_card_benefits_item {
    width: 97%;
  }
  .data-info {
    width: 8em;
  }
  .price-active button,
  .price_container_content_card_header button,
  .card_data--text p,
  .card_data_heading p {
    font-size: 0.9rem;
  }
  .card_benefit p {
    font-size: 0.875rem;
  }
  
    .card_benefit_format {
    
        margin-left: 0.2%;
}
  .data_module p,
  .payment__price-text p,
  .price_container_content_card_brand p,
  .card-logo-grey,
  .card-logo-ticks,
  .card-logo-plus {
    font-size: 0.8rem;
  }
  .card-data-height {
    height: 4rem;
  }
  .triangle-left,
  .triangle {
    font-size: 0.8125rem;
    padding: 0.5em;
  }
  .price_card-branding {
    height: 3rem;
  }
  .soon-btn {
    width: 2.5rem;
  }
}

@media (min-width: 769px) {
  .payment-switch {
    display: none;
  }
  .price_container_content-mobile {
    display: none;
  }
  .price_container_content-desktop {
    display: grid;
  }
  .triangle {
    position: relative;
    padding: 1em;
    box-sizing: border-box;
    background: #fff;
    border: 1px solid #fafafa;
    box-shadow: 0px 3px 3px 0 rgba(0, 0, 0, 0.4);
    color: var(--black) !important;
    text-align: center;
  }
  .triangle::after {
    z-index: -10;
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    margin-left: 0;
    right: 0;
    left: calc(50% - 5px);
    bottom: -9px;
    box-sizing: border-box;

    border: 5px solid #fff;
    border-color: transparent transparent #fff #fff;

    transform-origin: 0 0;
    transform: rotate(-45deg);

    box-shadow: 0 3px 3px 0 rgba(0, 0, 0, 0.4);
  }
  .triangle::before {
    z-index: 10;
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    margin-left: 0;
    right: 0;
    left: calc(50% - 5px);
    bottom: -9px;
    box-sizing: border-box;

    border: 5px solid black;
    border-color: transparent transparent #fff #fff;

    transform-origin: 0 0;
    transform: rotate(-45deg);
  }
  .triangle-enterprise {
    transform: translate(0, -106%);
  }
  .triangle-left {
    position: relative;
    padding: 1em;
    box-sizing: border-box;
    background: #fff;
    border: 1px solid #fafafa;
    box-shadow: 0px 3px 3px 0 rgba(0, 0, 0, 0.4);
    color: var(--black) !important;
    text-align: center;
  }
  .triangle-left::after {
    z-index: -10;
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    margin-left: 0;
    right: 5%;
    bottom: -9px;
    box-sizing: border-box;

    border: 5px solid #fff;
    border-color: transparent transparent #fff #fff;

    transform-origin: 0 0;
    transform: rotate(-45deg);

    box-shadow: 0 3px 3px 0 rgba(0, 0, 0, 0.4);
  }
  .triangle-left::before {
    z-index: 10;
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    margin-left: 0;
    right: 5%;
    bottom: -9px;
    box-sizing: border-box;

    border: 5px solid black;
    border-color: transparent transparent #fff #fff;

    transform-origin: 0 0;
    transform: rotate(-45deg);
  }
}

@media (max-width: 768px) {
  .price_container_content-desktop {
    display: none;
  }
  .price-section h1 {
    font-size: 1.25rem;
    text-align: center;
  }
  .price_container_content {
    grid-template-columns: 1fr;
  }
  .payment-switch {
    width: fit-content;
  }
  .payment-option {
    width: auto;
  }
  .price_container {
    padding: 0.25rem;
    margin: auto;
    width: 22em;
  }
  .price_container_content_card {
    display: none;
    overflow: hidden;
    border: none !important;
  }
  .price-active {
    display: flex;
    flex-direction: column;
  }
  .price-active button,
  .card_data--text p,
  .card_benefit p {
    font-size: 1.2rem;
  }
  .data_module p,
  .payment__price-text p,
  .price_container_content_card_brand p,
  .card-logo-grey,
  .card-logo-ticks,
  .card-logo-plus {
    font-size: 1.1rem;
  }
  .price_container_content_card_data {
    justify-content: space-between;
    padding: 0 3%;
  }
  .payment__price-section-title {
    height: 3em;
  }
  .price_container_content_card_header button {
    width: 12rem;
    margin: 0.8rem auto;
  }

  .price_container_content_card_header {
    padding: 0.5rem;
    border-left: none;
  }
  .price_container_content_card_benefits {
    padding: 3%;
    border-left: none;
  }
  .price_container_content_card_benefits_item {
    padding: 0;
    width: 100%;
  }
  
    .price_container_content_card_data,
  .price_container_content_card_benefits_item {
    padding: 0.3rem ;
  }



  .price-content {
    display: block;
    text-align: left;
    justify-content: flex-start;
    font-weight: 400 !important;
  }
  .price-info-icons {
    display: block !important;
    justify-content: flex-end;
  }
  .info-display {
    margin-left: 0;
  }
  .card_data--text {
    padding: 3%;
    border-left: none;
  }
  .card_data--text--content {
    display: flex;
  }
  .price_container_content_card_brand {
    border-left: none;
  }
  .data_module p {
    font-size: 1rem !important;
  }
  .soon-btn {
    width: 2.5rem;
  }
}
@media (max-width: 480px) {
  .price-section h1 {
    font-size: 1.25rem;
    text-align: center;
    margin: 0;
  }
  .payment-switch {
    width: fit-content;
  }
  .payment-option {
    width: auto;
    font-size: 0.7rem;
  }
  .price_container {
    width: 100%;
  }
}






@media (max-width: 768px) {
  .price_container {
    width: 100% !important;
    padding: 1rem !important;
    box-sizing: border-box;
  }

  .price_container_content {
    width: 100% !important;
    padding: 0;
    box-sizing: border-box;
  }

  .price_container_content_card {
    width: 100%;
    padding: 0; /* Remove padding */
    box-sizing: border-box;
  }

  .price_container_content_card_header {
    padding: 0; /* Remove padding to let image span full width */
  }

  .price_container_content_card_header button {
    width: 100%;
    max-width: 300px;
  }


  .card_benefit p,
  .price_container_content_card_header p,
  .payment__price-text p {
    font-size: 1.1rem;
  }
  
    .payment__price-text {
        padding: 1rem !important;
  }

  .price_container_content_card_brand {
    padding: 1rem;
  }

  .payment-switch {
    margin: 1rem auto;
  }
}


.price_container--two-columns .price_container_content {
  width: 50%;
}



.price_container--two-columns .price_container_content_card {
  grid-template-columns: 1fr 1fr !important;
}





@media screen and (min-width: 600px) and (max-width: 1023px) {
  .price_container--two-columns .price_container_content {
    width: 75% !important;  /* Nearly full width for smaller tablets */
    transform-origin: top center;
  }
}

@media screen and (min-width: 1024px) and (max-width: 1280px) {
  .price_container--two-columns .price_container_content {
    width: 70% !important;  /* Wider view for compact laptops like MacBook Air 13" */
    transform-origin: top center;
  }
}

@media screen and (min-width: 1281px) and (max-width: 1440px) {
  .price_container--two-columns .price_container_content {
    width: 60% !important;  /* Typical desktop range (1080p and 1440p displays) */
    transform-origin: top center;
  }
}

@media (min-width: 1441px) and (max-width: 1880px) {
  .price_container--two-columns .price_container_content {
    width: 50% !important;  /* Large monitors, white space adds balance */
    transform-origin: top center;
  }
}




/*Pricing Table END*/










/**
 * AI assistance CSS (Optimized + Responsive)
 */

/* Base layout styles */
.reviews--flex {
  display: flex;
  justify-content: center;
  align-items: center;
}

.reviews {
  display: flex;
  width: auto;
  flex-direction: row;
  padding: 2% 0 2% 5%;
}

.reviews__description {
  width: 40%;
  flex-direction: column;
  justify-content: space-around;
  margin: auto 0;
  text-align: left;
  padding-right: 3%;
}

.reviews__description h2 {
  color: var(--text-color) !important;
}

.reviews__description p {
  font-family: "Hind", sans-serif !important;
  font-weight: 200 !important;
  font-size: 1vw;
  margin: 1rem 0;
  color: var(--paragraph-text-color) !important;
}

.review_desc_first h2 {
  font-size: 1.2rem;
  font-family: "Archivo", sans-serif !important;
  font-weight: 600 !important;
}

.review_desc_first,
.swiper-buttonsection,
.swiper-wrapper-3,
.reviews__description p {
  width: 100%;
}

.swiper-buttonsection {
  height: 5vh;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  width: 100%;
}

.swiper-buttonsection svg {
  opacity: 0.5;
  width: 25%;
}

.swiper-buttonsection svg:hover {
  opacity: 1;
}

.swiper-3 {
  width: 70%;
  height: 100%;
}

/* ✅ Consolidated Base Slide Styles */
.swiper-slide-3 {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;

  border-radius: 12px;
  border: 2px solid var(--glow-effect-thin-border);
  background: linear-gradient(to top right, #1a1c2f, #20223e, rgba(3, 18, 250, 0.2));
  box-shadow: 0 0 15px rgba(3, 18, 250, 0.3);

  color: var(--text-color);
  font-family: "Archivo", sans-serif;
  font-size: 1.3rem;
  font-weight: 600;

  height: 300px !important;
  width: 320px !important;
  padding: 1.5rem 2.5rem; /* top/bottom 1.5rem, left/right 2rem */
  box-sizing: border-box;
}







.swiper-slide-3 h3 {
  font-family: "Archivo", sans-serif !important;
  font-weight: 600 !important;
  color: var(--text-color) !important;
  margin: 1.1rem 0;
}

.swiper-slide-3 p {
  font-family: "Hind", sans-serif !important;
  font-weight: 400 !important;
  color: var(--paragraph-text-color) !important;
  margin: 1.1rem 0;
}

.swiper-slide-3 h4 {
  margin: 0;
  font-size: 2.0rem;
  font-weight: 600;
  color: var(--text-color);
  line-height: 1.4;
}


/* Lazy image transition */
.swiper-slide img.swiper-lazy {
  opacity: 0;
  transition: opacity 0.3s ease;
}

.swiper-slide img.swiper-lazy.swiper-lazy-loaded {
  opacity: 1;
}

/* ---------------- MEDIA QUERIES ---------------- */

/* Mobile screens */
@media (max-width: 479px) {
  .reviews {
    flex-direction: column;
    padding-left: 0;
    margin: 0;
  }

  .reviews__description {
    width: 100%;
    padding: 1% 0;
  }

  .reviews__description p {
    width: 90%;
    font-size: 1rem;
  }

  .swiper-3 {
    width: 100%;
  }

  .swiper-buttonsection svg {
    width: 6.5em;
  }

  .swiper-slide-3 h3,
  .swiper-slide-3 p {
    margin: 1rem 0.8rem 0 0.9875rem;
    font-size: 0.9em;
  }
  
  .swiper-slide-3 h4 {
    font-size: 1.7rem;
    line-height: 1.4;
  }

}

/* Small tablets */
@media (min-width: 480px) and (max-width: 768px) {
  .swiper-buttonsection svg {
    width: 7em;
  }

  .swiper-slide-3 h3,
  .swiper-slide-3 p {
    margin: 1.3rem 0.5rem;
    font-size: 1em;
  }
}

/* Medium tablets to small desktops */
@media (min-width: 769px) and (max-width: 1023px) {
  .reviews {
    flex-direction: column;
    padding: 2% 0;
  }

  .reviews__description {
    width: 100%;
    margin: 2% 0;
    padding: 1%;
  }

  .reviews__description p {
    font-size: 18px;
    margin: 1% 3%;
  }

  .swiper-3 {
    width: 100%;
  }

  .swiper-buttonsection svg {
    width: 7em;
  }

  .swiper-slide-3 h3,
  .swiper-slide-3 p {
    margin: 1.2rem 0.3rem;
  }
}

/* Desktops 1024px to 1439px */
@media (min-width: 1024px) and (max-width: 1439px) {
  .reviews__description p {
    font-size: 18px;
  }

  .swiper-3 {
    padding: 2% 0;
  }

  .swiper-buttonsection svg {
    width: 7em;
  }

  .swiper-slide-3 h3 {
    font-size: 1.5rem;
  }

  .swiper-slide-3 p {
    font-size: 1.2rem;
  }
}

/* Large desktops 1440px to 1840px */
@media (min-width: 1440px) and (max-width: 1840px) {
  .review_desc_first h2 {
    font-size: 1.6rem;
  }

  .swiper-slide-3 h3 {
    font-size: 1.4rem;
  }

  .swiper-slide-3 p {
    font-size: 1.1rem;
  }

  .swiper-buttonsection svg {
    width: 7em;
  }
}

/* Extra-large desktops 1841px to 2560px */
@media (min-width: 1841px) and (max-width: 2560px) {
  .review_desc_first h2 {
    font-size: 2.4rem;
  }

  .swiper-slide-3 h3 {
    font-size: 2rem;
  }

  .swiper-slide-3 p {
    font-size: 1.1rem;
  }

  .swiper-buttonsection svg {
    width: 8em;
  }
}

/* Ultra-wide 2561px to 3900px */
@media (min-width: 2561px) and (max-width: 3900px) {
  .review_desc_first h2 {
    font-size: 3.5rem;
  }

  .swiper-slide-3 h3 {
    font-size: 2rem;
  }

  .swiper-slide-3 p {
    font-size: 1.5rem;
  }

  .swiper-buttonsection svg {
    width: 10em;
  }
}

/* Retina & large 4K+ */
@media (min-width: 3901px) {
  .review_desc_first h2 {
    font-size: 3.5rem;
  }

  .swiper-slide-3 h3 {
    font-size: 2rem;
  }

  .swiper-slide-3 p {
    font-size: 1.8rem;
  }

  .swiper-buttonsection svg {
    width: 15%;
  }
}





 
 
 
 
 
 /*
****************************WHATS INSIDE***************************
*/
.course__details {
  height: 100%;
  position: relative;
}
.course__details-title {
  text-align: center;
  margin: 1.5rem auto 0;
  padding: 0;
}

.swiper-slide-2 h3 {
  font-family: "Archivo", sans-serif !important;
  font-weight: 600 !important;
  font-size: 1.5rem;
  color: var(--title-text) !important;
  margin: 0;
  padding: 0;
}

.course__details-title p {
  font-family: "Hind", sans-serif !important;
  font-weight: 300 !important;
  font-size: 1rem;
  color: var(--carousel-p) !important;
  margin: 0.5rem auto;
  padding: 0;
}

.swiper-2 {
  margin: 0;
  padding: 5% 0 !important;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.swiper-slide-2 {
  transform: scale(0.7);
  margin: auto;
  opacity: 0.5;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5%;
  align-items: center;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background: var(--carousel-fill) !important;
  border-radius: 20px;
}

.swiper-slide-2 img {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 50%;
  fill: var(--carousel-p) !important;
}

.swiper-slide-2 h4 {
  font-family: "Archivo", sans-serif !important;
  font-size: 1rem;
  font-weight: 500 !important;
  color: var(--title-text) !important;
  margin: 0 2rem;
  text-transform: uppercase;
  padding: 0;
  text-align: center;
  margin: 0 10%;
}
.swiper-slide-2 h2 {
  color: var(--arrows-color) !important;
  text-shadow: #0132fa 0 0 5px;
  font-family: "Orbitron", sans-serif !important;
  font-weight: 600 !important;
  margin: 0 3rem;
  text-align: center;
  margin: 0 10%;
}

.swiper-slide-2 p {
  font-family: "Hind", sans-serif !important;
  font-weight: 300 !important;
  font-size: 0.8rem;
  color: var(--carousel-p) !important;
  margin: 0 2rem;
  padding: 0;
  text-align: center;
  line-height: 1;
  margin: 0 10%;
}

.swiper-2 .swiper-slide-active {
  transform: scale(1);
  box-shadow: 0px 0px 4px 1px var(--arrows-color);
  opacity: 1;
}

.swiper-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50% !important;
  margin: 0 25%;
  border-radius: 10px;
  height: 5px;
}

.swiper-pagination > .swiper-pagination-bullet {
  width: 50px;
  height: inherit;
  border-radius: 0;
  margin: 0 !important;
  padding: 0;
  opacity: 1;
  background: var(--carousel-fill);
}

.swiper-pagination > .swiper-pagination-bullet-active {
  background: var(--carousel-slider-active);
}

@media (min-width: 2561px) {
  .swiper-2 {
    padding: 3% 0 !important;
  }
  .swiper-slide-2 {
    height: 26em !important;
  }
  .swiper-slide-2 img {
    height: 50%;
    margin: 0;
    padding: 0;
  }
  .course__details-title p {
    font-size: 1.5rem;
    margin: 0.5rem auto;
    padding: 0;
  }
  .course__details-title h3 {
    font-size: 3rem;
  }
  
     .swiper-slide-2 h3 {
    font-size: 3rem;
}
  .swiper-slide-2 h2 {
    font-size: 6rem;
  }
  .swiper-slide-2 h4 {
    font-size: 1.5rem;
  }
  .swiper-slide-2 p {
    font-size: 1.3rem;
  }
  .swiper-pagination {
    height: 8px;
  }
  .swiper-pagination > .swiper-pagination-bullet {
    width: 100px;
  }
}

@media (min-width: 1440px) and (max-width: 2560px) {
  .swiper-2 {
    padding: 3% 0 !important;
  }
  .swiper-slide-2 {
    height: 24em !important;
  }
  .course__details-title h3 {
    font-size: 2.5rem;
    margin: 0;
    padding: 0;
  }
  
     .swiper-slide-2 h3 {
    font-size: 2.5rem;
}
  .course__details-title p {
    font-size: 1.35rem;
    margin: 0.5rem auto;
    padding: 0;
  }
  .swiper-slide-2 img {
    height: 45%;
  }
  .swiper-slide-2 h2 {
    font-size: 5rem;
  }
  .swiper-slide-2 h4 {
    font-size: 1.4rem;
  }
  .swiper-slide-2 p {
    font-size: 1.2rem;
  }
  .swiper-pagination > .swiper-pagination-bullet {
    width: 75px;
  }
}

@media (min-width: 1024px) and (max-width: 1440px) {
  .swiper-2 {
    padding: 5% 0 !important;
  }
  .swiper-slide-2 {
    height: 20em !important;
  }
  .course__details-title h3 {
    padding: 0.5em 0;
    font-size: 2.3rem;
  }

     .swiper-slide-2 h3 {
    font-size: 2.3rem;
}
  .course__details-title p {
    font-size: 1.5rem;
    margin: 0 1rem;
  }
  .swiper-slide-2 img {
    height: 45%;
  }
  .swiper-slide-2 h2 {
    font-size: 4.25rem;
  }
  .swiper-slide-2 h4 {
    font-size: 1.1rem;
  }
  .swiper-slide-2 p {
    font-size: 1.1rem;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .swiper-2 {
    padding: 10% 0 !important;
  }
  .swiper-slide-2 {
    height: 20em !important;
  }
  .course__details-title h3 {
    padding: 0.5em 0;
    font-size: 2rem;
  }
  
   .swiper-slide-2 h3 {
    font-size: 2rem;
}
  
  .course__details-title p {
    font-size: 1.2rem;
    margin: 0 0.5rem;
  }
  .swiper-slide-2 img {
    height: 45%;
  }
  .swiper-slide-2 h2 {
    font-size: 4rem;
  }
  .swiper-slide-2 h4 {
    font-size: 1.1rem;
  }
  .swiper-slide-2 p {
    font-size: 0.9rem;
  }
  .swiper-pagination > .swiper-pagination-bullet {
    width: 30px;
  }
}

@media (min-width: 550px) and (max-width: 768px) {
  .swiper-2 {
    padding: 15% 0 !important;
  }
  .swiper-slide-2 {
    height: 20em !important;
  }
  .course__details-title h3 {
    font-size: 2rem;
  }
  
    .swiper-slide-2 h3 {
    font-size: 2rem;
}
  .course__details-title p {
    font-size: 1.1rem;
  }
  .swiper-slide-2 img {
    height: 45%;
  }
  .swiper-slide-2 h2 {
    font-size: 3.5rem;
  }
  .swiper-slide-2 h4 {
    font-size: 1rem;
  }
  .swiper-slide-2 p {
    font-size: 0.9rem;
  }
  .swiper-pagination {
    width: 65% !important;
    margin: 0 18%;
  }
  .swiper-pagination > .swiper-pagination-bullet {
    width: 30px;
  }
}

@media (max-width: 550px) {
  .swiper-2 {
    padding: 15% 0 !important;
  }
  .swiper-slide-2 {
    height: 20em !important;
  }
  .course__details-title h3 {
    font-size: 1.75rem;
  }
  
  .swiper-slide-2 h3 {
    font-size: 1.75rem;
}

  .course__details-title p {
    font-size: 1.1rem;
    margin: 1.3rem 0.5rem;
  }
  .swiper-slide-2 img {
    height: 40%;
  }
  .swiper-slide-2 h2 {
    font-size: 3.5rem;
  }
  .swiper-slide-2 h4 {
    font-size: 1rem;
  }
  .swiper-slide-2 p {
    font-size: 1rem;
  }
  .swiper-pagination {
    width: 60% !important;
    margin: 0 20%;
  }
  .swiper-pagination > .swiper-pagination-bullet {
    width: 20px;
  }
}
/*
****************************WHATS INSIDE END***************************
*/



/**
* Signature CSS
*/

.signature {
  box-sizing: border-box;
  background-color: var(--signature-background) !important;
  padding: 2% 4%;
  width: 100%;
  padding-bottom: 0;
}
.signature-title {
  color: var(--white) !important;
}

.signature h3 {
  font-family: "Archivo", sans-serif !important;
  font-weight: 500 !important;
}

.signature p,
.signature a {
  font-family: "Hind", sans-serif !important;
  font-weight: 300 !important;
}

.signature hr {
  border: 0.0625rem solid var(--disclaimer-text) !important;
  opacity: 1;
  margin-bottom: 1%;
}

.signature__content {
  display: grid;
  grid-template-columns: 2fr 1fr repeat(3, 0.5fr);
}

.signature__content h3 {
  font-size: 1.5vw;
  font-weight: 600;
}

.signature-logo {
  display: inline-grid;
  margin-bottom: 2%;
  grid-column: span 6;
  width: 14vw;
}

.signature-logo svg {
  margin: 0;
  padding: 0;
}

.signature-logo a {
  margin: 0;
  padding: 0;
  height: fit-content;
}

.signature-disclaimer {
  margin-right: 10%;
  text-align: justify;
  color: var(--disclaimer-text) !important;
}

.signature-flex {
  margin: 0 auto;
  position: relative;
  padding: 0 1rem;
  width: 100%;
}

.signature-flex-follow {
  display: flex;
  align-items: center;
  margin: 0;
}
.signature-flex-follow ul {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 0;    
  margin: 0;
}
.signature-flex-follow ul a {
  font-size: 1rem;
}
.signature-follow {
  color: var(--logo-color) !important;
  text-decoration: none !important;
  display: flex;
  align-items: center;
}
.signature-flex-follow .signature-title {
  margin: 0;
  margin-right: 1%;
}

.signature-flex a {
  cursor: pointer;
}

.signature-link {
  text-decoration: none !important;
  min-width: fit-content;
  width: fit-content;
  color: var(--disclaimer-text) !important;
  display: block;
  margin: 0.5rem 0 !important;
}

.signature-email {
  color: var(--lite) !important;
}

.signature-email:hover {
  color: var(--white) !important;
  cursor: pointer;
}

.signature-ul {
  padding: 0 0.3rem;
  margin: 0;
}

.signature-ul:first-child {
  padding: 0 0.4rem 0 0;
}

.st-btn {
  background-color: var(--logo-color) !important;
  border-radius: 12px !important;
}

.signature__copyright {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin: auto;
  text-align: center;
  color: var(--white) !important;
}

.signature__copyright-text {
  display: flex;
  width: 20%;
  margin: 0;
  padding: 0;
  justify-content: flex-end;
  align-items: center;
}

.signature__copyright-text-link {
  text-decoration: none !important;
  color: var(--logo-color) !important;
  margin-left: 3%;
}

@media (min-width: 1440px) {
  .signature-flex a {
    font-size: 1vw;
  }
  .signature-flex:first-child p {
    font-size: 0.8vw;
  }
  .signature h3 {
    font-size: 1.2vw;
  }
  .signature-link {
    font-size: 1vw;
  }
  .signature-disclaimer {
    font-size: 0.8vw;
  }
  .signature__copyright p {
    font-size: 0.8vw;
  }
  .signature-flex-follow ul {
    gap: 1vw;
  }
  .signature-follow {
    font-size: 1vw !important;
    margin: 0 !important;
  }
}

@media (min-width: 1024px) and (max-width: 1440px) {
  .signature__content a,
  .signature__content p {
    font-size: 0.7675rem;
  }
  .signature-disclaimer {
    font-size: 0.6875rem;
  }
  .signature h3 {
    font-size: 1.125rem;
  }
  .signature-logo {
    width: 13em;
  }
  .signature-flex-follow {
    width: 60%;
  }
  .signature__copyright-text {
    width: 40%;
  }
  .signature__copyright span {
    font-size: 0.875rem;
  }
  .signature-link {
    margin: 0.25rem 0;
  }
}

@media (min-width: 769px) and (max-width: 1023px) {
  .signature__content {
    grid-template-columns: 2fr repeat(3, 1fr);
  }
  .signature-logo {
    width: 13em;
  }
  .signature-flex {
    margin: 0;
  }
  .signature__content a,
  .signature__content p {
    font-size: 0.7675rem;
  }
  .signature-disclaimer {
    font-size: 0.6875rem;
  }
  .signature h3 {
    font-size: 1.125rem;
  }
  .signature-flex-follow {
    width: 60%;
  }
  .signature__copyright-text {
    width: 40%;
  }
  .signature__copyright span {
    font-size: 0.875rem;
  }
}

@media (max-width: 768px) {
  .signature {
    padding: 2%;
  }
  .signature hr {
    margin-top: 3%;
    width: 90%;
  }
  .signature__content {
    grid-template-columns: 1fr;
    margin: 0 auto;
  }
  .signature-logo {
    padding-left: 1rem;
    grid-column: 1;
  }
  .signature-logo {
    width: 13em;
  }

  .signature-flex {
    padding: 0;
    margin: 0;
  }

  .signature-flex-mobile {
    padding-left: 2rem;
  }

  .signature-disclaimer {
    padding-left: 2rem;
    font-size: 0.7rem !important;
  }

  .signature-link {
    font-size: 0.8rem !important;
    margin: 0.5rem 0;
  }

  .signature__copyright span {
    font-size: 0.875rem !important;
  }

  .signature-title {
    font-size: 1rem !important;
  }

  .signature__copyright {
    flex-direction: column;
  }

  .signature-flex-follow {
    flex-direction: column;
    align-items: center;
    margin: 0;
    margin-bottom: 3%;
  }
  .signature-flex-follow .signature-title {
    margin: 0;
    margin-top: 3%;
  }
  .signature-flex-follow ul {
    width: 90%;
    justify-content: center;
   margin: 0.5rem;
  }
  .signature-follow {
    font-size: 1rem !important;
    margin: 0 !important;
  }
  .signature__copyright-text {
    width: 100%;
    justify-content: center;
  }
  .signature__copyright-text-link {
    margin-left: 1%;
  }
}

@media (max-width: 560px) {
  .signature__content {
    grid-template-columns: 1fr;
    grid-auto-flow: row;
    row-gap: 1rem;
    margin: 0 auto;
  }
  .signature hr {
    margin-top: 3%;
    width: 85%;
  }
  .signature__content a,
  .signature__content p {
    font-size: 0.8rem;
  }
  .signature__content h3 {
    font-size: 1rem;
  }
  .signature-logo {
    width: 13em;
  }
  .signature__copyright-text-link {
    margin-left: 2%;
  }
  .signature-flex-follow ul {
    width: 85%;
    justify-content: center;
  }
}
@media (max-width: 425px) {
  .signature-logo {
    width: 13em;
  }
  .signature hr {
    margin-top: 3%;
    width: 80%;
  }
  .signature-flex-follow ul {
    width: 80%;
    justify-content: center;
  }
}
/* Signature END */






/**
* MOBILE MENU
*/


:root {
  --link-size: 16px;
  --link-height: 23px;
  --link-spacing: 3.8px;
  --link-color: white;
  --link-weight: 600;
}

.hamburger {
  display: none;
}

.body-overlay::before {
  content: "";
  position: fixed;
  top: 0;
  width: 100%;
  height: 100%;
  background: #363636;
  transition: all 1.2s cubic-bezier(0.645, 0.045, 0.355, 1);
  opacity: 0.5;
  z-index: 99;
}

.side-bar-activated .link-list {
  display: none !important;
}

#side-bar {
  width: 320px;
  background: rgba(15, 11, 38, 0.9); /* #0F0B26 with 90% opacity */
  position: fixed;
  top: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
  padding: 20px !important;
  z-index: 9999999999999;
  overflow-y: scroll;
}

#side-bar::-webkit-scrollbar {
  width: 0px;
}

#side-bar-container {
  transform: translateX(100%);
  transition: all 1.2s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.side-bar--open #side-bar-container {
  transform: translateX(0%) !important;
  transition-delay: 0.1s !important;
  transition: all 1.2s cubic-bezier(0.645, 0.045, 0.355, 1);
}

#side-bar-start-div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  margin-bottom: 50px;
}

#side-bar-start-div .logo {
  max-width: 100%;      /* use a % instead of a hard pixel limit */
  flex-shrink: 0;
  margin-right: auto;
  display: flex;
  align-items: center;
  padding-right: 12px;
}

#side-bar-start-div .logo img {
  height: 64px !important;
  width: auto !important;
  object-fit: contain;
  margin: 0 !important; /* reset spacing if affected */
}


#side-bar-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  cursor: pointer;
  flex-shrink: 0;
  margin-left: 0;       /* remove unwanted pushing */
  flex-grow: 0;         /* prevent stretching */
  max-width: none;      /* avoid weird scaling */
}


#side-bar-close svg *,
#side-bar-menu svg * {
  width: 100%;
  height: 100%;
  fill: var(--link-color);
}

#side-bar-close svg,
#side-bar-menu svg {
  width: 100%;
  height: 100%;
  pointer-events: none;
}

#side-bar-menu {
  width: 40px;
  height: 40px;
  cursor: pointer;
  margin-left: auto !important;
}

#side-bar-container .logo {
  margin-left: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px;
}

#side-bar-container .logo img {
  width: 100%;
  height: 100%;
  margin-left: 15px;
  margin-right: 15px;
}

#side-bar-container .link-list {
  display: flex;
  flex-direction: column;
}

#side-bar-container .dropdown {
  border-bottom: 1.7px solid #dddddd;
  display: block;
}

#side-bar-container .dropdown__trigger {
  display: flex;
  justify-content: space-between;
  font-size: var(--link-size);
  letter-spacing: var(--link-spacing);
  line-height: var(--link-height);
  color: var(--link-color);
  font-weight: var(--link-weight);
  text-transform: uppercase;
  padding: 20px 0px;
}

#side-bar-container .cross-button-wrapper {
  width: 11px;
  height: 11px;
  position: relative;
  margin: 5px 0;
}

#side-bar-container .cross-button-wrapper div {
  width: 1px;
  height: 100%;
  background: var(--link-color);
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  margin: auto;
  transition-duration: 0.35s;
}

#side-bar-container .cross-button-second-line {
  transform: rotate(-90deg);
}

#side-bar-container .dropdown--open .cross-button-first-line {
  transform: rotate(90deg);
}

#side-bar-container .dropdown__menu {
  position: static;
  background: transparent;
  box-shadow: none;
  max-height: 0px;
  padding: 0px;
  transition: max-height 0.35s ease-in-out, padding 0.35s ease-in-out;
}

#side-bar-container .dropdown--open .dropdown__menu {
  max-height: 400px;
  padding-bottom: 20px;
}

#side-bar-container .dropdown__item a {
  font-size: var(--link-size);
  letter-spacing: var(--link-spacing);
  line-height: var(--link-height);
  color: var(--link-color);
  font-weight: 400;
  padding: 13px 0px !important;
  margin-left: 16px;
  text-transform: uppercase;
}

#side-bar-container .link-list__link {
  font-size: var(--link-size);
  letter-spacing: var(--link-spacing);
  line-height: var(--link-height);
  color: var(--link-color);
  font-weight: var(--link-weight);
  text-transform: uppercase;
  padding: 20px 0px;
  border-bottom: 1.7px solid #dddddd;
  margin-bottom: 0px;
}

/* Center the CTA block in the sidebar */
#side-bar-container .header__block--cta {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

#side-bar-container .header__block--cta .btn {
  text-align: center;
}


/* Actions */
.side-bar--close {
  right: -101% !important;
}

.side-bar--open {
  right: 0% !important;
}

@media (max-width: 480px) {
  #side-bar {
    width: 100% !important;
  }
}/*# sourceMappingURL=right-menu.css.map */



/**
* MOBILE MENU
*/



/**
* BENEFITS SLIDER - Scoped & Fixed
*/

#benefits-slider,
#benefits-slider *,
#benefits-slider *::before,
#benefits-slider *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Roboto", sans-serif;
}

#benefits-slider {
  font-size: 62.5%; /* 1em = 10px inside slider */
  background-color: #010066;
  color: #fff;
}

@media only screen and (max-width: 800px) {
  #benefits-slider {
    font-size: 57%;
  }
}

/* Container */
#benefits-slider .container {
  position: relative;
  overflow: hidden;
  border-radius: 5em;
}

@media only screen and (max-width: 1000px) {
  #benefits-slider .container {
    border-radius: 0;
  }
}

/* Slider */
#benefits-slider .slider {
  display: flex;
  width: 500%;
  height: 55em;
  transition: all 0.25s ease-in;
  transform: translateX(0);
}

@media only screen and (max-width: 1000px) {
  #benefits-slider .slider {
    height: 100vh;
  }
}

#benefits-slider .slider .box {
  height: 100%;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  overflow: hidden;
  position: relative;
}

@media only screen and (max-width: 650px) {
  #benefits-slider .slider .box {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(2, 1fr);
  }
}

/* Background */
#benefits-slider .slider .box .bg {
  padding: 2em;
  background-color: rgba(0, 0, 0, 0.2);
  width: 60%;
  transform: skewX(7deg);
  position: absolute;
  height: 100%;
  left: -5%;
  padding-left: 20em;
  transform-origin: 0 100%;
}

@media only screen and (max-width: 800px) {
  #benefits-slider .slider .box .bg {
    width: 70%;
  }
}

@media only screen and (max-width: 650px) {
  #benefits-slider .slider .box .bg {
    width: 100%;
    left: 0;
    bottom: 0;
    height: 54%;
    transform: skewX(0deg);
  }
}

#benefits-slider .slider .box .bg::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-color: inherit;
  pointer-events: none;
  transform: skewX(10deg);
}

@media only screen and (max-width: 650px) {
  #benefits-slider .slider .box .bg::before {
    width: 120%;
    bottom: 0;
    transform: skewX(0deg);
  }
}

/* Details */
#benefits-slider .slider .box .details {
  padding: 5em;
  padding-left: 10em;
  z-index: 100;
  grid-column: 1/span 1;
  grid-row: 1/-1;
  width: 100%;
}

@media only screen and (max-width: 650px) {
  #benefits-slider .slider .box .details {
    grid-row: 2/span 1;
    grid-column: 1/-1;
    text-align: center;
    padding: 1em;
    transform: translateY(-5em);
    margin-bottom: 0.1em !important;
  }
}

#benefits-slider .slider .box .details h1 {
  font-size: 3.5em;
  font-weight: 500;
  margin-bottom: 1.5em;
}

#benefits-slider .slider .box .details p {
  display: inline-block;
  font-size: 1.9em;
  color: #B5B4B4;
  margin-bottom: 1em;
  margin-right: 1em;
}

@media only screen and (max-width: 800px) {
  #benefits-slider .slider .box .details p {
    margin-right: 0;
    margin-top: 1em;
    margin-bottom: 0.5em;
  }

  #benefits-slider .slider .box .details h1 {
    font-size: 3.2em;
    font-weight: 500;
    margin-top: 1.5em;
  }
}

#benefits-slider .slider .box .details button {
  padding: 1em 3em;
  color: #fff;
  border-radius: 2em;
  outline: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

#benefits-slider .slider .box .details button:hover {
  opacity: 0.8;
}

#benefits-slider .slider .box .details button:focus {
  outline: none;
  border: none;
}

/* Box Colors */
#benefits-slider .slider .box1 { background-color: #500033; }
#benefits-slider .slider .box1 .illustration .inner { background-color: #FF0077; display: flex; justify-content: center; align-items: center; }
#benefits-slider .slider .box1 .illustration .inner::after,
#benefits-slider .slider .box1 .illustration .inner::before { background-color: rgba(255, 0, 119, 0.4); }
#benefits-slider .slider .box1 button { background-color: #FF0077; }

#benefits-slider .slider .box2 { background-color: #000050; }
#benefits-slider .slider .box2 .illustration .inner { background-color: #0033FF; display: flex; justify-content: center; align-items: center; }
#benefits-slider .slider .box2 .illustration .inner::after,
#benefits-slider .slider .box2 .illustration .inner::before { background-color: rgba(0, 51, 255, 0.4); }
#benefits-slider .slider .box2 button { background-color: #0033FF; }

#benefits-slider .slider .box3 { background-color: #7a00cc; }
#benefits-slider .slider .box3 .illustration .inner { background-color: #452074; display: flex; justify-content: center; align-items: center; }
#benefits-slider .slider .box3 .illustration .inner::after,
#benefits-slider .slider .box3 .illustration .inner::before { background-color: rgba(69, 32, 116, 0.6); }
#benefits-slider .slider .box3 button { background-color: #321450; }

#benefits-slider .slider .box4 { background-color: #554D00; }
#benefits-slider .slider .box4 .illustration .inner { background-color: #FF4E00; display: flex; justify-content: center; align-items: center; }
#benefits-slider .slider .box4 .illustration .inner::after,
#benefits-slider .slider .box4 .illustration .inner::before { background-color: rgba(255, 78, 0, 0.4); }
#benefits-slider .slider .box4 button { background-color: #FF4E00; }

#benefits-slider .slider .box5 { background-color: #300050; }
#benefits-slider .slider .box5 .illustration .inner { background-color: #8000FF; display: flex; justify-content: center; align-items: center; }
#benefits-slider .slider .box5 .illustration .inner::after,
#benefits-slider .slider .box5 .illustration .inner::before { background-color: rgba(128, 0, 255, 0.4); }
#benefits-slider .slider .box5 button { background-color: #8000FF; }

#benefits-slider .slider .box6 { background-color: #000050; }
#benefits-slider .slider .box6 .illustration .inner { background-color: #0033FF; display: flex; justify-content: center; align-items: center; }
#benefits-slider .slider .box6 .illustration .inner::after,
#benefits-slider .slider .box6 .illustration .inner::before { background-color: rgba(0, 51, 255, 0.4); }
#benefits-slider .slider .box6 button { background-color: #0033FF; }

#benefits-slider .slider .box7 { background-color: #000050; }
#benefits-slider .slider .box7 .illustration .inner { background-color: #0033FF; display: flex; justify-content: center; align-items: center; }
#benefits-slider .slider .box7 .illustration .inner::after,
#benefits-slider .slider .box7 .illustration .inner::before { background-color: rgba(0, 51, 255, 0.4); }
#benefits-slider .slider .box7 button { background-color: #0033FF; }

/* Illustration */
#benefits-slider .slider .illustration {
  grid-column: 2/-1;
  grid-row: 1/-1;
  justify-self: center;
}

@media only screen and (max-width: 650px) {
  #benefits-slider .slider .illustration {
    grid-row: 1/span 1;
    grid-column: 1/-1;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}

#benefits-slider .slider .illustration div {
  height: 25em;
  width: 33em;
  border-radius: 3em;
  background-color: #FF0077;
  position: relative;
  transform: skewX(-10deg);
}

@media only screen and (max-width: 800px) {
  #benefits-slider .slider .illustration div {
    height: 20em;
    width: 25em;
  }
}

#benefits-slider .slider .illustration div::after,
#benefits-slider .slider .illustration div::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  border-radius: 3em;
  top: 0;
  left: 0;
}

#benefits-slider .slider .illustration div::after {
  transform: translate(4em, -1em);
}

#benefits-slider .slider .illustration div::before {
  transform: translate(2em, -2em);
}

/* Navigation */
#benefits-slider .prev,
#benefits-slider .next,
#benefits-slider .trail {
  z-index: 10000;
  position: absolute;
}

#benefits-slider .prev,
#benefits-slider .next {
  width: 4em;
  cursor: pointer;
  opacity: 0.2;
  transition: all 0.3s ease;
}

@media only screen and (max-width: 650px) {
  #benefits-slider .prev,
  #benefits-slider .next {
    display: none;
  }
}

#benefits-slider .prev:hover,
#benefits-slider .next:hover {
  opacity: 1;
}

#benefits-slider .prev {
  top: 50%;
  left: 2%;
  transform: translateY(-50%);
}

#benefits-slider .next {
  top: 50%;
  right: 2%;
  transform: translateY(-50%);
}

/* Trail */
#benefits-slider .trail {
  bottom: 5%;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1em;
  text-align: center;
  font-size: 1.5em;
}

@media only screen and (max-width: 650px) {
  #benefits-slider .trail {
    width: 90%;
    bottom: 0%;
  }
}

#benefits-slider .trail div {
  padding: 2em;
  border-top: 3px solid #fff;
  cursor: pointer;
  opacity: 0.3;
  transition: all 0.3s ease;
}

#benefits-slider .trail div:hover {
  opacity: 0.6;
}

@media only screen and (max-width: 650px) {
  #benefits-slider .trail div {
    padding: 1em;
  }
}

#benefits-slider .active {
  opacity: 1 !important;
}

#benefits-slider .slider .illustration .inner h1 {
  transform: skewX(10deg);
  color: #fff;
  font-size: 2.5em;
  text-align: center;
  margin: 0;
  padding: 1em;
}
