:root {
  --white: #fff;
  --gray: #f8f8f8;
  --lightGray: #f0f0f0;
  --black: #333333;
  --pink: #fce6e7;
  --darkPink: #ebb0af;
  --red: #e30613;
  --lightRed: #f0787f;
  --blue: #55c3f1;
  --lightBlue: #cde9f4;
  --yellow: #fab700;
  --lightYellow: #fef1cc;
  --purple: #41266a;
  --lightPurple: #d9d4e1;
  --green: #036634;
  --lightGreen: #b9d2c5;
}

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

.pagebuilder h1 {
  font-family: "Playfair Display", serif;
  font-optical-sizing: auto;
  font-size: 96px;
  padding-bottom: 1rem;
  line-height: 125%;
}

.pagebuilder h2 {
  font-size: 48px;
  padding-bottom: 1rem;
  line-height: 125%;
}

.pagebuilder h3 {
  font-size: 32px;
  padding-bottom: 1rem;
  line-height: 125%;
}

.pagebuilder h4 {
  font-size: 24px;
  padding-bottom: 1rem;
  line-height: 125%;
}

.pagebuilder h4 {
  font-size: 18px;
  padding-bottom: 1rem;
  line-height: 125%;
}

.pagebuilder p {
  padding-top: 20px;
}
/* Sections */
section:first-of-type {
  padding-top: 11rem;
  position: relative;
  padding-bottom: 10rem;
}

/*******************************************************************************************/
/*******************************************************************************************/
/* wave at end of first section */
/* section:first-child:before {
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  background-image: url("../images/wave.php?color=ffffff");
  background-position: right bottom;
  background-repeat: repeat-x;
  background-size: auto;
  width: 100%;
  height: 10rem;
  z-index: 99999;
  content: "";
} */

/* new 2025-05-19 */
section:first-child::before {
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  background-image: url("../images/wave.php?color=ffffff");
  background-position: var(--wave-x, 0px) bottom;
  background-repeat: repeat-x;
  background-size: auto;
  width: 100%;
  height: 10rem;
  content: "";
  z-index: 999;
}
/*******************************************************************************************/
/*******************************************************************************************/

section.section-parallax {
  min-height: 700px;
  width: 100%;
  background-attachment: fixed !important;
  display: flex;
  align-items: center;
}

section:first-of-type.section-parallax {
  height: auto;
  min-height: 75vh;
}

section.section-parallax > div {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  padding: 0 25px;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}

section.standard {
  width: 100%;
  /*
    background-image: url(../images/wave-green-top.svg);
    background-position: top center;
    background-repeat: repeat-x;
    background-size: auto;
    */
}

section.section-slider {
  position: relative;
  width: 100%;
  height: 0;
  overflow: hidden;
  transition: all 0.4s ease;
}
section.standard > div,
section.section-slider > div {
  max-width: 127rem;
  width: 100%;
  margin: 0 auto;
  padding: 4rem 0;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}
section.section-slider > div {
  max-width: 100%;
}

.pagebuilder section.section-slider {
  height: auto !important;
}

section.slider-loaded {
  height: auto;
}

/* new 2026-04-28 */
/*  */
/* section.section-slider .custom-slider-action-button-and-progressbar-wrapper {
    display: flex;
    flex-direction: column;
    width: 100%;
    border: 1px solid rgb(39, 255, 39);
} */

/* section.section-slider .custom-slider-action-button-and-progressbar-wrapper {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  max-width: 100%;
} */

section.section-slider .custom-slider-action-button-and-progressbar-wrapper {
  position: absolute;
  left: 0;
  bottom: 6rem;
  width: 100%;
  padding: 0 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  z-index: 10; /* above slides */
}

section.section-slider
  .custom-slider-action-button-and-progressbar-wrapper
  .slider-progress-bar-wrapper {
  height: auto;
  padding: 0;
  justify-content: flex-start;
}

section.section-slider
  .custom-slider-action-button-and-progressbar-wrapper
  .slider-progress-bar-element {
  display: flex;
  background: greenyellow;
  height: 16px;
  transition: width 400ms ease;
  width: 10%;
  border-radius: 25px;
}

.slider-progress-bar-wrapper {
  width: 100%;
  height: 8px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 999px;
  overflow: hidden;
}

.slider-progress-bar-element {
  height: 100%;
  width: 0;
  background: var(--yellow);
  border-radius: 999px;
  transition: width 400ms ease;
}

/* buttons for trigger slider in temlates  */

/* .custom-slider-action-buttons-wrapper {
    display: flex;
    border: 1px solid red;
} */

.custom-slider-action-buttons-wrapper {
  display: flex;
  gap: 10px;
  align-items: center;
}

