/* =======================================================
   Global Color Variables
   ======================================================= */

body {
    background-color: var(--secondary-1);
}

:root {
    /* Primary Colors */
    --primary-1: #6120EA;
    --hover-primary: #BD4194;

    /* Secondary Colors */
    --secondary-1: #F6F8FF;
    --secondary-2: #D2DCFF;

    /* Neutral Colors */
    --neutral-100: #FFFFFF;
    --neutral-200: #F9F9F9;
    --neutral-300: #ECF0FA;
    --neutral-400: #D8DBE9;
    --neutral-500: #AEB3C1;
    --neutral-600: #474B64;
    --neutral-700: #212438;
    --neutral-800: #0E1435;

    /* Gradient Colors */
    --gradient-std_btn: linear-gradient(45deg, #6120EA, #BD4194);

    /* System Colors: Blue */
    --blue-100: #EAF4FF;
    --blue-200: #8FC3FF;
    --blue-300: #1DB8FE;
    --blue-400: #086CD9;

    /* System Colors: Green */
    --green-100: #DEF2E6;
    --green-200: #7FDCA4;
    --green-300: #05C168;
    --green-400: #11845B;

    /* System Colors: Red */
    --red-100: #FFFEF0;
    --red-200: #FFBEC2;
    --red-300: #FF5A65;
    --red-400: #DC2B2B;

    /* System Colors: Orange */
    --orange-100: #FFF3E4;
    --orange-200: #FFD19B;
    /* Nota: Verifica che il codice #3354FF per Orange 300 sia corretto 
       o se è un errore nel design. Lo lascio così come da mockup. */
    --orange-300: #3354FF;
    --orange-400: #D5691B;
}

/* =======================================================
   Typography Styles
   ======================================================= */


@font-face {
    font-family: 'LineRoundedIcons';
    src: url('/assets/fonts/line-rounded-icons.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

/* Root Variables */
:root {
    --font-primary: 'Kanit', sans-serif;
    --font-thin: 100;
    --font-extralight: 200;
    --font-light: 300;
    --font-regular: 400;
    --font-medium: 500;
    --font-semibold: 600;
    --font-bold: 700;
    --font-extrabold: 800;
    --font-black: 900;
}

/* General Typography */
body {
    font-family: var(--font-primary);
    font-weight: var(--font-regular);
    font-size: 16px;
    line-height: 1.5;
    color: #212438;
}

body a{
    transition: .3s;
}

body a:hover{
    color: var(--hover-primary);
    transition: .3s;
}

.color-accent__accordion {
  color: #6120EA;
}

/* Special Headings */
.display-0 {
    font-size: 115px;
    font-weight: var(--font-black);
    line-height: 98px;
}

.display-1 {
    font-size: 64px;
    font-weight: var(--font-medium);
    line-height: 72px;
}

.display-2 {
    font-size: 52px;
    font-weight: var(--font-medium);
    line-height: 60px;
}

.display-3 {
    font-size: 32px;
    font-weight: var(--font-medium);
    line-height: 40px;
}

.display-4 {
    font-size: 28px;
    font-weight: var(--font-medium);
    line-height: 36px;
}

.display-5 {
    font-size: 16px;
    font-weight: var(--font-semibold);
    line-height: normal;
    color: var(--primary-1);
}

.color-accent {
    color: var(--primary-1);
}

.blog-accent {
    color: var(--neutral-600)!important;
}

/* Headings */
h1,
.heading-h1 {
    font-size: 48px;
    font-weight: var(--font-medium);
    line-height: 56px;
}

h2,
.heading-h2 {
    font-size: 40px;
    font-weight: var(--font-medium);
    line-height: 48px;
}

h3,
.heading-h3 {
    font-size: 32px;
    font-weight: var(--font-medium);
    line-height: 40px;
}

h4,
.heading-h4 {
    font-size: 28px;
    font-weight: var(--font-medium);
    line-height: 36px;
}

h5,
.heading-h5 {
    font-size: 24px;
    font-weight: var(--font-medium);
    line-height: 32px;
}

h6,
.heading-h6 {
    font-size: 18px;
    font-weight: var(--font-medium);
    line-height: 28px;
}

/* Body Text */
.body-large {
    font-size: 20px;
    font-weight: var(--font-regular);
    line-height: 28px;
}

.body-default {
    font-size: 16px;
    font-weight: var(--font-regular);
    line-height: 24px;
}

.body-small {
    font-size: 14px;
    font-weight: var(--font-regular);
    line-height: 20px;
}

/* Numbers Text */
.text-single_400 {
    font-size: 18px;
    font-weight: var(--font-regular);
    color: var(--primary-1);
}

.text-single_500 {
    font-size: 14px;
    font-weight: var(--font-medium);
    color: var(--primary-1);
}

.text-single_600 {
    font-size: 18px;
    font-weight: var(--font-bold);
    color: var(--primary-1);
}

/* Uppercase Text */
.text-uppercase {
    text-transform: uppercase;
}

.text-uppercase-400 {
    font-size: 24px;
    font-weight: var(--font-regular);
}

.text-uppercase-300 {
    font-size: 20px;
    font-weight: var(--font-medium);
}

.text-uppercase-200 {
    font-size: 16px;
    font-weight: var(--font-regular);
}

.text-uppercase-100 {
    font-size: 14px;
    font-weight: var(--font-regular);
}

footer a{
    font-size: 14px;
    color: var(--neutral-800);
    text-decoration: none;
    line-height: 2rem;
    transition: .3s ease-in-out;
}

footer a:hover {
    color: var(--primary-1);
}

.footer_contacts span {
    color: var(--neutral-500);
    font-size: 14px;
}

footer .credits p{
    color: var(--neutral-500);
}

footer .credits a{
    font-size: 16px;
    color: var(--primary-1);
}

footer .credits a:hover{
    color: var(--blue-300);
}

@media screen and (max-width:1920px) {

    .box_title .display-2{
        font-size: 42px;
    }
    
}

@media screen and (max-width:1499px) {
    .display-1 {
        font-size: 58px;
        line-height: 58px;
    }
    
}

@media screen and (max-width:1399px) {
    .display-1 {
        font-size: 42px;
        line-height: 52px;
    }
    
}

@media screen and (max-width:1399px) {
    footer h5{
        font-size: 18px;
    }

    footer a{
        font-size: 12px;
        line-height: 1.75rem;
    }

    .footer_contacts span {
        font-size: 12px;
    }

    footer .credits p,
    footer .credits a {
        font-size: 12px;
    }
}



@media screen and (max-width:1299px) {
    .display-0 {
        font-size: 88px;
        line-height: 76px;
    }
    footer h5{
        font-size: 16px;
    }

    footer a{
        font-size: 12px;
        line-height: 1.75rem;
    }

     .hero-paragraph{
      font-size: 14px;
     }
}

@media screen and (max-width:1299px) and (max-height: 860px) {
    .display-0 {
        font-size: 68px;
        line-height: 76px;
    }
}



@media screen and (max-width:1199px) {
    .display-1 {
        font-size: 48px;
        line-height: 58px;
    }

    .box_title .display-2{
        font-size: 32px;
    }

    .box_title p{
        font-size: 14px;
    }

    footer .display-2 {
        font-size: 42px;
    }
}

/* Responsive Typography */
@media screen and (max-width: 1024px) {
    .display-1 {
        font-size: 40px;
        line-height: 48px;
    }

    .display-2 {
        font-size: 44px;
        line-height: 52px;
    }

    .display-3 {
        font-size: 28px;
        line-height: 36px;
    }

    .display-4 {
        font-size: 24px;
        line-height: 32px;
    }

    h1 {
        font-size: 40px;
        line-height: 48px;
    }

    h2 {
        font-size: 36px;
        line-height: 44px;
    }

    footer .display-2 {
        font-size: 36px;
    }
}

@media screen and (max-width:992px){
    .box_title p{
        font-size: 12px;
        margin-bottom: 0;
    }

    .display-0 {
        font-size: 70px;
        line-height: 65px;
    }
}

@media screen and (max-width: 768px) {
    .display-0 {
        font-size: 68px;
        line-height: 76px;
    }
    .display-1 {
        font-size: 32px;
        line-height: 40px;
    }

    .display-2 {
        font-size: 36px;
        line-height: 44px;
    }

    .display-3 {
        font-size: 24px;
        line-height: 32px;
    }

    .display-4 {
        font-size: 20px;
        line-height: 28px;
    }

    .display-5 {
        font-size: 14px;
        line-height: 20px;
    }

    h1 {
        font-size: 36px;
        line-height: 44px;
    }

    h2 {
        font-size: 32px;
        line-height: 40px;
    }
}

@media screen and (max-width: 480px) {
    .display-0 {
        font-size: 48px;
        line-height: 52px;
    }
    .display-1 {
        font-size: 36px;
        line-height: 44px;
    }

    .display-2 {
        font-size: 28px;
        line-height: 36px;
    }

    .display-3 {
        font-size: 20px;
        line-height: 28px;
    }

    .display-4 {
        font-size: 18px;
        line-height: 24px;
    }

    h1 {
        font-size: 28px;
        line-height: 36px;
    }

    h2 {
        font-size: 24px;
        line-height: 32px;
    }

    .text-single_500 {
        font-size: 12px;
    }

    footer .display-2{
        font-size: 26px;
        padding-top: 1.5rem;
    }

    footer h5 {
        font-size: 14px;
        line-height: 1rem;
    }

    footer a {
        font-size: 10px;
    }

    .footer_contacts span {
        font-size: 10px;
    }

     .hero-paragraph{
      font-size: 14px!important;
     }
}

@media screen and (max-width:450px) {
    .display-0 {
        font-size: 40px;
        line-height: 52px;
    }
    .display-1 {
        font-size: 22px;
        line-height: 22px;
    }

    .text-single_500 {
        font-size: 12px;
    }

    p {
        font-size: 12px;
    }
}

@media screen and (max-width:360px) {

    .text-single_500 {
        font-size: 10px;
    }

    footer h5 {
        font-size: 12px;
        line-height: 1rem;
    }

    footer a {
        font-size: 8px;
        line-height: 1.4rem;
    }

    .footer_contacts span {
        font-size: 8px;
    }
    
}

/* Rich Text */
.text-link {
    font-size: 16px;
    text-decoration: underline;
    color: #3354FF;
    cursor: pointer;
}

.text-link:hover {
    color: #1DB8FE;
}

/* Shadow 01 */

.shadow-01 {
    box-shadow: 0px 2px 6px rgba(0, 17, 102, 0.06);
}

/* Shadow 02 */

.shadow-02 {
    box-shadow: 0px 2px 12px rgba(0, 17, 102, 0.08);
}

/* Shadow 03 */

.shadow-03 {
    box-shadow: 0px 8px 28px rgba(0, 17, 102, 0.1);
}

/* Shadow 04 */

.shadow-04 {
    box-shadow: 0px 14px 42px rgba(0, 17, 102, 0.14);
}

/* Shadow 05 */

.shadow-05 {
    box-shadow: 0px 24px 65px rgba(0, 17, 102, 0.16);
}

/* Shadow 06 */

.shadow-06 {
    box-shadow: 0px 32px 72px rgba(0, 17, 102, 0.24);
}

/*#######################################################
  ################## BACKGROUNDS ##########################
  #########################################################*/

.bg_neutral {
    background-color: var(--neutral-100);
}

.bg_secondary {
    background-color: var(--secondary-1);
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    padding-right: calc(var(--bs-gutter-x) * .5);
    padding-left: calc(var(--bs-gutter-x) * .5);
}

.bg_rounded {
    border-radius: 25px !important;
}

.cta_bg {
    background-image: url('/assets/img/elements/cta_img.png');
    background-size: cover;
    background-color: #ccc;
    background-position: center;
    border-radius: 25px;
    color: #fff;
    overflow: hidden;
    position: relative;
}

.home-3_bg {
    background-image: url('/assets/img/home/hero_home-3.png');
    background-repeat: no-repeat;
}



.cta_bg .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4) !important;
    border-radius: inherit;
    z-index: 1;
}

/* Se necessario, il contenuto all'interno di .cta_bg deve avere un z-index maggiore: */
.cta_bg>* {
    position: relative;
    z-index: 2;
}

.cta_bg .heading-h6 {
    color: #fff !important;
}

.circular-image {
    width: 150px; /* Imposta la dimensione desiderata */
    height: 150px;
    border-radius: 50%;
    object-fit: cover; /* Per adattare l'immagine senza distorcerla */
    overflow: hidden;
    align-self: center;
}


@media screen and (max-width:575px) {

    .cta_section {
        display: flex;
        --bs-gutter-x: 1.5rem;
        --bs-gutter-y: 0;
        margin-right: calc(var(--bs-gutter-x) * .5);
        margin-left: calc(var(--bs-gutter-x) * .5);
    }
}

/*#######################################################
  ################## HERO SECTIONS ########################
  #########################################################*/

.hero-1 {
    background-color: var(--secondary-1);
    height: 100vh;
}

.hero-lab {
    background-color: var(--secondary-1);
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-lab img {
    z-index: 0;
    width: 100%;
}

@media screen and (max-width:768px) {

    .hero-lab {
        background-image: url('/assets/img/home/WallexLab_Hero_Mobile.png');
        background-repeat: no-repeat;
        background-size: cover;
        background-position: top;
    }

    .hero-lab img {
        max-width: 170%;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-lab .mob_box{
      background: rgba(255, 255, 255, .8);
      height: min-content;
      align-self: center;
      border-radius: 15px;
      margin: auto;
    }
    
}

@media screen and (max-width:470px) {

    .hero-lab img {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    
}


/*#######################################################
  ################## BUTTONS ##############################
  #########################################################*/


/* ===============================
   Base Button Styles
  ================================ */

button {
    --primary-color: var(--primary-1);
    --secondary-color: #fff;
    --hover-color: #111;
    --arrow-width: 10px;
    --arrow-stroke: 2px;
    box-sizing: border-box;
    border: 0;
    border-radius: 50px;
    color: var(--secondary-color);
    padding: .6em 1.8em;
    background: var(--primary-color);
    display: flex;
    transition: 0.2s background, 0.2s color, 0.2s border;
    align-items: center;
    gap: 0.6em;
    font-weight: 500;
    font-size: 16px;
    cursor: pointer;
    justify-content: center;
}

.button-inline {
    flex-shrink: 0; 
    width: auto; 
    max-width: fit-content;
}

.btn_section {
    flex: 0 0 30%;
}

.outline_btn {
    --primary-color: transparent;
    color: var(--neutral-800);
    border: 1px solid var(--neutral-400);
    transition: .3s ease-in-out;
}

.box_title .outline_btn{
    font-size: 12px;
}

.outline_btn:hover {
    background-color: var(--neutral-400) !important;
    color: var(--neutral-800);
    border: 1px solid var(--neutral-400);
    transition: .3s ease-in-out;
}

.outline_light_btn {
    --primary-color: transparent;
    color: var(--neutral-800);
    border: 1px solid var(--neutral-400);
    transition: .3s ease-in-out;
}

.outline_light_btn_hero {
    color: #fff;
}

.outline_light_btn:hover {
    background-color: var(--neutral-400) !important;
    color: var(--neutral-800);
    border: 1px solid var(--neutral-400);
    transition: .3s ease-in-out;
}

.light_btn {
    background-color: #fff !important;
    color: var(--neutral-800) !important;
}


.light_btn:hover .arrow {
    background: var(--neutral-800) !important;
}

.light_btn .arrow::before {
    border-color: var(--neutral-800) !important;
}

.buttons-arrow-wrapper {
  position: relative;
  padding: 10px 20px;
  border: none;
  background-color: transparent;
  color: #6120EA; 
  cursor: pointer;
  overflow: hidden;
  font-weight: 500;
  font-size: 22px!important;
  text-decoration: none;
  text-align: center;
}

.bi-arrow-right-circle::before {
  content: "\f134";
  vertical-align: unset;
}


.buttons-arrow-wrapper .icon {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  color: #6120EA; /* Colore dell'icona */
  transition: transform 0.2s ease;
}

.buttons-arrow-wrapper:hover .icon {
  color: var(--hover-primary); /* Cambia colore dell'icona al passaggio del mouse */
  transform: translateX(3px);
}













button.btn-custom {
 position: relative;
 display: inline-block;
 cursor: pointer;
 outline: none;
 border: 0;
 vertical-align: middle;
 text-decoration: none;
 background: transparent;
 padding: 0;
 font-size: inherit;
 font-family: inherit;
}

button.btn-custom-learn-more {
 width: 12rem;
 height: auto;
}

button.btn-custom-learn-more .btn-custom-circle {
 transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
 position: relative;
 display: block;
 margin: 0;
 width: 3rem;
 height: 3rem;
 background: var(--primary-1);
 border-radius: 1.625rem;
}

button.btn-custom-learn-more .btn-custom-circle .btn-custom-icon {
 transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
 position: absolute;
 top: 0;
 bottom: 0;
 margin: auto;
 background: #fff;
}

button.btn-custom-learn-more .btn-custom-circle .btn-custom-icon.btn-custom-arrow {
 transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
 left: 0.625rem;
 width: 1.125rem;
 height: 0.125rem;
 background: none;
}

button.btn-custom-learn-more .btn-custom-circle .btn-custom-icon.btn-custom-arrow::before {
 position: absolute;
 content: "";
 top: -0.29rem;
 right: 0.0625rem;
 width: 0.625rem;
 height: 0.625rem;
 border-top: 0.125rem solid #fff;
 border-right: 0.125rem solid #fff;
 transform: rotate(45deg);
}

button.btn-custom-learn-more .btn-custom-text {
 transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
 position: absolute;
 top: 0;
 left: 0;
 right: 0;
 bottom: 0;
 padding: 0.75rem 0;
 margin: 0 0 0 1.85rem;
 color: var(--primary-1);
 font-weight: 700;
 line-height: 1.6;
 text-align: center;
 text-transform: uppercase;
}

button.btn-custom-learn-more:hover .btn-custom-circle {
 width: 100%;
}

button.btn-custom-learn-more:hover .btn-custom-circle .btn-custom-icon.btn-custom-arrow {
 background: #fff;
 transform: translate(1rem, 0);
}

button.btn-custom-learn-more:hover .btn-custom-text {
 color: #fff;
}










/* CUSTOM BUTTON UI 01 */ 
.btn-cssbuttons {
 --btn-color: var(--primary-1);
 position: relative;
 padding: 16px 32px;
 font-family: Roboto, sans-serif;
 font-weight: 500;
 font-size: 16px;
 line-height: 1;
 color: white;
 background: none;
 border: none;
 outline: none;
 overflow: hidden;
 cursor: pointer;
 filter: drop-shadow(0 2px 8px rgba(39, 94, 254, 0.32));
 transition: 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
 display: flex;
 flex: 0 0 50%;
}

.btn-cssbuttons i {
  color: #fff;
  text-decoration: none;
}

.btn-cssbuttons::before {
 position: absolute;
 content: "";
 top: 0;
 left: 0;
 z-index: -1;
 width: 100%;
 height: 100%;
 background: var(--btn-color);
 border-radius: 24px;
 transition: 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.btn-cssbuttons span,
.btn-cssbuttons span span {
 display: inline-flex;
 vertical-align: middle;
 transition: 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.btn-cssbuttons span {
 transition-delay: 0.05s;
}

.btn-cssbuttons span:first-child {
 padding-right: 7px;
}

.btn-cssbuttons span span {
 margin-left: 8px;
 transition-delay: 0.1s;
}

.btn-cssbuttons ul {
 position: absolute;
 top: 50%;
 left: 0;
 right: 0;
 display: flex;
 margin: 0;
 padding: 0;
 list-style-type: none;
 transform: translateY(-50%);
}

.btn-cssbuttons ul li {
 flex: 1;
}

.btn-cssbuttons ul li a {
 display: inline-flex;
 vertical-align: middle;
 transform: translateY(55px);
 transition: 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.btn-cssbuttons ul li a:hover {
 opacity: 0.5;
}

.btn-cssbuttons:hover::before {
 transform: scale(1.2);
}

.btn-cssbuttons:hover span,
.btn-cssbuttons:hover span span {
 transform: translateY(-55px);
}

.btn-cssbuttons:hover ul li a {
 transform: translateY(0);
}

.btn-cssbuttons:hover ul li:nth-child(1) a {
 transition-delay: 0.15s;
}

.btn-cssbuttons:hover ul li:nth-child(2) a {
 transition-delay: 0.2s;
}

.btn-cssbuttons:hover ul li:nth-child(3) a {
 transition-delay: 0.25s;
}





/* CUSTOM BUTTON UI 01 */ 

.lab_dwn_btn-card {
  --bg-card: var(--primary-1);
  --primary: #6d28d9;
  --primary-800: #4c1d95;
  --primary-shadow: #2e1065;
  --light: #d9d9d9;
  --zinc-800: #18181b;
  --bg-linear: linear-gradient(0deg, var(--primary) 50%, var(--light) 125%);

  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1rem;
  width: auto;
  background-color: var(--bg-card);
  border-radius: 1rem;
}

.lab_dwn_btn-image_container {
  display: flex;
  justify-content: center;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  z-index: 5;
  width: 100%;
  height: 8rem;
  background-color: #fff;
  border-radius: 0.5rem;
}

.lab_dwn_btn-image_container .lab_dwn_btn-image {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 3rem;
  fill: var(--light);
}

.lab_dwn_btn-title {
  overflow: clip;
  width: 100%;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--light);
  text-transform: capitalize;
  text-wrap: nowrap;
  text-overflow: ellipsis;
  text-align: center;
}

.lab_dwn_btn-size {
  font-size: 0.75rem;
  color: var(--light);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lab_dwn_btn-list-size {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-top: 0.25rem;
}

.lab_dwn_btn-list-size .lab_dwn_btn-item-list {
  list-style: none;
}

.lab_dwn_btn-list-size .lab_dwn_btn-item-list-button {
  cursor: pointer;
  padding: 0.5rem;
  background-color: var(--zinc-800);
  font-size: 0.75rem;
  color: var(--light);
  border: 2px solid var(--zinc-800);
  border-radius: 0.25rem;
  transition: all 0.3s ease-in-out;
}

.lab_dwn_btn-item-list-button:hover {
  border: 2px solid var(--light);
}

.lab_dwn_btn-item-list-button:focus {
  background-color: var(--primary);
  border: 2px solid var(--primary-shadow);
  box-shadow: inset 0px 1px 4px var(--primary-shadow);
}

.lab_dwn_btn-action,
.lab_dwn_btn-action a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  text-decoration: none;
}

.lab_dwn_btn-download-button {
  position: relative;
  width: 100%;
  height: 2.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.lab_dwn_btn-download-button.footer_dwn{
  background-color: var(--primary-1);
  color: #fff!important;
}

.lab_dwn_btn-download-button.footer_dwn p{
  color: #fff!important;
}

.lab_dwn_btn-button-text {
  color: var(--primary-1);
  font-weight: 750;
  font-size: 1rem;
  transition: all 0.3s ease;
  margin: 0;
}

.lab_dwn_btn-button-icon {
  position: absolute;
  height: 100%;
  width: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--blue-100);
  right: -2.5rem;
  transition: all 0.3s ease;
  margin: 0;
}

.footer_dwn .lab_dwn_btn-button-icon {
  background-color: var(--primary-1);
}

.footer_dwn .lab_dwn_btn-download-svg {
  fill: #fff;
}

.lab_dwn_btn-download-svg {
  width: 1.25rem;
  fill: var(--primary-1);
}

.lab_dwn_btn-download-button:hover {
  background: var(--primary-800);
}

.lab_dwn_btn-download-button:hover .lab_dwn_btn-button-text {
  transform: translateX(-1.25rem);
  opacity: 0;
}

.lab_dwn_btn-download-button:hover .lab_dwn_btn-button-icon {
  right: 0;
  width: 100%;
}

.lab_dwn_btn-download-button:active {
  transform: scale(0.95);
}

.lab_dwn_btn-download-button:active .lab_dwn_btn-button-icon {
  background-color: var(--primary-shadow);
}


@media screen and (max-width:420px) {
  .btn-cssbuttons {
    flex: 0 0 90%;
  }

  .lab_dwn_btn-button-text {
    font-size: .7rem;
  }

  .lab_dwn_btn-download-button {
    height: 1.5rem;
  }

  .lab_dwn_btn-size p,
  .lab_dwn_btn-title p{
    margin: 0;
  }

  .lab_dwn_btn-image_container img{
    max-width: 80%;
    margin: auto;
  }
  
}











@media screen and (max-width:1199px) {
    button {
        font-size: 12px;
    }
}

@media screen and (max-width:570px){

    .button-inline {
        width: 100%; 
        max-width: 100%;
    }

    .box_title .button-inline {
        width: 90%; 
        max-width: 90%;
        margin: 1rem auto;
    }
    
}

/* ===============================
     Arrow Styles
  ================================ */
button .arrow-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

button .arrow {
    margin-top: 1px;
    width: var(--arrow-width);
    background: var(--secondary-color);
    height: var(--arrow-stroke);
    position: relative;
    transition: background 0.2s ease-in-out, transform 0.2s ease-in-out;
}

button .arrow::before {
    content: "";
    box-sizing: border-box;
    position: absolute;
    border: solid var(--secondary-color);
    border-width: 0 var(--arrow-stroke) var(--arrow-stroke) 0;
    display: inline-block;
    top: -3px;
    right: 3px;
    transition: right 0.2s ease-in-out, transform 0.2s ease-in-out, border-color 0.2s ease-in-out;
    padding: 3px;
    transform: rotate(-45deg);
}

/* Hover Effect */
button:hover {
    background-color: var(--hover-color);
}

button:hover .arrow {
    background: var(--secondary-color);
    transform: translateX(5px);
}

button:hover .arrow::before {
    right: 0;
}

/* ===============================
     Primary Button
  ================================ */
.primary {
    background-color: var(--primary-1);
    color: #fff;
}

.primary .arrow {
    background: transparent;
}

.primary .arrow::before {
    border-color: #fff;
}

.primary:hover {
    background-color: var(--blue-300);
}

/* ===============================
     Secondary Button
  ================================ */
.secondary {
    background: var(--neutral-300);
    border: 2px solid var(--neutral-300);
    color: var(--neutral-700);
}

.secondary .arrow {
    background: transparent;
}

.outline_light_btn .arrow::before,
.secondary .arrow::before {
    border-color: var(--neutral-700);
}

.secondary:hover {
    background: var(--neutral-400);
    border: 2px solid var(--neutral-400);
    color: var(--neutral-700);
}

.outline_light_btn:hover .arrow,
.secondary:hover .arrow {
    background: var(--neutral-700);
}

.secondary:hover .arrow::before {
    border-color: var(--neutral-700);
}

/* ===============================
     Secondary No Outline Button
  ================================ */
.no_outline {
    background: none;
    border: none !important;
    padding: 0;
    font-weight: 700;
}

.no_outline:hover {
    background: none;
    border: none !important;
}

/* ===============================
     LAB STD BUTTON 
  ================================ */

.lab_std-button {
    background: var(--gradient-std_btn);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: 0.2s;
    width: 50%;
}
  
.lab_std-button:hover {
    background: #6120EA;
    color: #fff;
    transition: 0.2s;
    
}
  

.lab_std-button .arrow {
    background: transparent;
}

.lab_std-button .arrow::before {
    border-color: #fff;
}

.lab_std-button:hover .arrow {
    background: #fff;
    transition: ease-in-out 0.2s;
}

.lab_std-button:hover .arrow::before {
    border-color: #fff;
}

/* ===============================
     Circle Buttons
  ================================ */
.circle {
    width: 48px;
    height: 48px;
    padding: 0;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Primary Circle Button */
.primary-circle {
    background-color: var(--primary-1);
    color: #fff;
}

.primary-circle .arrow {
    background: #fff;
}

.primary-circle .arrow::before {
    border-color: #fff;
}

.primary-circle:hover {
    background-color: var(--primary-1);
}

/* Secondary Circle Button */
.secondary-circle {
    background: transparent;
    border: 2px solid var(--primary-1);
    color: var(--primary-1);
}

.secondary-circle .arrow {
    background: var(--primary-1);
}

.secondary-circle .arrow::before {
    border-color: var(--primary-1);
}

.secondary-circle:hover {
    background: var(--primary-1);
    color: #fff;
}

.secondary-circle:hover .arrow {
    background: #fff;
}

.secondary-circle:hover .arrow::before {
    border-color: #fff;
}

.btn_abs_wrapper {
    position: relative;
}

.btn_abs {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1055;
}

.card_btn {
    flex: 0 0 50%;
}

@media screen and (max-width:1599px) {

    .lab_std-button {
        width: 100%;
    }
    
}

/* Tablet (max-width: 1024px) */
@media (max-width: 1024px) {
    button {
        padding: 0.9em 1em;
        font-size: 12px;
        --arrow-width: 9px;
    }
}

@media screen and (max-width:992px) {
    .no_outline {
        margin: auto;
    }
}

/* Mobile (max-width: 768px) */
@media (max-width: 768px) {
    button {
        padding: 0.8em 1.4em;
        font-size: 12px;
        --arrow-width: 8px;
    }

    .btn_section {
        flex: 0 0 50%;
    }
}

/* Small Mobile (max-width: 480px) */
@media (max-width: 480px) {
    button {
        padding: 0.7em 1.2em;
        font-size: 13px;
        --arrow-width: 7px;
        border-radius: 40px;
        gap: 0.4em;
    }

    .btn_section {
        flex: 0 0 70%;
    }
}












































/*####################################################
  #############  HEADER ################################
  ######################################################*/

.hb-header-wrapper {
  padding-top: 32px;
  padding-bottom: 32px;
  background-color: transparent;
}

.hb-dropdown-sub-list-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 0px;
  padding-left: 0px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  grid-row-gap: 22px;
  text-align: left;
  list-style-type: none;
  gap: .75rem;
}

.hb-dropdown-sub-list-wrapper.hb-hamburger-tablet {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  grid-column-gap: 24px;
}

.hb-dropdown-sub-list {
  margin-bottom: 0px;
  padding-left: 0px;
  width: 100%;
}

.hb-header-nav-menu-wrapper {
  width: 100%;
  max-width: 550px;
  background-color: transparent;
}

.hb-header-nav-menu-wrapper.hb-hamburger-desktop {
  z-index: 998;
  padding: 120px 58px 80px;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  border-left: 1px solid #fff;
  background-color: #fff;
  overflow-x: hidden!important;
}

.hb-header-nav-menu-wrapper.hb-hamburger-tablet {
  max-width: 100%;
}

.hb-header-nav-link {
  padding: 0px;
  color: #e1e1e1;
  border: var(--primary-1) 1px solid;
  border-radius: 15px;
  text-align: center!important;
}



.hb-header-nav-link_inv {
  padding: 0px;
  color: #e1e1e1;
  border: var(--primary-1) 1px solid;
  border-radius: 15px;
  text-align: center!important;
}

.hb-header-nav-link:hover {
  color: #20b6b4;
}

.hb-header-nav-link:visited {
  color: #fff;
}

.hb-header-nav-link.hb-font-size-22px {
  color: var(--primary-1);
  font-size: 22px;
}


 .hb-dropdown-sub-list:hover > .hb-header-nav-link.hb-font-size-22px{
    background: var(--primary-1);
    color: #fff;
}

.hb-header-nav-link.hb-font-size-22px.hb-featured {
  color: var(--hover-primary);
  font-weight: 600;
}

.hb-header-nav-link.hb-font-size-22px.hb-featured:hover {
  color: var(--hover-primary);
}

.hb-w-dropdown-link.hb-w--current {
  color: #0082f3;
}

.hb-w-nav-link {
  position: relative;
  display: inline-block;
  vertical-align: top;
  text-decoration: none;
  color: #222222;
  padding: 20px;
  text-align: left;
  margin-left: auto;
  margin-right: auto
}

.hb-w-nav-link.hb-w--current {
  color: #0082f3
}

.hb-w--nav-link-open {
  display: block;
  position: relative
}

@media screen and (max-width:991px) {

  .hb-dropdown-sub-list-wrapper.hb-hamburger-tablet {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .hb-header-nav-menu-wrapper {
    padding: 24px;
    border-top: 1px solid #f2f2f2;
    border-bottom: 1px solid #f2f2f2;
    background-color: #fff;
  }

  .hb-header-nav-menu-wrapper.hb-hamburger-desktop {
    max-width: 500px;
  }

  .hb-header-nav-menu-wrapper.hb-hamburger-tablet {
    padding-top: 54px;
    padding-bottom: 54px;
    border-top-color: #171717;
    border-bottom-color: #171717;
    background-color: #171717;
  }

  .hb-header-nav-link.hb-hamburger-tablet {
    font-size: 28px;
  }

  .hb-hamburger-menu-wrapper.hb-w--open {
    background-color: transparent;
  }

  .hb-hamburger-menu-bar {
    width: 44px;
    height: 3px;
  }
}

@media screen and (max-width:767px) {

  .hb-dropdown-sub-list-wrapper {
    grid-row-gap: 10px;
  }

  .hb-dropdown-sub-list-wrapper.hb-hamburger-tablet {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .hb-header-nav-menu-wrapper.hb-hamburger-desktop {
    z-index: 999;
    max-width: 100%;
  }

  .hb-header-nav-menu-wrapper.hb-hamburger-tablet {
    padding-top: 95px;
  }

  .hb-header-nav-link.hb-hamburger-tablet {
    font-size: 26px;
  }

  .hb-header-logo-link {
    max-width: 166px;
  }

  .hb-hamburger-menu-wrapper.hb-w--open {
    z-index: 9999999;
  }

  .hb-hamburger-menu-bar {
    width: 36px;
  }

  .hb-w-nav-link {
    padding: 5px;
  }

  .hb-header-nav-link.hb-font-size-22px {
    font-size: 16px;
  }

  .hb-header-nav-menu-wrapper.hb-hamburger-desktop {
    z-index: 998;
    padding: 80px 20px 80px;
  }
}


/* ###########################################
  ########## CUSTOM HAMBURGER ##################
  ############################################## */

.hb-hero {
  min-height: 100vh;
  overflow: hidden;
}

body.hb-overflow {
  overflow: hidden;
}

.hb-header {
  margin-top: 1px !important;
}

.hb-navbar-inverse {
  background-color: #ffffff52 !important;
  border-color: #bebdbd !important;
}

.hb-navbar {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding-top: .5rem;
  padding-bottom: .5rem;
}

.hb-navbar-fixed-bottom,
.hb-navbar-fixed-top {
  display: flex;
  z-index: 1030;

}

.hb-navbar-header img {
  max-width: 100%;
  transition: .5s;
}

.hb-scrolled img {
  max-width: 80%;
  transition: .6s;
}

.hb-first_image {
  height: 100vh;
  min-height: 400px;
  background-size: cover;
}



.hb-bar {
  background: #000;
  position: absolute;
  left: 0;
  right: 0;
  padding: 15px;
  height: 60px;
  background-size: 100%;
}

.hb-first {
  height: 100vh;
  min-height: 400px;
  background-size: contain;
  background-image: url('https://i.ibb.co/z4yV47M/Banner-01.jpg');
}

.hb-affix {
  -webkit-transition: padding 0.2s ease-out;
  -moz-transition: padding 0.2s ease-out;
  -o-transition: padding 0.2s ease-out;
  transition: padding 0.2s ease-out;
}

.hb-affix-top .hb-nav>li>a {
  color: #000;
}

.hb-affix-top.hb-navbar .hb-nav>li>a:hover,
.hb-affix-top.hb-navbar .hb-navbar-brand {
  color: #333;
}

.hb-navbar-fixed-top {
  top: 0;
  border-width: 0 0 0px !important;
}





/***********************************************/
/******************CUSTOM DESIGN****************** */

.hb-burger {
  border-radius: 4px;
  z-index: 9999;
}

.hb-burger span {
  position: relative;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  display: flex;
  flex-direction: column;
  align-self: center;
  justify-self: start;
}

.hb-burger span::before,
.hb-burger span::after {
  display: block;
  width: 50px;
  height: 2px;
  background-color: var(--primary-1);
  outline: 1px solid transparent;
  -webkit-transition-property: background-color, -webkit-transform;
  -moz-transition-property: background-color, -moz-transform;
  -o-transition-property: background-color, -o-transform;
  transition-property: background-color, transform;
  -webkit-transition-duration: 0.3s;
  -moz-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  transition-duration: 0.3s;
  z-index: 9999;
}

.hb-burger span::before,
.hb-burger span::after {
  position: relative;
  content: "";
}

.hb-burger span::before {
  top: -10px;
}

.hb-burger span::after {
  top: 10px;
}

.hb-burger.hb-clicked span {
  background-color: transparent;
}

.hb-burger.hb-clicked span::before {
  -webkit-transform: translateY(15px) rotate(45deg);
  -moz-transform: translateY(15px) rotate(45deg);
  -ms-transform: translateY(15px) rotate(45deg);
  -o-transform: translateY(15px) rotate(45deg);
  transform: translateY(15px) rotate(45deg);
}

.hb-burger.hb-clicked span::after {
  -webkit-transform: translateY(-9px) rotate(-45deg);
  -moz-transform: translateY(-9px) rotate(-45deg);
  -ms-transform: translateY(-9px) rotate(-45deg);
  -o-transform: translateY(-9px) rotate(-45deg);
  transform: translateY(-9px) rotate(-45deg);
}

.hb-burger.hb-clicked span:before,
.hb-burger.hb-clicked span:after {
  background-color: var(--primary-1);
}

.hb-burger:hover {
  cursor: pointer;
}

/* NAV ========================================== */
.hb-nav .nav {
  padding: 120px 58px 80px;
  border-top: 1px solid #171717;
  border-bottom: 1px solid #171717;
  border-left: 1px solid #171717;
  background-color: #060606;
  position: fixed;
  z-index: 9;
  top: 0;
  right: 0;
  height: 100%;
  max-width: 515px;
  width: 100%;
  padding: 100px 40px 60px 40px;
  overflow-y: auto;
  -webkit-transform: translateX(100%);
  -moz-transform: translateX(100%);
  -ms-transform: translateX(100%);
  -o-transform: translateX(100%);
  transform: translateX(100%);
  -webkit-transition: transform 0.55s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -moz-transition: transform 0.55s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -o-transition: transform 0.55s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition: transform 0.55s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}

.hb-nav.hb-show {
  -webkit-transform: translateX(0px);
  -moz-transform: translateX(0px);
  -ms-transform: translateX(0px);
  -o-transform: translateX(0px);
  transform: translateX(0px);
}

.hb-nav.hb-show ul.hb-main li {
  -webkit-transform: translateX(0px);
  -moz-transform: translateX(0px);
  -ms-transform: translateX(0px);
  -o-transform: translateX(0px);
  transform: translateX(0px);
  opacity: 1;
}

.hb-nav.hb-show ul.hb-main li:nth-child(1) {
  transition-delay: 0.15s;
}

.hb-nav.hb-show ul.hb-main li:nth-child(2) {
  transition-delay: 0.3s;
}

.hb-nav.hb-show ul.hb-main li:nth-child(3) {
  transition-delay: 0.45s;
}

.hb-nav.hb-show ul.hb-main li:nth-child(4) {
  transition-delay: 0.6s;
}

.hb-nav.hb-show ul.hb-main li:nth-child(5) {
  transition-delay: 0.75s;
}

.hb-nav.hb-show ul.hb-main li:nth-child(6) {
  transition-delay: 0.9s;
}

.hb-nav.hb-show ul.hb-main li:nth-child(7) {
  transition-delay: 1.05s;
}

.hb-nav.hb-show ul.hb-main li:nth-child(8) {
  transition-delay: 1.2s;
}

.hb-nav.hb-show ul.hb-main li:nth-child(9) {
  transition-delay: 1.35s;
}

.hb-nav.hb-show .hb-about,
.hb-nav.hb-show .hb-social,
.hb-nav.hb-show ul.hb-sub {
  -webkit-transform: translateY(0px);
  -moz-transform: translateY(0px);
  -ms-transform: translateY(0px);
  -o-transform: translateY(0px);
  transform: translateY(0px);
  opacity: 1;
  transition-delay: .85s;
}

.hb-nav .nav ul.hb-main {
  list-style-type: none;
}

.hb-nav .nav ul.hb-main li {
  margin-bottom: 20px;
  -webkit-transform: translateX(40px);
  -moz-transform: translateX(40px);
  -ms-transform: translateX(40px);
  -o-transform: translateX(40px);
  transform: translateX(40px);
  opacity: 0;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.hb-nav .nav ul.hb-main li:last-of-type {
  margin-bottom: 0px;
}

.hb-nav .nav ul.hb-main li a {
  color: #fff;
  font-family: "Raleway", sans-serif;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 1.5rem;
  display: block;
  letter-spacing: 5px;
  font-weight: 600;
  padding: 10px 0;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.hb-nav .nav ul.hb-main li a span {
  color: #b7ac7f;
}

.hb-nav .nav ul.hb-main li a:hover {
  color: #b7ac7f;
}

.hb-nav .nav .hb-about {
  margin-top: 40px;
  -webkit-transform: translateY(30px);
  -moz-transform: translateY(30px);
  -ms-transform: translateY(30px);
  -o-transform: translateY(30px);
  transform: translateY(30px);
  opacity: 0;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.hb-nav .nav .hb-about p {
  color: #000;
  font-family: "Spectral", serif;
  font-size: 1.05rem;
  letter-spacing: 0.5px;
  line-height: 170%;
}

.hb-nav .nav .hb-social {
  margin-top: 40px;
  position: relative;
  padding-bottom: 30px;
  -webkit-transform: translateY(30px);
  -moz-transform: translateY(30px);
  -ms-transform: translateY(30px);
  -o-transform: translateY(30px);
  transform: translateY(30px);
  opacity: 0;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.hb-nav .nav .hb-social:after {
  content: "";
  width: 230px;
  height: 2px;
  background-color: #b7ac7f;
  position: absolute;
  bottom: 0;
  left: 0;
}

.hb-nav .nav .hb-social a {
  display: inline-block;
  width: 30px;
  height: 30px;
  margin-right: 25px;
}

.hb-nav .nav .hb-social a:last-of-type {
  margin-right: 0px;
}

.hb-nav .nav .hb-social a:hover svg path,
.hb-nav .nav .hb-social a:hover svg circle {
  fill: #b7ac7f;
}

.hb-nav .nav .hb-social a svg {
  width: 100%;
  height: 100%;
}

.hb-nav .nav .hb-social a svg path,
.hb-nav .nav .hb-social a svg circle {
  fill: #ffffff;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.hb-nav .nav ul.hb-sub {
  list-style-type: none;
  margin-top: 40px;
  -webkit-transform: translateY(30px);
  -moz-transform: translateY(30px);
  -ms-transform: translateY(30px);
  -o-transform: translateY(30px);
  transform: translateY(30px);
  opacity: 0;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.hb-nav .nav ul.hb-sub li {
  margin-bottom: 10px;
}

.hb-nav .nav ul.hb-sub li:last-of-type {
  margin-bottom: 0px;
}

.hb-nav .nav ul.hb-sub li a {
  color: #ffffff;
  font-family: "Raleway", sans-serif;
  letter-spacing: 1px;
  font-size: 0.9rem;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.hb-nav .nav ul.hb-sub li a:hover {
  color: #b7ac7f;
}

.hb-w-nav-title {
  position: relative;
  display: inline-block;
  vertical-align: top;
  text-decoration: none;
  color: #20b6b4!important;
  text-align: left;
  margin-left: auto;
  margin-right: auto;
  padding-left:0px;
  margin-bottom: 0;
  margin-top: 0;
}

.hb-w-nav-link.hb-w-first{
  padding-top: 0;
}

/* OVERLAY ========================================== */

.hb-overlay {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background-color: transparent;
  opacity: 0;
  visibility: hidden;
}

.hb-overlay.hb-show {
  opacity: 0.8;
  visibility: visible;
}

/******* Responsive start *****************/
@media (min-width:1024px) {
  .hb-burger {
    border-radius: 4px;
    z-index: 9999;
  }

  .hb-cover {
    position: relative;
    left: -90.5px;
    box-sizing: border-box;
    width: 1351px;
    padding-left: 90.5px;
    padding-right: 90.5px;
    max-height: 420px;
    object-fit: cover;
  }

}

@media (min-width: 667px) {
  .hb-nav .nav {
    padding: 120px 90px 70px 90px;
  }

}

@media (min-width:768px) {
  .hb-affix-top {
    /* navbar style at top */
    background: transparent;
    border-color: transparent;
    padding: 15px;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .hb-burger {
    position: relative;
  }

  .hb-cover {
    position: relative;
    left: -90.5px;
    box-sizing: border-box;
    width: 1351px;
    padding-left: 90.5px;
    padding-right: 90.5px;
    max-height: 420px;
    object-fit: cover;
  }

}

@media (max-width:425px) {
  .hb-burger {
    position: relative;
  }

  .hb-cover {
    position: relative;
    left: -90.5px;
    box-sizing: border-box;
    width: 1351px;
    padding-left: 90.5px;
    padding-right: 90.5px;
    max-height: 200px;
    object-fit: cover;
  }

  .hb-burger span::before,
  .hb-burger span::after {
    width: 36px;
  }

  .hb-burger span::before {
    top: -10px;
  }

  .hb-burger span::after {
    top: 0px;
  }

  .hb-burger.hb-clicked span::before {
    transform: translateY(5px) rotate(45deg);
  }

  .hb-w-nav-title {
    padding-left:0;
    padding-bottom: 20px;
  }
}

@media (max-width:375px) {
  .hb-burger {
    z-index: 9999;
  }

  .hb-mobile_number {
    visibility: hidden;
  }

  .hb-burger span::before,
  .hb-burger span::after {
    z-index: 9999;
  }
}



























/*#######################################################
  ####################### NAVBAR ##########################
  #########################################################*/

.navbar-toggler:hover{
    background-color:transparent!important;
}  

.navbar-expand-lg .navbar-collapse {
    justify-content: space-between;
}

.nav-item {
    padding-right: 1.5rem;
}

.navbar-toggler{
    border: none;
    font-size: 1rem;
}

@media (min-width: 992px) {
    /* Stile generale dei link della navbar con effetto underline animato */
    .nav-link {
      position: relative;
      transition: color 0.3s ease;
    }
    
    .nav-link::before {
      content: "";
      position: absolute;
      bottom: 0;
      left: 0;
      width: 0;
      height: 2px;
      background-color: var(--primary-1);
      transition: width 0.3s ease;
    }
    
    .nav-link:hover {
      color: var(--primary-1);
    }
    
    .nav-link:hover::before {
      width: 100%;
    }
    
    /* Dropdown: apertura al passaggio del mouse */
    .nav-item.dropdown:hover > .dropdown-menu {
      display: block;
    }
    
    /* Effetto dropdown fluido */
.nav-item .dropdown-menu {
    display: none;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

/* Mostra il dropdown con transizione */
.nav-item .dropdown-menu.show {
    display: block;
    opacity: 1;
    visibility: visible;
}
    
    /* Posizionamento e effetto chevron per item con dropdown */
    .nav-item.dropdown > .nav-link {
      position: relative;
      padding-right: 1rem; /* spazio per il chevron */
    }
    
    .nav-item.dropdown > .nav-link::after {
      content: '\f054';  /* icona FontAwesome (chevron right) */
      font-family: 'Font Awesome 6 Free';
      font-weight: 900;
      position: absolute;
      right: 0;
      top: 50%;
      transform: translateY(-50%);
      transition: transform 0.3s ease;
      font-size: 0.75rem;
      border: none!important;
    }
    
    .nav-item.dropdown:hover > .nav-link::after {
      transform: translateY(-50%) rotate(90deg);
    }
    
    /* Dropdown menu styling */
    .dropdown-menu {
      background-color: #fff;
      border: none;
      border-radius: 8px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
      padding: 0.5rem 0;
      margin-top: 0.5rem;
    }
    
    .dropdown-menu .dropdown-item {
      padding: 0.75rem 1.5rem;
      color: #333;
      transition: background-color 0.3s ease, color 0.3s ease;
      position: relative;
    }
    
    .dropdown-menu .dropdown-item:hover,
    .dropdown-menu .dropdown-item:focus {
      background-color: #f5f5f5;
      color: var(--primary-1);
    }
  }


@media screen and (max-width:1199px) {
    .navbar-brand {
        width: 10vw;
    }

    .navbar-brand img {
        max-width: 100%;
    }
}

@media screen and (max-width:992px) {
    .navbar-brand {
        width: 20vw;

    }

    .nav-item {
        border-bottom: 1px solid var(--secondary-2);
        width: 100%;
    }

    .navbar-toggler:focus {
        outline: none !important;
        box-shadow: none !important;
    }

    button:focus:not(:focus-visible) {
        outline: none !important;
        box-shadow: none !important;
    }

    .navbar-collapse {
        position: fixed;
        top: 40px;
        left: 0;
        right: 0;
        bottom: 0;
        height: calc(50vh - 50px);
        background-color: #fff;
        padding: 2rem 0;
        z-index: 1050;
        overflow-y: auto;
    }

    .navbar-nav {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }

    /* Dropdown: menu nascosto di default, visualizzato solo quando attivo */
    .nav-item.dropdown>.dropdown-menu {
        position: static;
        display: none;
        padding-left: 1rem;
        margin: 0;
        border: none;
        box-shadow: none;
        background-color: transparent;
    }

    .nav-item.dropdown.show>.dropdown-menu {
        display: block;
    }

    .nav-item.dropdown>.nav-link {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0.75rem 1.5rem;
        color: #333;
        text-decoration: none;
        transition: color 0.3s ease;
    }

    /* Rimuove l'effetto underline in mobile */
    .nav-link::before {
        display: none;
    }

    /* Chevron: rimuove il bordo e imposta la transizione */
    .nav-item.dropdown>.nav-link::after {
        content: '\f078';
        /* FontAwesome: freccia verso il basso */
        font-family: 'Font Awesome 6 Free';
        font-weight: 900;
        transition: transform 0.3s ease;
        font-size: 0.75rem;
        border: none;
    }

    /* Quando il dropdown è aperto, cambia colore del link e ruota lo chevron */
    .nav-item.dropdown.show>.nav-link {
        color: var(--primary-1);
    }

    .nav-item.dropdown.show>.nav-link::after {
        transform: rotate(180deg);
    }

    /* Per gli altri link non-dropdown, allinea a sinistra */
    .navbar-nav>.nav-item:not(.dropdown) .nav-link {
        padding: 0.75rem 1.5rem;
        text-align: left;
    }
}

@media screen and (max-width:767px) {

    .navbar-collapse {
        top: 40px;
    }
    
}


/*#######################################################
  ################## WRAPPERS #############################
  #########################################################*/

.rel-container {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 0;
}

.hero-lab.rel-container{
    padding-right: calc(var(--bs-gutter-x) * .5);
    padding-left: calc(var(--bs-gutter-x) * .5);
}

.title_big_wrapper{
    max-width: 50%;
}

.abs_Top_container {
    position: absolute;
    top: 0;
}

.abs_Bottom_container {
    position: absolute;
    bottom: 0;
    margin: auto;
    margin-bottom: 8vh;
}

.abs_cont-75{
    max-width: 75%;
}

.logo-stripe_container {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    margin: auto;
    overflow: hidden;
}

.logo-stripe_wrapper {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    position: absolute;
    bottom: 0;
    left: 0;
    max-height: 5vh;
}

.logo-stripe_wrapper img {
    width: 70%;
    padding: 10px;
}

.inner_text_wrapper{
    display: flex;
    flex-direction: column;
}

.inner_text_wrapper p{
    margin-bottom: 0;
}

.fixed-top {
    position: fixed !important;
    width: auto;
    left: 0;
    right: 0;
    z-index: 1050;
    background-color: rgba(255, 255, 255, 0) !important;
    transition: background-color .2s ease;
}

.blog_info_head {
    display: flex;
    justify-content: space-between;
}


/* CSS per quando si scrolla */
.fixed-top.scrolled {
    background-color: rgba(255, 255, 255, 1) !important;
    transition: background-color .2s ease;
}

@media screen and (max-width:1920px) {

    .title_big_wrapper {
        max-width: 70%;
    }
    
}

@media screen and (max-width:1599px) {

    .title_big_wrapper{
        max-width: 100%;
    }

    .abs_cont-75{
        max-width: 100%;
    }
    
}

@media screen and (max-width:1199px) {

    .abs_Bottom_container {
        margin-bottom: 10vh;
    }
    
}

@media screen and (min-width: 1024px) and (max-width: 1025px) and (min-height:1000px) {
    .rel-container img {
        width: 90vw;
    }
}



@media screen and (min-width: 1024px) and (max-width: 1025px) and (min-height:1000px) {
    .rel-container img {
        width: 90vw;
    }
}

@media screen and (max-width:992px) {

    .abs_Bottom_container {
        margin-bottom: 0vh;
    }

    .full_abs_cont{
      position: absolute;
      display: flex;
    }

    .rel-container img {
        width: 85vw;
    }

    .fixed-top {
        background-color: rgba(255, 255, 255, 1) !important;
        transition: background-color .2s ease;
        padding: 0 .5rem;
    }

    .abs_cont-75{
        max-width: 100%;
    }

}

@media screen and (max-width:767px) {

    .hero-1 .rel-container {
        background-image: url('/assets/img/home/hero_home.png');
        background-size: cover;
        background-position: center;
        height: 20vh;
        align-items: center;
        justify-content: center !important;

    }

    .logo-stripe_wrapper img {
        width: 60%;
        padding: 10px;
    }

    .hero-lab .abs_Bottom_container {
        margin-bottom: 0;
    }
}

@media screen and (max-height:450px) {
    .hero-lab {
        height: auto;
    }
  
    .rel-container img {
        width: 30vw;
        align-self: flex-end;
    }

    .logo-stripe_wrapper {
        bottom: 0;
        max-height: 10vh;
        margin-bottom: 0 !important;
    }

    .logo-slider img {
        max-width: 60% !important;
    }
}


/*#######################################################
  ################## ORNAMENTS ############################
  #########################################################*/

.left_TranspGrad,
.right_TranspGrad {
    position: absolute;
    height: 100%;
    z-index: 5;
    width: 20%;
    bottom: 0;
}

.left_TranspGrad {
    background: var(--secondary-1);
    /* Fallback per browser che non supportano gradienti */
    background: linear-gradient(to right, var(--secondary-1), rgba(0, 0, 0, 0));
    left: 0;
}

.right_TranspGrad {
    background: var(--secondary-1);
    /* Fallback per browser che non supportano gradienti */
    background: linear-gradient(to left, var(--secondary-1), rgba(0, 0, 0, 0));
    position: absolute;
    right: 0;
    height: 100%;
    z-index: 5;
    width: 15%;
    bottom: 0;
}

/*#######################################################
  ################## SLIDER ###############################
  #########################################################*/


.logo-slider {
    display: flex;
    align-items: center;
}

.logo-slider img {
    max-width: 100%;
    margin: 0 15px;
}

.slick-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}


/*#######################################################
  ################## DISTANCERS ###########################
  #########################################################*/

.distancer_10 {
    height: 10vh;
}

.distancer_15 {
    height: 15vh;
}

.distancer_30 {
    height: 30vh;
}

.phase_distancer_bottom {
    position: relative;
    margin-bottom: -25vh;
    top: 0;
    z-index: 2;
    
}

.phase_distancer_top {
    position: relative;
    margin-top: -25vh;
    padding-top: 25vh;
}

@media screen and (max-width:1299px) {

}

@media screen and (max-width:1199px) {

    .distancer_15 {
        height: 5vh;
    }

    .cta_bg .distancer_10 {
        height: 0;
    }

}

@media screen and (max-width:1100px) {}

@media screen and (max-width:1024px) {
    .distancer_15 {
        height: 5vh;
    }
}

@media screen and (max-width:992px) {}

@media screen and (max-width:768px) {
    .distancer_15 {
        height: 5vh;
    }
}

@media screen and (max-width:474px) {
    .distancer_15 {
        height: 15vh;
    }
}


/*#######################################################
  ################## OVERRIDES ###########################
  #########################################################*/

.zindex_5 {
    position: relative;
    z-index: 5!important;
}

.hidden_OF {
    overflow: hidden;
}

.no_hover:hover{
    background-color: none;
    color: inherit;
    box-shadow: none!important;
    cursor: default;
}

.round_border {
    border-radius: 25px;
}



/*#######################################################
  ################## DIVIDERS #############################
  #########################################################*/

.divider_section {
    border-bottom: 2px solid var(--neutral-300);
    width: auto;
    align-self: flex-end;
}

.divider_bottom {
    border-bottom: 1px solid var(--neutral-300);
    width: 50%;
    align-self: flex-end;
}

.divider_right {
    position: absolute;
    border-left: 1px solid var(--neutral-300);
    align-self: flex-end;
    display: flex;
    flex-direction: column;
    height: 10vh;
    left: 0;
}

.divider_400{
    border-bottom: 2px solid var(--neutral-400);
    display: flex;
    flex-direction: row;
}

@media screen and (max-width:768px) {
    .divider_bottom {
        border-bottom: 0px;
        border-right: 5px solid var(--blue-400);
        width: 100%;
    }
}




/*#######################################################
  ################## BOXES ################################
  #########################################################*/

.box_count {
    background-color: #ffffff95;
    display: flex;
    flex-direction: row;
    border-radius: 25px;
    justify-content: start;
    align-items:center;
    transition: .3s ease-in-out;
    flex: 0 0 100%;
}

.box_neutral_100 {
    background-color: var(--neutral-100);
    display: flex;
    flex-direction: column;
    min-height: 25vh;
    border-radius: 25px;
    justify-content: space-between;
    transition: .3s ease-in-out;
}

.card_neutral_100 {
    background-color: var(--neutral-100);
    display: flex;
    flex-direction: column;
    min-height: 25vh;
    border-radius: 25px;
    justify-content: space-between;
    transition: .3s ease-in-out;
}

.card_transparent {
    background-color:none;
    display: flex;
    flex-direction: column;
    border-radius: 25px;
    justify-content: space-between;
    transition: .3s ease-in-out;
}

.img_square {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 25px;
}

.img_square img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.img_rect {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 25px;
}

.img_rect {
    width: 100%;
    height: 50%!important;
    object-fit:cover;
}

.box_link {
    color: var(--neutral-800) !important;
    text-decoration: none !important;
    transition: .3s ease-in-out;
}

.box_neutral_100 path {
    fill: var(--neutral-400);
    transition: .3s ease-in-out;
}

.box_neutral_100 svg {
    align-self: center;
    transition: .3s ease-in-out;
}

.box_link:hover {
    color: #fff !important;
    transition: .3s ease-in-out;
}

.box_link:hover>.box_neutral_100 {
    background-color: var(--primary-1);
    transition: .3s ease-in-out;
}

.box_link:hover>.box_neutral_100 path {
    fill: #fff;
    transition: .3s ease-in-out;
}

.box_link:hover .line-rounded-icon,
.box_outline:hover .line-rounded-icon {
    transform: rotate(45deg);
    transition: .3s ease-in-out;
}

.box_link:hover svg {
    transform: scale(1.3);
    transition: .3s ease-in-out;
}

#slider_home2 .box_link svg{
    max-width: 30%;
}

.box_card img {
    max-width: 15%;
    align-self: flex-start;
}

.box_outline {
    border: 1px solid var(--neutral-400);
    cursor: pointer;
}

.box_outline:hover {
    
    box-shadow: 0px 7px 22px rgba(0, 17, 102, 0.14);
}

@media screen and (max-width:1199px) {

    .img_rect {
        height: 100%!important;
    }
    
}

@media screen and (max-width:475px) {

    .img_square {
        width: 100%;
        aspect-ratio: auto;
    }
    
    .img_square img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    .box_count {
        padding: 10px!important;
    }

    .box_count svg{
        height: 40px;
        width: 40px;
    }

    .box_count h5{
        font-size: 1rem;
    }
    
}




/*#######################################
  ################ CARDS #################
  #######################################*/

.card_neutral_100 {
    background-color: var(--neutral-100);
    border-radius: 25px;
    transition: .3s ease-in-out;
}

.card_neutral_100 img{
    max-width: 20%;
}

.card_neutral_100 button{
    justify-content: start;
}

/*#######################################
  ################ SLIDER #################
  #######################################*/ 

.custom-slider {
    margin: 0 auto;
    position: relative;
}

.slide {
    position: absolute;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.05s ease;
}

.slide.active {
    opacity: 1;
    display: flex !important;
    position: relative;
    z-index: 10;
}

.slide .slide-content,
.slide .slide-image {
    min-height: 400px;
}

.slide-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    object-fit: cover;
}

.slide-content {
    padding: 1rem;
}

.custom-slider .arrows,
.slider-controls {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.custom-slider .arrow,
.slider-controls .arrow {
    font-family: 'LineRoundedIcons';
    background: transparent;
    border: 1px solid #3354FF;
    width: 40px;
    height: 40px;
    color: #3354FF;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 2;
}

.custom-slider .arrow:hover:not(:disabled)
.slider-controls .arrow:hover:not(:disabled) {
    background: #3354FF;
    color: #fff;
}

.custom-slider .arrow:disabled,
.slider-controls .arrow:disabled {
    opacity: 0.4;
    cursor: default;
}

@media screen and (max-width:992px) {

    .slide .slide-content,
    .slide .slide-image {
        min-height: 100px;
    }

}

@media screen and (max-width:1570px) {

    #slider_home2.rel-wrapper{
        max-width: 90vw;
    }

    #slider_home2 .float_padding{
        padding-right: calc(var(--bs-gutter-x) * 3)!important;
        padding-left: calc(var(--bs-gutter-x) * 3)!important;
        margin-right: auto!important;
        margin-left: auto!important;
    }

    #slider_home2 .distancer_10{
        height: 2vh;
    }

}

@media screen and (max-width:992px) {

    #slider_home2 .float_padding{
        padding-right: calc(var(--bs-gutter-x) * .5)!important;
        padding-left: calc(var(--bs-gutter-x) * .5)!important;
        margin-right: auto!important;
        margin-left: auto!important;
    }

    #slider_home2.rel-wrapper{
        max-width: 100%;
    }

}

@media screen and (max-width:768px) {

}


/*######################################
  ######### ICONS ######################
  #######################################*/

.icon_contacts img{
    max-width: 100%;
}

.icon_contacts span {
    color: var(--neutral-500);
    font-size: 14px;
}

@media screen and (max-width:1399px) {

    .icon_contacts span {
        font-size: 12px;
    }
}

@media screen and (max-width: 480px) {

    .icon_contacts span {
        font-size: 10px;
    }

    .icon_contacts p,
    .icon_contacts a {
        font-size: 12px;
    }
}

@media screen and (max-width:360px) {

    .icon_contacts span {
        font-size: 8px;
    }
    
}  

.line-rounded-icon {
    font-family: 'LineRoundedIcons';
    font-size: 18px;
    align-self: flex-end;
    transition: .3s ease-in-out;
}

.social_icons a {
    font-size: 1.5rem;
    color: var(--primary-1);
    margin: auto .5rem;
    transition: .3s ease-in-out;
}

.social_icons a:hover {
    color: var(--);
    transition: .3s ease-in-out;
}

.social_icons_light a {
    font-size: 1.5rem;
    color: var(--neutral-800);
    margin: auto .5rem;
    transition: .3s ease-in-out;
}

.social_icons_light a:hover {
    color: var(--primary-1);
    transition: .3s ease-in-out;
}

.news_icons img {
    max-width: 20%;
    align-self: center;
}

footer .social_icons a{
    color: var(--neutral-800);
    margin: auto .5rem;
    font-size: 1.2rem;
}


footer {
    --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  width: 100%;
  padding-right: calc(var(--bs-gutter-x) * .5);
  padding-left: calc(var(--bs-gutter-x) * .5);
  margin-right: auto;
  margin-left: auto;
}

footer .social_icons a:hover{
    color: var(--primary-1);
}

.footer_contacts img{
    max-width: 100%;
}

@media screen and (max-width:1199px) {
    .box_title .social_icons_light a{
        font-size: 1rem;
    }
}



/*###############################################
############### HOME 2 ##########################*/

#home-2 .fixed-top {
    position: fixed !important;
    width: auto;
    left: 0;
    right: 0;
    z-index: 1050;
    background-color: var(--secondary-1)!important;
}

#home-2 .hero-2{
    display: flex;
    flex-direction: column;
    height: 100vh;
    justify-content:space-evenly;
}

#home-2 .float-rx_bg{
    background-color: var(--neutral-100);
    position: absolute;
    width: 95vw;
    right: 0;
    border-radius: 50px 0 0 50px ;
    z-index: -1;
    height: 100%;
}

#home-2 .float-sx_bg{
    background-color: var(--neutral-100);
    position: absolute;
    width: 95vw;
    left: 0;
    border-radius: 0 50px 50px 0;
    z-index: -1;
    height: 100%;
}

#home-2 .float-rx_bg.float-rx_cta-bg{
    background-color: none!important;
    background-image: url('/assets/img/elements/cta_img.png')!important;
    background-size: cover;
    background-color: #ccc;
    background-position: center;
}



#home-2 .cta_section2 .overlay-rx {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4) !important;
    position: absolute;
    width: 95vw;
    right: 0;
    border-radius: 50px 0 0 50px;
    z-index: 1;
}

#home-2 .cta_section2 .cta_bg,
#home-2 .cta_section2 .cta_bg .overlay{
    background-image:none!important;
    background: none!important;
}

.float_img-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: start;
    position: relative;
}

.float_img img{
    max-width: 65%;
    display: flex;
}

#home-2 .logo-stripe_wrapper {
    position: relative;
}

