/* Card subtext style */
.card-subtext {
  font-size: 0.95em;
  font-weight: bold;
}
.prime-bg {
  background-color: var(--theme-bg100) !important;
}
.prime-color {
  color: var(--theme-bg100) !important;
}

.light-bg {
  background-color: var(--light) !important;
}

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

/* Header */

.navbar {
  /* background-color: none; */
  background-color: var(--theme-bg100-trlct);
  /* background-color: var(--theme-bg30);
  transition: all 0.3s;
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px); */
}

/* Add text shadow to nav links in translucent mode for better readability */
.navbar .nav-link {
  text-shadow: 0 0 2px rgba(63, 85, 54, 0.8), 0 0 1px var(--theme-bg100);
}

.navbar .dropdown-lang .dropdown-toggle {
  text-shadow: 0 0 2px rgba(63, 85, 54, 0.8), 0 0 1px var(--theme-bg100);
}

.navbar.sticky-header-hero {
  background-color: var(--theme-bg30);
  transition: all 0.3s;
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}

/* Add text shadow to nav links in sticky-header-hero mode for better readability */
.navbar.sticky-header-hero .nav-link {
  text-shadow: 0 0 2px rgba(63, 85, 54, 0.8), 0 0 1px var(--theme-bg100);
}

.navbar.sticky-header-hero .dropdown-lang .dropdown-toggle {
  text-shadow: 0 0 2px rgba(63, 85, 54, 0.8), 0 0 1px var(--theme-bg100);
}

.navbar.sticky-header {
  background-color: var(--theme-bg100);
}

.navbar.header-solid {
  background-color: var(--theme-bg100);
}

.navbar.header-custom {
  background-color: cadetblue;
}

.navbar-brand {
  color: #fff;
  text-transform: uppercase;
  align-items: center;
}

.nav-link {
  color: rgba(255, 255, 255, 0.5);
}

.navbar-nav .nav-link.activeP {
  color: var(--light);
}

.navbar-nav .show > .nav-link,
.nav-link:focus,
.nav-link:hover {
  color: #fff;
}

.logo{
  min-width: 200px;
  /* height: 60px; */
}

@media (max-width:768px){

  .logo > img{
    max-width: 150px !important;
  }

}
.about-block:hover{
  background-color: var(--light-bg96) !important;
}

section{
  padding-top: 5rem;
 padding-bottom: 5rem;
}

@media (min-width: 1200px) {

  .navbar-expand-xl .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: start;
    order: 1;
    margin-left: auto;
    margin-right: 40px;
    flex-grow: unset;
  }

  .navbar-expand-xl .navbar-toggler {
    order: 2;
    display: block;
  }

  .navbar-expand-xl .collapse:not(.show) {
    display: none !important;
  }

  #navbarNavDropdown{
    display: block;
  }
}
@media (max-width: 1199px) {
  /* .navbar {
    background-color: var(--theme-bg100) !important;
  } */
}


/* Hero */

.section-hero {
  height: 100svh;
  position: relative;
  background-image: url(../images/foto-ppal-2.webp);
  background-size: cover;
  background-repeat: no-repeat;
  /* background-position: center -290px; */
  min-height: 500px;
}

.section-hero:after {
  content: '';
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  z-index: 0;
  /* background-color: #000; */
  opacity: 0.4;
  top: 0;
  left: 0;
  right: 0;
  flex-direction: column; /* Stack children vertically */
}

/* .section-hero__wrapper {
  position: relative;
  height: 100vh;
  flex-wrap: wrap;
  z-index: 3;
  color: #fff;
  width: 100%;
} */

.section-hero__wrapper {
  display: flex; /* Reintroduce flexbox */
  align-items: end; /* Align items to the end, similar to the removed class */
  justify-content: center; /* Center align the flex items */
  width: 100%; /* Ensure it spans the full width of its parent */
  color: #fff;
}

.container {
  display: flex; /* Ensure the container is also flex if not already */
  flex-direction: column; /* Stack children vertically */
  justify-content: flex-end; /* Center content */
  height: 100%; /* Adjust the height as needed, 100vh for full viewport height */
  width: 100%; /* Adjust width as necessary */
}

/* Language Box */
.navbar__inner {
  position: relative;
  padding-right: 45px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  align-items: center;
  padding-left: 20px;
  padding-right: 20px;
}

.navbar__lang {
  float: left;
  line-height: 60px;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  margin-right: 20px;
  transform: translate();
}

