/*
----------------------------------------------------

Abacus Socis - Styles

----------------------------------------------------
*/


/* Font definitions moved to fonts.css for better organization */

/* Loading */

  @keyframes fade-in {
    0% { opacity: 0; }
    100% { opacity: 1; }
  }

  #loading {
    background-color:var(--abacus-yellow);
    position: absolute;
    display: flex;
    z-index: 999999;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    /*animation: fadeOut .5s;
      animation-fill-mode: forwards;
      animation-delay: .8s;*/
  }

    .loader {
      display: flex;
      align-items: center;
      justify-content: center;
      column-gap: .5rem;
    }

    .loader span {
      width: 20px;
      height: 20px;
      border-radius: 20px;
      background-color: white;
      opacity: 0;
      -webkit-animation: fade-in 1.2s linear infinite forwards;
	        animation: fade-in 1.2s linear infinite forwards;
    }

    .loader span:nth-child(2) {
      animation-delay: .2s;
    }
    .loader span:nth-child(3) {
      animation-delay: .4s;
    }


/* --------------------------------

General Styles

-------------------------------- */
@media (prefers-reduced-motion: no-preference) {
  :root {
      /*scroll-behavior: initial;*/
  }
}

:root {
  --abacus-black: #010101;
  --abacus-yellow: #FABB00;
  --abacus-turquoise: #85C4C6;
  --abacus-green: #A3B944;
  --abacus-pink: #F19DA3;
  --abacus-gray: #EEEDED;
  --global--color-primary: var(--abacus-black);
  --form--color-text: var(--abacus-black);
  --menu-height: 65px;
  --global--font-size-base: var(--bs-body-font-size);
  --global--font-primary: 'Jost', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'Noto Sans', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
  --global--font-secondary: var(--global--font-primary);
  --entry-content--font-family: var(--global--font-primary);
  --global--line-height-body: 1.2;
  --global-grid-gap: 1rem;
  --bs-body-font-size: 1.1rem;
  --abacus-gutter: 16px;
  --padding_w: 4rem;
}

@media (max-width: 650px) {
    :root {
        --padding_w:2rem;
    }
}

.row {
  --bs-gutter-x: var(--abacus-gutter);
}

@media(min-width: 992px) {
  :root {
    --abacus-gutter: 20px;
  }
}

@media(min-width: 1280px) {
  :root {
    --bs-body-font-size:  1.2rem;
  }
}

@media(min-width: 1400px) {
  :root {
    --bs-body-font-size:  1.3rem;
  }
}

@media(min-width: 1920px) {
  :root {
    --bs-body-font-size:  1.4rem;
    --abacus-gutter: 24px;
  }
}

@media(min-width: 2400px) {
  :root {
    --bs-body-font-size:  1.5rem;
  }
}

body, html {
  -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  height: 100%;
  color: var(--abacus-black);
  font-family: 'Jost', -apple-system, BlinkMacSystemFont, Arial, Roboto, "Segoe UI", Oxygen-Sans, Ubuntu, Cantarell, sans-serif;
  line-height: var(--global--line-height-body);
  background-color: white;
  letter-spacing: -.015em;
}

body {
}

@media(min-width:376px) and (max-width:576px) {
  .offset-xs-1 {
    margin-left: 8.33333333%;
  }
  .col-xs-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
}

@media (min-width: 1366px) {
  .container-close {
    max-width: 1200px!important;
  }
}

@media (min-width: 1680px) {
  .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
      max-width: 1440px;
  }
}

@media (min-width: 1920px) {
  .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
      max-width: 1600px;
  }
}


/* Helpers */

a {
  -webkit-transition: all 0.15s ease-in;
    -moz-transition: all 0.15s ease-in;
    -o-transition: all 0.15s ease-in;
    transition: all 0.15s ease-in;
  color: var(--abacus-plus-blue);
}

.global-pad {
  padding: var(--global-grid-gap);
}

.pt-global {
  padding-top: var(--global-grid-gap);
}

.pb-global {
  padding-bottom: var(--global-grid-gap);
}

.px-global {
  padding-left: var(--global-grid-gap);
  padding-right: var(--global-grid-gap);
}

.px-8 {
  padding-right: 3rem;
  padding-left: 3rem;
}

.py-8 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.mt-8 {
  margin-top: 3rem!important;
}

