/* @import url('http://example.com/example_style.css'); */

/***********************************************/
/* CSS @imports must be at the top of the file */
/* Add them above this section                 */
/***********************************************/

/*****************************************/
/* Start your style declarations here    */
/*****************************************/

.banner-container {
  overflow: hidden;
  width: 100%;
  max-height: 1050px;
}

.banner-container .banner {
  width: 100%;
}

.banner-mobile {
  display: none;
}

.green-bg {
  background: #47752C;
  padding: 20px;
}

.green-bg.hfc-heading h5 {
  font-size: 48px;
}

.green-bg.hfc-heading h5 .hfc-heading__smallest {
  font-size: 18px;
  font-weight: normal;
}

.green-bg.hfc-heading h5 .hfc-heading__small {
  font-size: 30px;
  font-weight: normal;
}

.green-bg.hfc-heading h5 .hfc-heading__medium {
  font-size: 36px;
  font-weight: normal;
}

.green-bg.hfc-heading h5.ln-25 {
  line-height: 25px;
}

.image-text-block-container {
  max-width: 1600px !important;
  padding: 0 20px;
  margin: 0 auto;
}

.image-text-block {
  align-items: center;
  display: flex;
  gap: 50px;
}

.image-text-block .project-fondazione {
  max-width: 324px;
  min-width: 324px;
}

@media screen and (max-width: 767px) {
  .image-text-block-container {
    padding: 0;
  }
  .image-text-block .project-fondazione {
    max-width: 100%;
    min-width: 100%;
    margin: 0 auto;
  }
}

.image-block img {
  vertical-align: middle;
}

@media screen and (min-width: 1200px) {
  .image-block, 
  .image-text-block .project-fondazione.image-block {
    min-width: 450px;
    max-width: 450px;
  }
}

.text-block {
  padding: 25px;
}

.text-above-intervention {
  font-size: 20px;
}

.white-bg {
  background: #fff;
  padding: 20px;
}

@media screen and (max-width: 767px) {
  .banner-desktop {
    display: none;
  }
  
  .banner-mobile {
    display: block;
  }
  
  .green-bg.hfc-heading h5 {
    font-size: 28px;
  }
  
  .green-bg.hfc-heading h5 .hfc-heading__smallest {
    font-size: 16px;
  }
  
  .green-bg.hfc-heading h5 .hfc-heading__small {
    font-size: 20px;
  }

  .green-bg.hfc-heading h5 .hfc-heading__medium {
    font-size: 24px;
  }
  
  .green-bg.hfc-heading h5.ln-25 {
    line-height: 22px;
  }
  
  .image-text-block {
    flex-wrap: wrap;
  }
  
  .text-above-intervention {
    font-size: 16px;
  }
}


/* Product Card CSS */
.Catalogue {
  padding-top: 0 !important;
  max-width: 1230px !important;
}

.Catalogue .FilterTabs {
  display: flex;
  justify-content: center;
  padding: 5px;
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 1;
  transition: all .2s ease-in-out;
  width: 100%;
}

.Catalogue .FilterTabs.hide-descriptions {
  padding: 0;
}

.Catalogue .FilterTabs a {
  padding: 10px;
  text-align: center;
  transition: all .2s ease-in-out;
  text-decoration: none;
  border-bottom: 2px solid #ffffff;
  width: 33.33333%;
}

.Catalogue .FilterTabs a .FilterTabs__title {
  display: block;
  font-size: 16px;
  color: #a6a6a6;
  font-weight: bold;
}

.Catalogue .FilterTabs a .FilterTabs__description {
  font-size: 14px;
  display: block;
  transition: all 0.2s ease-in-out;
  height: auto;
  max-height: 500px;
  margin-top: 15px;
}

.Catalogue .FilterTabs.hide-descriptions a {
  padding: 10px;
  border: 1px solid #e5e5e5;
}

.Catalogue .FilterTabs.hide-descriptions a .FilterTabs__description {
  height: 0;
  overflow: hidden;
  transition: all 0.2s ease-in-out;
  margin-top: 0;
}

@media screen and (max-width: 768px) {
  .Catalogue .FilterTabs {
    flex-direction: column;
  }

  .Catalogue .FilterTabs a {
    width: 100%;
  }

  .Catalogue .FilterTabs.hide-descriptions {
    flex-direction: row;
  }

  .Catalogue .FilterTabs.hide-descriptions a {
    width: 33.3333%;
  }

  .Catalogue .FilterTabs a .FilterTabs__title {
    font-size: 14px;
  }
}

.Catalogue .FilterTabs a:hover,
.Catalogue .FilterTabs a.active {
  border-bottom: 2px solid #ec422b;
}

.Catalogue .FilterTabs a:hover .FilterTabs__title,
.Catalogue .FilterTabs a.active .FilterTabs__title {
  color: #333333;
}

.BrandCatalogueSection {
  padding-top: 55px;
  padding-bottom: 25px;
  text-align: center;
  border-bottom: 1px solid #dbdbdb;
}

.BrandCatalogueSection__title {
  font-size: 24px;
  font-weight: bold;
}

.BrandCatalogueSection__desc {
  margin: 10px 0;
}

.Catalogue .BrandRow__content {
  padding: 10px 0;
}

.Catalogue .BrandRow__content .BrandRow__item {
  margin-bottm: 5px;
}