.custom-slider-action-button-prev,
.custom-slider-action-button-next {
  width: 36px;
  height: 36px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.custom-slider-action-button-prev i,
.custom-slider-action-button-next i {
  font-size: 16px;
  color: var(--black);
}

/* .custom-slider-action-button-prev {
    cursor: pointer;
    padding-right: 2rem;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
} */

/* .custom-slider-action-button-prev img {
    width: 4.5rem;
} */

/* .custom-slider-action-button-next {
    cursor: pointer;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
} */

/* .custom-slider-action-button-next img {
    width: 4.5rem;
} */

/* .custom-slider-action-button-prev:hover,
.custom-slider-action-button-next:hover {
    opacity: 0.7;
} */

/* end buttons for trigger slider in temlates  */

/*  */

/************************************************************************************************************************/
/* new 2026-04-29 */
/* section slider small */
.section-slider-small {
  position: relative;
  width: 100%;
  height: 0;
  overflow: hidden;
  transition: all 0.4s ease;
}

section.section-slider-small > div {
  max-width: 127rem;
  width: 100%;
  margin: 0 auto;
  padding: 4rem 0;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}
section.section-slider-small > div {
  max-width: 100%;
}

.pagebuilder section.section-slider-small {
  height: auto !important;
}

section.section-slider-small.slider-loaded {
  height: auto;
}
section.section-slider-small .splide__track:hover .box-50{
  opacity: 0.5;
}
section.section-slider-small .splide__track:hover .box-50:hover{
  opacity: 1;
}

/* new 2026-04-29 */
section.section-slider-small .small-slider-header {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  max-width: 127rem !important;
  margin: 0 auto !important;
  padding: 0 0 0 0 !important;
}

section.section-slider-small .small-slider-header .box-100-title {
  width: auto;
  margin: 0 15px;
}
section.section-slider-small .box-100-title h2,
section.section-slider-small .box-100-title h3,
.box-100-text h3 {
  font-size: 24px;
}

.section-slider-small {
  position: relative;
}


/* .section-slider-small .splide__list {
  width: auto !important;
} */
/* test 2026-06-08 10:58 */
.section-slider-small .splide__list {
  width: 100%;
}



.section-slider-small .splide__track {
  /* position: relative; */
  /* z-index: 0; */
  /* overflow: hidden; */
  /* justify-content: center !important; */
  width: 100%;
}

.section-slider-small .splide__slide {
  /*
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem;
  */
}


/* test 2026-06-08 10:58 */
.section-slider-small .splide__slide.box-50 {
  margin: 0;
}
.section-slider-small .splide__slide {
  min-width: 0;
  box-sizing: border-box;
}


/* wrapper */
/* .small-slider-nav {
  position: absolute;
  top: 0;
  right: 40px;

  display: flex;
  gap: 10px;
  z-index: 20;
} */

/* buttons */
/* .small-slider-nav-prev,
.small-slider-nav-next {
  width: 36px;
  height: 36px;

  display: flex;
  align-items: center;
  justify-content: center;

  cursor: pointer;
} */

/* icons */
/* .small-slider-nav-prev i,
.small-slider-nav-next i {
  font-size: 20px;
  color: var(--black);
} */

/*  */
/* .small-slider-nav {
    position: absolute;
    top: -40px;
    right: 10px; 
    display: flex;
    gap: 2px;      
    z-index: 20;
} */

.small-slider-nav {
  position: static;
  top: -40px;
  right: 10%;
  right: calc((100% - 127rem) / 2);
  display: flex;
  gap: 4px;
  z-index: 20;
  justify-content: flex-end !important;
  padding-right: 3rem;
}

.small-slider-nav-prev,
.small-slider-nav-next {
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.small-slider-nav-prev i,
.small-slider-nav-next i {
  font-size: 30px;
  line-height: 1;
}

/***** End ection-slider-small ******************************************************************************************/
/************************************************************************************************************************/

section.full {
  width: 100%;
  margin: 0 auto;
}

section.full > div {
  width: 100%;
  display: flex;
  justify-content: space-around;
  justify-content: center;
  flex-wrap: wrap;
}

section.section-text {
  display: block;
  width: 100%;
  margin: 25px auto;
  padding: 0;
}

section.section-text > div {
  display: block;
  /* max-width: 1200px; */
  max-width: 1400px;
  padding: 25px 50px;
}

section.section-text > div .section-text-wrapper {
  display: block;
  width: calc(100% - 40px);
  margin: 20px;
  padding: 0;
}

section.full > div {
  margin: 0 auto;
}

section.full > div .section-text-wrapper {
  /* max-width: 1200px; */
  max-width: 1400px;
  padding: 25px 50px;
}

/* End of sections */

/* ############################################################### */
/* ############################################################### */
/* ############################################################### */
/* ############################################################### */

/* General */
.item-action {
  margin-top: 20px;
}

#info,
.info {
  max-width: 1100px;
  width: 100%;
  margin: 50px auto;
  padding: 25px 50px;
}

#info ul,
.info ul,
.content ul,
.box-content ul,
.single-news ul,
.section-text ul,
#info ol,
.info ol,
.content ol,
.box-content ol,
.single-news ol,
.section-text ol {
  padding: 5px 20px;
}

/* new 2026-05-18  replace bullet with svg .check-list  */
.box-100-img-left ul {
  list-style: none;
  padding-left: 0;
}
.box-100-img-left ul li {
  position: relative;
  padding-left: 40px;
  margin-bottom: 2rem;
}
.box-100-img-left ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 24px;
  height: 24px;
  background: url("../images/chbox_circle_red_svg.svg") no-repeat center;
  background-size: contain;
}

.pagebuilder .box-100-img-left ul li::before {
  content: "\f00c";
  font-family: "Line Awesome Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 4px;
  width: 25px;
  height: 25px;
  font-size: 18px;
  background: red;
  color: white;
  border-radius: 50%;
  text-align: center;
}

/* End of general */

/* ############################################################### */
/* ############################################################### */
/* ############################################################### */
/* ############################################################### */

/* Buttons */
.btn-red {
  background-color: var(--red);
  border: 3px solid var(--red);
  color: var(--white);
}
.btn-pink {
  background-color: var(--pink);
  border: 3px solid var(--pink);
  color: var(--red);
}
.btn-blue {
  background-color: var(--blue);
  border: 3px solid var(--blue);
  color: var(--white);
}
.btn-green {
  background-color: var(--green);
  border: 3px solid var(--green);
  color: var(--white);
}
.btn-yellow {
  background-color: var(--yellow);
  border: 3px solid var(--yellow);
  color: var(--white);
}

.btn-red,
.btn-pink,
.btn-blue,
.btn-green,
.btn-yellow {
  padding: 1.25rem 2rem;
  border-radius: 2rem;
  width: fit-content;
  display: inline-flex;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  position: relative;
  line-height: 100%;
  align-items: center;
  font-weight: bold;
}

.btn-red span,
.btn-pink span,
.btn-blue span,
.btn-green span,
.btn-yellow span {
  font-size: 16px;
}

.btn-red:hover {
  border: 3px solid var(--pink);
  background-color: var(--pink);
  color: var(--red) !important;
}
.btn-pink:hover,
.btn-blue:hover,
.btn-green:hover,
.btn-yellow:hover {
  opacity: 0.8;
}

/* End of butons */

/* ############################################################### */
/* ############################################################### */
/* ############################################################### */
/* ############################################################### */

/* Boxes */
/* Box spacer */
.box-spacer {
  height: 50px;
  width: 100%;
  background-color: transparent !important;
  background: transparent !important;
  background-image: none !important;
}

.box-spacer .box-image-container,
.box-spacer .box-content {
  display: none;
  background-color: transparent !important;
  background: transparent !important;
  background-image: none !important;
}

.pagebuilder .box-spacer .box-content {
  display: block;
  background-color: transparent !important;
  background: transparent !important;
  background-image: none !important;
}

/* End of box spacer */

/* Box 100-text */
.box-100-text {
  width: calc(100% - 30px);
  margin: 15px;
  display: flex;
  flex-flow: column;
  justify-content: center;
}
.box-100-text .box-image-container {
  width: 100%;
  padding-top: 35%;
  border-radius: 3rem;
  overflow: hidden;
}
.box-100-text .box-content {
  padding: 3rem 0;
  width: 100%;
  /* max-width: 700px; */
}

section.full .box-100-text .box-content {
  margin: 0 auto;
  padding: 0 30px;
}
/* End of box 100-text */

/* new 2026-05-19 */

.box-100-img-bottom-right-corner {
  width: 100%;
  display: flex;
  justify-content: center;
  position: relative;
  border-radius: 1.5rem;
}

section.standard .box-100-img-bottom-right-corner {
  width: calc(100% - 3rem);
  justify-content: space-between;
  margin: 1.5rem;
}

.box-100-img-bottom-right-corner .box-content {
  /* margin: 0;
  width: 100%;
  padding: 30px 30px;
  border-radius: 1.5rem; */

  margin: 0;
  width: 100%;
  padding: 3rem 10%;
  /* max-width: 960px; */
  border-radius: 3rem;
}

.box-100-img-bottom-right-corner .box-image-container {
  width: 120px;
  height: 120px;
  position: absolute;
  bottom: -43px;
  right: -32px;
  display: flex;
  /* padding-top: 9%; */
  /* overflow: hidden; */
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
}
/*  */

/***************************************************************/
/***************************************************************/
/* Box wave */

@keyframes slide {
  /* from start to 45%, and to the end (100%) */
  45%,
  100% {
    background-position-x: left;
  }
  /* middle */
  50% {
    background-position-x: center;
  }
}

/* test 2025-05-19 */

/*  */

.box-wave {
  width: 100%;
  height: 66px;
  display: flex;
  flex-flow: column;
  justify-content: center;

  background-repeat: repeat-x;
  background-size: auto 100%;
}
.box-wave .box-image-container {
  width: 100%;
  height: 66px;
  background-position-y: bottom;
  background-position-x: right;
  background-repeat: repeat-x;
  background-size: auto;

  /* animation: slide; */
  /* animation-timeline: view(inline); */
}

/**********************************************************************/
/**********************************************************************/

/* new 2026-04-29 *************/
/* box-100-title */
.box-100-title {
  width: calc(100% - 30px);
  margin: 15px;
  display: flex;
  flex-flow: column;
  justify-content: center;
}
.box-100-title .box-content {
  padding: 30px;
  width: 100%;
  max-width: 700px;
}
/********************/

/* box-100-title */
.box-100 {
  width: calc(100% - 30px);
  margin: 15px;
  display: flex;
  flex-flow: column;
  justify-content: center;
  position: relative;
}
.box-100 .box-image-container {
  position: absolute;
  width: 100%;
  background-size: 15% !important;
  background-position: bottom right !important;
  background-repeat: no-repeat;
  height: 100%;
}
.box-100 .box-content {
  width: 100%;
  text-align: center;
  color: var(--red);
  padding: 1.5rem;
}
.box-100 .box-content > div {
  width: 100%;
  max-width: 60rem;
  margin: auto;
}
.box-100 .box-content h1 {
  font-size: 8.6rem;
  color: var(--red);
  text-align: center;
}
.box-100 .box-content .item-action {
  padding-top: 5rem;
}

section.full .box-100-text .box-content {
  margin: 0 auto;
  padding: 0 30px;
}
/* End of box 100-text */

/* BOX 100 img left/right */
.box-100-img-right {
  flex-flow: row-reverse;
}

.box-100-img-right,
.box-100-img-left,
.box-100-curved-title {
  width: 100%;
  display: flex;
  justify-content: center;
  position: relative;
}

/* box-products */

.product-images-wrapper {
  width: 50%;
  display: flex;
  flex-direction: column;
}
.rainforest_alliance{
  width: 3rem;
  vertical-align: center;
  margin-left: 2rem;
}
.rainforest_alliance_small{
  width: 2rem !important;
  vertical-align: center;
  margin-left: 1rem;
}
/* new 2026-05-29 */
#selected-product-main-image.splide {
  visibility: visible;
  /* min-height: 500px; */
  /* display: flex; */
  justify-content: center;
}

