.hero-block {
  padding: 50px 0;
  background: #D5E4FA;
}
.hero-block--inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 50px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.hero-block + * {
  margin-top: 50px;
}
.hero-block--inner > * {
  width: 50%;
}
.hero-block--right {
  background: #fff;
  background-size: cover;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 25px 30px 45px 30px;
  width: 100%;
  min-width: 560px;
  max-width: 560px;
  border-radius: 10px;
}
@media (max-width: 1200px) {
  .hero-block--right {
    min-width: 460px;
    max-width: 460px;
  }
}
.hero-block--right img {
  mix-blend-mode: darken;
  margin-top: 10px;
  max-width: 250px;
}
.hero-block--right > h1,
.hero-block--right > h2,
.hero-block--right > h3 {
  font-size: 25px !important;
  line-height: 1.4 !important;
  margin-bottom: 0;
  text-align: center;
}
.hero-block--company-description {
  text-align: center;
  font-size: 18px;
  line-height: 1.4;
  margin-top: 16px;
}
.hero-block--company-description ul,
.hero-block--company-description li {
  text-align: left;
  display: inline-block;
}
.hero-block--company-description > *:last-child {
  margin-bottom: 0;
}
.hero-block--right > a {
  margin-top: 25px;
  padding: 15px 25px;
  width: 100%;
  max-width: 300px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #27AE60;
  -webkit-box-shadow: 0px 4px 0px #1D894A;
          box-shadow: 0px 4px 0px #1D894A;
  color: #fff !important;
  gap: 15px;
  font-size: 20px;
  position: relative;
  bottom: 0;
  border-radius: 5px;
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}
.hero-block--right > a span {
  font-size: 24px;
}
.hero-block--right > a:hover {
  text-decoration: none;
  bottom: 4px;
  -webkit-box-shadow: 0px 6px 0px #26a35a;
          box-shadow: 0px 6px 0px #26a35a;
  background: #29bf68;
}
.hero-block--left {
  width: 100%;
}
.hero-block--left > h1,
.hero-block--left > h2,
.hero-block--left > h3 {
  font-size: 30px !important;
  line-height: 1.6 !important;
}
.hero-block--left .hero-block--editor {
  font-size: 18px;
  line-height: 1.4;
}
.hero-block--left .hero-block--editor > *:last-child {
  margin-bottom: 0;
}
.hero-block--dropdowns {
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}
.hero-block--dropdowns--item {
  background: #F8F8F9;
  border-radius: 10px;
}
.hero-block--dropdowns--item--title {
  padding: 20px 60px 20px 30px;
  color: var(--primary);
  font-size: 20px;
  line-height: 1.4;
  position: relative;
  cursor: pointer;
}
.hero-block--dropdowns--item--title > i {
  position: absolute;
  right: 30px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 18px;
  line-height: 1;
}
.hero-block--dropdowns--item--title > i.fa-chevron-up {
  display: none;
}
.hero-block--dropdowns--item--title.active > i.fa-chevron-up {
  display: block;
}
.hero-block--dropdowns--item--title.active > i.fa-chevron-down {
  display: none;
}
.hero-block--dropdowns--item-content {
  display: none;
  padding: 0 30px;
}
.hero-block--dropdowns--item-content--inner {
  border-top: solid 1px #e4e4e5;
  padding: 20px 0 25px 0;
}
.hero-block--dropdowns--item-content--inner > *:first-child {
  margin-top: 0;
}
.hero-block--dropdowns--item-content--inner > *:last-child {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .hero-block--inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .hero-block--inner > * {
    width: 100%;
  }
  .hero-block--right {
    min-width: 0;
    max-width: 2000px;
  }
}
