#custom-hero-block {
  position: relative;
  z-index: 0;
  padding-top: 40px;
}

#custom-hero-block .custom-section__wrapper {
  position: relative;
  background: var(--bgSecondary);
  padding: 40px;
  max-width: 880px;
  width: 100%;
  gap: 30px;
  border-radius: 10px;
  padding-bottom: 80px;
}

#custom-hero-block .custom-hero__container {
  display: flex;
  gap: 30px;
}
#custom-hero-block .custom-hero__title {
  max-width: 750px;
}
#custom-hero-block .custom-hero__descr {
  margin-bottom: 40px;
  margin-top: 20px;
}
#custom-hero-block .custom-hero__descr p,
#custom-hero-block .custom-hero__descr li {
  font-family: var(--fontFamily);
  font-weight: 400;
  font-size: 16px;
  line-height: 125%;
  letter-spacing: 0%;
  color: var(--mainTextPrimary);
  
}
#custom-hero-block .custom-hero__btn {
  position: absolute;
  bottom: 40px;
  left: 40px;
  width: 360px;
  max-width: calc(100% - 60px);
  margin-bottom: 0;
}
#custom-hero-block .custom-hero__bg {
  position: relative;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 620px;
  max-height: 420px;
  border-radius: 10px;
  z-index: -1;
}
#custom-hero-block .custom-advantages__list {
  display: grid;
  grid-template-columns: repeat(2, 360px);
  gap: 30px;
  margin-bottom: 20px;
}
#custom-hero-block .custom-advantages__item {
  background: var(--bgSecondary);
  border-radius: 15px;
  padding: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}
#custom-hero-block .custom-advantages__item-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  background: var(--bg);
}
#custom-hero-block .custom-advantages__item-icon svg,
#custom-hero-block .custom-advantages__item-icon Img {
  max-width: 20px;
  max-height: 20px;
  min-width: 20px;
}
#custom-hero-block .custom-benefits__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
#custom-hero-block .custom-benefits__item {
  background: var(--bgSecondary);
  border-radius: 10px;
  padding: 20px;
}
#custom-hero-block .custom-benefits__item-icon {
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  background: var(--bg);
  margin-bottom: 10px;
}
#custom-hero-block .custom-benefits__item-icon svg,
#custom-hero-block .custom-benefits__item-icon img {
  max-width: 30px;
  max-height: 30px;
  min-width: 30px;
}
#custom-hero-block .custom-benefits__item-title {
  margin-bottom: 5px;
}
@media screen and (max-width: 1500px) {
  #custom-hero-block .custom-hero__bg {
    width: 130%;
  }
}
@media screen and (max-width: 1140px) {
  #custom-hero-block .custom-hero__bg {
    width: 150%;
  }
  #custom-hero-block .custom-benefits__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 840px) {
  #custom-hero-block .custom-hero__bg {
    display: none;
  }
  #custom-hero-block .custom-advantages__list {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 550px) {
  #custom-hero-block .custom-advantages__list, 
  #custom-hero-block .custom-benefits__list {
    grid-template-columns: 1fr;
  }
}