.mb-n-8 {
  margin-bottom: -3rem;
}

.mt-n-8 {
  margin-top: -3rem;
}

.mt-n-16 {
  margin-top: -6rem;
}

.mt-n-32 {
  margin-top: -12rem;
}

  @media(min-width: 768px) {
    .px-md-8 {
      padding-right: 3rem!important;
      padding-left: 3rem!important;
    }

    .py-md-8 {
      padding-top: 3rem!important;
      padding-bottom: 3rem!important;
    }
    .mt-md-8 {
      margin-top: 3rem!important;
    }
    .mt-md-n-8 {
      margin-top: -3rem;
    }
    .mt-md-n-16 {
      margin-top: -6rem;
    }
  }

  @media(min-width: 1200px) {
    .mt-xl-8 {
      margin-top: 3rem!important;
    }
    .mt-xl-n-32 {
      margin-top: -12rem;
    }
  }

.mt-n-global {
  margin-top: -1rem;
}

  @media(min-width: 1400px) {
    .mt-xxl-n-4 {
      margin-top: -2rem;
    }
    .ps-xxl-8 {
      padding-left: 3rem!important;
    }
    .mb-xxl-n-12 {
      margin-bottom: -4rem;
    }
    .px-xxl-12 {
      padding-right: 4rem!important;
      padding-left: 4rem!important;
    }
  }

.mb-n-global {
  margin-bottom: -1rem;
}

.mt-global {
  margin-top: var(--global-grid-gap);
}

.mx-global {
  margin-left: var(--global-grid-gap);
  margin-right: var(--global-grid-gap);
}

.pos-relative {
  position: relative;
}

@media(min-width: 768px) {
  .text-md-left {
    text-align: left!important;
  }
}

.text-balance {
  text-wrap: balance;
}

.h-100 {
  height: 100vh;
}

/* Colors */

.bg-abacus-turquoise {
  background-color: var(--abacus-turquoise);
}

.bg-abacus-pink {
  background-color: var(--abacus-pink);
}

.bg-abacus-yellow {
  background-color: var(--abacus-yellow);
}

.bg-abacus-gray {
  background-color: var(--abacus-gray);
}

.bg-abacus-black {
  background-color: var(--abacus-black);
}

.text-abacus-yellow {
  color: var(--abacus-yellow);
}

.text-abacus-gray {
  color: var(--abacus-gray);
}


/* Buttons */

.btn-abacus {
  text-transform: uppercase;
  --bs-btn-font-weight: 600;
  --bs-btn-border-radius: 2rem;
  --bs-btn-border-width: 2px;
  --bs-btn-font-size: .9rem;
  --bs-btn-padding-y: 0.55rem;
  --bs-btn-padding-x: 1rem;
  letter-spacing: 0;
}

  @media(min-width:768px) {
    .btn-abacus {
      --bs-btn-padding-x: 1.5rem;
      --bs-btn-padding-y: 0.7rem;
    }
  }

.btn-primary {
  --bs-btn-color: #fff;
  --bs-btn-bg: var(--abacus-black);
  --bs-btn-border-color: var(--abacus-black);
  --bs-btn-hover-color: var(--abacus-black);
  --bs-btn-hover-bg: transparent;
  --bs-btn-hover-border-color: #000;
  --bs-btn-focus-shadow-rgb: rgba(0,0,0,.25);
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #000;
  --bs-btn-active-border-color: #000;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: var(--abacus-black);
  --bs-btn-disabled-border-color: var(--abacus-black);
}

.btn-outline-primary {
  --bs-btn-color: var(--abacus-black);
  --bs-btn-border-color:var(--abacus-black);
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: var(--abacus-black);
  --bs-btn-hover-border-color: var(--abacus-black);
  --bs-btn-focus-shadow-rgb: rgba(0,0,0,.25);
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: var(--abacus-black);
  --bs-btn-active-border-color:var(--abacus-black);
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: var(--abacus-black);
  --bs-btn-disabled-bg: transparent;
  --bs-gradient: none;
}

.btn-link {
  --bs-btn-color: var(--abacus-blue);
  --bs-btn-hover-color: var(--abacus-black);
  text-decoration: none;
  padding: .5rem 0;
  line-height: 1.2;
  border-bottom: 1px solid var(--abacus-blue);
}

  .btn-link:hover {
    border-bottom: 1px solid black;
  }

