@import url("https://fonts.googleapis.com/css2?family=PT+Sans:wght@400;700&display=swap");

*,
*:before,
*:after {
  padding: 0;
  margin: 0;
  border: 0;
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  width: 100%;
  background-color: #fff;
  font-family: "PT Sans", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.3;
  color: #3c3c3c;
  text-align: left;
  position: relative;
  scroll-behavior: smooth;
}

.wrapper {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.container {
  max-width: 1260px;
  height: 100%;
  margin: 0 auto;
  padding: 0 15px;
}

.header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 100;
  padding: 20px 0;
  background-color: #3e9273;
}

.header__logo-img {
  width: auto;
  max-width: 222px;
  height: auto;
  display: block;
}

.main {
  margin-top: 80px;
  flex: 1;
}

.info {
  padding: 60px 0;
}

.info__title {
  display: block;
  margin-bottom: 40px;
  font-size: 40px;
  font-weight: 700;
  text-align: center;
}

.info__content {
  margin-bottom: 40px;
}

.info__text {
  margin-bottom: 5px;
}

.info__items {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  text-align: center;
}

.info__item {
  padding: 40px 15px;
  width: calc(100% / 3 - 40px / 3);
  border-radius: 30px;
  border: 1px solid #d9d9d9;
}

.info__number {
  margin-bottom: 20px;
  font-size: 50px;
  font-weight: 700;
  color: #3e9273;
}

.info__subtitle {
  font-size: 18px;
  font-weight: 500;
}

.footer {
  padding: 40px 0;
  background-color: #3c3c3c;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 680px) {
  .info {
    padding: 30px 0 60px;
  }

  .info__title {
    margin-bottom: 30px;
    font-size: 30px;
  }

  .header__logo-img {
    max-width: 167px;
  }

  .info__item {
    width: 100%;
  }
}