.Catalogue .BrandRow__content .BrandRow__item .ProductCard__title {
  font-size: 16px;
  margin-top: 10px;
}

.ProductCard__title_link {
  flex-grow: 1;
  text-decoration: none;
}

.ProductCard__title_link:hover {
  text-decoration: none;
}

.ProductCard__buy_now {
  width: 100%;
  padding: 10px 15px;
  justify-content: center;
  border: none;
  background: #ec422b;
  color: #fff;
  border-radius: 8px;
  transition: all .2s ease-in-out;
  border-top-right-radius: 0;
  border-top-left-radius: 0;
  margin-bottom: auto;
}

.ProductCard__buy_now:hover {
  background: #a52716;
}

.ProductCard__buy_now.buy-link:hover {
  color: #fff;
}

.Catalogue .BrandRow__content .BrandRow__body .BrandRow__item .ProductCard {
  padding: 0;
}

.Catalogue .BrandRow__content .BrandRow__body .BrandRow__item .ProductCard .ProductCard__size-list {
  padding: 10px;
}

.Catalogue .BrandRow__content .BrandRow__body .BrandRow__item .ProductCard .ProductCard__img-wrap,
.Catalogue .BrandRow__content .BrandRow__body .BrandRow__item .ProductCard .ProductCard__title {
  padding: 0 10px;
}

@media screen and (min-width: 768px) {
  .Catalogue .BrandRow__content .BrandRow__body .BrandRow__item .ProductCard .ProductCard__img {
      max-height: 235px;
      overflow: hidden;
      object-fit: cover;
  }
}

@media screen and (max-width: 767px) {
  .Catalogue.TwoColumnMobile {
    width: 100%;
  }
  .Catalogue.TwoColumnMobile .BrandRow__content .BrandRow__item {
    width: 50%;
    padding: 5px;
  }
  .Catalogue.TwoColumnMobile .BrandRow__content .BrandRow__body .BrandRow__item .ProductCard .ProductCard__size-list {
    padding: 5px;
    margin: 0;
    background: #F7F7F7;
  }
  .Catalogue.TwoColumnMobile .BrandRow__content .BrandRow__body .BrandRow__item .ProductCard .ProductCard__img-wrap,
  .Catalogue.TwoColumnMobile .BrandRow__content .BrandRow__body .BrandRow__item .ProductCard .ProductCard__title {
    padding: 0;
  }
  .Catalogue.TwoColumnMobile .BrandRow__content .BrandRow__body .BrandRow__item .ProductCard .ProductCard__img-wrap {
    background: #F7F7F7;
  }
  .Catalogue.TwoColumnMobile .BrandRow__content .BrandRow__body .BrandRow__item .ProductCard {
    border-radius: 5px;
  }
}

.areas-of-intervention {
  max-width: 1280px;
  margin: 0 auto;
}

.areas-of-intervention__title {
  margin-bottom: 10px;
}

.intervention__items {
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  gap: 25px;
}

@media (max-width: 900px) {
  .intervention__items {
    grid-template-columns: repeat(2,minmax(0,1fr));
  }
}

@media (max-width: 600px) {
  .intervention__items {
    grid-template-columns: repeat(1,minmax(0,1fr));
  }
}

.intervention__item {
  height: 400px;
  position: relative;
}

@media (max-width: 767px) {
  .intervention__item {
    height: 340px;
  }
}

.intervention__item__image {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
}

.intervention__item__text {
  position: absolute;
  padding: 15px;
  width: 100%;
  left: 0;
  bottom: 0;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  background: rgba(218,218,218,.9);
}

.intervention__item__text__title {
  color: #5e5e5e;
  font-weight: 700;
  font-size: 22px;
}

@media (max-width: 767px) {
  .intervention__item__text__title {
    font-size: 18px;
  }
}

.intervention__item__text__description {
  font-size: 12px;
  color: #5e5e5e;
  margin-top: 10px;
}

.intervention__item__read_more {
  margin-top: auto;
  margin-bottom: 15px;
}

.intervention__item__read_more a {
  color: #5e5e5e;
  padding: 10px 15px;
  background: #ffffff;
  border-radius: 9999px;
  text-decorarion: none;
  font-size: 10px;
}

.intervention__item__read_more a: hover {
  background: #f1f1f1;
}

.sticky-btn-section {
  position: fixed;
  bottom: 0;
  left: 0;
  display: flex;
  width: 100vw;
  justify-content: center;
  align-items: center;
  background: #fff;
  padding: 10px 15px;
  z-index: 3;
}
.sticky-btn-section a.sticky-btn {
  padding: 7px 14px;
  text-decoration: none;
  font-weight: 600;
  color: #fff;
  text-align: center;
  margin: 0 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  transition: all 0.2s ease-in-out;
  font-size: 16px;
}

.sticky-btn-section a.sticky-btn:hover {
  font-weight: 600;
  opacity: 0.9;
  transform: scale(1.05);
}

@media (max-width: 670px) {
  .sticky-btn-section a.sticky-btn {
    font-size: 12px;
    padding: 7px 12px;
    gap: 5px;
  }
  .sticky-btn-section {
    padding: 5px;
  }
}

.sticky-btn {
  background: #f7a600;
  color: #fff;
}

.hs-form-dynamic {
  min-height: 640px;
  max-width: 850px;
  margin: 0 auto;
}
@media (max-width: 576px) {
  .hs-form-dynamic {
    min-height: 982px;
  }
}