.btn-group-lg>.btn, .btn-lg {
  --bs-btn-padding-y: 0.6rem;
  --bs-btn-padding-x: 1.25rem;
  --bs-btn-font-size: 1rem;
}


.btn-blank {
  border:none!important;
  background-color: transparent!important;
  padding: 0!important;
}

  @media (min-width: 569px) {
    .btn-group-lg>.btn, .btn-lg {
      --bs-btn-font-size: 1.1rem;
    }
  }

  @media (min-width: 1400px) {
    .btn-group-lg>.btn, .btn-lg {
      --bs-btn-font-size: 1.15rem;
      --bs-btn-padding-y: 0.75rem;
      --bs-btn-padding-x: 1.75rem;
    }
  }


/* Text Styles */

.btn-abacus-yellow {
  --bs-btn-color: var(--abacus-black);
  --bs-btn-bg: var(--abacus-yellow);
  --bs-btn-border-color:var(--abacus-yellow);
  --bs-btn-hover-color: var(--abacus-yellow);
  --bs-btn-hover-border-color: var(--abacus-yellow);
  --bs-btn-hover-bg: transparent;
}



h1, .h1, h2, .h2, h3, .h3, h4, .h4 {
  font-family: 'Quarto_Black';
  line-height: .9;
  word-spacing: .15rem;
  text-wrap: balance;
}

p.balance {
  text-wrap: balance;
}

.section-cover h1 {
  font-size: clamp(6vw, 20vw, 100px);
}

@media screen and (min-width:992px){
  .section-cover h1 {
    font-size: clamp(11vw, 25dvw, 100px);
  } 
}

.h1, h1 {
  font-size: 11vw;
  line-height: 1;
}

.h2, h2 {
  font-size: calc(1.8em + .5vw)
}
.h3, h3 {
  font-size: calc(1.2rem + .6vw);
}

.lead {
  font-size: 1.15rem;
  font-weight: 400;
}

.xxl-text {
  font-weight: 700;
  font-size: 2.75rem;
  letter-spacing: -.04em;
}

  .xxl-text small {
    font-size: 65%;
  }

b, strong {
  font-weight: 600;
}

@media (min-width: 376px) {
  .h1, h1 {
    font-size: 12.5vw;
  }
  .h2, h2 {
  }
  .h3, h3 {
    font-size: calc(1.3rem + .6vw);
  }
  .lead {
    font-size: 1.2rem;
  }
}

@media (min-width: 414px) {
  .lead {
    font-size: 1.3rem;
  }
}

@media (min-width: 768px) {
  .h1, h1 {
    font-size: 11vw;
  }
  .h2, h2 {
    font-size: calc(1.6em + 1.1vw)
  }
  .xxl-text {
    font-size: 3.25rem;
  }
}

@media (min-width: 992px) {
  .h1, h1 {
    font-size: 5.5vw;
  }
  .h2, h2 {
    font-size: 4vw;
  }
}

@media (min-width: 1200px) {
  .h1, h1 {
    font-size: 5.5vw;
  }
  .lead {
    font-size: 1.4rem;
  }
  
}

@media (min-width: 1400px) {
  .h1, h1 {
    font-size: 6vw;
  }
  .lead {
    font-size: 1.55rem;
  }
  .xxl-text {
    font-size: 3.7rem;
  }
}

@media (min-width: 1680px) {
  .h1, h1 {
  }
}

@media (min-width: 1920px) {
  .h1, h1 {
    font-size: 6vw;
  }
    .h3, h3 {
        font-size: 1.9rem;
    }
  .lead {
    font-size: 1.65rem;
  }
}


/* Navbar */

