

// Define breakpoints for all devices
@xs: 320px;   // Extra small devices (tiny mobiles)
@sm: 576px;   // Small devices (mobile phones)
@md: 768px;   // Medium devices (tablets)
@lg: 992px;   // Large devices (small desktops/laptops)
@xl: 1200px;  // Extra large devices (desktops)
@xxl: 1440px; // Extra extra large devices (large desktops)
@4k: 2560px;  // 4K screens

// Define media query shortcuts for extra small devices (tiny mobiles)
@mq-xs-down: ~"(max-width: @{xs})"; // Tiny mobiles and below
@mq-xs-only: ~"(min-width: @{xs}) and (max-width: @{sm - 1})"; // Tiny mobiles only
@mq-xs-up: ~"(min-width: @{xs})"; // Tiny mobiles and up

// Define media query shortcuts for small devices (mobile phones)
@mq-sm-down: ~"(max-width: @{sm})"; // Mobile and below
@mq-sm-only: ~"(min-width: @{sm}) and (max-width: @{md - 1})"; // Mobile only
@mq-sm-up: ~"(min-width: @{sm})"; // Mobile and up

// Define media query shortcuts for medium devices (tablets)
@mq-md-down: ~"(max-width: @{md})"; // Tablet and below
@mq-md-only: ~"(min-width: @{md}) and (max-width: @{lg - 1})"; // Tablet only
@mq-md-up: ~"(min-width: @{md})"; // Tablet and up

// Define media query shortcuts for large devices (small desktops/laptops)
@mq-lg-down: ~"(max-width: @{lg})"; // Small desktops/laptops and below
@mq-lg-only: ~"(min-width: @{lg}) and (max-width: @{xl - 1})"; // Small desktops/laptops only
@mq-lg-up: ~"(min-width: @{lg})"; // Small desktops/laptops and up

// Define media query shortcuts for extra large devices (desktops)
@mq-xl-down: ~"(max-width: @{xl})"; // Desktops and below
@mq-xl-only: ~"(min-width: @{xl}) and (max-width: @{xxl - 1})"; // Desktops only
@mq-xl-up: ~"(min-width: @{xl})"; // Desktops and up

// Define media query shortcuts for extra extra large devices (large desktops)
@mq-xxl-down: ~"(max-width: @{xxl})"; // Large desktops and below
@mq-xxl-only: ~"(min-width: @{xxl}) and (max-width: @{4k - 1})"; // Large desktops only
@mq-xxl-up: ~"(min-width: @{xxl})"; // Large desktops and up

// Define media query shortcuts for 4K screens
@mq-4k-down: ~"(max-width: @{4k})"; // 4K screens and below
@mq-4k-only: ~"(min-width: @{4k})"; // 4K screens only
@mq-4k-up: ~"(min-width: @{4k})"; // 4K screens and up


// Usage examples
@media @mq-xs-down {
  // Styles for tiny mobiles and below
  body {
     background-color: yellow;
  }
}

@media @mq-sm-only {
  // Styles for mobile phones only
  body {
     background-color: yellow;
  }
}

@media @mq-md-up {
  // Styles for tablets and up
  body {
     background-color: yellow;
  }
}

@media @mq-lg-only {
  // Styles for small desktops/laptops only
  body {
     background-color: yellow;
  }
}

@media @mq-xl-up {
  // Styles for desktops and up
  body {
     background-color: yellow;
  }
}

@media @mq-xxl-only {
  // Styles for large desktops only
  body {
     background-color: yellow;
  }
}

@media @mq-4k-up {
  // Styles for 4K screens and up
  body {
     background-color: yellow;
  }
}



body {
    overflow-x: hidden;
        display: grid;
        grid-template-rows:  0 auto 1fr;
        align-content: start;
        hyphens: unset;
}

.footer ul {
    list-style: none;
}

#container {
  width: 100vw;
            overflow: hidden;
}
.blk-button {
  background-color: var(--surface0);
  padding: 0  var(--spacing-md) 0 0;
  border-radius: 5px;
  text-decoration: none;
  color: var(--lead-text-1);
  fill: var(--lead-text-1);
  width: fit-content;
  height: fit-content;
  text-align: center;
  font-size: var(--font-size-1);
  display: inline-block; /* Ensure the button behaves as a block-level container */
  position: relative; /* For positioning child elements */
  font-weight: 500;
}

.blk-button .blk-button__link {
  color: inherit;
  text-decoration: none;
  fill: inherit;
  position: relative;
  display: flex; /* Use flexbox to align items */
  align-items: center;
  justify-content: center;
  width: 100%; /* Ensure the link covers the full width */
  height: 100%; /* Ensure the link covers the full height */
  padding: var(--spacing-sm) var(--spacing-sm); /* Inherit padding from parent */
}

.blk-button .blk-button__link .btn-icone {
  color: inherit;
  fill: inherit;
  display: flex;
  align-items: center;
  margin-right: 0.5em;
}