#selected-product-main-image .box-image-container {
  padding-top: 100%;
  background-size: 80% !important;
}

#selected-product-thumbnail-slider {
  padding: 2rem;
}
#selected-product-thumbnail-slider.splide {
  visibility: visible;
}

#selected-product-thumbnail-slider.splide .splide__slide {
  opacity: 0.3;
  cursor: pointer;
}

#selected-product-thumbnail-slider.splide .splide__slide.is-active {
  opacity: 1;
  border-color: var(--yellow);
  border-radius: 5px;
  border-width: 1px;
}

.box-100-img-left #selected-product-main-image ul li::before {
  content: unset;
}
.box-100-img-left #selected-product-thumbnail-slider ul li::before {
  content: unset;
}

.box-100-img-left #selected-product-main-image ul li {
  padding-left: 0;
  margin-bottom: 0;
}
.box-100-img-left #selected-product-thumbnail-slider ul li {
  padding-left: 0;
  margin-bottom: 0;
}

.box-100-img-left
  #selected-product-main-image.splide--fade
  > .splide__track
  > .splide__list {
  display: inline;
}

.box-100-img-left #selected-product-main-image .splide__slide img {
  vertical-align: bottom;
  width: 100%;
  max-width: 400px;
}

/* related products slider related-product-slider */