.navbar {
  --bs-navbar-padding-x: 0;
  --bs-navbar-padding-y: 0;
  --bs-navbar-color: var(--abacus-black);
  --bs-navbar-hover-color: rgba(0, 0, 0, 0.5);
  --bs-navbar-disabled-color: rgba(0, 0, 0, 0.3);
  --bs-navbar-active-color: rgba(0, 0, 0, 0.9);
  --bs-navbar-brand-padding-y: 0.3125rem;
  --bs-navbar-brand-margin-end: 1rem;
  --bs-navbar-brand-font-size: 1rem;
  --bs-navbar-brand-color: rgba(0, 0, 0, 0.9);
  --bs-navbar-brand-hover-color: rgba(0, 0, 0, 0.9);
  --bs-navbar-nav-link-padding-x: 1rem;
  --bs-navbar-toggler-padding-y: 0.25rem;
  --bs-navbar-toggler-padding-x: 0.75rem;
  --bs-navbar-toggler-font-size: 1.25rem;
  --bs-navbar-toggler-icon-bg: url(data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e);
  --bs-navbar-toggler-border-color: rgba(0, 0, 0, 0.1);
  --bs-navbar-toggler-border-radius: 0.375rem;
  --bs-navbar-toggler-focus-width: 0.25rem;
  --bs-navbar-toggler-transition: box-shadow 0.15s ease-in-out;
  /*position: absolute;*/
}

  .navbar.fixed-top {
    z-index: 99999;
    background: var(--abacus-yellow);
  }

  .navbar.fixed-top.back {
    z-index: 9999;
  }

  .navbar.fixed-top.front {
    z-index: 999991;
  }

  .navbar.fixed-top.front .navbar-brand {
    opacity: 0;
  }

.navbar-nav {
  --bs-nav-link-padding-x: 0;
  --bs-nav-link-padding-y: 1.5rem;
  --bs-nav-link-color: var(--bs-navbar-color);
  --bs-nav-link-hover-color: var(--bs-navbar-hover-color);
  --bs-nav-link-disabled-color: var(--bs-navbar-disabled-color);
}

.navbar-nav.language-menu {
  flex-direction: row;
}

.nav-link {
  font-weight: 600;
  font-size: 1.15rem;
  position: relative;
  padding-top: var(--abacus-gutter);
  padding-bottom: var(--abacus-gutter);
}

@media(min-width:768px) {
  .form-page .nav-link {
    color: white;
  }
}

.nav-link.active:after {
  content: '';
  position: absolute;
  height: 2px;
  bottom: 20px;
  left: 0;
  right: 0;
  background-color: var(--abacus-yellow);
}

  @media(min-width: 992px) {
    .navbar-expand-lg .navbar-nav .nav-link {
      padding-right: calc((var(--abacus-gutter)) / 2);
      padding-left: calc((var(--abacus-gutter)) / 2);
    }
    .nav-link.active:after {
      left: calc((var(--abacus-gutter)) / 2);
      right: calc((var(--abacus-gutter)) / 2);
    }
  }

.navbar-toggler {
  background-color: transparent!important;
  border: none!important;
}

.navbar-toggler:focus {
  text-decoration: none;
  outline: 0;
  box-shadow: 0 0 0 0;
}

.language-menu .nav-item {
  font-size: 1rem;
}

.language-menu .nav-item a {
  text-decoration: none;
  opacity: .75;
}

.language-menu .nav-item a:hover {
  opacity: 1;
  color: #fff;
}

.language-menu .nav-item.current {
  opacity: 1;
  font-weight: 600;
}

@media(max-width: 991px) {
  .nav-item {
    padding: 0 1.5rem;
  }
  .language-menu .nav-item {
    padding: 0;
    font-size: .9rem;
  }
}

.navbar-brand img, footer .abacus-logo {
  width: 120px;
}

.navbar .abacus-logo, footer .abacus-logo {
  margin-left: .75rem;
  width: 112px;
}

  @media(min-width: 768px) {
    .navbar-brand img, footer .abacus-logo {
      width: 160px;
    }
    .navbar .abacus-logo {
      width: 160px;
      margin-left: 1.5rem;
    }
  }


@media(min-width: 1400px) {
  .navbar .abacus-logo {
    width: 175px;
  }
}

  @media(min-width: 1920px) {
    .navbar-brand img, footer .abacus-logo {
      width: 176px;
    }
  }

.offcanvas, .offcanvas-lg, .offcanvas-md, .offcanvas-sm, .offcanvas-xl, .offcanvas-xxl {
  --bs-offcanvas-width: 300px;
}

.offcanvas.offcanvas-end {
  border-left: none;
}

.offcanvas-logo {
  width: 130px;
}

.offcanvas .btn-close {
  position: absolute;
  right: 20px;
  top: 20px;
  background-color: transparent!important;
}

@media(max-width: 991px) {
  .offcanvas .navbar-nav li:first-child {
    padding-bottom: 1.5rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid var(--abacus-gray);
  }
}