.blk-button .blk-button__link .btn-icone svg {
  width: var(--font-size-2);
  height: auto;
}

.btn-group {
    display: flex;
    gap: 0.5em;
    align-items: center;
}

.nav-content {
        display: flex;
    position: relative;
    justify-content: center;
}

.blk-menu {
       width: fit-content;
    align-content: center;
}


.menu-mobile {
	display:none; 
}
.nav-mob {
   display:none; 
}

.blk-info {
       width: fit-content;
}

.blk-action {
justify-content: flex-end;
    display: flex;
  gap: 0.5em;
  align-items: center;
}

.sec-cta.row .img-cta {
  position: absolute;
  z-index: -1;
  width: 100%;
}

 .row.reverse .blk-img-style-temp  img {
    border-radius: 0vmax;
    filter: drop-shadow(2px 2px 4px #8c8f97);
    border: 0px solid #3c3c3c;
}

 .row .blk-img-style-temp  img {


}

.blk-image  img {
    /*aspect-ratio: 1;*/

}

/* Grid container */
.grid-container {
    display: grid;
    grid-template-columns: repeat(12, 1fr); /* 12-column grid */
    gap: var(--gap); /* Space between columns */
    padding: 0em var(--broad);
}

.grid-item {
     
    padding: 0px;
  
}

.collapse .grid-item {
     
    padding: 0px;
    gap:0em !important;
  
}

.large-1 {
  /* Each column spans 3 of the 12 columns */
  grid-column: span 1;
}

.large-2 {
  /* Each column spans 3 of the 12 columns */
  grid-column: span 2;
}

.large-3 {
  /* Each column spans 3 of the 12 columns */
  grid-column: span 3;
}
.large-4 {
  /* Each column spans 3 of the 12 columns */
  grid-column: span 4;
}
.large-5 {
  /* Each column spans 3 of the 12 columns */
  grid-column: span 5;
}
.large-6 {
  /* Each column spans 3 of the 12 columns */
  grid-column: span 6;
}
.large-7 {
  /* Each column spans 3 of the 12 columns */
  grid-column: span 7;
}

.large-8 {
  /* Each column spans 3 of the 12 columns */
  grid-column: span 8;
}
.large-10 {
  /* Each column spans 3 of the 12 columns */
  grid-column: span 10;
}
.large-12 {
  /* Each column spans 3 of the 12 columns */
  grid-column: span 12;
}


/* Media query for tablets */
@media (max-width: 1025px) {

.menu-mobile {
	display:block; 
}

.nav-mob {
  display: grid;
        grid-template-columns: repeat(8, 1fr);
        justify-content: center;
		padding: 0 1em;
    }
.nav-mob-text {
    grid-column: 1;
    align-self: center;
    width: max-content;
}

.nav-mob-close {
    grid-column: 8;
    align-self: center;
    width: max-content !important;
    padding: 0.5em 2em;
}

.responsive {
display: block !important;
        position: fixed;
        bottom: 0;
        left: 0;
        background-color: var(--surface1);
        width: 100%;
        text-align: left;
        padding-bottom: 13em;
        padding-top: 2em;
        filter: drop-shadow(2px 4px 6px black);
}

.responsive .dropdown-menu {
   display:block !important;
   background-color: var(--surface1);
}

.responsive .menu {
    display: contents;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}

.responsive .menu  a {
    color:#fff;
}

.dropdown-menu {
  display: none;
  position: relative;
}

.blk-action .blk-button {
width: -webkit-fill-available;
}


    .grid-container {
    display: grid;
    grid-template-columns: repeat(8, 1fr); /* 12-column grid */
    gap: 10px; /* Space between columns */
    padding: 0 2em;
}

    .medium-4 {
  /* Each column spans 3 of the 12 columns */
  grid-column: span 4;
}

    .medium-8 {
  /* Each column spans 3 of the 12 columns */
  grid-column: span 8;
}

.blk-logo {
        justify-content: center;
    display: flex;
}



.blk-action {
        position: fixed;
        bottom: 0;
        z-index: 111;
        background-color: var(--surface2);
        width: -webkit-fill-available;
        padding: 10px !important;
                left: 0;

}

.blk-action .blk-button {
width: -webkit-fill-available;
}

.nav-content {
display:none;
}


.hero-content {
    grid-row-start: 2;
    margin: 0;
        position: absolute;
    z-index: 3;
     margin-top: 3em;
}

.grid-container-hero .hero-image {
   grid-row-start: 1 !important;
}




.sec-cta.row .img-cta {
  position: relative;
  z-index: -1;
  width: 100%;
}

.prefooter .sec-cta.row  {
  padding: 0em !important;
  margin-block-end: -1em !important;
}

.sec-cta.row .blk-txt {
  padding: 1em !important;
}



.row {
  
/*  margin-block-start: 1em;*/
  margin-block-end: 2em;
}




.prefooter .image-style {
    width: 100% !important;
    object-fit: cover;
    height: 100%;
}

}