.related-products-title-controller .box-content {
  padding: 0;
}
.related-products-title-controller .box-content > div {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

/* #related-product-slider {
  background: red;
} */

#related-product-slider {
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  flex: 0 0 100% !important;
  min-width: 0;
  margin: 0 auto;
}

#related-product-slider.splide {
  visibility: visible;
  display: block;
}


#related-product-slider .splide__track {
  width: 100%;
}


/* #related-product-slider {
  width: 100%;
} */

#related-product-slider .splide__list {
  width: auto !important;
  align-items: flex-start;
}


#related-product-slider .splide__slide {
  /* height: 400px; */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

#related-product-slider .splide__slide img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

#related-product-slider .box-25-image {
  width: 25%;
  width: calc(100% - 10px);
  border-radius: 1.5rem;
  position: relative;
  overflow: hidden;
  color: var(--black);
}


/*  */
#related-product-slider.no-splide .splide__list {
  display: flex;
  gap: 1rem;
  justify-content: flex-start;
}
#related-product-slider.no-splide .splide__slide {
  flex: 0 0 auto;
  width: 250px; /* or whatever fits your design */
}

/*  */

/*  */

.box-100-img-left.box-products {
  background-color: var(--lightGray);
  border-radius: 1.5rem;
}
/* box-products */
.box-100-img-left.box-products .box-image-container {
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  padding: 0;
  width: calc(100% - 1.5rem);
}
/* box-products */
.box-100-img-left.box-products .box-image-container ol {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
/* box-products */
.box-100-img-left.box-products .box-content {
  padding: 3rem;
  font-size: 1.6rem;
  color: var(--black);
}
/* box-products */
.box-100-img-left.box-products .box-content h1,
.box-100-img-left.box-products .box-content h2 {
  font-size: 3.2rem;
}
/* box-products */
.box-100-img-left.box-products .box-content strong {
  font-size: 1.8rem;
}
.nutrition_table {
  border-collapse: collapse;
  font-size: 14px;
  color: var(--black);
}
.nutrition_table td {
  border-bottom: 1px solid var(--black);
  padding: 0.8rem 3rem 0.8rem 0;
}
section.standard .box-100-img-right,
section.standard .box-100-img-left,
section.standard .box-100-curved-title {
  width: calc(100% - 3rem);
  justify-content: space-between;
  margin: 1.5rem;
}

.box-100-img-right .box-content,
.box-100-img-left .box-content {
  margin: 0;
  width: 50%;
  padding: 10rem 3rem;
}
.box-100-curved-title .box-content {
  margin: 0;
  width: 100%;
  padding: 13rem 3rem 0 50%;
}

.box-100-img-right .box-image-container,
.box-100-img-left .box-image-container,
.box-100-curved-title .box-image-container {
  width: calc(50% - 1.5rem);
  position: relative;
  display: flex;
  padding-top: 25%;
  border-radius: 3rem;
  overflow: hidden;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.box-100-curved-title .box-image-container {
  padding-top: 15%;
  position: absolute;
  width: 65%;
  left: 0;
  height: 100%;
  background-size: contain;
  background-position: top center !important;
}
/* End of BOX 100 img left/right */

/* Box 100 transparent */
.box-100-transparent {
  width: 100%;
  width: calc(100% - 30px);
  margin: 15px;
  width: 100%;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  background-color: transparent !important;
}

.box-100-transparent .box-content {
  width: 100%;
  max-width: 94rem;
  padding: 10rem 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.box-100-transparent .box-content h2 {
  font-size: 40px;
}

.box-100-transparent .box-content > div p,
.box-100-transparent .box-content > div:not(.item-action) span {
  font-size: 22px;
}

.box-100-transparent .item-action {
  display: flex;
}

.box-100-transparent .item-action div,
.box-100-transparent .item-action a {
  margin-right: 25px;
  font-size: 20px;
}
/* End of box 100 transparent */

/* Box 25 */
.box-25 {
  width: 25%;
  width: calc(25% - 30px);
  margin: 15px;

  border-radius: 1.5rem;
  position: relative;
  overflow: hidden;
}
/* End of box 25 */
/* Box 25-image */
.box-25-image {
  width: 25%;
  width: calc(25% - 30px);
  margin: 15px;

  border-radius: 1.5rem;
  position: relative;
  overflow: hidden;
  color: var(--black);
}
/* End of box 25 image*/

/* Box 33/50 */
.box-33 {
  width: 33.33%;
  width: calc(33.33% - 3rem);
  margin: 1.5rem;
  border-radius: 3rem;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease-in;
}

.box-33:hover {
  /*width: calc(36% - 30px);*/
}

.box-33:hover + .box-33 + .box-33,
.box-33:hover + .box-33,
.box-33:has(+ .box-33:hover),
.box-33:has(+ .box-33 + .box-33:hover) {
  /*width: calc(32% - 30px);*/
}


/* .section-slider-smal */
.section-slider-small .box-50 {
  /*width: 100%;*/
  /* max-width: 60rem; */
  justify-content: space-between;
  align-items: flex-start;
}

.box-33-news {
    width: 33.33%;
    width: calc(33.33% - 3rem);
    margin: 1.5rem;
    background-color: var(--pink);
    border-radius: 2rem;
    overflow: hidden;
}

a.box-33-news{
    color: inherit;
}

.box-33-news .box-image-container {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding-top: 65%;
}

.box-33-news .box-content {
    padding: 30px;
}
.box-33-news .box-content h4 {
    color: var(--red);
}

.box-33-news .item-action {
    margin-bottom: 0 !important;
}

.box-50 {
  width: 50%;
  width: calc(50% - 3rem);
  margin: 1.5rem;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: row-reverse;
  padding: 3rem 4rem;
  border-radius: 3rem;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  justify-content: space-between;
  align-items: center;
}

.box-50-button {
  width: 50%;
  width: calc(50% - 3rem);
  margin: 1.5rem;
  border-radius: 3rem;
  position: relative;
  overflow: hidden;
}

.box-25-image .box-image-wrapper,
.box-25 .box-image-wrapper,
.box-33 .box-image-wrapper,
.box-50 .box-image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 1.5rem;
}
.box-25-image .box-image-wrapper {
  border-radius: 1.5rem;
}
.box-25-image.product-image .box-image-wrapper .box-image-container{
  background-size: 80% !important;
}



.box-25-image:hover .box-image-container,
.box-25:hover .box-image-container,
.box-33:hover .box-image-container,
.box-50:hover .box-image-container {
  transform: scale(1.1);
}
.pagebuilder .box-25-image:hover .box-image-container {
  transform: scale(1);
}

.section-slider-small .box-50:hover {
  transform: scale(1.1);
  z-index: 999;
}
.pagebuilder .section-slider-small .box-50:hover {
  transform: scale(1);
  z-index: 999;
}
.section-slider-small .box-50:hover .box-image-container {
  transform: none;
}
.box-25-image .box-image-container,
.box-25 .box-image-container,
.box-50 .box-image-container {
  padding-top: 65%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.box-33 .box-image-container {
  padding-top: 65%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  margin: 2rem 1rem 0;
}
.box-50 .box-image-container {
  position: relative;
  width: 30%;
  padding-top: 20rem;
  z-index: 1;
}
.box-25-image .box-image-container,
.box-50-button .box-image-container {
  position: relative;
  width: 100%;
  padding-top: 100%;
  z-index: 1;
}
.box-50 .box-content {
  padding: 0;
  z-index: 10;
  width: 70%;
  width: calc(70% - 3rem);
  font-size: 1.4rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.box-25-image .box-content {
  padding: 1rem 0;
}
.box-25 .box-content *{
	font-size: 1.4rem;
}
.box-25-image .box-content h2,
.box-25-image .box-content h3 {
  font-weight: normal;
  padding: 0;
}
.box-25 .box-content,
.box-33 .box-content {
  padding: 3rem;
}
.box-25 .box-content h2,
.box-25 .box-content h3,
.box-33 .box-content h2,
.box-33 .box-content h3 {
  font-size: 2.4rem;
}
.box-25-image .box-content h2,
.box-25-image .box-content h3 {
  font-size: 1.6rem;
}
.box-50 .box-content h3 {
  font-size: 24px;
}
.box-50-button .box-content {
  position: absolute;
  padding: 3rem;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: end;
}

/* End of box 25 , 33, 50 */

/* Box 40/60, 60/40  */
.box-40-60,
.box-60-40 {
  width: 100%;
  width: calc(100% - 3rem);
  margin: 1.5rem;
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.box-60-40 {
  flex-direction: row-reverse;
}
.box-40-60 .box-content,
.box-60-40 .box-content {
  margin: 0;
  width: 60%;
  padding: 3rem 4rem;
  border-radius: 1.5rem;
}

.box-40-60 .box-image-container,
.box-60-40 .box-image-container {
  border-radius: 1.5rem;
  width: calc(40% - 3rem);
  position: relative;
  display: flex;
  padding-top: 15%;
  overflow: hidden;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
/* End Box 40/60, 60/40  */

/* Box 100 toggle */
.box-100-toggle {
  width: 100%;
  width: calc(100% - 30px);
  margin: 1.5rem;
  position: relative;
}

.box-100-toggle .box-image-container {
  display: none;
  background-color: transparent !important;
  background: transparent !important;
  background-image: none !important;
}

.box-100-toggle .box-content {
  width: 100%;
  padding: 0;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.box-100-toggle .box-content > h2 {
  color: var(--white) !important;
  background-color: var(--black);
  width: 100%;
  display: flex;
  padding: 2rem 5rem 2rem 2.5rem;
  position: relative;
  top: 0;
  left: 0;
  cursor: pointer;
  margin: 0 !important;
  font-size: 20px !important;
}

.box-100-toggle .box-content > h2::after {
  content: "\f107";
  font-family: "Line Awesome Free";
  color: var(--white);
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  font-weight: 900;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.box-content.active > h2::after {
  transform: translateY(-50%) rotate(180deg);
}

.box-100-toggle .box-content > div {
  padding: 0 2.5rem;
}

.box-100-toggle .box-content .item-action {
  margin-top: 0;
}

.box-100-toggle .box-content.active > div {
  padding: 2.5rem;
}

.box-100-toggle .box-content.active .item-action {
  padding-top: 0;
}

.box-100-toggle .box-content > div {
  height: 0;
  overflow: hidden;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  width: 100%;
}

.box-100-toggle .box-content > div {
  height: 0;
  overflow: hidden;
}

.box-100-toggle .box-content.active > div {
  height: auto;
}
/* End of Box 100-toggle */

/* Box dropdown text */
.box-dropdown-content {
  width: 100%;
  width: calc(100% - 30px);
  margin: 15px;
  width: 100%;
  display: flex;
  flex-flow: column;
}

.box-dropdown-content .box-content h2 {
  background-color: var(--gray);
}

.box-dropdown-content .box-content > div {
  visibility: hidden;
  height: 0px;
  padding: 0;
}

.pagebuilder .box-dropdown-content .box-content > div {
  padding: 30px;
  visibility: visible;
  display: block;
  height: auto;
}

/*    Box-100-dropdown-toggle   */
.box-100-dropdown-toggle {
  width: 100%;
  width: calc(100% - 30px);
  margin: 15px;
  width: 100%;
  display: flex;
  flex-flow: column;
}

.box-100-dropdown-toggle-header {
  display: flex;
  justify-content: space-between;
  padding: 0.9rem 4rem 0.9rem 4rem;
  align-items: center;
}

.box-100-dropdown-toggle-header-title {
  margin: 0;
  padding: 0;
}

.box-100-dropdown-toggle .box-100-dropdown-toggle-show-hide {
  font-size: 30px;
}

.box-100-dropdown-toggle-content {
  visibility: hidden;
  height: 0px;
  padding: 0;
}

.pagebuilder .box-100-dropdown-toggle-content {
  padding: 30px;
  visibility: visible;
  display: block;
  height: auto;
}
/*   End box-100-dropdown-toggle    */

/* Box slider images */

.box-slider-image-block {
  width: 100%;
  width: calc(100% - 3rem);
  max-width: 124rem;
  position: relative;
  margin: 1.5rem;
  padding: 3rem;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  border-radius: 3rem;
}
section.section-slider .box-slider-image-block {
  width: 100%;
  max-width: 100%;
  justify-content: center;
  border-radius: 0;
  padding-bottom: 10rem;
}

.box-slider-image-block .box-image-container {
  padding-top: 40%;
  position: relative;
  width: 40%;
  height: 100%;
  border-radius: 3rem;
  overflow: hidden;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
section.section-slider .box-slider-image-block .box-image-container {
  padding-top: 0;
  max-width: 47rem;
  height: 47rem;
  max-height: auto;
  margin-right: 6rem;
}
.box-slider-image-block .box-content {
  width: 55%;
}
section.section-slider .box-slider-image-block .box-content {
  max-width: 65rem;
}

.box-slider-image-block .box-content > h1,
.box-slider-image-block .box-content > h2 {
  font-size: 15rem;
  line-height: 15rem;
}
.box-slider-image-block .box-content > div h1,
.box-slider-image-block .box-content > div h2,
.box-slider-image-block .box-content > div h3 {
  font-size: 3rem;
  line-height: auto;
}
.box-slider-image-block .box-content > div p,
.box-slider-image-block .box-content > div:not(.item-action) p {
  font-size: 1.6rem;
}

.box-100-video {
  width: 100%;
  position: relative;
  margin: 0;
  /*min-height: calc(100vh - 85px);*/
  min-height: 80rem;
  overflow: hidden;
}
.box-100-video .box-video-container {
  display: flex;
  width: 100%;
  height: 100%;
  padding: 56.25% 0 0 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-height: 100%;
}

.box-video-container iframe,
.box-video-container object,
.box-video-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.box-100-video .box-video-container iframe {
  min-height: 80rem;
  min-width: 142rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.box-100-video .box-image-container {
  padding-top: 35%;
  min-height: 40vh;
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.box-100-video .box-content {
  position: absolute;
  top: 0;
  height: 100%;
  left: 0;
  padding: 2.5rem;
  width: 100%;
  font-size: 2.8rem;
  line-height: 3.5rem;
  color: var(--white);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.box-100-video .box-content > div {
  width: 100%;
  margin: 0 auto;
}

.pagebuilder .box-100-video .box-content {
  min-width: 20rem;
}

.box-100-video .box-content h2,
.box-100-video .box-content h1 {
  font-weight: normal;
  font-size: 8.5rem !important;
  line-height: 9.5rem;
  margin-bottom: 0;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

/* BOX 100 QUOTE */

.box-100-quote {
  width: 100%;
  margin: 1.5rem;
  display: flex;
  align-items: center;
  padding-top: 2.5rem;
  flex-direction: column;
  position: relative;
}

.box-100-quote .box-image-container {
  width: 15rem;
  height: 15rem;
  border-radius: 50%;
  padding-top: 0 !important;
  position: relative;
  z-index: 10;
}

.box-100-quote:before {
  width: 12rem;
  height: 12rem;
  border-radius: 50%;
  padding-top: 0 !important;
  background-color: var(--pink);
  opacity: 0.5;
  content: "";
  display: flex;
  position: absolute;
  left: 40%;
  left: calc(50% - 12rem);
  top: 4rem;
  z-index: 1;
}

.box-100-quote:after {
  width: 12rem;
  height: 12rem;
  border-radius: 50%;
  padding-top: 0 !important;
  background-color: var(--black);
  opacity: 0.5;
  content: "";
  display: flex;
  position: absolute;
  right: 40%;
  right: calc(50% - 12rem);
  top: 4rem;
  z-index: 1;
}

.box-100-quote .box-content {
  width: 100%;
  max-width: 76.8rem;
  margin: 0 auto;
  padding: 2.5rem;
  position: relative;
  text-align: center;
}

.box-100-quote .box-content > h2 {
  margin-bottom: 1rem;
  font-weight: normal;
  font-size: 2.5rem;
  line-height: 3.2rem;
  position: relative;
}

.box-100-quote .box-content h2::before {
  content: "\201C";
  color: var(--blue);
  position: relative;
  font-weight: 900;
  font-size: 4.5rem;
  top: 1.2rem;
  padding-right: 1rem;
}

.box-100-quote .box-content h2::after {
  content: "\201D";
  color: var(--blue);
  position: relative;
  font-weight: 900;
  font-size: 4.5rem;
  bottom: -2.7rem;
  padding-left: 1rem;
  line-height: 0;
}
/* End of boxes */

/*** new 2026-05-12 special box box-100-contactform-50-and-text-50 ******************/
.box-100-contactform-50-and-text-50-wrapper {
  display: flex;
  width: 100%;
}

.box-100-contactform-form-50 {
  display: flex;
  flex-direction: column;
  width: 50%;
  /* width: calc(50% - 3rem); */
  margin: 1.5rem;
  background-color: var(--red);
  border-radius: 1.5rem;
}

.box-100-contactform-50-and-text-50 {
  width: 50%;
  width: calc(50% - 3rem);
  margin: 1.5rem;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  /* padding: 4rem; */
  padding: 0rem 4rem 4rem 4rem;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.box-100-contactform-50-and-text-50 .box-content h3 {
  font-size: 24px;
}

.box-100-contactform-50-and-text-50-wrapper .form-wrapper {
  max-width: 1000px;
  width: 100%;
  /* width: calc(100% - 3rem); */
  /* margin: 10rem 1.5rem; */
  display: flex;
  flex-flow: column-reverse;
  /* border-radius: 5px; */
  border-radius: 1.5rem;
}

/*************************************************/

/* ############################################################### */
/* ############################################################### */

/* MEDIA */
@media all and (min-width: 1650px) {

  .box-50 {
    padding: 3rem 5rem;
  }
}
@media all and (max-width: 1250px) {
  /* ############################################################### */
  /* ############################################################### */
  /* Sections */
  section:first-of-type.section-parallax {
    min-height: calc(80vh - 80px);
    height: auto;
    background-position: left !important;
  }

  /* End of sections */
  /* ############################################################### */
  /* ############################################################### */
  .box-100-transparent .box-content h2 {
    font-size: 42px;
  }

  .box-100-transparent .box-content > div p,
  .box-100-transparent .box-content > div:not(.item-action) span {
    font-size: 22px;
  }

  .box-50 {
    padding: 3rem;
  }

  .box-slider-image-block .box-content > h1,
  .box-slider-image-block .box-content > h2 {
    font-size: 10rem;
    line-height: 10rem;
  }
  .box-slider-image-block .box-content > div h1,
  .box-slider-image-block .box-content > div h2,
  .box-slider-image-block .box-content > div h3 {
    font-size: 2.5rem;
  }
  .section-slider-small .box-50 {
    flex-direction: column;
    justify-content: flex-start;
  }
  .section-slider-small .box-50 .box-image-container {
    width: 100%;
    margin-bottom: 2rem;
  }
  .section-slider-small .box-50 .box-content {
    width: 100%;
  }
}

@media all and (max-width: 960px) {
  /* ############################################################### */
  /* ############################################################### */
  /* Sections */
  section.section-parallax {
    min-height: 500px;
  }

  section:first-of-type.section-parallax .box-100-transparent .box-content h2 {
    font-size: 32px;
  }

  section:first-of-type.section-parallax
    .box-100-transparent
    .box-content
    > div,
  section:first-of-type.section-parallax .box-100-transparent .box-content p {
    font-size: 18px;
    line-height: 150%;
  }

  /* End of sections */
  /* ############################################################### */
  /* ############################################################### */
  .content-full {
    margin: 5rem 0;
    padding: 0;
  }

  #info,
  .info {
    padding: 2rem;
    margin: 5rem 0;
  }

  .box-100-transparent .box-content h2 {
    font-size: 34px;
  }

  .box-100-transparent .box-content > div p,
  .box-100-transparent .box-content > div:not(.item-action) span {
    font-size: 20px;
  }

  .box-25,
  .box-25-image {
    width: 50%;
    width: calc(50% - 3rem);
    border-radius: 1.5rem;
  }

  .box-100-video .box-content h2,
  .box-100-video .box-content h1 {
    font-size: 6.5rem !important;
    line-height: 7rem;
  }

  .box-100-video .box-image-container {
    padding-top: 35%;
    min-height: 75vh;
  }

  .box-100-video {
    min-height: 70rem;
  }

  .box-100-video .box-video-container iframe {
    min-height: 70rem;
    min-width: 125rem;
  }
}

@media all and (max-width: 768px) {
  /* ############################################################### */
  /* ############################################################### */
  /* Sections */
  section.standard > div {
    padding: 0;
  }

  section.section-text > div .section-text-wrapper {
    width: 100%;
    width: calc(100% - 40px);
    margin: 0 20px;
  }

  section.section-text > div {
    width: 100%;
    margin: 0;
    border: none;
  }

  section.section-parallax {
    min-height: 400px;
  }

  section.section-parallax > div {
    padding: 75px 0;
  }

  /* End of sections */
  /* ############################################################### */
  /* ############################################################### */

  /* Blocks */
  /* Box 100 text */
  .box-100-text {
    width: 100%;
    margin: 1.5rem 0;
  }
  .box-100-text .box-image-container {
    width: calc(100% - 3rem);
    margin: 0 1.5rem;
  }

  .box-100-text .box-content {
    padding: 4rem 2rem 0;
  }

  /* End of box 100 text */
  /* Box 100 img left/right */
  .box-100-img-right,
  .box-100-img-left,
  .box-100-curved-title {
    flex-flow: column;
  }

  .box-100-img-right {
    flex-flow: column;
  }

  .box-100-img-left .box-image-container,
  .box-100-img-right .box-image-container {
    padding-top: 65%;
    width: 100%;
  }

	.box-100-curved-title .box-image-container {
		padding-top: 40%;
		position: relative;
		width: calc(100% - 3rem);
		left: 1.5rem;
		background-position: center;
		border-radius: 0;
	}

  .box-100-curved-title,
  .box-100-img-left,
  .box-100-img-right {
    width: 100%;
    margin: 1.5rem 0;
  }

  .box-100-img-right .box-content,
  .box-100-img-left .box-content,
  .box-100-curved-title .box-content {
    width: 100%;
    padding: 2rem 1.5rem;
  }

  /* End of box 100 img left/right */
  /* Box 100 transparent */
  .box-100-transparent {
    width: 100%;
    margin: 1.5rem 0;
  }

  .box-100-transparent .item-action div,
  .box-100-transparent .item-action a {
    margin-right: 25px;
    font-size: 18px;
  }

  .box-100-transparent .box-content {
    padding: 4rem 2rem;
  }

  .box-100-transparent .box-content h2 {
    font-size: 28px;
  }

  .box-100-transparent .box-content > div p,
  .box-100-transparent .box-content > div:not(.item-action) span {
    font-size: 18px;
  }

  /* End of box 100 transparent */
  /* Box */
  .box-33 {
    width: 100%;
    margin: 1.5rem;
  }
  .box-33-news {
      width: calc(100% - 4rem);
      margin: 1.5rem 2rem;
  }
  .box-50,
  .box-50-button {
    width: calc(100% - 3rem);
    margin: 2rem 2rem;
  }
  .box-50-button .item-action {
    justify-content: center;
    display: flex;
  }
  .box-25 .box-content,
  .box-33 .box-content,
  .box-33-news .box-content {
    padding: 4rem 2rem;
  }

  section.standard .box-100-img-right,
  section.standard .box-100-img-left,
  section.standard .box-100-curved-title {
		width: calc(100% - 4rem);
		margin: 2rem;
  }
  /* End of box 33 */
  /* Box spacer */
  .box-spacer {
    height: 25px;
  }

  /* End of box spacer */

  .box-100-video .box-content {
    font-size: 1.8rem;
    line-height: 2.7rem;
  }

  .box-100-quote {
    width: calc(100% - 3rem);
    margin: 1.5rem;
    flex-flow: wrap column;
  }
  .box-100-quote .box-image-container {
    margin: 0 auto;
  }
  .box-100-quote .box-content {
    max-width: 100%;
  }
  .box-100-quote .box-content::after {
    top: 1rem;
  }

  .box-40-60,
  .box-60-40 {
    flex-direction: column;
  }
  .box-40-60 .box-content,
  .box-60-40 .box-content {
    margin: 0;
    width: 100%;
    padding: 3rem 4rem;
    border-radius: 1.5rem;
  }

  .box-40-60 .box-image-container,
  .box-60-40 .box-image-container {
    width: 100%;
    margin-bottom: 3rem;
    padding-top: 100%;
  }
  section.section-slider .box-slider-image-block .box-image-container {
    height: 37rem;
    margin-right: 2rem;
  }
  .box-slider-image-block .box-content > h1,
  .box-slider-image-block .box-content > h2 {
    font-size: 8rem;
    line-height: 8rem;
  }
  .box-slider-image-block .box-content > div h1,
  .box-slider-image-block .box-content > div h2,
  .box-slider-image-block .box-content > div h3 {
    font-size: 2rem;
  }
  .box-slider-image-block .box-content > div p,
  .box-slider-image-block .box-content > div:not(.item-action) p {
    font-size: 1.6rem;
  }
  /* End of blocks */
  /* ############################################################### */
  /* ############################################################### */

  .box-100-contactform-50-and-text-50-wrapper {
    display: flex;
    width: 100%;
		flex-direction: column-reverse;
  }

  .box-100-contactform-form-50 {
    display: flex;
    flex-direction: column;
    width: 100%;
    width: calc(100% - 3rem);
    margin: 1.5rem;
    background-color: var(--red);
    border-radius: 1.5rem;
  }

  .box-100-contactform-50-and-text-50 {
    width: 100%;
    width: calc(100% - 3rem);
    margin: 1.5rem;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    /* padding: 4rem; */
    padding: 0rem 4rem 4rem 4rem;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }

  .box-100-contactform-50-and-text-50 .box-content h3 {
    font-size: 24px;
  }

  /* .box-100-img-bottom-right-corner .box-image-container  */
  .box-100-img-bottom-right-corner .box-image-container {
    width: 80px;
    height: 80px;
    position: absolute;
    bottom: -24px;
    right: -18px;
  }

  /* products */

  #selected-product-main-image .box-image-container {
    padding-top: 65%;
}

  .product-images-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
  }
  #selected-product-main-image.splide {
    visibility: visible;
    /* display: flex; */
    justify-content: center;
    min-height: unset;
    height: 300px;
  }

  .box-100-img-left #selected-product-main-image .splide__slide img {
    vertical-align: bottom;
    width: auto;
    max-height: 300px;
  }

  section.standard.selected-products-page {
    margin-bottom: 4rem;
  }

	h1, section.section-header > div .section-text-wrapper h1, section.section-header > div .section-text-wrapper h1 > span, .box-100 .box-content h1 {
		font-size: 3.5rem;
	}




     /* test 2026-06-08 11:18 */
.section-slider-small .splide__track {
  clip-path: none;
  overflow: hidden;
}
/*  */

/* test 2026-06-08 12:19 */
.small-slider-nav {
    padding-right: 0;
}


}

@media all and (max-width: 550px) {
  /* ############################################################### */
  /* ############################################################### */
  /* Sections */
  section.section-parallax {
    min-height: 30rem;
  }

  /* End of sections */
  /* ############################################################### */
  /* ############################################################### */

  .box-100-transparent .box-content h2 {
    font-size: 24px;
  }

  .box-100-transparent .box-content > div p,
  .box-100-transparent .box-content > div:not(.item-action) span {
    font-size: 14px;
  }

  .box-25 {
    width: 100%;
    margin: 1.5rem;
  }
  .box-25 .box-content h2,
  .box-33 .box-content h2 {
    font-size: 18px;
    padding: 0;
  }

  .box-100-toggle .box-content > h2 {
    font-size: 16px !important;
  }

  .box-100-video .box-content h2,
  .box-100-video .box-content h1 {
    font-size: 4.5rem !important;
    line-height: 5rem;
  }

  .box-100-video .box-image-container {
    min-height: 40rem;
  }

  .box-100-quote .box-content h2 {
    font-size: 2rem;
  }

  .box-100 .box-image-container {
    background-size: 25% !important;
    right: -3rem;
    bottom: 3rem;
  }
  .box-slider-image-block {
    padding: 2rem;
    flex-direction: column;
    align-items: normal;
  }

  section.section-slider .box-slider-image-block {
    justify-content: start;
    padding: 3.5rem;
    max-width: calc(100% - 5rem);
  }
  section.section-slider .box-slider-image-block .box-image-container {
    height: auto;
    width: 100%;
    max-width: 100%;
    padding-top: 100%;
    margin: 0 0 2rem 0;
  }
  .box-slider-image-block .box-image-container {
    padding-top: 100%;
    width: 100%;
  }
  .box-slider-image-block .box-content {
    width: 100%;
  }
  .box-slider-image-block .box-content > h1,
  .box-slider-image-block .box-content > h2 {
    font-size: 6rem;
    line-height: 6rem;
  }

  /* test 2026-06-08 11:14 */
  /* .section-slider-small .box-50 {
    max-width: calc(50% - 3rem) !important;
    max-width: 30rem !important;
    justify-content: start;
  } */
   
  /* test 2026-06-08 11:49 */
  /* .section-slider-small .splide__track {
    padding-left: 2rem;
    padding-right: 2rem;
  } */

  /* test 2026-06-08 12:14 */
  .box-100-title .box-content {
    padding: 30px 30px 30px 10px;
  }

}
