.dropdown__heading {
  display: flex;
}

.dropdown__content-container h1,
.dropdown__content-container h2,
.dropdown__content-container h3,
.dropdown__content-container h4,
.dropdown__content-container h5,
.dropdown__content-container h6{
  font-weight: 600;
}

.dropdown__content-container h1{
  font-size: 32px;
}

.dropdown__content-container h2{
  font-size: 26px;
}
.dropdown__content-container h3{
  font-size: 24px;
}
.dropdown__content-container h4{
  font-size: 20px;
}
.dropdown__content-container h5{
  font-size: 18px;
}
.dropdown__content-container h6{
  font-size: 16px;
}

@media screen and (min-width: 769px) {
  .dropdown__content-container h1{
    font-size: 42px;
  }
  .dropdown__content-container h2{
    font-size: 32px;
  }
  .dropdown__content-container h3{
    font-size: 24px;
  }
  .dropdown__content-container h4{
    font-size: 20px;
  }
  .dropdown__content-container h5{
    font-size: 18px;
  }
  .dropdown__content-container h6{
    font-size: 16px;
  }
}


.dropdown__title-with-icon {
  width: 100%;
  display: flex;
  justify-content: space-between;
  position: relative;
  align-items: center;
  gap: 13px;
}

.dropdown__title-with-icon svg {
  position: relative;
  bottom: 3px;
}
@media screen and (min-width: 500px) {
  .dropdown__title-with-icon {
    width: max-content;
    justify-content: center;
  }
  .dropdown__title-with-icon svg {
    bottom: 1px;
  }
}

.dropdown__title {
  line-height: 120%;
  width: auto;
  max-width: 92%;
  margin: 0;
  position: relative;

  @media screen and (min-width: 1024px) {
    max-width: 100%;
  }
}

.svg-transform {
  transform: rotate(180deg);
}

.dropdown__info-block ul li {
  margin-block: 8px;
  padding-left: 6px;
}

.dropdown__block-title {
  margin: 0;
}

.dropdown__text p {
  margin: 0;
}


.dropdown__info-block .dropdown__text p,
.dropdown__info-block .dropdown__text ul li,
.dropdown__info-block .dropdown__text ol li{
  font-size: 16px;
  font-weight: 400;
  color: var(--dark-color);
  padding-left: 0;
}


.dropdown__info-block .dropdown__text ul li,
.dropdown__info-block .dropdown__text ol li{
  margin-left: 20px;
}


.dropdown__info-block .dropdown__text ol li{
  counter-increment: step-counter;
}

.dropdown__info-block .dropdown__text ol li::before{
  content: counter(step-counter);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  column-gap: 12px;
  width: 24px;
  height: 24px;
  font-size: 16px;
  font-weight: 600;
  line-height: 150%;
  color: var(--white-color);
  background-color: var(--additional-color);
}

.dropdown__info-block .dropdown__text ul li::before {
  content: "";
  display: inline-block;
  margin-right: 12px;
  width: 8px;
  height: 8px;
  background-image: url('data:image/svg+xml,<svg width="8" height="8" viewBox="0 0 8 8" fill="none" xmlns="http://www.w3.org/2000/svg"><circle cx="4" cy="4" r="4" fill="%235A4BFF"/></svg>');
  background-repeat: no-repeat;
}


@media screen and (min-width: 1024px) {
  .dropdown__title-with-icon {
    align-items: center;
    gap: 40px;
    cursor: pointer;
    max-width: 70%;
  }
}

@media screen and (min-width: 1280px) {
  .dropdown__title-with-icon {
    align-items: center;
    gap: 40px;
    cursor: pointer;
    max-width: 100%;
  }
}