@media(min-width: 576px) {
  .offcanvas, .offcanvas-lg, .offcanvas-md, .offcanvas-sm, .offcanvas-xl, .offcanvas-xxl {
    --bs-offcanvas-width: 400px;
  }
}

.container, .container-fluid, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
  padding-right: var(--abacus-gutter);
  padding-left: var(--abacus-gutter);
}

@media(min-width: 992px) {
  .container, .container-fluid, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    padding-right: var(--abacus-gutter);
    padding-left: var(--abacus-gutter);
  }
}

.section {
  position: relative;
  z-index: 99;
  --section-min-height: 65vh;
  padding-top: calc((var(--abacus-gutter)) * 2);
  padding-bottom: calc((var(--abacus-gutter)) * 2);
}

  .section--video-section {
    z-index: 991;
  }

  .section.section-cover {
    min-height: 100vh;
  }

@media(min-width:768px){
  .section {
    --section-min-height: 40vh;
    min-height: var(--section-min-height);
    padding-top: calc((var(--abacus-gutter)) * 4);
    padding-bottom: calc((var(--abacus-gutter)) * 4);
  }
  .section.m-h-auto {
    min-height: auto;
  }
}

@media(min-width:992px){
  .section {
    --section-min-height: 60vh;
  }
}

/* Cover CTA Menu */

.cover-cta-menu [class^="col-"] {
  display: flex;
  padding-top: calc((var(--abacus-gutter)) * 2);
}

.cover-cta-menu .cta-menu-item {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--abacus-black);
  padding: calc((var(--abacus-gutter)) / 2);
  gap: calc((var(--abacus-gutter)) / 2);
  text-wrap: balance;
}

.cover-cta-menu .cta-menu-item.highlighted {
  border-radius: 16px;
  border: 1px solid var(--abacus-black);
}

  @media(max-width:1024px) {
    .cover-cta-menu .cta-menu-item {
      padding: 12px;
    }
  }
  @media(max-width:414px) {
    .cover-cta-menu .cta-menu-item {
      padding: 8px;
    }
    .cover-cta-menu .cta-menu-item .lead {
      font-size: 1rem;
    }
    .cover-cta-menu .cta-menu-item.highlighted {
      border-radius: 12px;
    }
  }

.promo-badge {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-wrap: balance;
  padding: 2rem;
  top: -30px;
  right: -170px;
  width: 210px;
  height: 210px;
}

  .promo-badge--sm {
    top: auto;
    bottom: -30px;
    right: -20px;
    width: 125px;
    height: 125px;
    font-size: .9rem;
  }

  @media(max-width:1280px) {
    .promo-badge {
      width: 175px;
      height: 175px;
    }
    .promo-badge--sm {
      bottom: -35px;
      right: -25px;
      width: 115px;
      height: 115px;
      font-size: .85rem;
    }
  }

  @media(max-width:1024px) {
    .promo-badge {
      width: 160px;
      height: 160px;
      right: auto;
      left: -180px;
      top: 0;
      font-size: .95rem;
    }
    .promo-badge--sm {
      bottom: -45px;
      right: -35px;
      left: auto;
      top: auto;
      width: 110px;
      height: 110px;
      font-size: .85rem;
    }
  }

  @media(max-width:820px) {
    .promo-badge {
      left: -180px;
      top: -30px;
      right: auto;
      font-size: .9rem;
    }
    .promo-badge--50eur {
      right: -70px;
      left: auto;
    }
    .promo-badge--sm {
      top: auto;
      left: auto;
      right: -25px;
      bottom: -35px;
    }
  }

  @media(max-width:414px) {
    .promo-badge {
      width: 140px;
      height: 140px;
      top: -140px;
      left: auto;
      right: 0;
      font-size: .8rem;
    }
    .promo-badge--50eur {
      position: relative;
      width: 125px;
      height: 125px;
      top: -5px;
    }
    .promo-badge--sm {
      top: auto;
      left: auto;
      bottom: -25px;
      right: -30px;
      width: 85px;
      height: 85px;
      font-size: .7rem;
    }
  }

.promo-badge img {
  width: 100%;
  position: absolute;
  z-index: 0;
  left: 0;
  top: 0;
}
.promo-badge .text {
  position: relative;
  z-index: 1;
  line-height: 1;
}

.rotate-center {
	-webkit-animation: rotate-center 2.5s ease-in-out 1s infinite both;
	        animation: rotate-center 2.5s ease-in-out 1s infinite both;
}

