/*


 */
/*

/* Modern Dropdown Styling */
.contact-dropdown {
    position: relative;
}

.nav-link-dropdown {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    /*padding: 10px 15px;*/
    /*transition: background 0.3s ease-in-out;*/
}

.nav-link-dropdown:hover {
    border-radius: 8px;
}

.nav-link-dropdown .arrow-down {
    transition: transform 0.3s ease-in-out;
}

.contact-dropdown:hover .arrow-down {
    transform: rotate(180deg);
}

/* Dropdown Menu with Opacity */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 65px;
    /*background: rgba(255, 255, 255, 0.9); !* Semi-transparent white *!*/
    /*backdrop-filter: blur(8px); !* Soft blur for a modern effect *!*/
    border-radius: 4px;
    /*box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);*/
    min-width: 175px;
    opacity: 0.5;
    visibility: hidden;
    /*transition: opacity 0.3s ease, transform 0.3s ease;*/
    /*transition: background-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;*/
    /*padding: 8px 0;*/
    z-index: 9999; /* Ensures it stays on top */

}

/* Show dropdown on hover */
.contact-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
}

/* Dropdown Items */
.dropdown-item {
    display: flex;
    padding-left: 10px;
    text-decoration: none;
    /*color: #333;*/
    /*transition: background 0.2s ease-in-out;*/
    /*transition: background-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;*/
    transform: translateY(10px); /* Slight lift effect */


}

.dropdown-item:hover {
    /*background: rgba(0, 0, 0, 0.05); !* Light transparent hover effect *!*/
    /*border-radius: 6px;*/
}

/*Styling new products label*/

/*RecommendedProducts page style*/
/* Container for the entire recommended products section */
.recommendedProductsContainer {
    padding-top: 98px;
    padding-bottom: 98px;
    background-color: var(--gray_200);
    width: 100%;
    @media only screen and (max-width: 1050px) {
        padding-top: var(--space-12xl);
        padding-bottom: var(--space-12xl);
    }
}

/* Slider container – hides overflow and positions inner content */
.recommendedProductsSlider {
    position: relative;
    overflow: hidden;
    width: 100%;
}

/* The wrapper holds all slides and will be shifted for the slide effect */
.recommendedProductsWrapper {
    position: relative;
    display: flex;
    justify-content: flex-start;
    gap: 50px;
    /*transition: transform 0.3s ease-in-out;*/
    @media only screen and (max-width: 550px) {
        gap: 0; /* Remove gap on mobile for clean sliding */
    }
}

/* Each product card takes 1/3 of the container's width */
.recommendedProductsSwiper {
    flex: 0 0 calc((100% - 100px) / 3);
    box-sizing: border-box;
    @media only screen and (max-width: 550px) {
        flex: 0 0 100%; /* Each card occupies full viewport width on mobile */

    }
    /*padding: 10px;*/
    /*padding-left: var(--space-9xl);*/
    /*padding-right: var(--space-9xl);*/
}

/* Styling for the product card (adjust as needed) */
.recommendedProductCard {
    /*background: #fff;*/
    /*border: 1px solid #ddd;*/
    /*padding: 15px;*/
    text-align: center;
    position: relative;
}

/* Optional: style for product label */
.product-label {
    position: absolute;
    right: 0;
}

.label-icon {
    width: 75px; /* Adjust size */
    height: auto;
}

/* Slider pagination container */
.slider-pagination {
    display: flex;
    justify-content: center;
    margin-top: 15px;
    @media only screen and (max-width: 550px) {
        margin: 0;
    }
}

/* Pagination dot style */
.slider-pagination .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ccc;
    margin: 0 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

/* Active dot style */
.slider-pagination .dot.active {
    background: #333;
}

/* Slider buttons container */
.slider-buttons {
    display: flex;
    justify-content: center;
    /*margin-top: 10px;*/
}

.slider-buttons img{
    height: 30px;
    max-width: 30px;
}

/* Navigation buttons (override any framework styles if necessary) */
.slider-buttons button {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
    margin: 0 5px;
}



/*Styling Pagination*/

.content-79 .pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 8px;
    grid-column: 1 / -1;
    width: 100%;
    @media only screen and (max-width: 550px) {
       flex-direction: column;
        gap: 20px;
    }
}

.pagBut.arrow-left{
    display: block;
    padding: 0;
    align-content: center;
    justify-content: center;
    text-align: center;
}

.pagBut.arrow-left img{
    height: 30px;
}

.pagBut.arrow-left a{
    display: flex;
    justify-content: center;
    align-content: center;
}

.pagination-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px; /* Space between dots */
    margin-top: 10px;
}

.dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #ccc;  /* default dot color */
}

.page.current .dot {
    background-color: #333;  /* color for the current page */
}

.pagination-pages {
    display: flex;
    /* additional styling for pages/dots */
}
.pagination-pages .dot {
    margin: 0 5px;
}

.pagination-buttons {
    display: flex;
    flex: 1;
    justify-content: flex-end;
    margin-left: 10px;
    gap: var(--space-10xl);
    /* additional styling for navigation buttons */
    @media only screen and (max-width: 550px) {
        margin-left: 0;
    }
}







/*=========== TABLE OF CONTENTS ===========
1. Common CSS
2. Page CSS
==========================================*/

/*-------------------------------------
  1. Common CSS
--------------------------------------*/
.content-34 {
  gap: var(--space-5xl);
  display: flex;
  width: 20%;
  flex-direction: column;
  @media only screen and (max-width: 550px) {
    width: 100%;
    flex-direction: row;
    justify-content: space-between;
  }
}

/*.content-37 {*/
/*  margin-bottom: 24px;*/
/*  gap: var(--space-5xl);*/
/*  display: flex;*/
/*  width: 20%;*/
/*  flex-direction: column;*/
/*  @media only screen and (max-width: 1050px) {*/
/*    width: 100%;*/
/*  }*/
/*}*/

.circle {
  height: 14px;
  background-color: var(--light_blue_900);
  width: 14px;
  border-radius: var(--radius-xs);
}

.divider-3 {
  height: 3px;
  background-color: var(--light_blue_900);
  flex: 1;
  @media only screen and (max-width: 550px) {
    width: 3px;

  }
}

.content-48 {
  padding-left: var(--space-lg);
  padding-right: var(--space-lg);
  gap: var(--space-2xl);
}

.flex-col-center-center .content-48 {
  @media only screen and (max-width: 550px) {
    align-items: flex-start;
    justify-content: flex-start;
    padding-bottom: 10px;
  }
  .text-18 {
    text-align: left;
  }
}

.date {
  color: var(--light_blue_900) !important;
}

.column-9 {
  gap: var(--space-9xl);
  display: flex;
  width: 32%;
  flex-direction: column;
  align-items: center;
  & .text-14.ui.text{
    color: white;
  }
  @media only screen and (max-width: 1050px) {
    width: 100%;
    padding: 0 50px;
    gap: 0;
    & .text-14.ui{
      color: white;
      padding-top: 10px;
      /*text-align: justify;*/
    }
  }
}

/*.content-42 {*/
/*  gap: var(--space-9xl);*/
/*  display: flex;*/
/*  width: 24%;*/
/*  flex-direction: column;*/
/*  align-items: center;*/
/*  @media only screen and (max-width: 1050px) {*/
/*    width: 100%;*/
/*  }*/
/*}*/

.medium-length-section-1 {
  color: var(--white_a700) !important;
  text-align: center;
  line-height: 140%;
}

.aboutusBenefitsItemTitle {
  text-align: center;
  line-height: 140%;
}

.text-14 {
  color: var(--white_a700);
  text-align: center;
  align-self: stretch;
  line-height: 150%;
}

.aboutusBenefitsText {
  text-align: center;
  align-self: stretch;
  line-height: 150%;
  @media only screen and (max-width: 550px) {
    padding-top: 10px;
  }
}

