.hero-image--disinsection {
  right: calc(15vw - 215px);
  bottom: 1%;
  width: calc(190px + 48vw);
  max-width: 1100px;
}
@media (max-width: 1280px) {
  .hero.hero--disinsection h1 {
    max-width: 585px;
  }
}
@media (max-width: 850px) {
  .hero.hero--secondary {
    padding-bottom: 50px;
  }
  body .hero.hero--secondary h1 {
    margin-bottom: 20px;
  }
  .hero-image--disinsection {
    width: calc(100% + 80px);
    max-width: 580px;
  }
  .hero__wrapper{
    margin-bottom: 20px;
  }
}

/* Start Disinsection Pests */
.disinsection-pests {
  padding: 90px var(--sidePadding) 60px;
}

.disinsection-pests__wrapper {
  max-width: 836px;
  margin: 0 auto;
}

.disinsection-pests__wrapper h2 {
  text-align: center;
  font-size: var(--textFontSizeL);
  text-transform: uppercase;
  color: var(--grayDark);
  margin-bottom: 25px;
}

.disinsection-pests__content {
  color: var(--grayDark);
  margin-bottom: 30px;
  font-family: var(--secondaryFont);
  font-size: var(--textFontSizeS);
}

.disinsection-pests__content strong {
  font-weight: 600;
}

.disinsection-pests__list {
  display: flex;
  gap: var(--sidePadding);
}

.disinsection-pests__list ul {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.disinsection-pests__item {
  box-shadow: 0px 8px 25px 3px #97979733;
  border-radius: 10px;
  padding: 15px 0;
  display: flex;
  flex-direction: column;
}

.disinsection-pests__item-header {
  display: flex;
  align-items: center;
  gap: 18px;
}

.disinsection-pests__item-header > svg {
  min-width: 50px;
  width: 50px;
  height: 50px;
  object-fit: contain;
  --iconColor1: var(--green3);
  margin-left: 30px;
}

.disinsection-pests__item-title {
  font-size: var(--textFontSizeM);
  font-weight: 600;
  font-family: var(--secondaryFont);
  color: var(--green);
  line-height: 1;
}

.disinsection-pests__item-title strong {
  font-weight: inherit;
}

.disinsection-pests__item-header button {
  margin-left: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  background: var(--green3);
  border-top-left-radius: 7.5px;
  border-bottom-left-radius: 7.5px;
  border: none;
  cursor: pointer;
}

.disinsection-pests__item-header button svg {
  width: 20px;
  height: 20px;
  --iconColor1: white;
  transition: 0.2s ease-in-out;
}

.disinsection-pests__item-header button:hover svg {
  width: 20.8px;
  height: 20.8px;
}

.disinsection-pests__item-body {
  height: 0;
  overflow: hidden;
}

.disinsection-pests__item.active .disinsection-pests__item-body {
  height: auto;
}

.disinsection-pests__item.active .disinsection-pests__item-header button svg {
  transform: rotate(45deg);
}

.disinsection-pests__item-body > div {
  padding: 16px 30px 6px;
  font-size: var(--textFontSizeS);
  font-family: var(--secondaryFont);
  color: var(--grayDark);
  text-align: justify;
}

.disinsection-pests__item-body > div strong {
  font-weight: 600;
}

.disinsection-pests__item-body > div:last-child {
  padding-bottom: 6px;
}

@media (max-width: 599px) {
  .disinsection-pests__list {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .disinsection-pests__list ul {
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
  }
}

/* End Disinsection Pests */