.delay-05 {
  -webkit-animation-delay: .5s;
  animation-delay: .5s;
}

  /**
  * ----------------------------------------
  * animation rotate-center
  * ----------------------------------------
  */
  @-webkit-keyframes rotate-center {
    0% {
      -webkit-transform: rotate(0);
              transform: rotate(0);
    }
    50% {
      -webkit-transform: rotate(360deg);
              transform: rotate(360deg);
    }
    100% {
      -webkit-transform: rotate(360deg);
              transform: rotate(360deg);
    }
  }
  @keyframes rotate-center {
    0% {
      -webkit-transform: rotate(0);
              transform: rotate(0);
    }
    50% {
      -webkit-transform: rotate(360deg);
              transform: rotate(360deg);
    }
    100% {
      -webkit-transform: rotate(360deg);
              transform: rotate(360deg);
    }
  }

.cta-btn {
  margin-top: auto;
  margin-left: auto;
  margin-right: auto;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--abacus-black);
  display: flex;
  align-items: center;
  justify-content: center;
  justify-self: flex-end;
}

  .cta-btn:hover {
    cursor: pointer;
    border-color: white;
    background-color: white;
  }

  .cta-btn > svg {
    width: 10px;
  }

  .cover-higlight {
    width: 115px;
    height: 115px;
    padding: 1rem;
    border-radius: 50%;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 1.1rem;
    font-weight: 600;
    text-wrap: balance;
  }

  @media(min-width:768px) {
    .cta-btn {
      width: 48px;
      height: 48px;
    }
    .cta-btn > svg {
      width: 12px;
    }
    .cover-higlight {
      width: 180px;
      height: 180px;
      font-size: 1.25rem;
    }
  }

  @media(min-width:1200px) {
    .cover-cta-menu .cta-menu-item {
      padding: var(--abacus-gutter);
      gap: var(--abacus-gutter);
    }
    .cta-btn {
      width: 56px;
      height: 56px;
    }
    .cta-btn > svg {
      width: 16px;
    }
    .cover-higlight {
      font-size: 1.45rem;
    }
  }

  @media(min-width:1400px) {
    .cta-btn {
      width: 64px;
      height: 64px;
    }
    .cta-btn > svg {
      width: 20px;
    }
  }

  @media(min-width:1680px) {
    .cover-higlight {
      width: 200px;
      height: 200px;
      font-size: 1.55rem;
    }
  }

/* COVER LOGOS */

.cover-logos {
  padding: 1rem 0;
  background-color: #f4f5f6;
}

.cover-logos .d-flex {
  gap: 1rem;
}
.cover-logos img {
  max-width: 150px;
}

@media(min-width:768px) {
  .cover-logos {
    padding: 2rem 0;
  }
  .cover-logos .d-flex {
    gap: 2rem;
  }
  .cover-logos img {
    max-width: 240px;
  }
}

/* FEATURES LIST */

.features-list {
  display: flex;
  flex-direction: column;
  gap: calc((var(--abacus-gutter)) / 1.5);
  margin: var(--abacus-gutter) 0;
  padding: 0;
}

.features-list li {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: var(--abacus-gutter);
}

.features-list li .list-ico {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.features-list li .list-ico > img {
  width: 36px;
}

.features-list li .list-text {
  width: calc(100% - 56px);
  text-wrap:pretty;
}

/* CARDS */

  .card--packs {
    height: 90vh;
  }


.section--packs .packs-list {
  padding: 0;
  padding-left: var(--abacus-gutter);
  padding-right: var(--abacus-gutter);
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--abacus-gutter);
}

.section--packs .packs-list li {
  list-style: none;
  display: flex;
  flex-direction: column;
  min-height: 85vh;
}

.section--packs .packs-list li:nth-child(odd) {
}

.packs-content {
  padding: 2rem;
}

.section--packs .packs-list li img {
  
}

.section--empresa {
  position: relative;
  padding: var(--abacus-gutter);
}

.section--packs .sticky-top {
  position: relative;
  padding: var(--abacus-gutter);
}

.section-cover h1 {

}

@media(min-width:768px){
  .section--packs .sticky-top {
    position: sticky;
    padding-top: 80px;
    width: 40%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    gap: var(--abacus-gutter);
    align-items: center;
    top: 0;
  }
  .section--packs .packs-list {
    width: 60%;
  }
  .section--packs .packs-list li {
  }
  .packs-content {
    padding: 3.5rem;
  }
  .section--packs .packs-list li img {
  }
}

