/* Mixin for adaptive font size:

Example: @include fluid-type($min_width, $max_width, $min_font, $max_font);

*/
/* Mixin for custom scroll bar:

Example: @include custom_scrollbar(5px, 5px, #e4e4e4, #b2b2b2, #fff, 20px);

*/
.hero {
  --hero-height: 90rem;
  --hero-space: 25rem;
  --hero-content-width: 80rem;
  background-color: var(--pa-color-primary);
  padding: 5rem 2rem var(--hero-space) var(--hero-space);
  border-radius: 40px;
  position: relative;
  min-height: var(--hero-height);
  display: flex;
  align-items: flex-end;
  margin-top: 3rem;
  word-wrap: normal;
}
@media screen and (max-width: 2299px) {
  .hero {
    --hero-space: 12rem;
  }
}
@media screen and (max-width: 1699px) {
  .hero {
    --hero-height: 70rem;
    --hero-space: 9rem;
  }
}
@media screen and (max-width: 1199px) {
  .hero {
    --hero-space: 5rem;
  }
}
@media screen and (max-width: 991px) {
  .hero {
    flex-direction: column;
    align-items: flex-start;
    padding: 5rem var(--hero-space);
  }
}
@media screen and (max-width: 768px) {
  .hero {
    padding: 4rem 2.9rem;
    border-radius: 30px;
  }
}
.hero-content {
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 992px) {
  .hero-content {
    max-width: var(--hero-content-width);
    width: 55%;
  }
}
@media screen and (max-width: 991px) {
  .hero-content {
    padding-top: 1.5rem;
  }
}
.hero .title {
  font-size: 40px;
}
@media screen and (min-width: 769px) {
  .hero .title {
    font-size: calc(40px + 40 * (100vw - 769px) / 931);
  }
}
@media screen and (min-width: 1700px) {
  .hero .title {
    font-size: 80px;
  }
}
.hero .title {
  color: #fff;
  line-height: 1.05;
  margin-bottom: 2rem;
}
.hero .title span {
  color: var(--pa-color-secondary);
}
.hero .text {
  color: #fff;
}
.hero .text span {
  color: var(--pa-color-secondary);
}
.hero .pa-btn {
  margin-top: 3.5rem;
}
@media screen and (max-width: 991px) {
  .hero picture {
    max-width: 50rem;
    order: -1;
  }
}
.hero img {
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: top right;
  object-position: top right;
  max-height: 100%;
}
@media screen and (min-width: 992px) {
  .hero img {
    position: absolute;
    top: -5rem;
    right: -6rem;
  }
}
@media screen and (max-width: 991px) {
  .hero img {
    order: -1;
  }
}
@media screen and (min-width: 1200px) {
  .hero.secondary {
    --hero-height: 65.5rem;
    --hero-content-width: 60rem;
    padding-bottom: 7rem;
  }
}
@media screen and (min-width: 2300px) {
  .hero.secondary {
    --hero-space: 17rem;
  }
}

