:root {
  --section-main-color: #ffffff;
  --section-gray-color: #F4F6F8;
  --section-dark-color: #2D2F36;
  --ek-primary-color: #49B85D;
  --ek-main-text-color: #474953;
  --ek-second-text-color: #444751;
  --ek-primary-color: #49B85D;
  --ek-main-text-color: #474953;
}

.section {
  position: relative;
  display: block;
  background: var(--section-main-color);
  padding: 80px 0;
}
.section.section-gray {
  background: var(--section-gray-color);
}
.section.section-dark {
  background: var(--section-dark-color);
}
.section.section-dark h2, .section.section-dark p {
  color: #ffffff;
}
.section.section-center {
  text-align: center;
}
.section h2 {
  display: block;
  font-size: 47px;
  margin-bottom: 45px;
  font-weight: 700;
  color: var(--ek-main-text-color);
  width: 100%;
}
.section p {
  font-size: 18px;
  line-height: 1.65;
  padding-right: 15px;
  color: var(--ek-second-text-color);
}
.section p .description {
  display: block;
  width: 100%;
  text-align: center;
  font-weight: 300;
  font-size: 22px;
  margin-top: 15px;
  color: var(--ek-main-text-color);
  margin-bottom: 60px;
}
.section img {
  max-width: 100%;
  height: auto;
}

@media screen and (max-width: 768px) {
  .section {
    padding: 50px 0;
  }
  .section h2 {
    font-size: 32px;
    line-height: 1.2;
    margin-bottom: 20px;
  }
  .section p {
    font-size: 16px;
    line-height: 1.2;
  }
}