@media(min-width:992px){
  .section--packs .packs-list li {
  }
}

@media(min-width:1200px){
  .packs-content {
    padding: 4rem;
  }
  .section--packs .sticky-top {
    width: 50%;
    padding: calc((var(--abacus-gutter)) * 4);
  }
  .section--packs .packs-list {
    width: 50%;
  }
}

@media(min-width:1400px){
  .packs-content {
    padding: 5rem;
  }
  .section--packs .sticky-top {
    padding: calc((var(--abacus-gutter)) * 6);
  }
}

@media(min-width:1680px){
  .packs-content {
    padding: 6rem;
  }
}

@media(min-width:1400px){
  .section--packs .sticky-top {
  }
  .section--packs .packs-list {
  }
}


.section--referencia {
  background-image: url('../img/pattern06.svg');
  background-attachment: fixed;
  min-height: auto;
}

.section--values {
  z-index: 991;
}

.section--bg-top-turquoise:before {
  content: '';
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  height: 80px;
  background-color: var(--abacus-turquoise);
}

.section--bg-top-white:before {
  content: '';
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  height: 60px;
  background-color: white;
}

@media(min-width:768px) {
  .section--bg-top-white:before {
    height: 100px;
  }
}

.discount-bullet-wrapper {
  position: relative;
}

.discount-bullet {
  position: absolute;
  left: 50%;
  top: -170px;
  width: 180px;
  height: 180px;
  padding: var(--abacus-gutter);
  border-radius: 50%;
  background-color: var(--abacus-yellow);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: calc((var(--abacus-gutter)) / 2);
  font-family: 'Jost', -apple-system, BlinkMacSystemFont, Arial, Roboto, "Segoe UI", Oxygen-Sans, Ubuntu, Cantarell, sans-serif;
  font-weight: 700;
  line-height: 1.1;
}

.discount-bullet .number {
  font-size: 3.5rem;
  line-height: .85;
}

.discount-bullet .number small {
  font-size: 70%;
}

@media(min-width:768px){
  .discount-bullet {
    position: relative;
    left: 55%;
    top: -16px;
    width: 220px;
    height: 220px;
  }
  .discount-bullet .number {
    font-size: 4rem;
  }
}

@media(min-width:1400px){
  .discount-bullet {
    width: 270px;
    height: 270px;
    font-size: 1.45rem;
  }
  .discount-bullet .number {
    font-size: 4.75rem;
  }
}

.accordion-button {
  font-family: 'Jost', -apple-system, BlinkMacSystemFont, Arial, Roboto, "Segoe UI", Oxygen-Sans, Ubuntu, Cantarell, sans-serif;
  font-weight: 600;
  font-size: 1.15rem;
  line-height: 1.2;
  padding: 1.25rem;
  padding-left: 0;
  padding-right: 0;
}

@media(min-width:768px){
  .accordion-button {
    padding: 2rem;
    padding-left: 0;
    padding-right: 0;
    font-size: 1.2rem;
  }
}

@media(min-width:1200px){
  .accordion-button {
    font-size: 1.3rem;
  }
}

@media(min-width:1400px){
  .accordion-button {
    font-size: 1.4rem;
  }
}

.accordion-button:focus {
  z-index: 3;
  background-color: transparent;
  outline: 0;
  box-shadow: none;
  color: var(--abacus-plus-blue);
}

.accordion-body {
  padding: 0 0 2rem;
}

.section--form {
  height: auto;
  min-height: auto;
  padding: 5rem 0 0;
}

@media(min-width:768px) {
  .section--form {
    padding: 6rem 0;
    min-height: 100vh;
  }
}

@media(min-width:1400px) {
  .section--form {
    padding: 8rem 0;
  }
}

.swal2-modal .swal2-title {
  color: var(--abacus-black);
}

.swal2-modal .swal2-content {
  font-family: 'Jost', -apple-system, BlinkMacSystemFont, Arial, Roboto, "Segoe UI", Oxygen-Sans, Ubuntu, Cantarell, sans-serif;
  color: var(--abacus-black);
  font-weight: 400;
}