.navbar__lang > a {
  color: #fff;
  text-decoration: none;
}

.navbar__lang i {
  margin-left: 5px;
}

.navbar__lang_box {
  background: #fff;
  padding: 0;
  /* width: 4.2rem; */
  border-radius: 3px;
  position: absolute;
}

.navbar__lang_box li {
  list-style: none;
  line-height: 30px;
  padding: 5px 15px;
  border-bottom: 1px solid #ccc;
}

.navbar__lang_box li:hover {
  background-color: #eee;
}

.navbar__lang_box li a {
  color: #000;
  font-size: 18px;
  text-decoration: none;
}

.navbar__lang_box li img {
  margin-right: 5px;
}

.dropdown-lang a {
  opacity: 0.6;
}

.dropdown-lang a:hover, .dropdown-lang a.show {
  opacity: 1;
}

/* Navbar Toggler */
/* Language Dropdown */
/* .dropdown-lang .btn {
  color: #fff !important;
  background: transparent !important;
  border: none;
  transition: color 0.2s;
}
.dropdown-lang .btn:hover,
.dropdown-lang .btn:focus {
  color: #ccc !important;
}
.dropdown-lang.show .btn,
.dropdown-lang .btn[aria-expanded="true"] {
  color: #fff !important;
}
.dropdown-lang .dropdown-item:hover {
  background-color: #eee !important;     /* Grey on hover */
  /* color: #222 !important; */
/* } */

/* Navbar Toggler */


/* Navbar links: white by default, #ccc on hover/focus, yellow when active */
.navbar-nav .nav-link {
  color: #fff !important;
  transition: color 0.2s;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus {
  color: #ccc !important;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link.active:focus,
.navbar-nav .nav-link.active:hover {
  color: #FFD600 !important;
}

/* end */

.navbar-toggler:focus {
  box-shadow: unset;
}

/* Page Header */
.page-header {
  background: url(../images/hero-2.webp) center 80% no-repeat;
  background-size: cover;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  position: relative;
  padding-top: 3rem;
  padding-bottom: 3rem;
}

@media (min-width: 768px) {
  .page-header {
    min-height: 530px;
    background-position: center 80%;
  }
}

@media (max-width: 767px) {
  .page-header {
    min-height: 220px;
    align-items: center;
    background-position: center bottom;
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
  color: var(--light);
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
  font-size: 18px;
  color: var(--light);
}

.button-icon{
  width: 34px;
  height: 34px;
}

.button-icon2{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
}

.mailtel{
  text-decoration: none;
}


/* Footer */
.section-footer {
  background-color: var(--theme-bg100);
  color: #b0b9ae;
}

.footer .btn.btn-link {
  display: block;
  margin-bottom: 5px;
  padding: 0;
  text-align: left;
  text-decoration: none;
  color: #b0b9ae;
  font-weight: normal;
  text-transform: capitalize;
  transition: 0.3s;
}

.footer .btn.btn-link::before {
  position: relative;
  content: '\f105';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  margin-right: 10px;
}

.footer .btn.btn-link:hover {
  color: var(--light);
  letter-spacing: 1px;
  box-shadow: none;
}

/*** Product ***/
.product-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 0 45px rgba(0, 0, 0, 0.07);
  margin-top: 40px;
  display: flex;
  flex-direction: column;
}

.product-item .product-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(63, 85, 54, 0.5);
  opacity: 0;
  padding-top: 60px;
  transition: 0.5s;
}

.product-item:hover .product-overlay {
  opacity: 1;
  padding-top: 0;
}

.product-item .text-center.p-4.light-bg {
  flex: 1;
}

/*** About ***/
.about-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 0 45px rgba(0, 0, 0, 0.07);
  margin-top: 40px;
  display: flex;
  flex-direction: column;
}

.about-item .about-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(63, 85, 54, 0.5);
  opacity: 0;
  padding-top: 60px;
  transition: 0.5s;
}

.about-item:hover .about-overlay {
  /* opacity: 1; */
  padding-top: 0;
}

.about-item .text-center.p-4.light-bg {
  flex: 1;
}

.d-flex.position-relative.h-100 {
  border-radius: 1.2rem !important;
  overflow: hidden;
}

/*** Process Item ***/
.process-item div {
  background: #ffffff;
  /* border: 1px dashed rgba(0, 185, 142, 0.3); */
  transition: 0.5s;
  text-decoration: none !important;
}