#home-2 .rel-container {
    padding: 1rem!important;
}

#home-2 .rel-wrapper {
    position: relative;
}

#home-2 .sphere img {
    max-width: 80%;
}

#home-2 .divider_bottom {
    width: 100%;
}

#counter_2x2 p{
    margin: 0;
}

@media screen and (max-width:1199px) {

    #home-2 .distancer_15 {
        height: 15vh;
    }
    
}

@media screen and (max-width:992px) {


    .hero-1 .rel-wrapper{
        height: auto;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .hero-1 .logo-stripe_wrapper{
        position: relative;
        padding-top: 2rem;
        margin-bottom: 2rem;
    }

    .hero-1 .left_TranspGrad,
    .hero-1 .right_TranspGrad{
        display: none;
    }

    #home-2 .hero-2{
        height: auto;
    }

    #home-2 .float-rx_bg.float-rx_cta-bg,
    #home-2 .cta_section2 .overlay-rx,
    #home-2 .float-rx_bg{
        right: 0;
        left: 0;
        border-radius: 25px 25px ;
        z-index: -1;
        height: 100%;
        padding-right: calc(var(--bs-gutter-x) * .5);
        padding-left: calc(var(--bs-gutter-x) * .5);
        margin-right: auto;
        margin-left: auto;
        max-width: 720px;
        
    
    }
    
    #home-2 .float-sx_bg{
        width: 100%;
        right: 0;
        left: 0;
        border-radius: 0 ;
        z-index: -1;
        padding-right: calc(var(--bs-gutter-x) * .5);
        padding-left: calc(var(--bs-gutter-x) * .5);
        margin-right: auto;
        margin-left: auto;
        
    
    }


    .float_img img{
        max-width: 85%;
        display: flex;
    }
    
}