/*-------------------------------------
  2. Page CSS
--------------------------------------*/
.mainContainer {
  background: linear-gradient(180deg, #ffffff, #999999);
  width: 100%;
}

/*.group-799 {*/
/*  gap: var(--space-7xl);*/
/*  display: flex;*/
/*  flex-direction: column;*/
/*  align-items: flex-start;*/
/*  @media only screen and (max-width: 1050px) {*/
/*    padding-left: var(--space-7xl);*/
/*    padding-right: var(--space-7xl);*/
/*  }*/
/*}*/

.aboutusHistoryContent {
  /*color: var(--light_blue_900) !important;*/
  text-align: center;
  line-height: 120%;
  @media only screen and (max-width: 550px) {
    font-size: 38px;
  }
}

.timeline-progress {
  display: flex;
  @media only screen and (max-width: 550px) {
    flex-direction: column;
    gap: 10px;
  }
}

.aboutusMissionSection {
  padding-top: 112px;
  padding-bottom: 112px;
  background-image:
          linear-gradient(180deg, #405263, #7892ad);
  background-repeat: no-repeat;
  background-size: cover; /* or 'contain', depending on your needs */
  background-position: center;
  & .tagline.ui.heading {
    color: white;
  }
  @media only screen and (max-width: 550px) {
    height: auto;
    padding-top: var(--space-12xl);
    padding-bottom: var(--space-12xl);
  }
}

.heading-14 {
  color: var(--white_a700) !important;
  @media only screen and (max-width: 1050px) {
    text-align: center;
  }
}

.aboutusColabSection {
  padding-top: 112px;
  padding-bottom: 112px;
  background: linear-gradient(180deg, #7892ad, #405263);
  border-top: 3px solid var(--blue_gray_700);
  display: flex;
  flex-direction: column;
  align-items: center;
  & .tagline.ui.heading {
    color: white;
  }
  @media only screen and (max-width: 550px) {
    padding-top: var(--space-12xl);
    padding-bottom: var(--space-12xl);
  }
}

/*.group-802 {*/
/*  margin-bottom: 48px;*/
/*  gap: var(--space-16xl);*/
/*  display: flex;*/
/*  flex-direction: column;*/
/*  @media only screen and (max-width: 1050px) {*/
/*    gap: 60px;*/
/*    padding-left: var(--space-7xl);*/
/*    padding-right: var(--space-7xl);*/
/*  }*/

  @media only screen and (max-width: 550px) {
    gap: 40px;
  }


.heading-span-11 {
  color: var(--black_900);
}

.heading-span-12 {
  color: var(--white_a700);
}

.section-title-6 {
  margin-left: 272px;
  margin-right: 272px;
  gap: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  @media only screen and (max-width: 1050px) {
    margin-left: 0;
    margin-right: 0;
  }
}

.content-41 {
  gap: var(--space-10xl);
  display: flex;
  align-self: stretch;
  flex-direction: column;
  align-items: center;
}

.footer-8-2 {
  padding-top: var(--space-16xl);
  padding-bottom: var(--space-16xl);
  background-color: var(--gray_200);
  @media only screen and (max-width: 1050px) {
    padding-top: var(--space-7xl);
    padding-bottom: var(--space-7xl);
  }
}
/*=========== TABLE OF CONTENTS ===========
1. Common CSS
2. Page CSS
==========================================*/

/*-------------------------------------
  1. Common CSS
--------------------------------------*/
.inputs {
  gap: var(--space-9xl);
  display: flex;
  align-self: stretch;
  @media only screen and (max-width: 1050px) {
    flex-direction: column;
  }
}

.input-4 {
  gap: var(--space-2xl);
  width: 100%;
}

.type-default-alternate-false {
  padding-left: var(--space-3xl);
  padding-right: var(--space-3xl);
  align-self: stretch;
  height: 48px;
  border: 1px solid var(--black_900) !important;
}

.heading-32 {
  color: var(--blue_gray_900) !important;
  @media only screen and (max-width: 550px) {
    font-size: 28px;
  }
}

.column-20 {
  gap: var(--space-13xl);
  display: flex;
  width: 50%;
  flex-direction: column;
  @media only screen and (max-width: 1050px) {
    width: 100%;
  }
}

.placeholder-image-27 {
  height: 384px;
  border-width: 0;
}

.content-117 {
  padding-left: 56px;
  padding-right: 56px;
  gap: var(--space-6xl);
  display: flex;
  flex-direction: column;
  align-items: center;
  @media only screen and (max-width: 1050px) {
    padding-left: var(--space-12xl);
    padding-right: var(--space-12xl);
    gap: var(--space-2xl);

  }
}

.content-119 {
  gap: var(--space-4xl);
  display: flex;
  flex-direction: column;
  align-items: center;
}

/*-------------------------------------
  2. Page CSS
--------------------------------------*/
.group-660 {
  padding-left: 56px;
  padding-right: 56px;
  gap: var(--space-14xl);
  display: flex;
  flex-direction: column;
  align-items: center;
  @media only screen and (max-width: 1050px) {
    padding-left: var(--space-12xl);
    padding-right: var(--space-12xl);
  }
}

.confirmation-page {
  padding-left: 56px;
  padding-right: 56px;
  gap: var(--space-14xl);
  display: flex;
  flex-direction: column;
  align-items: center;
  @media only screen and (max-width: 1050px) {
    padding-left: var(--space-12xl);
    padding-right: var(--space-12xl);
  }
}

.confirmation-page-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: var(--space-5xl);

}

.confirmationIcon{

}

.content-110 {
  gap: var(--space-7xl);
  width: 64%;
  @media only screen and (max-width: 1050px) {
    width: 100%;
  }
}

.heading-35 {
  margin-top: 4px;
  @media only screen and (max-width: 550px) {
    font-size: 38px;
  }
}

.input-3 {
  gap: var(--space-lg);
  align-self: stretch;
}

.alternate-false {
  color: var(--gray_700);
  font-size: 16px;
  align-self: stretch;
  height: 180px;
  padding: var(--space-3xl);
  border: 1px solid var(--black_900) !important;
}

.style-primary-small-false {
  color: var(--blue_gray_900) !important;
  padding-left: var(--space-8xl);
  padding-right: var(--space-8xl);
  font-size: 16px;
  gap: var(--space-3xl);
  height: 48px;
  min-width: 132px;
  border: 1px solid var(--blue_gray_900) !important;
  @media only screen and (max-width: 550px) {
    padding-left: var(--space-7xl);
    padding-right: var(--space-7xl);
  }
}

.contact-20 {
  background-color: var(--gray_200);
  display: flex;
  justify-content: space-between;
  gap: var(--space-8xl);
  /*padding: var(--space-7xl) 56px var(--space-7xl) 126px;*/
  @media only screen and (max-width: 1050px) {
    flex-direction: column;
    padding-left: var(--space-12xl);
    padding-right: var(--space-12xl);
  }
}

.group-383 {
  gap: var(--space-6xl);
  display: flex;
  width: 26%;
  flex-direction: column;
  align-items: center;
  @media only screen and (max-width: 1050px) {
    width: 100%;
    gap: var(--space-2xl);

  }
}


.row-8 {
  gap: var(--space-15xl);
  display: flex;
  @media only screen and (max-width: 1050px) {
    flex-direction: column;
  }
}
.faq-1 {
  padding-top: 106px;
  padding-bottom: 106px;
  background-color: var(--gray_200);
  display: flex;
  justify-content: center;
  @media only screen and (max-width: 1050px) {
    padding-top: var(--space-14xl);
    padding-bottom: var(--space-14xl);
  }
}

.group-725 {
  margin-bottom: 4px;
  padding-left: 56px;
  padding-right: 56px;
  display: flex;
  justify-content: center;
  @media only screen and (max-width: 1050px) {
    padding-left: var(--space-12xl);
    padding-right: var(--space-12xl);
  }
}

.container-16 {
  gap: var(--space-16xl);
  display: flex;
  width: 64%;
  flex-direction: column;
  @media only screen and (max-width: 1050px) {
    width: 100%;
    gap: 60px;
  }

  @media only screen and (max-width: 550px) {
    gap: 40px;
  }
}

.group-397 {
  margin-left: 102px;
  margin-right: 102px;
  gap: var(--space-6xl);
  display: flex;
  flex-direction: column;
  align-items: center;
  @media only screen and (max-width: 1050px) {
    margin-left: 0;
    margin-right: 0;
  }
}

.accordion-list {
  gap: var(--space-9xl);
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid var(--black_900);
}

.group-719 {
  flex: 1;
}

.question {
  padding-top: var(--space-7xl);
  padding-bottom: var(--space-7xl);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-7xl);
  position: relative;
  cursor: pointer;
  border-top: 1px solid var(--black_900);
  &::before {
    content: "";
    position: absolute;
    inset: 0;
    left: auto;
    top: 50%;
    transform: translate(-50%, -50%);
    aspect-ratio: 1;
    background-image: url(/assets/img_arrow_down-0ed75952b08a41a9bbde116072819d08062c2467b6d058feb2c2eb7e340d0ebb.svg);
    background-repeat: no-repeat;
    background-size: 32px;
    background-position: center;
  }

}

details[open] .question::before {
  background-image: url(/assets/img_arrow_down-0ed75952b08a41a9bbde116072819d08062c2467b6d058feb2c2eb7e340d0ebb.svg);
  background-repeat: no-repeat;
  background-size: 32px;
  background-position: center;
}

.content-124 {
  margin-left: 102px;
  margin-right: 102px;
  gap: var(--space-9xl);
  display: flex;
  flex-direction: column;
  align-items: center;
  @media only screen and (max-width: 1050px) {
    margin-left: 0;
    margin-right: 0;
  }
}

.button-33 {
  color: var(--blue_gray_900) !important;
  padding-left: var(--space-9xl);
  padding-right: var(--space-9xl);
  font-size: 16px;
  font-weight: 500;
  gap: var(--space-3xl);
  height: 48px;
  min-width: 140px;
  border: 1px solid var(--blue_gray_900) !important;
  @media only screen and (max-width: 550px) {
    padding-left: var(--space-7xl);
    padding-right: var(--space-7xl);
  }
}
/*=========== TABLE OF CONTENTS ===========
1. Common CSS
2. Page CSS
==========================================*/

/*-------------------------------------
  1. Common CSS
--------------------------------------*/
.column-1 {
  gap: var(--space-13xl);
  display: flex;
  width: 32%;
  flex-direction: column;
  @media only screen and (max-width: 1050px) {
    width: 100%;
  }
}

.heroProductImageWrapper {
  position: relative;
  display: inline-block;
  width: 100%;
  height: 240px;
  border-radius: 5px;
  overflow: visible; /* ✅ Let the box-shadow appear outside */
}

.heroProductsImages {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 5px;
  display: block;
  position: relative;
  z-index: 0;
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.3);

}

.heroProductImageWrapper::after {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-color: #5D748A;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  border-radius: 5px;
  pointer-events: none;
  z-index: 3;
}

.heroProductImageWrapper:hover::after {
  opacity: 0.4;
}



.genericIcons {
  height: 100%;
  width: 100%;
  /*filter: drop-shadow(2px 2px 2px rgba(0, 0, 0, 0.4));*/

}

