@font-face {
  font-family: "PT Sans";
  src: url("../fonts/PTSans-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "PT Sans";
  src: url("../fonts/PTSans-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-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: 15px 0;
  background-color: #f9f9f9;
}

.header__logo-img {
  width: auto;
  max-width: 140px;
  height: auto;
  display: block;
}

.main {
  margin-top: 80px;
  flex: 1;
}

.info {
  padding: 60px 0;
}

.info__title {
  display: block;
  margin-bottom: 40px;
  font-size: 30px;
  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 20px;
  width: calc(100% / 3 - 40px / 3);
  border-radius: 20px;
  background: #f9f9f9;
}

.info__number {
  margin-bottom: 10px;
  font-size: 60px;
  font-weight: 700;
}



.footer {
  padding: 60px 0;
  background-color: #f9f9f9;
  font-size: 14px;
  color: #6e6e73;
}

@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%;
  }
}