@media screen and (max-width:768px) {
    .hero-1{
        display: flex;
        align-items: stretch;
    }
}

@media screen and (max-width:575px) {

    .float_img img{
        max-width: 150%;
        display: flex;
        margin-left: -2rem;
    }
    
}

/*###############################################
############### HOME 3 ##########################*/

/*###############################################
############### ACCORDION #######################
#################################################*/

  
  
  /* Custom Accordion Styles */
  .custom-accordion .accordion-item {
    border: none;
    border-bottom: 1px solid var(--neutral-400);
    margin-bottom: 0.5rem;
    --bs-accordion-bg: transparent;
  }
  
  .custom-accordion .accordion-button {
    padding: 1.5rem 0;
    background: none;
    border: none;
    box-shadow: none !important;
    color: var(--text-color);
    font-size: 1.25rem;
    font-weight: 500;
  }
  
  .custom-accordion .accordion-button:not(.collapsed) {
    color: var(--text-color);
    background: none;
  }
  
  .custom-accordion .accordion-button::after {
    content: '+';
    background-image: none;
    font-size: 1.5rem;
    width: auto;
    height: auto;
    font-weight: 300;
  }
  
  .custom-accordion .accordion-button:not(.collapsed)::after {
    content: '×';
    transform: none;
    font-size: 1.5rem;
  }
  
  .custom-accordion .accordion-body {
    padding: 0 0 1.5rem 0;
    color: #666;
  }
  
  .custom-accordion .number {
    margin-right: 0.5rem;
    font-weight: 500;
  }
  
  /* Button Styles */
  #accordion .btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 0.75rem 1.5rem;
    border-radius: 2rem;
  }
  
  #accordion .btn-primary:hover {
    background-color: #7A6FEF;
    border-color: #7A6FEF;
  }
  
  #accordion .btn-link {
    color: var(--text-color);
    text-decoration: none;
    padding: 0.75rem 1.5rem;
  }
  
  #accordion .btn-link:hover {
    color: var(--primary-color);
  }
  
  /* Image Container */
  .image-container {
    border-radius: 1rem;
    overflow: hidden;
  }

  .hero-lab .box_count img{
      max-width: 15%!important;
      margin: 0;
      align-self: center!important;
  }
  
  /* Responsive Adjustments */
  @media (max-width: 1792px) {
    .abs_cont-75{
        max-width: 100%;
    }
  }

  @media (max-width: 1446px) {
    .abs_cont-75{
        max-width: 90%;
    }

    .abs_cont-75 .box_count{
        padding: 10px 1.2rem!important;
    }

    .abs_cont-75 .box_count h5{
        font-size: 1rem;
        line-height: normal;
        margin: 0;
    }

    .abs_cont-75 .box_count p{
        font-size: 10px;
        line-height: normal;
        margin: 0;
    }

    .hero-lab .box_count img{
        max-width: 20%!important;
    }
  }

  @media screen and (min-width: 1024px) and (max-width: 1025px) and (min-height:1000px) {

    .hero-lab.rel-container .hero-lab_img {
        position: absolute;
        width: 80%;
        align-self: flex-end;
    }

    .display-0 {
        font-size: 100px;
        line-height: 96px;
    }
  }

  @media screen and (max-width:1023px){

    .hero-lab.rel-container img {
      width: 45vw!important;
      align-self: end;
      justify-self: end;
    }
    
  }
  
  @media (max-width: 991.98px) {
    .image-container {
      margin-top: 3rem;
    }

    .abs_Bottom_container .box_count img{
        max-width: 12%!important;
        margin: 0;
        align-self: center!important;
    }

    .abs_Bottom_container .box_count h5{
        text-align: start;
        font-size: 1.25rem;
        line-height: normal;
        margin-bottom: 0;
    }

    .abs_Bottom_container .box_count p{
        font-size: .75rem;
        text-align: start;
    }

    .abs_Bottom_container .box_count{
        position: relative;
        padding: 1rem!important;
        z-index: 5;
    }

    .hero-lab.rel-container img {
        width: 70vw;
        align-self: flex-end;
    }

    .full_abs_cont .hero-lab_img{
      position: absolute;
      right: 0;
    }
    
  }

  @media screen and (max-width:767px) {

    .hero-lab .box_count img{
        max-width: 15%!important;
        margin: 0;
        align-self: center!important;
    }

    .hero-lab .box_count h5{
        text-align: start;
        font-size: 1.25rem;
        line-height: normal;
        margin-bottom: 0;
    }

    .hero-lab .box_count p{
        font-size: .75rem;
        text-align: start;
    }

    .hero-lab .box_count{
        position: relative;
        padding: .5rem 1rem!important;
        z-index: 5;
    }

    .abs_Bottom_container {
        left: 40vw;
        width: 100%;
    }

    .hero-lab.rel-container img {
        width: 60vw;
    }

    .full_abs_cont .hero-lab_img{
      position: relative;
      right: 0;
    }

  }