.video-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-container>.h1 {
  position: absolute;
  z-index: 9;
  text-align: center;
  font-size: 11vw;
  text-shadow: 2px 2px 30px rgba(0, 0, 0, 0.4);
}

@media(min-width:768px) {
  .video-container>.h1 {
    font-size: 8vw;
  }
}

/* BRANDS LIST */

.brands-list {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
}

.brands-list li {
  list-style: none;
  width: 30%;
  padding: 0 1.5%;
}

.brands-list li img {
  width: 100%;
}

@media(min-width:768px) {
  .brands-list {

  }
  .brands-list li {
    width: 20%;
  }
}

@media(min-width:1920px) {
  .brands-list li {
    width: 15%;
  }
}

/* DROPDOWN */
.dropdown-item {
  padding: .75rem 1rem;
  font-size: .92rem;
}

@media(min-width:1440px){
  .dropdown-item {
    padding: 1rem 1.5rem;
    font-size: 1rem;
  }
}

@media(min-width:1680px){
  .dropdown-item {
    font-size: 1.1rem;
  }
}

.dropdown-item:hover {
  background-color: var(--abacus-gray);
}
.dropend .dropdown-menu,
.dropup .dropdown-menu,
.dropdown-center .dropdown-menu {
  border-color: transparent;
  margin-left: 1rem!important;
  box-shadow: 5px 3px 40px 0px rgba(0,0,0,0.25);
-webkit-box-shadow: 5px 3px 40px 0px rgba(0,0,0,0.25);
-moz-box-shadow: 5px 3px 40px 0px rgba(0,0,0,0.25);
}

.dropup .dropdown-menu {
  margin-left: auto!important;
  margin-right: auto!important;
  margin-bottom: 1rem!important;
}

.dropdown-center .dropdown-menu {
  margin: auto!important;
  margin-top: 1rem!important;
  padding: .5rem;
}

.dropdown-center .dropdown-item {
  border-radius: 8px;
}

.dropdown-center .dropdown-menu.show {
  display: flex;
}

/* FOOTER */

.footer {
  position: relative;
  z-index: 999;
}

.footer a {
  text-decoration: none;
  color: white
}

.footer-copyright a {
  color: white;
}

.footer-menu {
  margin: 0;
  padding: 0;
}

.footer-menu li {
  list-style: none;
  margin-bottom: .5rem;
}

.footer-menu li a {
  font-weight: 600;
}

.footer-copyright {
  font-size: 1rem;
}

.footer .abacus-logo {
  display: block;
  width: 120px;
  margin-top: 2rem;
}

@media(min-width:768px) {
  .footer .abacus-logo {
    width: 160px;

  }
}

@media(min-width:1400px) {
  .footer .abacus-logo {
    width: 200px;
  }
}

.single-header,
.single-content {
  padding: 4rem 0;
}

.card.shadow-1{
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.card.shadow-44 {
  box-shadow: rgba(0, 0, 0, 0.09) 0px 2px 1px, rgba(0, 0, 0, 0.09) 0px 4px 2px, rgba(0, 0, 0, 0.09) 0px 8px 4px, rgba(0, 0, 0, 0.09) 0px 16px 8px, rgba(0, 0, 0, 0.09) 0px 32px 16px;
}
/* OPTIN */

.optin-info-toggle-header {
    cursor: pointer;
    user-select: none;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    outline: none;
    font-size: 0.95rem;
    margin-top: 2rem;
    border: none;
    background: none;
  }

.optin-info-toggle-header .icon {
  font-weight: bold;
  margin-right: 0.5rem;
}

  .wrapper.optin-info {
    overflow: hidden;
    transition: height 0.3s ease;
  }

  .optin-info .inner {
    padding: 0.5rem 0;
    opacity: 0;
    transition: opacity 0.3s ease 0.15s; /* fundido con retraso */
  }

  .optin-info .inner.visible {
    opacity: 1;
  }
  .optin-info button {
    outline: none;
    background: none;
    border:none;
  }
  .optin-info .inner dl {
    text-align: left;
  }


/* FORMS */

label.required::after, 
.form-group:has(input[required], select[required], textarea[required]) label span.text::after {
  content: '*';
  color: red;
  margin-left: 0em;
}


  .waitTranslations {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
  }
  .waitTranslations.translationsLoaded {
    opacity: 1;
    pointer-events: auto;
    transition: opacity 0.5s ease;
  }