/*-------------------------------------
  2. Page CSS
--------------------------------------*/
.header-5 {
  height: 900px;
  padding-top: 200px;
  padding-bottom: 200px;
  background-image: linear-gradient(180deg, rgba(64, 82, 99, 0.85), rgba(120, 146, 173, 0.85)),
                    url(/assets/defaultBackgroundPicture-96ba0cc5b5ba78925c47ae321470c2bb3a549585a9fb96d27460513de4cf8c8a.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center; /* Centers the image */
  @media only screen and (max-width: 1050px) {
    height: auto;
    padding-top: var(--space-14xl);
    padding-bottom: var(--space-14xl);
  }
}

.group-783 {
  gap: var(--space-13xl);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  @media only screen and (max-width: 1050px) {
    padding-left: var(--space-12xl);
    padding-right: var(--space-12xl);
    /*align-items: center;*/
  }
}

.heroContent {
  gap: var(--space-9xl);
  display: flex;
  flex-direction: column;
  align-self: flex-start;
  width: 100%;
  max-width: 665px;
  /*margin: 0 auto ;*/

  /*background-color:hsla(210,24%,57%,1);*/
  /*background-image:*/
  /*        radial-gradient(at 78% 82%, hsla(168,54%,49%,1) 0px, transparent 50%),*/
  /*        radial-gradient(at 92% 11%, hsla(210,100%,20%,0.52) 0px, transparent 50%),*/
  /*        radial-gradient(at 11% 50%, hsla(203,51%,65%,1) 0px, transparent 50%);*/
  /*padding: 30px;*/
  /*!*border-radius: 10px;*!*/
  /*box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);*/

}

.medium-length-hero {
  color: var(--white_a700);
  line-height: 120%;

  @media only screen and (max-width: 1050px) {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  @media only screen and (max-width: 550px) {
    font-size: 42px;
  }
}

.medium-length-hero h1.highlightBlue {
  color: var(--indigo_900);
  background: linear-gradient(45deg,#d9e0e8,#E8FCC2,#d9e0e8);
  background-size: 250% 250%;
  animation: gradient-animation 12s ease infinite;
  border-radius: 5px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  padding: 0 12px;
  font-size: 68px;
  font-weight: 700;
  @media only screen and (max-width: 550px) {
    font-size: 62px;
    font-weight: 750;
    padding: 2px 8px;
    line-height: 110%;


  }
}

@keyframes gradient-animation {
  0% {
    background-position: 0 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0 50%;
  }
}
.heroSubtitleLight {
  color: var(--white_a700) !important;
  line-height: 150%;
  text-align: justify;
  @media only screen and (max-width: 1050px) {
    width: 100%;
  }
}

.button-1 {
  color: var(--white_a700) !important;
  padding-left: var(--space-9xl);
  padding-right: var(--space-9xl);
  font-size: 16px;
  font-weight: 500;
  gap: var(--space-3xl);
  background-color: var(--indigo_900) !important;
  height: 48px;
  min-width: 140px;
  max-width: 150px;
  border: 1px solid var(--indigo_900);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;


  @media only screen and (max-width: 550px) {
    padding-left: var(--space-7xl);
    padding-right: var(--space-7xl);
  }
}

.button-1:hover {
  background-color: #002952 !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}


.icon-relume {
  /*height: 80px;*/
  width: 6%;
  object-fit: contain;
}

.section-title {
  gap: var(--space-5xl);
  display: flex;
  width: 64%;
  flex-direction: column;
  align-items: center;
  @media only screen and (max-width: 1050px) {
    width: 100%;
  }
}

.heading-2 {
  color: var(--black_900) !important;
  text-align: center;
  line-height: 120%;
  @media only screen and (max-width: 550px) {
    font-size: 38px;
  }
}

.content-2 {
  margin-left: 272px;
  margin-right: 272px;
  gap: var(--space-9xl);
  display: flex;
  flex-direction: column;
  align-items: center;
  @media only screen and (max-width: 1050px) {
    margin-left: 0;
    margin-right: 0;
  }
}

.heading-1 {
  color: var(--white_a700) !important;
  text-align: center;
  line-height: 120%;
  @media only screen and (max-width: 550px) {
    font-size: 38px;
  }
}

.column-2 {
  margin-bottom: 24px;
  gap: var(--space-13xl);
  display: flex;
  width: 32%;
  flex-direction: column;
  @media only screen and (max-width: 1050px) {
    width: 100%;
    margin-bottom: 0;
  }
}

.layout-237 {
  padding-top: 112px;
  padding-bottom: 112px;
  background: linear-gradient(180deg, #7892ad, #405263);
  border-top: 3px solid var(--blue_gray_700);
  & .tagline.ui.heading {
    color: white;
  }
  @media only screen and (max-width: 1050px) {
    padding-top: var(--space-12xl);
    padding-bottom: var(--space-12xl);
  }
}

.recommendedProducts {
  gap: var(--space-16xl);
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  @media only screen and (max-width: 1050px) {
    gap: 60px;
    padding-left: var(--space-12xl);
    padding-right: var(--space-12xl);
  }

  @media only screen and (max-width: 550px) {
    gap: 40px;
  }
}

.recommendedProductsSlider {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  height: fit-content;
}

.slider {
  max-width: 100%;
  gap: 48px;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  @media only screen and (max-width: 1050px) {
    flex-direction: column;
    margin-left: 0;
    margin-right: 0;
  }
}

.header {
  margin-right: 16px;
  gap: var(--space-sm);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  @media only screen and (max-width: 1050px) {
    margin-right: 0;
  }
}

.recommendedProductsSliderPagination {
  margin-top: 40px;
  margin-bottom: 0;
  display: flex;
  align-items: center;
  @media only screen and (max-width: 550px) {
    flex-direction: column;
    gap: 20px;
  }
}

.slider-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99;
  & > .swiper-pagination-bullet {
    height: 8px;
    background-color: var(--blue_gray_100);
    width: 8px;
    cursor: pointer;
    display: inline-block;
    border-radius: 50%;
    margin-right: 8px;
  }

  & > .swiper-pagination-bullet-active {
    height: 8px;
    background-color: var(--black_900);
    width: 8px;
    cursor: pointer;
    display: inline-block;
    border-radius: 50%;
    margin-right: 8px;
  }
}

.slider-buttons {
  gap: var(--space-4xl);
  flex: 1;
  display: flex;
  justify-content: flex-end;
}
/*=========== TABLE OF CONTENTS ===========
1. Common CSS
2. Page CSS
==========================================*/

/*-------------------------------------
  1. Common CSS
--------------------------------------*/
.view-all {
  color: var(--black_900);
  font-size: 16px;
  font-weight: 400;
  padding: var(--space-2xl) var(--space-5xl);
}

.card-1 {
  gap: var(--space-10xl);
  display: flex;
  width: 50%;
  flex-direction: column;
  @media only screen and (max-width: 1050px) {
    width: 100%;
  }
}

.placeholder-image-7 {
  height: 300px;
  object-fit: cover;
}

.info {
  gap: var(--space-5xl);
  display: flex;
  align-items: center;
}

.tag {
  color: var(--black_900) !important;
  padding-left: var(--space-md);
  padding-right: var(--space-md);
  font-size: 14px;
  font-weight: 600;
  background-color: var(--gray_200_01) !important;
  height: 28px;
  min-width: 72px;
}

.button-6 {
  display: inline-flex;
  align-self: flex-start;
  align-content: center;
  justify-self: flex-start;
  align-items: center;
  gap: var(--space-xl);
}

/*-------------------------------------
  2. Page CSS
--------------------------------------*/
.articlesSection {
  padding-top: 112px;
  padding-bottom: 112px;
  gap: var(--space-16xl);
  background-color: var(--gray_200);
  display: flex;
  flex-direction: column;
  @media only screen and (max-width: 1050px) {
    gap: 60px;
    padding-top: var(--space-12xl);
    padding-bottom: var(--space-12xl);
  }
  @media only screen and (max-width: 550px) {
    gap: 40px;
  }
}

.content-23 {
  gap: var(--space-5xl);
}

.card {
  gap: var(--space-14xl);
  display: flex;
  align-items: center;
  justify-content: space-between;
  @media only screen and (max-width: 1050px) {
    flex-direction: column;
    gap: var(--space-10xl);

  }
}

.placeholder-image-6 {
  height: 500px;
  width: 48%;
  object-fit: cover;
  @media only screen and (max-width: 1050px) {
    width: 100%;
    object-fit: cover;
  }
}

.group-396 {
  gap: var(--space-9xl);
  display: flex;
  width: 48%;
  flex-direction: column;
  @media only screen and (max-width: 1050px) {
    width: 100%;
    gap: var(--space-2xl);
  }
}

.group-416 {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.group-676 {
  gap: var(--space-15xl);
  display: flex;
  flex-direction: column;
  @media only screen and (max-width: 1050px) {
    padding-left: var(--space-7xl);
    padding-right: var(--space-7xl);
  }

  @media only screen and (max-width: 550px) {
    gap: var(--space-13xl);
  }
}

.group-377 {
  gap: 1px;
  display: flex;
  flex-wrap: wrap;
  .active {
    color: var(--black_900) !important;
    border: 1px solid var(--black_900);
  }
}
/*=========== TABLE OF CONTENTS ===========
1. Common CSS
2. Page CSS
==========================================*/

/*-------------------------------------
  1. Common CSS
--------------------------------------*/
.indArticlePar {
  margin-bottom: 16px;
  line-height: 150%;
  /*text-indent: 2em;*/
}

.icon-link-alt {
  height: 32px;
  padding-left: var(--space-sm);
  padding-right: var(--space-sm);
  background-color: var(--gray_200_01) !important;
  width: 50px;
  border-radius: 16px !important;
}

.tag-link {
  background-color: var(--gray_200_01);
  justify-content: center;
  display: flex;
  align-items: center;
}

/*-------------------------------------
  2. Page CSS
--------------------------------------*/
.group-770 {
  padding-left: 56px;
  padding-right: 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
  @media only screen and (max-width: 1050px) {
    padding-left: var(--space-12xl);
    padding-right: var(--space-12xl);
  }
}

.frame-62 {
  /*gap: var(--space-15xl);*/
  display: flex;
  width: 64%;
  flex-direction: column;
  @media only screen and (max-width: 1050px) {
    width: 100%;
  }

  @media only screen and (max-width: 550px) {
    gap: var(--space-13xl);
  }
}

.content-98 {
  /*gap: 40px;*/
  display: flex;
  flex-direction: column;
}

.content-103 {
  display: flex;
  align-items: center;
  @media only screen and (max-width: 1050px) {
    flex-direction: column;
  }
}

.breadcrumbs {
  gap: var(--space-lg);
  display: flex;
  width: 100%;
  align-items: center;
}

.share-buttons {
  gap: var(--space-lg);
  width: 100%;
  display: flex;
  justify-content: flex-end;
}

.content-104 {
  padding-top: var(--space-7xl);
  padding-bottom: var(--space-7xl);
  display: flex;
}

.introduction {
  margin-top: 8px;
  @media only screen and (max-width: 550px) {
    font-size: 36px;
  }
}

.group-424 {
  margin-top: 30px;
  gap: var(--space-5xl);
  display: flex;
  flex-direction: column;
}

.placeholder-image-25 {
  height: 400px;
  object-fit: cover;
}

.rectangle-3 {
  height: 20px;
  background-color: var(--black_900);
  width: 2px;
}

.content-105 {
  margin-top: 40px;
  padding-top: var(--space-5xl);
  padding-bottom: var(--space-5xl);
}

.dolor-enim-eu-tortor {
  align-self: flex-end;
  line-height: 140%;
}

.content-106 {
  padding-top: 36px;
  padding-bottom: 36px;
  @media only screen and (max-width: 550px) {
    padding-top: var(--space-7xl);
    padding-bottom: var(--space-7xl);
  }
}

.figure {
  gap: var(--space-7xl);
  display: flex;
  justify-content: center;
  @media only screen and (max-width: 1050px) {
    flex-direction: row;
    justify-content: center;

  }
}

.divider-19 {
  height: 84px;
  background-color: var(--black_900);
  width: 2px;
  @media only screen and (max-width: 1050px) {
    height: auto;
  }
}

.ipsum-sit-mattis {
  font-family: Montserrat, serif !important;
  width: 96%;
  line-height: 28px;
  font-style: italic;
  @media only screen and (max-width: 1050px) {
    width: 100%;
  }
}

.content-107 {
  padding-top: var(--space-8xl);
  padding-bottom: var(--space-8xl);
  display: flex;
  @media only screen and (max-width: 550px) {
    padding-top: var(--space-7xl);
    padding-bottom: var(--space-7xl);
  }
}

.content-99 {
  gap: var(--space-14xl);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 30px;
}

.social {
  gap: var(--space-6xl);
  width: 24%;
  @media only screen and (max-width: 1050px) {
    width: 100%;
  }
}

.share-buttons-1 {
  margin-left: 14px;
  margin-right: 14px;
  gap: var(--space-lg);
  display: flex;
  align-self: stretch;
  justify-content: center;
  @media only screen and (max-width: 1050px) {
    margin-left: 0;
    margin-right: 0;
  }
}

.tags {
  /*margin-left: 0;*/
  /*margin-right: 0;*/
  gap: var(--space-4xl);
  display: flex;
  align-self: center;
  justify-content: center;
  text-align: center;
  @media only screen and (max-width: 1050px) {
    flex-direction: column;
    margin-left: 0;
    margin-right: 0;
  }
}

.articleTag {
  background-color: var(--gray_200);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-xl);
  .tagText {
    text-align: center;
  }
  @media only screen and (max-width: 1050px) {
    justify-content: flex-start;
  }
}

.tag-5 {
  padding: var(--space-md);
}

.tag-6 {
  padding: var(--space-md) var(--space-lg);
}

.tag-4 {
  background-color: var(--gray_200_01);
  flex: 1;
  display: flex;
  justify-content: center;
  padding: var(--space-sm);
  @media only screen and (max-width: 1050px) {
    align-self: stretch;
  }
}

.group-420 {
  gap: var(--space-14xl);
  display: flex;
  align-self: stretch;
  flex-direction: column;
  align-items: center;
}

.divider-18 {
  height: 1px;
  background-color: var(--black_900);
  align-self: stretch;
  width: 100%;
}

.avatar {
  gap: var(--space-5xl);
  display: flex;
  width: 18%;
  flex-direction: column;
  align-items: center;
  @media only screen and (max-width: 1050px) {
    width: 100%;
  }
}

.directorImage {
  height: 48px;
  object-fit: cover;
  border-radius: 50%;  /* makes it a circle */
}

.content-108 {
  gap: var(--space-xs);
  align-self: stretch;
}
/*=========== TABLE OF CONTENTS ===========
1. Common CSS
2. Page CSS
==========================================*/

/*-------------------------------------
  1. Common CSS
--------------------------------------*/
.shipping {
  margin-left: 24px;
}

/*-------------------------------------
  2. Page CSS
--------------------------------------*/
.headerSection {
  height: 225px;
  background-image: linear-gradient(180deg, rgba(64, 82, 99, 0.85), rgba(120, 146, 173, 0.85)),
                    url(/assets/defaultBackgroundPicture-96ba0cc5b5ba78925c47ae321470c2bb3a549585a9fb96d27460513de4cf8c8a.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  & .tagline.ui.text{
    color: white;
  }

  @media only screen and (max-width: 1050px) {
    height: auto;
    padding-top: var(--space-12xl);
    padding-bottom: var(--space-12xl);
  }
}

/*.group-737 {*/
/*  margin-bottom: 28px;*/
/*  display: flex;*/
/*  justify-content: center;*/
/*  @media only screen and (max-width: 1050px) {*/
/*    padding-left: var(--space-7xl);*/
/*    padding-right: var(--space-7xl);*/
/*  }*/
/*}*/

.content-87 {
  gap: var(--space-2xl);
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: flex-start;
}

.product-header {
  padding-top: 112px;
  padding-bottom: 112px;
  background-color: var(--gray_200);
  display: flex;
  justify-content: center;
  @media only screen and (max-width: 1050px) {
    padding-top: var(--space-12xl);
    padding-bottom: var(--space-12xl);
  }
}

.group-738 {
  margin-bottom: 48px;
  display: flex;
  justify-content: center;
  align-items: stretch;
  @media only screen and (max-width: 1050px) {
    flex-direction: column;
    padding-left: var(--space-12xl);
    padding-right: var(--space-12xl);
    margin-bottom: 0;

  }
}

.group-458 {
  align-self: center;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.productShowImage {
  height: 700px;
  width: 94%;
  object-fit: cover;
  object-position: right;
  @media only screen and (max-width: 550px) {
    width: 100%;
    height: 470px;
  }
}

.group-471 {
  gap: var(--space-12xl);
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
}

.product-description {
  gap: var(--space-4xl);
  width: 94%;
  @media only screen and (max-width: 1050px) {
    width: 100%;
  }
}

.secondaryNavContainer {
  gap: var(--space-lg);
  display: flex;
  align-self: stretch;
  flex-wrap: wrap;

}

.breadcrumbMobile {
  display: none;
}

@media only screen and (max-width: 550px) {
  .breadcrumbMobile {
    display: block;
    padding-bottom: 10px;
  }
  .breadcrumbDesktop {
    display: none;
  }
}

.product-review {
  gap: var(--space-lg);
  align-self: stretch;
  display: flex;
  align-items: center;
}

.stars {
  display: flex;
  gap: var(--space-2xl);
  --rating-font-size: 14;
  --rating-active-color: #000000;
  --rating-inactive-color: #000000;
}

.select {
  color: var(--black_900) !important;
  font-size: 16px;
  gap: var(--space-5xl);
  align-self: stretch;
  background-image: url(/assets/img_arrowdown-7b52e31bd735b51471060315249bdc127565d24fd4802d5b411604297ef7b9b9.svg);
  background-repeat: no-repeat;
  background-size: 24px;
  background-position: calc(100% - 12px);
  padding: var(--space-3xl);
  border: 1px solid var(--black_900) !important;
}

.group-382 {
  gap: 17px;
  align-self: stretch;
  display: flex;
  @media only screen and (max-width: 550px) {
    flex-direction: column;
    padding-bottom: var(--space-12xl);
  }
}

.row-7 {
  gap: var(--space-5xl);
  display: flex;
}

.checkbox-3-1 {
  color: var(--white_a700) !important;
  padding-left: var(--space-5xl);
  padding-right: var(--space-5xl);
  font-size: 16px;
  background-color: var(--black_900) !important;
  height: 40px;
  min-width: 126px;
  border: 1px solid var(--black_900);
}

.checkbox-3-2 {
  color: var(--black_900) !important;
  padding-left: var(--space-5xl);
  padding-right: var(--space-5xl);
  font-size: 16px;
  height: 40px;
  min-width: 122px;
  border: 1px solid var(--black_900) !important;
}

.checkbox-3 {
  color: var(--black_900) !important;
  padding-left: var(--space-5xl);
  padding-right: var(--space-5xl);
  font-size: 16px;
  opacity: 0.25;
  height: 40px;
  min-width: 122px;
  border: 1px solid var(--black_900_71) !important;
}

.form-submit {
  color: var(--white_a700) !important;
  padding-left: 34px;
  padding-right: 34px;
  font-size: 16px;
  font-weight: 500;
  gap: var(--space-3xl);
  background-color: var(--indigo_900) !important;
  align-self: stretch;
  height: 56px;
  border: 1px solid var(--indigo_900);
  @media only screen and (max-width: 550px) {
    padding-left: var(--space-7xl);
    padding-right: var(--space-7xl);
  }
}

.tabs-menu {
  gap: var(--space-2xl);
  display: flex;
  width: 94%;
  flex-direction: column;
  padding-bottom: 15px;
  height: 120px;
  @media only screen and (max-width: 550px) {
    width: 100%;
    padding-bottom: 0;
    height: auto;
  }
}

.tabs {
  display: flex;
  flex-direction: row;
  gap: 20px;
  justify-content: flex-start;
}

.tab {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 7px;
}

.divider-16 {
  height: 1px;
  width: 100%;
  object-fit: cover;
}

.content-88 {
  height: 684px;
  align-self: stretch;
  position: relative;
}

.group-735 {
  width: 100%;
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  margin-left: auto;
  margin-right: auto;
}

.slider1 {
  max-width: 100%;
  margin-right: 16px;
  display: flex;
  @media only screen and (max-width: 1050px) {
    margin-right: 0;
  }
}

.group-472 {
  gap: var(--space-14xl);
  display: flex !important;
  @media only screen and (max-width: 1050px) {
    flex-direction: column;
  }
}

.header-4 {
  gap: var(--space-sm);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.header-3 {
  margin-right: 16px;
  gap: var(--space-xs);
  @media only screen and (max-width: 1050px) {
    margin-right: 0;
  }
}

.slider1-pagination {
  margin-top: -8px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99;
  & > .swiper-pagination-bullet {
    height: 8px;
    background-color: var(--blue_gray_100);
    width: 8px;
    cursor: pointer;
    display: inline-block;
    border-radius: 50%;
    margin-right: 8px;
  }

  & > .swiper-pagination-bullet-active {
    height: 8px;
    background-color: var(--black_900);
    width: 8px;
    cursor: pointer;
    display: inline-block;
    border-radius: 50%;
    margin-right: 8px;
  }
}

.slider-buttons-1 {
  gap: var(--space-4xl);
  flex: 1;
  display: flex;
  justify-content: flex-end;
  position: absolute;
  bottom: 13%;
  right: 0;
  left: 0;
  margin-left: auto;
  margin-right: auto;
}

.product-title-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 4px; /* optional spacing between name and dimensions */
}

.product-name,
.product-dimensions {
  white-space: nowrap;
}
/*=========== TABLE OF CONTENTS ===========
1. Common CSS
2. Page CSS
==========================================*/

/*-------------------------------------
  1. Common CSS
--------------------------------------*/
.card-3 {
  background-color: var(--white_a700);
  width: 24%;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--black_900);
  @media only screen and (max-width: 1050px) {
    width: 100%;

  }
}

.placeholder-image-9 {
  height: 170px;
  object-fit: cover;
  object-position: center;
}

.content-67 {
  gap: var(--space-9xl);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: var(--space-9xl);
  @media only screen and (max-width: 550px) {
    padding: var(--space-7xl);
  }
}

.content-top {
  gap: var(--space-lg);
  display: flex;
  flex-direction: column;
}

.content-74 {
  gap: var(--space-lg);
}

/*.heading-25 {*/
/*  margin-top: 4px;*/
/*}*/

.card-6 {
  /*height: 326px;*/
  gap: var(--space-9xl);
  display: flex;
  background: linear-gradient(180deg, #405263, #7892ad), url(/assets/defaultNoData-9238f41f6a223c1f0e9db711f31c56a4d15f81305fafcb6931c9b9b80cf17f83.svg);
  background-size: cover;
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.3);

  /*background-image: linear-gradient(180deg, rgba(64, 82, 99, 0.85), rgba(120, 146, 173, 0.85)), !* Gradient *!*/
  /*url(/assets/defaultBackgroundPicture-96ba0cc5b5ba78925c47ae321470c2bb3a549585a9fb96d27460513de4cf8c8a.webp); !* Image *!*/
  /*background-size: cover;*/
  /*background-repeat: no-repeat;*/
  /*background-position: center; !* Centers the image *!*/

  width: 32%;
  flex-direction: column;
  align-items: center;
  padding: var(--space-13xl);
  @media only screen and (max-width: 1050px) {
    width: 100%;
    height: auto;
  }

  @media only screen and (max-width: 550px) {
    padding: var(--space-7xl);
  }
}

.heading-span-17 {
  color: var(--blue_gray_900_02);
}

/*-------------------------------------
  2. Page CSS
--------------------------------------*/

/*.group-690 {*/
/*  !*margin-bottom: 22px;*!*/
/*  gap: var(--space-9xl);*/
/*  display: flex;*/
/*  flex-direction: column;*/
/*  align-items: flex-start;*/
/*  @media only screen and (max-width: 1050px) {*/
/*    padding-left: var(--space-7xl);*/
/*    padding-right: var(--space-7xl);*/
/*  }*/
/*}*/

.content-63 {
  margin-left: 272px;
  margin-right: 272px;
  gap: var(--space-10xl);
  display: flex;
  flex-direction: column;
  align-items: center;
  @media only screen and (max-width: 1050px) {
    margin-left: 0;
    margin-right: 0;
    /*gap: var(--space-7xl);*/

  }
}
/*=========== TABLE OF CONTENTS ===========
1. Common CSS
2. Page CSS
==========================================*/

/*-------------------------------------
  1. Common CSS
--------------------------------------*/
.productImage {
  height: 364px;
  object-fit: cover;
  object-position: right ;
  @media only screen and (max-width: 550px) {
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2); /* Example shadow */
    height: 470px;

  }
}

/*-------------------------------------
  2. Page CSS
--------------------------------------*/
.group-455 {
  gap: var(--space-16xl);
  display: flex;
  align-self: stretch;
  flex-direction: column;
  align-items: center;
  @media only screen and (max-width: 1050px) {
    gap: 60px;
  }

  @media only screen and (max-width: 550px) {
    gap: 40px;
  }
}

.content-82 {
  padding-left: 56px;
  padding-right: 56px;
  gap: var(--space-12xl);
  display: flex;
  align-self: stretch;
  flex-direction: column;
  align-items: center;
  @media only screen and (max-width: 1050px) {
    padding: 0;
    gap: var(--space-5xl);

  }
}

.row-6 {
  /*margin-left: auto;*/
  /*margin-right: auto;*/
  align-self: stretch;
  display: flex;
  align-items: center;
  max-width: 1280px;
  width: 100%;
  @media only screen and (max-width: 1050px) {
    flex-direction: column;
    padding-left: var(--space-7xl);
    padding-right: var(--space-7xl);
  }
}

.search-wrapper {
  gap: var(--space-9xl);
  width: 100%;
  display: flex;
  justify-content: space-between;

  @media only screen and (max-width: 1050px) {
    align-self: stretch;
  }

  @media only screen and (max-width: 550px) {
    flex-direction: column;
  }
}

.text-input-5 {
  color: var(--gray_700);
  padding-left: var(--space-3xl);
  padding-right: var(--space-3xl);
  font-size: 16px;
  gap: var(--space-3xl);
  border-color: var(--black_900);
  border-width: 1px;
  background-color: var(--white_a700) !important;
  width: 34%;
  height: 48px;
  @media only screen and (max-width: 550px) {
    width: 100%;
  }
}

.button-24 {
  color: var(--blue_gray_900) !important;
  padding-left: var(--space-9xl);
  padding-right: var(--space-9xl);
  font-size: 16px;
  font-weight: 500;
  gap: var(--space-3xl);
  height: 48px;
  min-width: 120px;
  border: 1px solid var(--black_900) !important;
  @media only screen and (max-width: 550px) {
    padding-left: var(--space-7xl);
    padding-right: var(--space-7xl);
  }
}

.button-22 {
  color: var(--black_900) !important;
  padding-left: var(--space-3xl);
  padding-right: var(--space-sm);
  font-size: 16px;
  gap: var(--space-lg);
  width: 8%;
  background-image: url(/assets/img_arrowdown-7b52e31bd735b51471060315249bdc127565d24fd4802d5b411604297ef7b9b9.svg);
  background-repeat: no-repeat;
  background-size: 24px;
  background-position: calc(100% - 4px);
  @media only screen and (max-width: 1050px) {
    width: 100%;
  }
}

.content-79 {
  padding-top: 70px;
  align-self: stretch;
  display: grid;
  gap: var(--space-13xl);
  grid-template-columns: repeat(4, minmax(0, 1fr));
  justify-content: center;
  @media only screen and (max-width: 1050px) {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  @media only screen and (max-width: 550px) {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    padding-top: 0;
    /*align-items: center;*/
    /*justify-content: center;*/
  }
}

.button-21 {
  color: var(--blue_gray_900) !important;
  padding-left: var(--space-9xl);
  padding-right: var(--space-9xl);
  font-size: 16px;
  font-weight: 500;
  gap: var(--space-3xl);
  height: 48px;
  min-width: 156px;
  border: 1px solid var(--white_a700) !important;
  @media only screen and (max-width: 550px) {
    padding-left: var(--space-7xl);
    padding-right: var(--space-7xl);
  }
}
/*=========== TABLE OF CONTENTS ===========
1. Selectbox CSS
2. Button CSS
3. Textarea CSS
4. Input CSS
5. Text CSS
6. Heading CSS
7. Container CSS
==========================================*/

/*-------------------------------------
  1. Selectbox CSS
--------------------------------------*/
.ui.selectbox.square {
  border-radius: 0;
}

.ui.selectbox.size-md {
  height: 48px;
  padding-left: var(--space-3xl);
  padding-right: var(--space-3xl);
  font-size: 16px;
}

.ui.selectbox.size-sm {
  height: 24px;
  padding-left: var(--space-3xl);
  padding-right: var(--space-sm);
  font-size: 16px;
}

.ui.selectbox.outline.black_900 {
  color: var(--black_900);
  border: 1px solid var(--black_900);
}

.ui.selectbox {
  display: flex;
}

/*-------------------------------------
  2. Button CSS
--------------------------------------*/
.ui.button.circle {
  border-radius: 50%;
}

.ui.button.square {
  border-radius: 0;
}

.ui.button.size-2xl {
  height: 56px;
  padding-left: 34px;
  padding-right: 34px;
  font-size: 16px;
}

.ui.button.size-xs {
  height: 28px;
  padding-left: var(--space-md);
  padding-right: var(--space-md);
  font-size: 14px;
}

.ui.button.size-lg {
  height: 48px;
  padding-left: var(--space-5xl);
  padding-right: var(--space-5xl);
}

.ui.button.size-sm {
  height: 32px;
  padding-left: var(--space-sm);
  padding-right: var(--space-sm);
}

.ui.button.size-md {
  height: 40px;
  padding-left: var(--space-5xl);
  padding-right: var(--space-5xl);
  font-size: 16px;
}

.ui.button.size-xl {
  height: 48px;
  padding-left: var(--space-9xl);
  padding-right: var(--space-9xl);
  font-size: 16px;
}

.ui.button.outline.black_900_71 {
  color: var(--black_900);
  border: 1px solid var(--black_900_71);
}

.ui.button.fill.black_900 {
  background-color: var(--black_900);
  color: var(--white_a700);
}

.ui.button.outline.black_900 {
  color: var(--black_900);
  border: 1px solid var(--black_900);
}

.ui.button.outline.blue_gray_900 {
  color: var(--blue_gray_900);
  border: 1px solid var(--blue_gray_900);
}

.ui.button.fill.gray_200_01 {
  background-color: var(--gray_200_01);
  color: var(--black_900);
}

.ui.button.fill.indigo_900 {
  background-color: var(--indigo_900);
  color: var(--white_a700);
}

.ui.button {
  text-align: center;
  display: flex;
  cursor: pointer;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}

/*-------------------------------------
  3. Textarea CSS
--------------------------------------*/
.ui.textarea.square {
  border-radius: 0;
}

.ui.textarea.size-xs {
  height: 180px;
  font-size: 16px;
  padding: var(--space-3xl);
}

.ui.textarea.taroutlineblack900.black_900 {
  border: 1px solid var(--black_900) !important;
}

/*-------------------------------------
  4. Input CSS
--------------------------------------*/
.ui.input.square {
  border-radius: 0;
}

.ui.input.size-sm {
  height: 48px;
  padding-left: var(--space-3xl);
  padding-right: var(--space-3xl);
}

.ui.input.size-xs {
  height: 48px;
  padding-left: var(--space-3xl);
  padding-right: var(--space-3xl);
  font-size: 16px;
  /*color: var(--white_a700);*/
}

.ui.input.fill.white_a700 {
  background-color: var(--white_a700);
}

.ui.input.outline.black_900 {
  border: 1px solid var(--black_900);
}

.ui.input.outline.white_a700 {
  color: var(--gray_500);
  border: 1px solid var(--white_a700);
}

.ui.input {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: text;
  border-style: solid;
}

/*-------------------------------------
  5. Text CSS
--------------------------------------*/
.ui.text.size-text_medium_normal {
  font-size: 18px;
  font-weight: 300;
  font-style: normal;
  @media only screen and (max-width: 550px) {
    font-size: 15px;
  }
}

.ui.text.size-text_regular_normal {
  font-size: 16px;
  font-weight: 300;
  @media only screen and (max-width: 550px) {
    font-size: 13px;
  }
}

.ui.text.size-text_small_normal {
  font-size: 14px;
  font-weight: 400;
}

.recommendedProductCard .ui.text.size-text_small_normal {
  color: var(--black_900);
}

.ui.text.size-text_small_link {
  font-size: 14px;
  font-weight: 400;
  text-decoration: underline;
}

.ui.text.size-text_regular_link {
  font-size: 16px;
  font-weight: 400;
  text-decoration: underline;
  @media only screen and (max-width: 550px) {
    font-size: 13px;
  }
}

.ui.text.size-textxs {
  font-size: 20px;
  font-weight: 400;
  @media only screen and (max-width: 550px) {
    font-size: 17px;
  }
}

.ui.text {
  color: var(--black_900);
  font-family: Montserrat, serif;
}

/*CTA styling*/

#CTAtextInput, input[type="text"]::placeholder {
  color:  var(--white_new1);
  font-family: Montserrat, serif;
  line-height: 150%;
  /*opacity: 1;  !* Ensures visibility (Some browsers default to opacity < 1) *!*/
}

/*-------------------------------------
  6. Heading CSS
--------------------------------------*/
.ui.heading.size-text_regular_bold {
  font-size: 16px;
  font-weight: 600;
  @media only screen and (max-width: 550px) {
    font-size: 13px;
  }
}

.heroHeadingCustom {
  font-family: Montserrat, serif;
  font-size: 62px;
  font-weight: 600;
  width: fit-content;
  @media only screen and (max-width: 1050px) {
    font-size: 56px;
    line-height: 110%;
  }


  @media only screen and (max-width: 550px) {
    font-size: 56px;
  }
}

.ui.heading.size-heading_desktop_h1 {
  font-family: Montserrat, serif;
  font-size: 56px;
  font-weight: 600;
  @media only screen and (max-width: 1050px) {
    font-size: 48px;
  }

  @media only screen and (max-width: 550px) {
    font-size: 47px;
  }
}

.ui.heading.size-heading_desktop_tagline {
  font-size: 16px;
  font-weight: 400;
  font-family: Montserrat, serif;
  font-stretch: ultra-expanded;
  font-variation-settings: "wdth" 124;
  @media only screen and (max-width: 550px) {
    font-size: 13px;
  }
}

.ui.heading.size-heading_desktop_h2 {
  font-size: 48px;
  font-weight: 600;
  @media only screen and (max-width: 1050px) {
    font-size: 44px;
  }

  @media only screen and (max-width: 550px) {
    font-size: 40px;
  }
}

.ui.heading.size-heading_desktop_h4 {
  font-size: 32px;
  font-weight: 600;
  @media only screen and (max-width: 1050px) {
    font-size: 30px;
  }

  @media only screen and (max-width: 550px) {
    font-size: 27px;
  }
}

.ui.heading.size-text_medium_semi_bold {
  font-size: 18px;
  font-weight: 600;
  @media only screen and (max-width: 550px) {
    font-size: 18px;
  }
}

.ui.heading.size-text_small_semi_bold {
  font-size: 14px;
  font-weight: 600;
}

.ui.heading.size-text_regular_medium {
  font-size: 16px;
  font-weight: 500;
  @media only screen and (max-width: 550px) {
    font-size: 13px;
  }
}

.ui.heading.size-heading_desktop_h5 {
  font-size: 24px;
  font-weight: 600;
  align-items: center;

  @media only screen and (max-width: 1050px) {
    font-size: 22px;

  }

  @media only screen and (max-width: 550px) {
    font-size: 17px;
  }
}

.ui.heading.size-heading_desktop_h3 {
  font-size: 40px;
  font-weight: 600;
  @media only screen and (max-width: 1050px) {
    font-size: 38px;
  }

  @media only screen and (max-width: 550px) {
    font-size: 34px;
  }
}

.ui.heading.size-heading_desktop_h6 {
  font-size: 20px;
  font-weight: 600;
  @media only screen and (max-width: 550px) {
    font-size: 17px;
  }
}

.ui.heading.size-text_medium_bold {
  font-size: 18px;
  font-weight: 700;
  @media only screen and (max-width: 550px) {
    font-size: 15px;
  }
}

.ui.heading {
  color: var(--black_900);
  font-family: Montserrat, serif;
}

/*-------------------------------------
  7. Container CSS
--------------------------------------*/
.container-xs {
  max-width: 1312px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
@font-face {
  font-family: 'Montserrat';
  src: url(/assets/Montserrat-VariableFont_wght-7752d383acbf5a0e1e222824b909ce4fef1b10a850e8e2eae71354bec82162b2.ttf) format('truetype');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Montserrat Italic';
  src: url(/assets/Montserrat-Italic-VariableFont_wght-0ce66e01f4ec8c7227656f9b141d335f2a85b0640edc2ae224e11a706b92ed72.ttf) format('truetype');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}


body {
  margin: 0;
  padding: 0;
  font-family: Montserrat, serif;
}

* {
  box-sizing: border-box;
  line-height: normal;
  font-family: inherit;
  margin: unset;
}

a {
  text-decoration: none;
  display: block;
}

ul {
  margin: 0;
  margin-inline: unset !important;
  padding: 0;
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}


input {
  background-color: transparent;
  width: 100%;
}

.ui.ratingbar:not(:checked) > input {
  position: absolute;
  visibility: hidden;
}

.ui.ratingbar:not(:checked) > label {
  cursor: pointer;
  font-size: var(--rating-font-size);
  color: var(--rating-inactive-color);
}

.ui.ratingbar:not(:checked) > label:before {
  content: "★ ";
}

.ui.ratingbar:not(:checked) > label:hover,
.ui.ratingbar:not(:checked) > label:hover ~ label,
.ui.ratingbar > input:checked ~ label {
  color: var(--rating-active-color);
}

details {
  width: 100%;
}

details > summary {
  list-style: none;
}

[type="text"],
input:where(:not([type])),
[type="email"],
[type="url"],
[type="password"],
[type="number"],
[type="date"],
[type="datetime-local"],
[type="month"],
[type="search"],
[type="tel"],
[type="time"],
[type="week"],
[multiple],
textarea,
select,
button {
  appearance: none;
  background-color: transparent;
  border-color: unset;
  border-width: 0;
  border-radius: unset;
  padding: unset;
  font-size: unset;
  line-height: unset;
  color: inherit;
}
input:focus-visible,
[multiple]:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: none;
}
/*=========== TABLE OF CONTENTS ===========
1. CSS Variables
2. Utility CSS
3. Common CSS
==========================================*/

/*-------------------------------------
  1. CSS Variables
--------------------------------------*/
/** {*/
/*  outline: 1px solid red !important;*/
/*}*/

:root {
  /*------Color variables------*/
  --black_900: #000000;
  --black_900_71: #00000071;
  --blue_gray_100: #cccccc;
  --blue_gray_400: #7892ad;
  --blue_gray_700: #405263;
  --blue_gray_700_01: #4a5859;
  --blue_gray_900: #28323e;
  --blue_gray_900_01: #19354a;
  --blue_gray_900_02: #1f2730;
  --gray_200: #efefef;
  --gray_200_01: #eeeeee;
  --gray_500: #aaaaaa;
  --gray_500_01: #999999;
  --gray_700: #666666;
  --indigo_900: #003366;
  --light_blue_900: #0d5181;
  --white_a700: #ffffff;
  --white_new1: #aaaaaa;

  --black_600: #656d76;
  --gray_shadow: #00000029;

  /*------Shadow variables------*/
  --shadow-xs: 0 0 13px 5px #00000029;

  /*------Border radius variables------*/
  --radius-xs: 6px;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;

  /*------Spacing variables------*/
  --space-xs: 2px;
  --space-sm: 4px;
  --space-md: 6px;
  --space-lg: 8px;
  --space-xl: 9px;
  --space-2xl: 10px;
  --space-3xl: 12px;
  --space-4xl: 15px;
  --space-5xl: 16px;
  --space-6xl: 18px;
  --space-7xl: 20px;
  --space-8xl: 22px;
  --space-9xl: 24px;
  --space-10xl: 26px;
  --space-11xl: 28px;
  --space-12xl: 30px;
  --space-13xl: 32px;
  --space-14xl: 48px;
  --space-15xl: 64px;
  --space-16xl: 80px;
}

/*-------------------------------------
  2. Utility CSS
--------------------------------------*/
.flex-col-center-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.flex-col-center-start {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.flex-col-end-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
}

/*-------------------------------------
  3. Common CSS
--------------------------------------*/

.navbar-2 {
  padding-top: var(--space-8xl);
  padding-bottom: var(--space-8xl);
  display: flex;
  background-color: var(--gray_200);
  justify-content: center;
  align-items: center;
  position: relative;
  border-bottom: 3px solid var(--indigo_900);
  @media only screen and (max-width: 550px) {
    padding-top: var(--space-7xl);
    padding-bottom: var(--space-7xl);
  }
}
.productShowTitle{
  gap: var(--space-sm);
  @media only screen and (max-width: 550px) {
    padding-top: var(--space-2xl);
  }
}

.navbar-2 .mainMenu li {
  transition: background-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
  padding: 6px 11px;
  border-radius: 4px;
}

/* Override the styles for the first li within the dropdown of the last li */
.navbar-2 .mainMenu > li:last-child ul li:first-child {
  transition: none;
  padding: 0;
  border-radius: 0;
  /* Optionally, you can set a different background or none at all */
  background-color: transparent;
}
.navbar-2 .mainMenu li:hover {
  background-color: rgba(120, 146, 173, 0.05); /* A light, transparent indigo */
  box-shadow: 0 4px 8px rgba(120, 146, 173, 0.7); /* Subtle shadow for depth */
  transform: translateY(-2px); /* Slight lift effect */
}

.navbar-2 .mainMenu > li:hover:last-child ul li:first-child {
  background-color: transparent;
  box-shadow: none; /* Subtle shadow for depth */
  transform: none; /* Slight lift effect */
}

/*.navbar-2 .column li:hover {*/
/*  background-color: var(--indigo_900);*/

/*}*/


.group-782 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-7xl);
  @media only screen and (max-width: 1050px) {
    flex-direction: row;
    padding-left: var(--space-12xl);
    padding-right: var(--space-12xl);
  }
}

.mainMenu {
  gap: var(--space-6xl);
  display: flex;
  align-items: center;
  @media only screen and (max-width: 550px) {
    flex-direction: column;
    align-items: flex-end;
    gap: var(--space-5xl);
    position: absolute;
    top: 100%; /* positions it immediately below the parent container */
    right: var(--space-7xl);  /* align it to the right, adjust if needed */
    background: var(--gray_200);
    border: 1px solid #ddd;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    padding: 10px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease-in-out; /* simple fade effect */
    z-index: 1000;
    text-align: right;
  }
}

/* Hide the hamburger button by default */
.hamburger-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
}


/* Mobile view adjustments */
@media (max-width: 550px) {
  /* Make the parent container positioned relatively so the menu positions correctly */
  .group-782 {
    position: relative;

  }

  /* When active, the menu fades in */
  .mainMenu.active {
    opacity: 1;
    visibility: visible;
  }

  .mainMenu li:last-child {
    max-width: 100px; /* Adjust this value as needed */
    /*white-space: normal;*/
  }

  /* Ensure the hamburger button is visible and remains in place */
  .hamburger-btn {
    display: block;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1100;
  }
}



.dhi-group {
  cursor: pointer;
  &:hover > :last-child {
    display: block;
  }
}

.nav-link-dropdown {
  gap: var(--space-sm);
  display: flex;
  align-items: center;
  cursor: pointer;
}

.arrow-down {
  height: 24px;
  width: 24px;
}

.dhi-group-1 {
  position: absolute;
  top: auto;
  min-width: 200px;
  padding-top: var(--space-3xl);
  z-index: 99;
  display: none;
  .group-hover {
    display: block;
  }
}

.menu-container {
  background-color: var(--white_a700);
  box-shadow: var(--shadow-xs);
  width: 100%;
  padding: var(--space-7xl);
  border-radius: var(--radius-sm);
}

.menu-group {
  gap: var(--space-12xl);
  display: flex;
}

.mega-menu__link {
  color: var(--black_600) !important;
  font-size: 16px;
  font-weight: 400;
  align-self: center;
  @media only screen and (max-width: 550px) {
    font-size: 13px;
  }
}

.menu {
  gap: var(--space-5xl);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  @media only screen and (max-width: 550px) {
    gap: var(--space-5xl);
  }
}

.mega-menu__title {
  font-size: 18px;
  font-weight: 700;
  @media only screen and (max-width: 550px) {
    font-size: 15px;
  }
}

.menu-column {
  gap: var(--space-3xl);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  @media only screen and (max-width: 550px) {
    gap: var(--space-3xl);
  }
}

.menu-link {
  align-self: center;
  @media only screen and (max-width: 550px) {
    font-size: 13px;
  }
}

.mega-menu__text {
  color: var(--black_600) !important;
  font-size: 16px;
  font-weight: 400;
}

.actions {
  color: var(--white_a700) !important;
  padding-left: var(--space-9xl);
  padding-right: var(--space-9xl);
  font-size: 16px;
  font-weight: 500;
  gap: var(--space-3xl);
  background-color: var(--indigo_900) !important;
  height: 48px;
  min-width: 164px;
  border: 1px solid var(--indigo_900);
  @media only screen and (max-width: 550px) {
    padding-left: var(--space-7xl);
    padding-right: var(--space-7xl);
  }
}

/*.header-54 {*/
/*  height: 368px;*/
/*  padding-top: 72px;*/
/*  padding-bottom: 72px;*/
/*  background: linear-gradient(270deg, #7892ad, #405263), url(/assets/defaultNoData-9238f41f6a223c1f0e9db711f31c56a4d15f81305fafcb6931c9b9b80cf17f83.svg);*/
/*  background-size: cover;*/
/*  background-repeat: no-repeat;*/
/*  @media only screen and (max-width: 1050px) {*/
/*    height: auto;*/
/*    padding-top: var(--space-7xl);*/
/*    padding-bottom: var(--space-7xl);*/
/*  }*/
/*}*/

.confirmationPageHeader {
  height: 100%;
  padding-top: 28px;
  padding-bottom: 28px;
  background-size: cover;
  background: linear-gradient(270deg, #7892ad, #405263),
              url(/assets/defaultNoData-9238f41f6a223c1f0e9db711f31c56a4d15f81305fafcb6931c9b9b80cf17f83.svg) no-repeat;
  @media only screen and (max-width: 1050px) {
    height: auto;
    padding-top: var(--space-12xl);
    padding-bottom: var(--space-12xl);
  }
}

.headerContainer {
  gap: var(--space-2xl);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  @media only screen and (max-width: 1050px) {
    padding-left: var(--space-12xl);
    padding-right: var(--space-12xl);
  }
  @media only screen and (max-width: 550px) {
    padding-left: var(--space-12xl);
    padding-right: var(--space-12xl);
  }
}

.aboutusColabContainer {
  gap: var(--space-16xl);
  display: flex;
  flex-direction: column;
  align-items: center;

  @media only screen and (max-width: 550px) {
    gap: var(--space-8xl);
    padding-left: var(--space-12xl);
    padding-right: var(--space-12xl);
  }
}

/*.group-705 {*/
/*  gap: var(--space-9xl);*/
/*  display: flex;*/
/*  flex-direction: column;*/
/*  align-items: flex-start;*/
/*  @media only screen and (max-width: 1050px) {*/
/*    padding-left: var(--space-7xl);*/
/*    padding-right: var(--space-7xl);*/
/*  }*/
/*}*/

.industriile-n-care {
  color: var(--white_a700) !important;
  line-height: 120%;
  @media only screen and (max-width: 550px) {
    font-size: 42px;
  }
}

.despre-noi-1 {
  color: var(--white_a700) !important;
  @media only screen and (max-width: 550px) {
    font-size: 42px;
  }
}

.tagline {
  color: var(--white_a700)
}

.bine-a-i-venit-pe {
  color: var(--white_a700) !important;
  width: 58%;
  line-height: 150%;
  @media only screen and (max-width: 1050px) {
    width: 100%;
  }
}

.layout-520 {
  padding-top: 110px;
  padding-bottom: 110px;
  background-color: var(--gray_200);
  @media only screen and (max-width: 1050px) {
    padding-top: var(--space-12xl);
    padding-bottom: var(--space-12xl);
  }
}
.servicesLayout {
  padding-top: 110px;
  padding-bottom: 110px;
  background-color: var(--gray_200);
  @media only screen and (max-width: 1050px) {
    padding-top: var(--space-12xl);
    padding-bottom: var(--space-14xl);
  }
}
.secondaryNav {
  display: flex;
  list-style: none;
  align-items: center;
  word-wrap: break-word;
  gap: inherit;
  padding-left: 0;
}

.dhi-group-15 {
  display: inline-flex;
  gap: inherit;
  align-items: center;
}


.arrowRight {
  height: auto;
  width: 24px;
}

.text-18 {
  color: var(--black_900);
  text-align: center;
  align-self: stretch;
  line-height: 150%;

}

.productContainer {
  display: flex;
  flex-direction: column;
  /*width: 100%;*/
  /*align-items: center;*/
  /*justify-content: center;*/
}

.text-33 {
  line-height: 150%;
}

.text-2 {
  text-align: center;
  line-height: 150%;
  color: #000000;
  @media only screen and (max-width: 550px) {
    /*text-align: justify;*/
  }
}

.content-8 {
  gap: var(--space-7xl);
  align-self: stretch;
  @media only screen and (max-width: 550px) {
    text-align: center;
  }
}

.content-31 {
  gap: var(--space-9xl);
  display: flex;
  width: 64%;
  flex-direction: column;
  align-items: center;
  @media only screen and (max-width: 1050px) {
    width: 100%;
  }
}

.tagline-wrapper {
  display: flex;
}

.tagline-wrapper-big {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: var(--space-2xl);
  & .iconSection {
    height: 70px;
    @media only screen and (max-width: 1050px) {
      height: 55px;
    }
  }
}

.button-5 {
  gap: var(--space-xl);
  display: flex;
  align-items: center;
  justify-content: center;
}

.text-27 {
  width: 100%;
  line-height: 150%;
}

.content-7 {
  gap: var(--space-9xl);
  display: flex;
  align-self: stretch;
  flex-direction: column;
  @media only screen and (max-width: 550px) {
    text-align: center;
    gap: 0;
  }
}

.homeSectionText {
  gap: var(--space-9xl);
  display: flex;
  align-self: stretch;
  flex-direction: column;
  @media only screen and (max-width: 550px) {
    text-align: center;
    gap: var(--space-8xl)
  }
}

.aboutusHistoryContent{
  gap: var(--space-5xl);
  display: flex;
  align-self: stretch;
  flex-direction: column;
}

.aboutusHistoryParagraph {
  display: flex;
  flex-direction: column;
  gap: var(--space-2xl);
  @media only screen and (max-width: 550px) {
    text-align: left;
    gap: 0;
  }
}


.aboutusHistorySubtitle {
  gap: var(--space-2xl);
  display: flex;
  flex-direction: row;
  text-align: center;
  justify-content: space-between;
  cursor: pointer;
  user-select: none;
  padding: 0 50px;

  img {
    height: 31px;
  }
  .arrow {
    transition: transform 0.3s ease;
  }
  @media only screen and (max-width: 550px) {
    text-align: left;
    flex-direction: row;
    padding-left: 9px;
    padding-right: 0;
    img {
      height: 31px;
    }
  }
}

.collapsibleContent {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

/* When active, paragraph expands */
.aboutusHistoryParagraph.active .collapsibleContent {
  max-height: 1000px; /* adjust this value to match your content */
}

/* Rotate arrow when expanded */
.aboutusHistoryParagraph.active .arrow {
  transform: rotate(180deg);
}

.heroApproachContent {
  gap: var(--space-9xl);
  display: flex;
  align-self: stretch;
  flex-direction: column;
}

.title-1 {
  gap: var(--space-2xl);
  @media only screen and (max-width: 550px) {
    padding-top: var(--space-2xl);
  }

}

.content-14 {
  gap: var(--space-9xl);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  @media only screen and (max-width: 550px) {
    gap: var(--space-2xl);
  }
}

.heroProductsContent {
  gap: var(--space-9xl);
  display: flex;
  flex-direction: column;
}

.recommendedProductCard {
  position: relative;
  gap: var(--space-5xl);
  display: flex;
  flex-direction: column;
}



.callToActionSection {
  height: 498px;
  padding-top: 112px;
  padding-bottom: 112px;
  background-image: linear-gradient(180deg, rgba(64, 82, 99, 0.85), rgba(120, 146, 173, 0.85)), /* Gradient */
  url(/assets/defaultBackgroundPicture-96ba0cc5b5ba78925c47ae321470c2bb3a549585a9fb96d27460513de4cf8c8a.webp); /* Image */
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center; /* Centers the image */
  display: flex;
  justify-content: center;
  align-items: center;
  @media only screen and (max-width: 1050px) {
    height: auto;
    padding-top: var(--space-14xl);
    padding-bottom: var(--space-14xl);
  }
}

.group-706 {
  /*gap: var(--space-16xl);*/
  display: flex;
  flex-direction: column;
  align-items: center;
  @media only screen and (max-width: 1050px) {
    gap: 60px;
    padding-left: var(--space-12xl);
    padding-right: var(--space-12xl);
  }

  @media only screen and (max-width: 550px) {
    gap: 40px;
  }
}

.group-757 {
  display: flex;
  justify-content: center;
  @media only screen and (max-width: 1050px) {
    padding-left: var(--space-12xl);
    padding-right: var(--space-12xl);
    /*margin-left: 50px;*/
    /*margin-right: 50px;*/
  }
}

.title {
  align-self: center;
  display: flex;
  justify-content: center;
  align-items: center;
  @media only screen and (max-width: 1050px) {
    flex-direction: column;
    gap: var(--space-2xl);
  }
}

.content-5 {
  gap: var(--space-13xl);
  display: flex;
  width: 64%;
  flex-direction: column;
  @media only screen and (max-width: 1050px) {
    width: 100%;
    padding-left: var(--space-15xl);
    padding-right: var(--space-15xl);
  }
}

.recommendedProductsTitleContainer {
  gap: var(--space-2xl);
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  @media only screen and (max-width: 1050px) {
    align-self: stretch;
  }
}

.content-11 {
  gap: var(--space-9xl);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.callToActionHeading {
  color: var(--white_a700) !important;
  text-align: center;
  align-self: stretch;
  line-height: 120%;
  @media only screen and (max-width: 550px) {
    font-size: 38px;
  }
}

.callToActionHeading .highlightBlue {
  color: var(--indigo_900);
  /*background: #7892ad;*/

  background: linear-gradient(45deg,#d9e0e8,#E8FCC2,#d9e0e8);
  background-size: 250% 250%;
  animation: gradient-animation 12s ease infinite;

  border-radius: 5px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  padding: 0 8px;
  font-size: 48px;
  font-weight: 700;
}

@keyframes gradient-animation {
  0% {
    background-position: 0 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0 50%;
  }
}

.medium-length-hero-span {
  color: var(--white_a700);
}

.heroApproachHeader {
  color: var(--blue_gray_900);
}

.heroApproachHeaderSpan {
  color: var(--white_a700);
}

.heading-span-1 {
  color: var(--blue_gray_900);
}

.text-4 {
  color: var(--white_a700) !important;
  text-align: center;
  line-height: 150%;
}

.button-2 {
  justify-content: center;
  color: var(--blue_gray_900) !important;
  padding-left: var(--space-9xl);
  padding-right: var(--space-9xl);
  font-size: 16px;
  font-weight: 500;
  gap: var(--space-3xl);
  height: 48px;
  min-width: 156px;
  border: 1px solid var(--blue_gray_900) !important;
  align-self: flex-start;
  @media only screen and (max-width: 550px) {
    padding-left: var(--space-7xl);
    padding-right: var(--space-7xl);
  }
}

.btnWhatsAppContainer {
  margin-left: 126px;
  margin-right: 126px;
  gap: var(--space-5xl);
  display: flex;
  justify-content: center;
  padding-left: 0;
  padding-right: 0;
  @media only screen and (max-width: 1050px) {
    flex-direction: column;
    margin-left: 0;
    margin-right: 0;
  }
}

.btnWhatsAppContainer img {
  height: 70%;
}



.text-input {
  color: var(--white_a700) !important;
  padding-left: 12px !important;
  padding-right: 12px !important;
  font-size: 16px;
  flex-grow: 1;
  height: 48px;
  border: 1px solid var(--white_a700) !important;
}

.button-3 {
  color: var(--white_a700) !important;
  padding-left: var(--space-9xl);
  padding-right: var(--space-9xl);
  font-size: 16px;
  font-weight: 500;
  gap: var(--space-3xl);
  background-color: var(--indigo_900) !important;
  height: 48px;
  min-width: 134px;
  border: 1px solid var(--indigo_900);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;

  @media only screen and (max-width: 550px) {
    padding-left: var(--space-7xl);
    padding-right: var(--space-7xl);
  }
}

.navbar-2 .button-3 {
  @media only screen and (max-width: 550px) {
    display: none;
  }
}

.button-3:hover {
  background-color: #002952 !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.button-3 .whatsapp-icon {
  height: 60%;
}

.form .button-3{
  display: flex;
  align-items: center;
  gap: 10px;
  transition: transform 0.3s ease;
}

@keyframes ring {
  0% { transform: rotate(0) scale(1); }
  10% { transform: rotate(10deg) scale(1.15); }
  20% { transform: rotate(-10deg) scale(1.15); }
  30% { transform: rotate(10deg) scale(1.15); }
  40% { transform: rotate(-10deg) scale(1.15); }
  50% { transform: rotate(0) scale(1); }
}

.button-3:hover .whatsapp-icon {
  animation: ring 1s ease-in-out infinite;
}

.icon--relume {
  height: 24px;
  width: 24px;
  object-fit: contain;
}

.row-3 {
  gap: var(--space-14xl);
  display: flex;
  @media only screen and (max-width: 1050px) {
    flex-direction: column;
  }
}

.servicesRow {
  gap: var(--space-12xl);
  display: flex;
  @media only screen and (max-width: 1050px) {
    flex-direction: column;
    gap: var(--space-16xl);
  }
  @media only screen and (max-width: 550px) {
    gap: var(--space-12xl);
  }
}

.header-1 {
  gap: var(--space-xs);
}

.product-3 {
  gap: var(--space-5xl);
  display: flex;
  width: 100%;
  flex-direction: column;
  height: 428px;
  justify-content: space-between; /* Spreads items to container ends vertically */
  align-items: stretch;          /* (Optional) ensures children stretch to full width */
  @media only screen and (max-width: 550px) {
    justify-content: center;
    height: auto;
    /*align-items: center;*/
    /*width: 274px;*/
  }
}

.product-3 .flex-col-center-start{
  height: 48px;
  justify-content: space-between;

}

.product-3 .flex-col-center-start .ui{

  line-height: 150%;
}


.recommendedProductImage {
  height: 486px;
  object-fit: cover;
  object-position: right;
}

.arrow-left {
  height: 48px;
  padding-left: var(--space-5xl);
  padding-right: var(--space-5xl);
  width: 48px;
  border-radius: 24px !important;
  border: 1px solid var(--black_900) !important;
}

.content-56 {
  gap: var(--space-5xl);
  display: flex;
  align-self: stretch;
  flex-direction: column;
  align-items: center;
}

.heading-5 {
  color: var(--white_a700) !important;
  text-align: center;
  line-height: 130%;
  @media only screen and (max-width: 550px) {
    font-size: 28px;
  }
}

.heroProductsContent .heroProductsHeading {
  color: var(--white_a700);
  text-align: center;
  line-height: 130%;
  background: rgba(81, 103, 123, 0.5);
  border-radius: 5px;
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.3);
  padding: 12px 0;
  @media only screen and (max-width: 550px) {
    font-size: 28px;
  }
}

.text-1 {
  color: var(--white_a700) !important;
  text-align: center;
  align-self: stretch;
  line-height: 150%;
}

.icon-relume-1 {
  height: 48px;
}

.cta-59-2 {
  height: 498px;
  padding-top: 112px;
  padding-bottom: 112px;
  background-size: cover;
  background: linear-gradient(180deg, #405263, #7892ad), url(/assets/defaultNoData-9238f41f6a223c1f0e9db711f31c56a4d15f81305fafcb6931c9b9b80cf17f83.svg) no-repeat;
  @media only screen and (max-width: 1050px) {
    height: auto;
    padding-top: var(--space-7xl);
    padding-bottom: var(--space-7xl);
  }
}

.layout-136 {
  padding-top: 112px;
  padding-bottom: 112px;
  background-color: var(--gray_200);
  @media only screen and (max-width: 1050px) {
    padding-top: var(--space-12xl);
    padding-bottom: var(--space-12xl);
  }
}

.aboutusHistorySection {
  padding-top: 112px;
  padding-bottom: 112px;
  background-color: var(--gray_200);
  @media only screen and (max-width: 1050px) {
    padding-top: var(--space-12xl);
    padding-bottom: var(--space-12xl);

  }
}

#confirmationPageOverride {
  padding-top: 56px;
  padding-bottom: 56px;
}

.group-784 {
  padding-left: 56px;
  padding-right: 56px;
  gap: var(--space-xl);
  display: flex;
  flex-direction: column;
  align-items: center;
  @media only screen and (max-width: 1050px) {
    padding-left: var(--space-12xl);
    padding-right: var(--space-12xl);
  }
}

.group-512 {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.mainArticleLayout{
  display: flex;
  flex-direction: column;
  align-items: center;
}

.group-785 {
  gap: var(--space-16xl);
  display: flex;
  flex-direction: column;
  @media only screen and (max-width: 1050px) {
    gap: 30px;
    padding-left: var(--space-16xl);
    padding-right: var(--space-16xl);
  }
  @media only screen and (max-width: 550px) {
    gap: 30px;
    padding-left: var(--space-12xl);
    padding-right: var(--space-12xl);
  }
}

.mainArticleContainer {
  gap: var(--space-16xl);
  display: flex;
  flex-direction: column;
  @media only screen and (max-width: 1050px) {
    gap: 30px;
    padding-left: var(--space-12xl);
    padding-right: var(--space-12xl);
  }

  @media only screen and (max-width: 550px) {
    gap: 30px;
    padding-left: var(--space-12xl);
    padding-right: var(--space-12xl);
  }
}

.secondaryArticleContainer {
  gap: var(--space-16xl);
  display: flex;
  flex-direction: column;
  @media only screen and (max-width: 1050px) {
    gap: 30px;
    padding-left: var(--space-12xl);
    padding-right: var(--space-12xl);
  }

  @media only screen and (max-width: 550px) {
    gap: 30px;
    padding-left: var(--space-12xl);
    padding-right: var(--space-12xl);
  }
}


.aboutusHistoryContainer {
  gap: var(--space-16xl);
  display: flex;
  flex-direction: column;
  @media only screen and (max-width: 1050px) {
    gap: 30px;
    padding-left: var(--space-12xl);
    padding-right: var(--space-12xl);
  }

  @media only screen and (max-width: 550px) {
    gap: 30px;
    padding-left: var(--space-12xl);
    padding-right: var(--space-12xl);
  }
}


.section-title-1 {
  margin-left: 272px;
  margin-right: 272px;
  gap: var(--space-5xl);
  display: flex;
  flex-direction: column;
  align-items: center;
  @media only screen and (max-width: 1050px) {
    margin-left: 0;
    margin-right: 0;
  }
}

.content-62 {
  margin-left: 272px;
  margin-right: 272px;
  gap: var(--space-10xl);
  @media only screen and (max-width: 1050px) {
    margin-left: 0;
    margin-right: 0;
    gap: var(--space-5xl);
  }
}

.row {
  gap: var(--space-14xl);
  display: flex;
  @media only screen and (max-width: 1050px) {
    flex-direction: column;
  }
}

.progress-container {
  gap: var(--space-lg);
  display: flex;
  align-items: center;
  @media only screen and (max-width: 550px) {
    flex-direction: column;
    align-items: center;
    padding-top: 5px;

    :first-child {
      position: absolute;
      visibility: hidden;
    }
  }
}

.progress-container_2 {
  gap: var(--space-lg);
  display: flex;
  align-items: center;
  padding-bottom: 30px;
  @media only screen and (max-width: 550px) {
    flex-direction: column;
    align-items: center;
    padding-top: 5px;

    :first-child {
      position: absolute;
      visibility: hidden;
    }
  }
}

.directionsLink {
  gap: var(--space-md);
  display: flex;
  justify-content: center;
  align-items: center;
  @media only screen and (max-width: 550px) {
    align-items: center;
  }
}

.column-4 {
  gap: var(--space-13xl);
  display: flex;
  width: 32%;
  flex-direction: column;
  /*align-items: center;*/
  @media only screen and (max-width: 1050px) {
    width: 100%;
    margin-bottom: 0;
  }
}

.heading-8 {
  color: var(--white_a700) !important;
  text-align: center;
  line-height: 130%;
  border: 2px;
  @media only screen and (max-width: 550px) {
    font-size: 28px;
  }
}

.heroApproachContent .heroApproachItemHeading {
  /*color: var(--blue_gray_900);*/
  color: white;
  text-align: center;
  line-height: 130%;
  /*background: rgba(255, 255, 255, 0.5);*/
  background: rgba(81, 103, 123, 0.5);
  border-radius: 5px;
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.3);
  padding: 12px 0;
  @media only screen and (max-width: 550px) {
    font-size: 28px;
  }
}
.text-5 {
  color: var(--white_a700) !important;
  text-align: center;
  align-self: stretch;
  line-height: 150%;
  @media only screen and (max-width: 550px) {
    padding-top: 10px;
  }
}

.row .heroProductsText {
  color: var(--white_a700);
  text-align: justify;
  line-height: 150%;
}

.form-2 {
  gap: var(--space-5xl);
  display: flex;
  width: 42%;
  justify-content: center;
  @media only screen and (max-width: 1050px) {
    width: 100%;
  }

  @media only screen and (max-width: 550px) {
    flex-direction: column;
  }
}

.text-input-2 {
  color: var(--gray_500) !important;
  padding-left: 20px !important;
  padding-right: var(--space-3xl);
  font-size: 16px;
  flex-grow: 1;
  height: 48px;
  border: 1px solid #ffffff !important;
}

.layout-239 {
  padding-top: 112px;
  padding-bottom: 112px;
  background: linear-gradient(180deg, #405263, #7892ad);
  & .tagline.ui.heading {
    color: white;
  }
  @media only screen and (max-width: 1050px) {
    padding-top: var(--space-12xl);
    padding-bottom: var(--space-12xl);
  }
}

.aboutusBenefitsSection {
  padding-top: 112px;
  padding-bottom: 112px;
  background-color: var(--gray_200);
  & .tagline.ui.heading {
    color: black;
  }
  @media only screen and (max-width: 1050px) {
    padding-top: var(--space-12xl);
    padding-bottom: var(--space-12xl);
  }
}

.heading-3 {
  color: var(--white_a700) !important;
  @media only screen and (max-width: 550px) {
    font-size: 38px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
.aboutusBenefitsHeading {
  /*color: var(--white_a700) !important;*/
  @media only screen and (max-width: 550px) {
    text-align: center;
  }
}

.footer-8 {
  padding-top: var(--space-16xl);
  padding-bottom: var(--space-16xl);
  display: flex;
  background-color: var(--gray_200);
  justify-content: center;
  align-items: center;
  @media only screen and (max-width: 1050px) {
    padding-top: var(--space-12xl);
    padding-bottom: var(--space-12xl);
  }
}

.group-789 {
  display: flex;
  justify-content: center;
  @media only screen and (max-width: 1050px) {
    padding-left: var(--space-12xl);
    padding-right: var(--space-12xl);
  }
}

.group-781 {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  @media only screen and (max-width: 1050px) {
    align-items: center;
  }

}

.footerContentTitle {
  align-self: stretch;
  display: flex;
  justify-content: space-between;

  @media only screen and (max-width: 550px) {
    flex-direction: column;
    align-items: center;
    /*gap: var(--space-2xl);*/
    :first-child {
      order: 2; /* Initial order on desktop */
    }

    :last-child {
      order: 1; /* Initial order on desktop */
    }
  }
}

.header-logo {
  height: 55px;
  max-width: none;
  object-fit: contain;
  display: block;
}

.hamburger-icon {
  display: block;
}

.placeholder {
  display: flex;
  padding: var(--space-2xl) var(--space-10xl);
  @media only screen and (max-width: 550px) {
    padding-left: var(--space-7xl);
    padding-right: var(--space-7xl);

  }
}

.footer-logo-1 {
  height: 34px;
  width: 34px;
  object-fit: contain;
}

.group-779 {
  margin-top: 20px;
  margin-right: 14px;
  align-self: stretch;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-7xl);
  @media only screen and (max-width: 1050px) {
    flex-direction: row;
    margin-right: 0;
  }
  @media only screen and (max-width: 550px) {
    flex-direction: column;
    align-items: center;
    gap: var(--space-14xl);
    :first-child {
      order: 1;
    }
  }
}

.content-6 {
  gap: var(--space-2xl);
  display: flex;
  width: 40%;
  flex-direction: column;
  @media only screen and (max-width: 550px) {
    /*flex-direction: row;*/
    gap: var(--space-8xl);
    width: 100%;
    :first-child {
      order: 0;
    }
  }
}

.content-12 {
  gap: var(--space-lg);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  @media only screen and (max-width: 550px) {
    align-items: center;

  }
}

.content-13 {
  gap: var(--space-2xl);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  @media only screen and (max-width: 550px) {
    align-items: center;

  }
}

.container {
  padding-left: var(--space-2xl);
  padding-right: var(--space-2xl);
  gap: var(--space-2xl);
  display: flex;
  align-items: center;
}

.container-1 {
  padding-left: var(--space-2xl);
  padding-right: var(--space-2xl);
  gap: var(--space-2xl);
  display: flex;
}

.lock {
  height: 16px;
  align-self: flex-start;
}

.group-774 {
  margin-left: 10px;
  gap: var(--space-2xl);
  display: flex;
  align-items: center;
  @media only screen and (max-width: 1050px) {
    margin-left: 0;
  }
}

.placeholderMobile {
  display: none;
  justify-content: center;
  @media only screen and (max-width: 550px) {
    display: flex;
  }
}

.call {
  height: 18px;
}

.group-778 {
  gap: var(--space-7xl);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.group-630 {
  gap: var(--space-6xl);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  @media only screen and (max-width: 550px) {
    align-items: center;
    :first-child {
      order: 0;
    }
  }
}

.divider {
  height: 1px;
  margin-top: 50px;
  background-color: var(--black_900);
  align-self: stretch;
  width: 100%;
  border: 1px solid var(--black_900);
  @media only screen and (max-width: 550px) {
    margin-top: 25px;
  }
}

.class-2025-metcon-toate {
  margin-top: 34px;
  @media only screen and (max-width: 550px) {
    margin-top: 20px;
    text-align: center;
  }
}