/*###############################################
############# PORTRAIT WIDE MOBILE ##############
###############################################*/

@media  (max-width:601px) {
    .display-0 {
        font-size: 80px;
        line-height: 66px;
        padding-bottom: 5px!important;
    }

    .abs_Bottom_container .box_count img{
        width: 30px;
        height: 30px;
    }

    .abs_Bottom_container .box_count h5{
        font-size: 1rem;
        line-height: normal;
        margin-bottom: 0;
    }

    .abs_Bottom_container .box_count p{
        font-size: .5rem;
    }

    .abs_Bottom_container .box_count{
        padding: .5rem 1rem!important;
    }
    
    .abs_Bottom_container .distancer_15 {
        height: 45vh!important;
    }

    .megamenu-logo img {
        width: 80%!important;
    }

    .megamenu-container {
        height: 35px!important;
        display: flex;
        flex-direction: row;
        margin: .4rem auto!important;
        justify-content: space-between;
    }

    .hero_1stCol {
        margin-top: 4rem;
        justify-content: center!important;
        align-items: center!important;
    }

    .hero_1stCol .distancer_15 {
        display: none;
    }

    .hero-lab.rel-container img {
        width: 70%;
        align-self: flex-end;
    }
    
}

@media  (max-width:470px) {
    

    .hero-lab.rel-container img {
        max-width:300%;
        width: 150%;
        align-self: flex-end;
        opacity: .3;
    }

    .abs_Bottom_container {
        left: 10vw;
        width: 80%;
      }
    
}