.process-item:hover div {
  /* background: var(--light); */
  /* border-color: transparent; */
}

.process-item div * {
  transition: 0.5s;
}

.process-item:hover div * {
  color: #000 !important;
}

.process-item,
.process-item > div,
.product-item,
.product-item > div,
.product-item .text-center.p-4.light-bg,
.about-item {
  border-radius: 8px !important;
}


/* Back to top */
.back-to-top {
  position: fixed;
  display: none;
  background-color: var(--light);
  color: var(--theme-bg100);
  border-color: var(--theme-bg100);
  right: 30px;
  bottom: 30px;
  z-index: 99;
  height: 55px;
  width: 55px;
  font-size: 20px;
  line-height: 35px;
}

.back-to-top:hover,
.back-to-top:focus,
.back-to-top:active:focus {
  background-color: var(--theme-bg100);
  color: var(--light);
  border-color: var(--light);
}

.copyright {
  background-color: var(--light);
}



/* Gallery with arrow*/


.grid-gallery {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 50px 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  grid-auto-rows: 250px;
  grid-auto-flow: dense;
  grid-gap: 1px;
}

.grid-gallery .grid-item {
  position: relative;
  background-color: #efefef;
  overflow: hidden;
}

.grid-gallery .grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.grid-gallery .grid-item:hover img {
  transform: scale(1.05);
}

.grid-gallery .grid-item a {
  cursor: zoom-in;
}

.grid-gallery .grid-item:nth-child(3n - 2) {
  grid-column: span 2;
  grid-row: span 2;
}

/* Let's make it responsive */
@media (max-width: 768px) {
  .grid-gallery {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-auto-rows: 250px;
  }

  .grid-gallery .grid-item:nth-child(3n - 2) {
    grid-column: unset;
    grid-row: unset;
  }
}

/* ======================== 
// Gallery Custom Style
========================== */

.grid-gallery .grid-text {
  background-color: red;
    padding: 20px;
    color: #fff;
    display: flex;
    align-items: center;
}

.grid-gallery .grid-text p {
  margin-bottom: 0;
}

.overlay {
  position: absolute;
  left: 15px;
  right: 15px;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.7);
  padding: 15px;
  opacity: 0;
  visibility: hidden;
  transition: all ease 0.4s;
}

.show.overlay {
  visibility: visible;
  opacity: 1;
  bottom: 20px;
}

.overlay h2 {
  color: #fff;
  font-size: 18px;
}
.overlay p {
  color: #fff;
  margin-bottom: 0;
}
.grid-gallery .grid-item:hover .overlay {
  visibility: visible;
  opacity: 1;
  bottom: 20px;
}

@media (min-width: 475px) {
  .overlay {
    padding: 15px;
  }
  .overlay h2 {
  }
}
@media (min-width: 768px) {
  .overlay {
    padding: 20px;
  }
}

@media (min-width: 992px) {
  .overlay h2{
    font-size: 24px;
  }
  .overlay {
    padding: 30px;
  }
}

/* ======================== 
// Carousel Custom Style
========================== */

.carousel-item .h-100 {
  min-height: 523px;
  max-height: 523px;
}

.h-100 {
  min-height: 523px;
  max-height: 523px;
}

/* --- Carousel: Desktop (large screens) --- */
@media (min-width: 992px) {
  .carousel-col-responsive {
    min-height: 400px;
    height: 100%;
  }
  .carousel .bg-fixed {
    min-height: 400px;
    height: 100%;
    background-size: contain !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .carousel-inner,
  .carousel-item {
    height: 100%;
  }
  .carousel-control-prev, .carousel-control-next {
    height: 100%;
    top: 0;
    bottom: 0;
    transform: none;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    opacity: 0.8;
  }
}

/* --- Carousel: Mobile (small screens) --- */
@media (max-width: 991.98px) {
  .carousel-col-responsive {
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    padding: 0;
  }
  .carousel .bg-fixed {
    aspect-ratio: 4/3;
    width: 100%;
    height: auto !important;
    min-height: unset !important;
    max-height: unset !important;
    background-size: contain !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .carousel-inner,
  .carousel-item {
    height: auto;
  }
  .carousel-control-prev, .carousel-control-next {
    height: 100%;
    top: 0;
    bottom: 0;
    transform: none;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    opacity: 0.8;
  }
}

@media (max-width: 575.98px) {
  .carousel .bg-fixed {
    aspect-ratio: 1/1;
  }
}

/* Remove extra padding from carousel inner content if needed */
.carousel .p-4 {
  padding: 0 !important;
}

/* ======================== 
// FAQ Style
========================== */

.faq-section h2 {
  color: var(--theme-bg100); /* Primary color */
  font-weight: bold;
}

.accordion-button {
  background-color: var(--light); /* Light background */
  color: var(--theme-bg100); /* Primary color */
  font-weight: bold;
}

.accordion-button:not(.collapsed) {
  background-color: var(--theme-bg100); /* Primary color */
  color: #fff; /* White for contrast */
}

/* Style the accordion arrow when collapsed (contracted) */
.accordion-button.collapsed::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%233f5536'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e") !important;
}

/* Style the accordion arrow when expanded */
.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ede689'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e") !important;
}

