.container {
  max-width: 1170px;
}
@media (max-width: 1266px) {
  .container {
    max-width: 970px;
  }
}
@media (max-width: 991.98px) {
  .container {
    max-width: 750px;
  }
}
@media (max-width: 767.98px) {
  .container {
    max-width: none;
    padding: 0 10px;
  }
}

.heading-one {
  font-size: 40px;
  line-height: 1.1em;
  font-weight: bold;
  color: black;
}
@media (max-width: 576px) {
  .heading-one {
    font-size: 28px;
    line-height: 35px;
  }
}

.heading-two {
  font-size: 25px;
  line-height: 35px;
  font-weight: bold;
  margin: 0 auto 30px;
  display: flex;
  align-items: center;
}
@media (max-width: 576px) {
  .heading-two {
    line-height: 26px;
  }
}
.heading-two img {
  margin-right: 20px;
  margin-top: 5px;
}

p {
  font-size: 18px;
  line-height: 30px;
}
@media (max-width: 576px) {
  p {
    font-size: 15px;
    line-height: 24px;
  }
}

#heading {
  background-color: #F3F7F2;
  padding-top: 16px;
  position: relative;
  padding-bottom: 28px;
  margin-bottom: 0;
}
#heading .heading-one {
  margin-top: 16px;
}

section {
  margin-bottom: 50px;
}

.section__title {
  font-weight: 600;
  display: flex;
  align-items: center;
}
.section__title span {
  width: 8px;
  min-width: 8px;
  height: 8px;
  background: #539100;
  display: block;
  border-radius: 50%;
  margin-right: 30px;
}

.block-white {
  background: #FEFEFE;
  box-shadow: 17px 17px 31px rgba(0, 0, 0, 0.04);
  border-radius: 5px;
  padding: 40px 100px;
}
@media (max-width: 767.98px) {
  .block-white {
    padding: 28px 20px;
  }
}
.block-white ol {
  margin-top: 20px;
  list-style: none;
  counter-reset: icon-counter;
}
.block-white ol li {
  margin-bottom: 15px;
  counter-increment: icon-counter;
  position: relative;
  padding-left: 70px;
}
.block-white ol li:before {
  content: counter(icon-counter);
  position: absolute;
  left: 0;
  top: 5px;
  width: 45px;
  height: 45px;
  box-shadow: 0px 5px 10px rgba(154, 154, 154, 0.21);
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 14px;
  line-height: 19px;
  color: #539100;
  background: #FFFFFF url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M18.2091 22.2706C18.652 22.0023 18.7936 21.4259 18.5253 20.9832C18.2569 20.5402 17.6805 20.3987 17.2377 20.6669C15.663 21.6207 13.8517 22.125 12 22.125C6.41711 22.125 1.875 17.5829 1.875 12C1.875 6.41711 6.41711 1.875 12 1.875C17.5829 1.875 22.125 6.41711 22.125 12C22.125 13.9964 21.5314 15.9395 20.4082 17.6197C20.1204 18.05 20.2361 18.6323 20.6664 18.9201C21.0969 19.2079 21.6791 19.0922 21.9668 18.6617C23.2971 16.6723 24 14.3687 24 12C24 8.79474 22.7518 5.78119 20.4853 3.51471C18.2188 1.24823 15.2053 0 12 0C8.79474 0 5.78119 1.24823 3.51471 3.51471C1.24823 5.78119 0 8.79474 0 12C0 15.2053 1.24823 18.2188 3.51471 20.4853C5.78119 22.7518 8.79474 24 12 24C14.1943 24 16.3414 23.402 18.2091 22.2706Z' fill='%23539100'/%3E%3C/svg%3E") no-repeat center;
}
.block-white ol li:last-child {
  margin-bottom: 0;
}

.block-gray {
  background: #F0F1F2;
  border: 2px solid #E1E1E1;
  box-sizing: border-box;
  border-radius: 9px;
  padding: 40px 100px;
  margin-top: 20px;
}
@media (max-width: 767.98px) {
  .block-gray {
    padding: 28px 20px;
  }
}