/*###############################################
################ LANDSCAPE MOBILE ###############
###############################################*/

@media  (max-width:1024px) and (max-height:428px) {
    .display-0 {
        font-size: 32px;
        line-height: 46px;
        padding-bottom: 5px!important;
    }

    .abs_Bottom_container .box_count img{
        width: 30px;
        height: 30px;
    }

    .abs_Bottom_container .box_count h5{
        font-size: 1rem;
        line-height: normal;
        margin-bottom: 0;
    }

    .abs_Bottom_container .box_count p{
        font-size: .5rem;
    }

    .abs_Bottom_container .col-12{
        flex: 0 0 auto;
        width: 50%;
    }

    .abs_Bottom_container .box_count{
        padding: .5rem 1rem!important;
    }
    
    .distancer_15 {
        height: 45vh!important;
    }

    .hero_1stCol {
        margin-top: 4rem;
    }

    #about_page .hero_1stCol {
        margin-top: 0rem;
    }

    .hero-lab.rel-container img {
        width: 40vw;
        align-self: flex-end;
    }
    
    #about_page .distancer_15 {
        height: 25vh!important;
    }
    
}

@media screen and (max-width:472px) {
    .display-0 {
        font-size: 40px;
        line-height: 56px;
        padding-bottom: 5px!important;
    }

    .hero_1stCol > p{
        font-size: 18px;
        padding: 1rem;
    }

    .hero-lab .box_count img {
        max-width: 10% !important;
    }

    .hero-lab .box_count h5 {
        font-size: 1rem;
    }
    
}