.accordion-body {
  background-color: var(--light); /* Light background */
  color: #212529; /* Text color */
}

/* Ensure hero content is above any overlay */
.section-hero__content {
  position: relative;
  z-index: 2;
}

/*
 * HERO/HEADER SECTION - ABOUT PAGE
 * Move all hero/header content alignment and heading vertical positioning to CSS only.
 */
.page-header.herosection-block {
  background-image: url('../images/hero-small-header.webp');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center 15%; /* Focus on area of interest, not stretched */
  min-height: clamp(12vh, 22vw, 45vh); /* Dynamic min-height based on viewport */
  display: flex;
  align-items: flex-start;
  justify-content: center;
  position: relative;
  padding-top: 64px; /* Ensure header starts below fixed navbar */
  padding-bottom: 1.5rem; /* Reduce bottom padding for less vertical space */
}

/* Remove vertical padding from .container inside .page-header.herosection-block for all screen sizes */
.page-header.herosection-block .container {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

/* Tweak for mobile screens */
@media (max-width: 575.98px) {
  .page-header.herosection-block {
    min-height: clamp(12vh, 38vw, 22vh);
    padding-top: 56px; /* Slightly smaller for mobile nav */
  }
}

@media (min-width: 992px) {
  .page-header.herosection-block {
    align-items: center;
  }
  .page-header.herosection-block h1 {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 2px 8px rgba(0,0,0,0.25), 0 0 2px #000, 0 0 1px #000;
    word-break: break-word;
    overflow-wrap: break-word;
    white-space: normal;
    z-index: 2;
    position: relative;
  }
}

@media (max-width: 991.98px) {
  .page-header.herosection-block {
    align-items: center;
  }
  .page-header.herosection-block h1 {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    display: block;
    font-size: 1.7rem;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 2px 8px rgba(0,0,0,0.25), 0 0 2px #000, 0 0 1px #000;
    word-break: break-word;
    overflow-wrap: break-word;
    white-space: normal;
    z-index: 2;
    position: relative;
  }
}

/* ======================== 
// Carousel Aspect Ratio Standardization
========================== */

.carousel-aspect-ratio {
  aspect-ratio: 523 / 524;
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  /* Fallback for browsers without aspect-ratio support */
}

/* Fallback for aspect-ratio using padding hack */
@supports not (aspect-ratio: 1) {
  .carousel-aspect-ratio {
    height: 0;
    padding-top: calc(100% * 524 / 523);
    position: relative;
  }
  .carousel-aspect-ratio > * {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    width: 100%;
    height: 100%;
  }
}

/* Standardize carousel images */
.carousel-aspect-ratio img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  background: #fff;
}

/* Carousel overlay/solid content: safe area for text/textboxes */
.carousel-aspect-ratio .carousel-overlay-content,
.carousel-aspect-ratio .carousel-solid-content {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  text-align: center;
  padding: 1.5rem;
  padding-bottom: 3.5rem; /* Prevent overlap with indicators */
  padding-left: 2.5rem;   /* Only up to where the arrow icon starts */
  padding-right: 2.5rem;
  box-sizing: border-box;
}

/* Ensure carousel controls overlay the full slide area */
.carousel .carousel-control-prev,
.carousel .carousel-control-next {
  height: 100%;
  top: 0;
  bottom: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.8;
  pointer-events: auto;
}

/* Carousel indicators: keep default shape, only change color */
.carousel-indicators [data-bs-target] {
  background-color: rgb(63, 85, 54) !important;
}