/* Mixin for adaptive font size:

Example: @include fluid-type($min_width, $max_width, $min_font, $max_font);

*/
/* Mixin for custom scroll bar:

Example: @include custom_scrollbar(5px, 5px, #e4e4e4, #b2b2b2, #fff, 20px);

*/
.products-promo {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  padding: 7rem 0 0;
  margin-bottom: 6rem;
}
@media screen and (min-width: 769px) {
  .products-promo {
    margin: 7rem auto 10rem;
  }
}
@media screen and (min-width: 1400px) {
  .products-promo {
    max-width: calc(100% - 18rem);
  }
}
.products-promo .item {
  --product-item-space-m-x: 4rem;
  --product-item-space-p-x: 8rem;
  --product-item-height: 30rem;
  --product-item-width-hor: 24rem;
  border-radius: 40px;
  background-color: var(--pa-color-primary--light);
  display: flex;
  word-wrap: normal;
  position: relative;
  min-height: var(--product-item-height);
}
@media screen and (max-width: 1699px) {
  .products-promo .item {
    --product-item-space-p-x: 4rem;
    --product-item-space-m-x: 2.5rem;
    --product-item-height: 27rem;
  }
}
@media screen and (max-width: 768px) {
  .products-promo .item {
    --product-item-width-hor: 0.000001px;
    --product-item-space-m-x: 0.000001px;
  }
}
.products-promo .item:nth-child(1), .products-promo .item:nth-child(2) {
  --item-percent: 1;
  width: calc((100% - var(--product-item-width-hor)) / var(--item-percent) - var(--product-item-space-m-x));
  margin: 0 var(--product-item-space-m-x) 14rem 0;
}
@media screen and (max-width: 1699px) {
  .products-promo .item:nth-child(1), .products-promo .item:nth-child(2) {
    margin-bottom: 10rem;
  }
}
@media screen and (max-width: 1199px) {
  .products-promo .item:nth-child(1), .products-promo .item:nth-child(2) {
    margin-bottom: 5rem;
  }
}
@media screen and (min-width: 1200px) {
  .products-promo .item:nth-child(1), .products-promo .item:nth-child(2) {
    --item-percent: 2;
  }
}
.products-promo .item:nth-child(2) {
  background-color: var(--pa-color-secondary--dark);
}
.products-promo .item:nth-child(3) {
  background-color: var(--pa-color-primary);
  width: var(--product-item-width-hor);
}
@media screen and (max-width: 1199px) {
  .products-promo .item:nth-child(3) {
    max-height: 60%;
  }
}
@media screen and (min-width: 769px) {
  .products-promo .item:nth-child(3) {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    min-height: 50rem;
  }
}
@media screen and (max-width: 768px) {
  .products-promo .item:nth-child(3) {
    width: 100%;
    max-width: 400px;
    max-height: unset;
    order: 10;
    margin-top: 5rem;
  }
}
.products-promo .item:nth-child(3) a {
  flex-direction: column;
  padding: 4rem 3rem;
}
.products-promo .item:nth-child(3) .content {
  max-width: 100%;
  margin-top: auto;
}
.products-promo .item:nth-child(3) .img {
  order: -1;
  margin-bottom: 1rem;
  text-align: center;
  flex-grow: 1;
  max-width: 100%;
  max-height: 65%;
}
.products-promo .item:nth-child(3) .img img {
  position: static;
  max-height: 100%;
  max-width: 100%;
  -o-object-position: center;
  object-position: center;
}
.products-promo .item:nth-child(4), .products-promo .item:nth-child(5) {
  --item-percent: 1;
  width: calc((100% - var(--product-item-width-hor)) * var(--item-percent) - var(--product-item-space-m-x));
  margin: 0 var(--product-item-space-m-x) 0 0;
}
.products-promo .item:nth-child(4) {
  background-color: var(--pa-color-primary);
}
@media screen and (min-width: 1200px) {
  .products-promo .item:nth-child(4) {
    --item-percent: 0.413;
  }
}
@media screen and (max-width: 1199px) {
  .products-promo .item:nth-child(4) {
    margin-bottom: 5rem;
  }
}
.products-promo .item:nth-child(4) .img img {
  max-height: calc(100% + 2rem);
}
@media screen and (min-width: 1200px) {
  .products-promo .item:nth-child(5) {
    --item-percent: 0.587;
  }
}
.products-promo .item a {
  padding: 6rem var(--product-item-space-p-x) 4rem;
  width: 100%;
  display: flex;
}
@media screen and (min-width: 576px) {
  .products-promo .item a {
    align-items: flex-end;
  }
}
@media screen and (max-width: 575px) {
  .products-promo .item a {
    flex-direction: column;
  }
}
.products-promo .content {
  width: 100%;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 576px) {
  .products-promo .content {
    max-width: 40%;
    padding-right: 1.5rem;
  }
}
.products-promo .title {
  font-size: 24px;
}
@media screen and (min-width: 769px) {
  .products-promo .title {
    font-size: calc(24px + 16 * (100vw - 769px) / 931);
  }
}
@media screen and (min-width: 1700px) {
  .products-promo .title {
    font-size: 40px;
  }
}
.products-promo .title {
  line-height: 1;
  color: #fff;
  font-family: var(--pa-font-base--700);
  margin-bottom: 1rem;
}
.products-promo .quantity {
  font-size: 1.4rem;
  color: var(--pa-color-text);
  font-family: var(--pa-font-base--500);
}
.products-promo .pa-btn {
  margin-top: 4rem;
}
.products-promo .img {
  width: 100%;
}
@media screen and (min-width: 576px) {
  .products-promo .img {
    max-width: 60%;
  }
}
@media screen and (max-width: 575px) {
  .products-promo .img {
    order: -1;
    margin-bottom: 2rem;
    text-align: center;
  }
}
.products-promo .img img {
  width: auto;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: top right;
  object-position: top right;
}
@media screen and (min-width: 576px) {
  .products-promo .img img {
    position: absolute;
    bottom: 0;
    right: 3rem;
    max-height: calc(100% + 4rem);
    max-width: 60%;
  }
}
@media screen and (min-width: 1200px) {
  .products-promo .img img {
    max-height: calc(100% + 7rem);
  }
}
body.cms-home {
  background-color: var(--pa-color-secondary--light);
}
body.cms-home .page-main {
  overflow: hidden;
}
body.cms-home .column.main {
  max-width: var(--pa-container-size);
  padding-left: var(--pa-container-space-x);
  padding-right: var(--pa-container-space-x);
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 10rem;
}
/*# sourceMappingURL=home-page.css.map */