@media screen and (max-width:360px) {
    .display-0 {
        font-size: 32px;
        line-height: 28px;
        padding-bottom: 5px !important;
    }

    .hero_1stCol > p{
        font-size: 14px;
        padding: .2rem;
    }
}



/*####################################################################
################ COMPARSION SECTION ##################################
####################################################################*/

.sticky-column__comparsion {
  position: sticky;
  left: 0;
  z-index: 1;
  background-color: white!important;
  font-weight: 300;
  text-align: start!important;
}

.table-responsive__comparsion {
  overflow-x: auto;
}

.table-responsive__comparsion td img{
  display: block;
  margin: auto;
}

.table-responsive__comparsion th{
  font-size: 14px;
  text-align: center;
}

.sticky-column__description{
  font-size: 22px!important;
  text-transform: uppercase;
  color: #6120EA;
}

.check-icon {
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url('/assets/img/Global/check_icon.svg');
  background-size: 20px;
}

.comparsion-accordion .accordion-button{
  padding: 15px 0;
}

.comparsion-accordion .accordion-content .check-icon{
  background-size: 15px;
}

.comparsion-accordion .accordion-button::after{
  font-size: 1.5em;
}
.comparsion-accordion .accordion-content td{
  font-size: 14px;
  padding: 0;
}