/* Carousel controls: only green arrows, no background circle */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-image: none !important;
  width: 2rem;
  height: 2rem;
}
.carousel-control-prev-icon::after,
.carousel-control-next-icon::after {
  content: '';
  display: block;
  width: 1.2rem;
  height: 1.2rem;
  border: solid rgb(63, 85, 54);
  border-width: 0 0.3rem 0.3rem 0;
  padding: 0.2rem;
}
.carousel-control-prev-icon::after {
  transform: rotate(135deg);
}
.carousel-control-next-icon::after {
  transform: rotate(-45deg);
}

/* Responsive tweaks for mobile */
@media (max-width: 575.98px) {
  .carousel-aspect-ratio {
    aspect-ratio: 1 / 1;
  }
  .carousel-aspect-ratio .carousel-overlay-content,
  .carousel-aspect-ratio .carousel-solid-content {
    padding-bottom: 2.5rem;
    padding-left: 1.2rem;
    padding-right: 1.2rem;
  }
}

/* Usage:
 * Add 'carousel-aspect-ratio' to each .carousel-item child (image, overlay, or solid background).
 * For overlays/solid backgrounds, wrap content in .
 * Add 'carousel-aspect-ratio' to each .carousel-item child (image, overlay, or solid background).
 * For overlays/solid backgrounds, wrap content in .carousel-overlay-content or .carousel-solid-content.
 * See products.html and es/products.html for examples.
 */

.carousel-logo-absolute {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 120px;
  max-width: 120px;
  max-height: 120px;
  height: auto;
  background: none !important;
  z-index: 2;
}

.logo-fit {
  max-width: 100%;
  max-height: 220px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* Make both columns in the about section the same height */
@media (min-width: 992px) {
  .about-section-row {
    display: flex;
    align-items: stretch;
  }
  .about-section-row > .col-lg-6 {
    display: flex;
    flex-direction: column;
    justify-content: stretch;
  }
  .about-section-row > .col-lg-6 > div {
    flex: 1 1 0;
  }
}

/* Button: Amaluffa navbar green (matches --theme-bg100-trlct) */
.btn-amaluffa {
  background-color: var(--theme-bg100) !important;
  color: #fff !important;
  border: none !important;
  transition: background 0.2s;
  width: 80% !important;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.btn-amaluffa:hover, .btn-amaluffa:focus {
  background-color: #547346 !important; /* slightly lighter for a subtle effect */
  color: #fff !important;
}

/* @media (max-width: 768px) {
  .btn-amaluffa {
    width: 80% !important;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
} */

.benefits-block {
  /* Option 1: Yellow translucent (current) */
  /* background: rgba(237, 230, 137, 0.30); */
  /* Option 2: White translucent */
  /* background: rgba(255,255,255,0.30); */
  /* Option 3: Grey translucent */
  background: rgba(220,220,220,0.40);
  color: var(--primary);
  font-weight: bold;
  padding: 2rem 1.5rem;
  margin: 0 auto 1.5rem auto;
  display: inline-block;
  box-shadow: 0 2px 16px 0 rgba(0,0,0,0.08);
  text-align: center;
  border-radius: 8px !important;
  width: auto;
  min-width: 0;
  max-width: 100%;
}
.benefits-block h2 {
  color: var(--theme-bg100);
  font-weight: bold;
  margin-top: 0;
  margin-bottom: 0.5em;
  padding: 0;
}
.benefits-block h2.mt-3 {
  margin-top: 0 !important;
}
.benefits-block ul {
  list-style: none;
  color: var(--theme-bg100);
  font-weight: bold;
  margin: 0;
  padding: 0;
}
.benefits-block ul li {
  margin-bottom: 0.5em;
}
.benefits-block p {
  color: var(--primary);
  font-weight: bold;
  margin-top: 0.5em;
  margin-bottom: 0;
  font-size: 1.08em;
}
@media (max-width: 768px) {
  .benefits-block {
    padding: 1.2rem 0.7rem;
    max-width: 95vw;
    width: 100%;
  }
  .benefits-block p {
    font-size: 1em;
    padding: 0 0.2em;
  }
}

.about-block {
  border-radius: 1.2rem !important;
}

.benefits-block,
.about-block,
.d-flex.position-relative.h-100 {
  border-radius: 8px !important;
}

/* Make both columns always equal height */
@media (min-width: 992px) {
  .row.equal-height {
    display: flex;
    flex-wrap: wrap;
  }
  .row.equal-height > [class^="col-"] {
    display: flex;
    flex-direction: column;
  }
  .row.equal-height > [class^="col-"] > * {
    flex-grow: 1;
  }
}