body {
  color: #111827;
  font-family: "Roboto", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

.container {
  padding: 0 15px;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 auto;
}

.header__logo {
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 0;
  border-bottom: 1px solid rgb(229, 231, 235);
}
.header__logo img {
  height: 100%;
}
.header__logo img * {
  fill: #111827;
}

.main {
  padding: 96px 0 120px;
}
.main .container {
  width: 820px;
  gap: 30px;
}
.main__title {
  text-align: center;
  margin: 0;
  font-size: 56px;
  font-weight: 700;
  letter-spacing: -0.5px;
  line-height: 62px;
}
.main__description {
  text-align: center;
  line-height: 24px;
}
.main__sites {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}
.main__sites__item {
  background-color: #f9fafb;
  border-radius: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  text-decoration: none;
  margin: 0;
}
.main__sites__item img {
  height: 26px;
}

.mission {
  background-color: #111827;
  color: #ffffff;
  padding: 96px 0 120px;
}
.mission .container {
  width: 710px;
  align-items: flex-start;
  gap: 20px;
}
.mission__title {
  display: flex;
  align-items: center;
  font-size: 14px;
  font-weight: 500;
  margin: 0;
  gap: 8px;
}
.mission__title:before {
  content: "";
  height: 20px;
  width: 2px;
  display: block;
  background-color: #ffffff;
}
.mission__subtitle {
  font-size: 40px;
  font-weight: 700;
  line-height: 56px;
  margin: 0;
}
.mission__description {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  margin: 10px 0 0;
}

.about {
  padding: 96px 0 120px;
}
.about .container {
  width: 1440px;
  align-items: flex-start;
  gap: 16px;
}
.about__title {
  display: flex;
  align-items: center;
  font-size: 14px;
  font-weight: 500;
  margin: 0;
  gap: 8px;
}
.about__title:before {
  content: "";
  height: 20px;
  width: 2px;
  display: block;
  background-color: #111827;
}
.about__subtitle {
  font-size: 40px;
  font-weight: 700;
  line-height: 56px;
  margin: 0;
}
.about__items {
  display: grid;
  /* 2 same width columns */
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 25px;
}
.about__item {
  background-color: #f9fafb;
  border-radius: 16px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.about__item__title {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
}
.about__item__description {
  margin: 0;
  font-size: 14px;
  font-weight: 400;
}

.footer {
  background-color: #f9fafb;
}
.footer .container {
  width: 1440px;
}
.footer__top {
  padding: 30px 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.footer__top__logo img {
  height: 36px;
}
.footer__top__info {
  font-size: 14px;
  gap: 5px;
  display: flex;
  flex-direction: column;
}
.footer__top__info__row a {
  color: inherit;
  text-decoration: underline;
}
.footer__copyright {
  text-align: center;
  width: 100%;
  border-top: 1px solid rgb(229, 231, 235);
  padding: 10px 0;
  font-size: 12px;
  color: rgb(75, 85, 99);
}

@media (max-width: 768px) {
  .main {
    padding: 80px 0 80px;
  }
  .main .container {
    gap: 20px;
  }
  .main__title {
    font-size: 40px;
    line-height: 48px;
  }
  .main__sites__item img {
    height: 20px;
  }
  .mission {
    padding: 80px 0 80px;
  }
  .mission__subtitle {
    font-size: 32px;
    line-height: 45px;
  }
  .about {
    padding: 80px 0 80px;
  }
  .about .container {
    width: 100%;
    flex-direction: column;
  }
  .about__subtitle {
    font-size: 32px;
    line-height: 45px;
  }
  .about__items {
    grid-template-columns: 1fr;
  }
}

/*# sourceMappingURL=style.css.map */