@media screen and (max-width: 1300px) {
  
  #compareModal .table > :not(caption) > * > * {
    padding: .1rem 0;
  }

  .check-icon {
    background-size: 14px;
  }
}

@media screen and (max-width:991px) {
  .table-responsive__comparsion th{
    font-size: 12px;
    line-height: 1.2rem;
  }
  .check-icon {
    background-size: 15px;
  }

  .table__index_recomm .accordion-content td{
    padding: 8px 0;
  }
}

.iub-toggle-checkbox label{
  margin-bottom: 0;
}


.fade-in {
  animation: fadeInAnimation 0.5s ease-in-out forwards;
}
.fade-out {
  animation: fadeOutAnimation 0.5s ease-in-out forwards;
}
@keyframes fadeInAnimation {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeOutAnimation {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}


/*--------------------------------------------------------------
# FEES ACCORDION
--------------------------------------------------------------*/

.header-fees{
  background:#172C69!important;
}

#fees-container{
  margin-bottom: 20%;
}


.hidden{
  display: none;
}

.fees-sticky-top{
  margin:0!important;
  top:0rem!important;
}

.fees-interactive li.filter-active::before , .fees-interactive li::before{
  border: none!important;
}

.interactive .fees-interactive #interactive-flters li {
  color: #fff;
  font-weight: 600;
}

.interactive .fees-interactive #interactive-flters li:hover {
  color: #6120EA;
}

.interactive .fees-interactive #interactive-flters li:active {
  
  color: #6120EA;
}

.fees-interactive ul{
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0;
}

.accordion-fees {
  --bs-accordion-color: #0E1D3D;
  --bs-accordion-border-width: 0px;
  --bs-accordion-border-color: none;
  --bs-accordion-btn-color: #000;
  --bs-accordion-btn-bg: var(--bs-accordion-bg);
  --bs-accordion-btn-icon: none;
  --bs-accordion-btn-icon-transform: rotate(90deg);
  --bs-accordion-btn-icon-transition: transform 0.2s ease-in-out;
  --bs-accordion-btn-active-icon: none;
  --bs-accordion-btn-focus-border-color: none;
  --bs-accordion-body-padding-x: 1.25rem;
  --bs-accordion-body-padding-y: 1rem;
  --bs-accordion-active-color: #6120EA;
  --bs-accordion-active-bg: none;
}

.accordion-fees button {
  font-size: 26px!important;
  font-weight: 700;
  text-transform: uppercase;
  padding: 1.5rem 0;
  background-color: transparent!important;
  color: #1D1D1A;
  border: none!important;
  border-bottom: 1px solid #6120EA!important;
  gap: 0;
}

.color-accent__accordion {
  font-size: 26px!important;
  font-weight: 700;
  color: #6120EA;
}

.accordion-fees .accordion-item:last-child  button{
  border-bottom: none!important;
}

.accordion-fees button::after {
  flex-shrink: 0;
  width: var(--bs-accordion-btn-icon-width);
  height: var(--bs-accordion-btn-icon-width);
  margin-left: auto;
  font-family: "bootstrap-icons";
  color: #6120EA;
  content: '\F136';
  font-size: 1em;
  background-image: var(--bs-accordion-btn-icon);
  background-repeat: no-repeat;
  background-size: var(--bs-accordion-btn-icon-width);
}

.accordion-fees p {
  text-align: start;
  font-size: 18px;
  font-weight: 500;
  color: #1D1D1A;
}

.accordion-fees span {
  text-align: start;
  font-size: 14px;
  font-weight: 600;
}

.accordion-fees th {
  font-size: 18px;
  font-weight: 400;
  max-width: 50vw;
}

.card-faq th {
  font-size: 18px;
  font-weight: 400;
  max-width: 50vw;
}

.card-faq td {
  font-size: 18px;
  font-weight: 500;
  max-width: 50vw;
}

.table > :not(caption) > * > * {
  padding: .5rem 0;
}

.accordion-fees  td, .accordion-fees th{
  border-color: #1D1D1A;
  color: #1D1D1A;
}

.accordion-fees tr:nth-last-of-type(1) th, .accordion-fees tr:nth-last-of-type(1) td{
  border: none;
}

@media screen and (max-width:1200px) {
  
  .card-faq th {
    font-size: 14px;
    font-weight: 400;
    max-width: 50vw;
  }
  
  .card-faq td p{
    font-size: 12px!important;
    font-weight: 600;
    max-width: 50vw;
  }
}

@media screen and (min-width: 1024px) and (max-width: 1025px) and (min-height:1000px) {

  .interactive #interactive-flters li {
    padding: 10px 5px 10px 5px;
    font-size: 14px;
    font-weight: 500!important;
    margin: 0 4px 8px 4px;
  }

  .fees-interactive ul{
    padding: 0!important;
  }

}

@media screen and (max-width:416px) {
  
  .card-faq th {
    font-size: 14px;
    font-weight: 400;
    max-width: 50vw;
  }
  
  .card-faq td p{
    font-size: 10px!important;
    font-weight: 600;
    max-width: 50vw;
  }
}




/*########################################
######### PORTFOLIO FEES #################*/

.my_active{
  background-color: #6120EA!important;
  color: #fff!important;
  border-radius: 5px!important;
}

.changing_slide-w{
  overflow: hidden!important;
}

.fees-portfolio li.filter-active::before , .fees-portfolio li::before{
  border: none!important;
}

.portfolio .fees-portfolio #portfolio-flters li {
  color: #fff;
  font-weight: 600;
}

.portfolio .fees-portfolio #portfolio-flters li:hover {
  color: #6120EA;
}

.portfolio .fees-portfolio #portfolio-flters li:active {
  color: #6120EA;
}

.portfolio #portfolio-filters {
  padding: 0;
  margin: 0 auto 25px auto;
  list-style: none;
  text-align: center;
  background: white;
  border-radius: 10px;
  padding: 2px 15px;
}

.portfolio #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 8px 20px 10px 20px;
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 1;
  color: #444444;
  margin: 0 4px 8px 4px;
  transition: 0.3s;
}

.portfolio #portfolio-flters li::before {
  content: " ";
  border: 3px solid #fff;
  background: #fff;
  transition: .5s;
}


.portfolio #portfolio-flters li.filter-active::before {
  content: " ";
  border: 3px solid #6120EA;
  background: #111;
  transition: .5s;
}

.portfolio #portfolio-flters li:last-child {
  margin-right: 0;
}

.portfolio .portfolio-wrap {
  transition: 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
  background: rgba(255, 255, 255, 0.75);
}

.portfolio .portfolio-wrap::before {
  content: "";
  background: rgba(255, 255, 255, 0.75);
  position: absolute;
  left: 30px;
  right: 30px;
  top: 30px;
  bottom: 30px;
  transition: all ease-in-out 0.3s;
  z-index: 2;
  opacity: 0;
}

.portfolio .portfolio-wrap img {
  transition: 1s;
}

.portfolio .portfolio-wrap .portfolio-info {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  text-align: center;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.portfolio .portfolio-wrap .portfolio-info::before {
  display: block;
  content: "";
  width: 48px;
  height: 48px;
  position: absolute;
  top: 35px;
  left: 35px;
  border-top: 3px solid rgba(1, 41, 112, 0.2);
  border-left: 3px solid rgba(1, 41, 112, 0.2);
  transition: all 0.5s ease 0s;
  z-index: 9994;
}

.portfolio .portfolio-wrap .portfolio-info::after {
  display: block;
  content: "";
  width: 48px;
  height: 48px;
  position: absolute;
  bottom: 35px;
  right: 35px;
  border-bottom: 3px solid rgba(1, 41, 112, 0.2);
  border-right: 3px solid rgba(1, 41, 112, 0.2);
  transition: all 0.5s ease 0s;
  z-index: 9994;
}

.portfolio .portfolio-wrap .portfolio-info h4 {
  font-size: 20px;
  color: #012970;
  font-weight: 700;
}

.portfolio .portfolio-wrap .portfolio-info p {
  color: #012970;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  padding: 0;
  margin: 0;
}

.portfolio .portfolio-wrap .portfolio-links {
  text-align: center;
  z-index: 4;
}

.portfolio .portfolio-wrap .portfolio-links a {
  color: #fff;
  background: #4154f1;
  margin: 10px 2px;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: 0.3s;
}

.portfolio .portfolio-wrap .portfolio-links a i {
  font-size: 24px;
  line-height: 0;
}

.portfolio .portfolio-wrap .portfolio-links a:hover {
  background: #5969f3;
}

.portfolio .portfolio-wrap:hover img {
  transform: scale(1.1);
}

.portfolio .portfolio-wrap:hover::before {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 1;
}

.portfolio .portfolio-wrap:hover .portfolio-info {
  opacity: 1;
}

.portfolio .portfolio-wrap:hover .portfolio-info::before {
  top: 15px;
  left: 15px;
}

.portfolio .portfolio-wrap:hover .portfolio-info::after {
  bottom: 15px;
  right: 15px;
}




@media screen and (min-width: 1024px) and (max-width: 1025px) and (min-height:1000px) {

  .portfolio #portfolio-flters li {
    padding: 10px 5px 10px 5px;
    font-size: 14px;
    font-weight: 500!important;
    margin: 0 4px 8px 4px;
  }

  .fees-portfolio ul{
    padding: 0!important;
  }

}

@media (max-width:1199px){
  .fees-interactive ul {
    display: flex;
    flex-direction: row;
    margin: 0;
    padding: 0;
    background: rgb(15, 15, 18);;
    justify-content: center;
  }

  .sticky-top {
    top: 4.6rem !important;
    z-index: 20;
  }
}

@media (max-width:992px){
  
  .fees-nav {
    display: block;
    flex-wrap: nowrap;
    overflow-x: scroll;
    padding: 30px 0 10px 0;
    width: 100%;
    white-space: nowrap;
  }

  .fees-nav li{
    display: block;
    min-width: 15%;
    margin: 0;
    text-align: center;
    font-size: 12px!important;
    font-weight: 800!important;
  }

  .sticky-top {
    top: 4.2rem !important;
  }

  .portfolio #portfolio-flters li {
    padding: 10px 5px 10px 5px;
    font-size: 14px;
    font-weight: 500!important;
    margin: 0 4px 8px 4px;
  }

  .fees-portfolio ul{
    padding: 0!important;
  }

  .accordion-fees button::after {
    font-size: 1.5em;
  }

  .accordion-fees button, .color-accent__accordion {
    font-size: 16px !important;
  }

  .accordion-fees p,
  .accordion-fees th {
    font-size: 16px;
  }

  .accordion-fees th {
    vertical-align: middle;
  }

  .accordion-fees td p {
    margin-bottom: 0;
    vertical-align: middle
  }
  
}

@media (max-width:576px){
  
  .fees-nav{
    display: block;
    flex-wrap: nowrap;
    overflow-x: scroll;
    padding: 30px 0 10px 0;
    width: 100%;
    white-space: nowrap;
    
  }

  .fees-nav li{
    display: block;
    min-width: 35%;
    margin: 0;
    text-align: center;
    font-size: 12px!important;
  }
  
}

@media (max-width: 576px){
  .sticky-top {
    top: 3.6rem !important;
    z-index: 20;
  }

  .accordion-fees button {
    font-size: 18px!important;
    padding: 1.5rem 0;
  }

  .color-accent__accordion{
    font-size: 14px;
  }

  .accordion-fees p {
    text-align: start;
    font-size: 14px;
  }

  .accordion-fees span {
    text-align: start;
    font-size: 10px;
  }

  .accordion-fees th {
    font-size: 14px;
  }
}

@media (max-width: 480px){

  .accordion-fees button{
    font-size: 16px!important;
    padding: .8rem 0;
  }
  .accordion-fees p {
    text-align: end;
    font-size: 14px;
  }

  .accordion-fees span {
    text-align: start;
    font-size: 10px;
  }

  .accordion-fees th {
    font-size: 14px;
  }

  .accordion-fees button::after {
    font-size: 1.5em;
  }

}

@media (max-width: 360px){

  .accordion-fees th {
    font-size: 12px;
    margin-right: 10px;
  }

}




/*--------------------------------------------------------------
# SWITCH
--------------------------------------------------------------*/
.rates.sticky-top {
  top: 4rem;
  z-index: 20;
  background: #F8F8FA!important;
}

.portfolio.rates #portfolio-flters li{
  color: #6120EA;
  font-weight: 600;
}

.section__comparsion #portfolio-flters li{
  color: #fff!important;
  font-weight: 300!important;
}

#portfolio-flters .rates li:hover {
  color: #6120EA;
}

#portfolio-flters .rates li:active {
  color: #fff!important;
}

.saving-rates ul{
  background-color: #6120EA;
  padding: 5px!important;
  border-radius: 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer!important;
  
}

.saving-rates li.filter-active::before{
  content: " ";
  border: none!important;
  transition: .5s;
}

.saving-rates li.filter-active{
  background: #18408E;
  color: white!important;
  border-radius: 50px;
}

.saving-rates li::before{
  content: " ";
  border: none!important;
  background: #111;
  transition: .5s;
}

.saving-rates li{
  border: none!important;
  display: flex;
  align-self: center;
  padding:10px 20px 10px 20px!important;
  margin: 1px!important;
  color: #FFF;
}

@media screen and (max-width: 1199px) {
  .rates.sticky-top {
    top: 60px!important;
  }

  .rates .fees-portfolio ul
  {
    padding: 20px 0 0 0 !important;
  }

  .saving-rates ul{
    margin-top: 30px;
  }
}

@media screen and (max-width: 992px) {
  

  .saving-rates ul{
    margin-top: 20px;
  }
}


@media screen and (max-width: 768px) {
  .rates.sticky-top {
    top: 50px!important;
  }

  .rates .fees-portfolio ul
  {
    padding: 10px 0 0 0 !important;
  }
}

/*--------------------------------------------------------------
# APPS ACCORDION
--------------------------------------------------------------*/

.accordion-apps {
  --bs-accordion-color: #0E1D3D;
  --bs-accordion-border-width: 0px;
  --bs-accordion-border-color: none;
  
  --bs-accordion-btn-color: #000;
  --bs-accordion-btn-bg: var(--bs-accordion-bg);
  --bs-accordion-btn-icon: url("/assets/img/circled-arrow.svg");
  --bs-accordion-btn-icon-width: 1.25rem;
  --bs-accordion-btn-icon-transform: rotate(90deg);
  --bs-accordion-btn-icon-transition: transform 0.2s ease-in-out;
  --bs-accordion-btn-active-icon: url("/assets/img/circled-arrow.svg");
  --bs-accordion-btn-focus-border-color: none;
  --bs-accordion-body-padding-x: 1.25rem;
  --bs-accordion-body-padding-y: 1rem;
  --bs-accordion-active-color: #6120EA;
  --bs-accordion-active-bg: none;
}

.accordion-apps button {
  font-size: 22px!important;
  padding: 1rem 0;
  font-weight: 600;
  color: #fff;
}
.accordion-apps p {
  text-align: end;
  font-size: 18px;
  font-weight: 500;
}

.accordion-apps span {
  text-align: start;
  font-size: 14px;
  font-weight: 600;
}

.accordion-apps th {
  font-size: 18px;
  font-weight: 400;
}
.table > :not(caption) > * > * {
  padding: .5rem 0;
}

.accordion-apps  td, .accordion-fees th{
  border-color: #1D1D1A;
}

.accordion-fees .no-border-row th{
  border: none!important;
  padding-top: 7vh!important;
}

.accordion-fees h5{
  font-size: 22px;
}

.accordion-apps tr:nth-last-of-type(1) th, .accordion-apps tr:nth-last-of-type(1) td{
  border: none;
}

.accordion-apps-item{
  border: 2px solid #6120EA !important;
  border-radius: 15px;
  margin: 10px 0;
  padding: 0 20px;
}

.accordion-apps .accordion-button{
  background-color: transparent!important;
  border:none !important;
  color: #6120EA;
}


.accordion-apps .mobile-accordion .accordion-button::after{
 
  margin-left: 10px!important;
  margin-top: -28px!important;
  font-family: FontAwesome;
  content: "\f054";
}

.accordion-apps .mobile-accordion .accordion-button:focus  {
  outline: 0!important;
  box-shadow: none!important;
  border: none!important;
}

@media screen and (max-width:991px) {
  .accordion-fees h5{
    font-size: 16px;
  }
}

@media (max-width: 576px){
  .accordion-apps button {
    font-size: 18px!important;
    padding: 1.5rem 0;
  }
  .accordion-apps p {
    text-align: end;
    font-size: 12px;
  }

  .accordion-apps span {
    text-align: start;
    font-size: 10px;
  }

  .accordion-apps th {
    font-size: 14px;
  }
}

@media (max-width: 350px){
  .accordion-apps button{
    font-size: 16px !important;
    padding: 1rem 0;
  }

  .pup-signin.pup-apps h5 {
    margin-bottom: 20px;
    font-size: 18px;
  }
}


.js-hidden {
  visibility: hidden !important;
  transform: translateX(100%) !important;
}


/*--------------------------------------------------------------
# Counts CUSTOM WALLEX WHITE
--------------------------------------------------------------*/
.hero-section-bg.counts-wllx {
  position: relative;
  margin: auto;
  bottom: 0;
  padding: 80px 0;
  overflow: hidden;
}

.distancer-count{
  height: 150px;
}

.counts-wllx img{
  position: absolute;
  margin: 0;
  max-width: 100%;
  max-height: 100%;
  height: 100%;
  top: 0;
}

.counts-wllx .shape-2{
  left:90%;
}

.counts-wllx .count-wllx-box {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 30px;
  width: 100%;
  border-right: var(--primary-1) solid 1px;
}

.counts-wllx .count-wllx-box.last{
  border-right: none;
}



.counts-wllx .count-wllx-box span {
  font-size: 50px;
  display: block;
  font-weight: 600;
  color: var(--primary-1);
  text-align: center;
}

.counts-wllx .count-wllx-box p {
  padding: 10px 0;
  margin: 0;
  font-family: 'Kanit', sans-serif;
  font-size: 20px;
  color: #1A1A1D;
  text-align: center;
}

.hero-section .distancer-count
.hero-half .distancer-count{
  height: 5vh;
}

.hero-section .footer-fade{
  min-height: 200px;
}

@media (max-width: 1599px) {
  .counts-wllx .count-wllx-box {
    padding: 0;
  }

  .counts-wllx .count-wllx-box span {
    font-size: 38px;
  }

  .counts-wllx .count-wllx-box p {
    font-size: 16px;
    font-weight: 300;
  }

}

@media (max-width: 1299px) {
  .counts-wllx .count-wllx-box {
    padding: 0;
  }

  .counts-wllx .count-wllx-box span {
    font-size: 28px;
  }

  .counts-wllx .count-wllx-box p {
    font-size: 14px;
    font-weight: 300;
  }

}

@media (max-width: 992px) {
  .counts-wllx {
    background-color: #ffffff99;
    border-radius: 15px;
  }

  .counts-wllx .count-wllx-box {
    padding: 0;
  }

  .counts-wllx .count-wllx-box.mob-box {
    border-right: none!important;
  }

  .counts-wllx .count-wllx-box span {
    font-size: 28px;
  }

  .counts-wllx .count-wllx-box p {
    font-size: 14px;
    font-weight: 300;
  }

}

@media (max-width: 768px){
  .counts-wllx .count-wllx-box.mob-box {
    border-right: none;
  }

  .counts-wllx img{
    max-width: 100%;
    max-height: 100%;
    height: 50%;
  }

  .counts-wllx .shape-2{
    width: 100%;
    left: 40%;
    top:70%;
  }
}

@media (max-width: 576px) {

  .distancer-count{
    height: 5vh;
  }

  .counts-wllx .count-wllx-box{
    border-right: none;
    border-bottom: solid 1px var(--primary-1);
    padding: 10px 0;
    max-width: 200px;
    margin: auto;
  }

  .row .col-6:nth-of-type(n+3) .count-wllx-box {
    border-bottom: none;
  }
  
  .counts-wllx img{
    max-width: 100%;
    max-height: 100%;
    height: 30%;
  }

  .counts-wllx .shape-2{
    width: 100%;
    left: 20%;
    top:70%;
  }

  .counts-wllx .count-wllx-box p {
    font-size: 12px;
  }
}

.modal .btn-close {
    background-color: #F8F8FA;
    border-radius: 50%;
    padding: 0.5rem;
    z-index: 1056;
  }

  /* Hover: sfondo primario */
  .modal .btn-close:hover {
    background-color: var(--primary-1);
    filter: invert(0); /* torna scura o nera se vuoi */
  }

  

  .modal .btn-close:focus {
    outline: none;
    box-shadow: none; /* rimuove il bagliore blu */
  }