@import "https://fonts.googleapis.com/css2?family=Roboto:wght@100..900&display=swap";
*,
body {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  background: #171d2e;
  color: #fff;
  font-family: Roboto, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
  min-height: calc(100vh - 50px);
  position: relative;
}
a {
  color: #0080ff;
}
hr {
  background-color: #fff;
  border: 0;
  height: 0.1px;
  opacity: 0.5;
}
.container {
  margin: 0 auto;
  max-width: 800px;
}
header {
  margin-top: 48px;
}
.header_logo,
.header_texts {
  margin-bottom: 40px;
}
.header_texts {
  display: flex;
  gap: 40px;
}
.header_text {
  font-weight: 100;
  line-height: 22px;
  width: 50%;
}
main .container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
}
.blocks_item {
  margin-top: 32px;
  max-width: 380px;
}
.blocks_title {
  font-family: Roboto, sans-serif;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}
footer {
  bottom: 10px;
  position: absolute;
  width: 100%;
}
.footer_copyright {
  color: #ccc;
  margin: 0;
}
.footer_menu a {
  color: #fff;
  text-decoration: none;
}
.footer_menu {
  flex-wrap: wrap;
  gap: 24px;
}
.footer_content,
.footer_menu {
  align-items: center;
  display: flex;
}
.footer_content {
  font-size: 14px;
  gap: 20px;
  justify-content: space-between;
  padding: 10px 0;
}
@media (max-width: 1200px) {
  .header_logo {
    margin-bottom: 24px;
  }
  .blocks_item {
    margin-top: 24px;
  }
}
@media (max-width: 768px) {
  .container {
    margin: 0 20px;
  }
  .header_texts {
    flex-direction: column;
    gap: 24px;
    margin-bottom: 24px;
  }
  .header_text {
    margin-bottom: 24px;
    width: 100%;
  }
  .footer_content {
    align-items: start;
    display: flex;
    flex-direction: column;
    padding: 20px 0;
  }
  .footer_menu {
    gap: 16px;
  }
  .footer_copyright {
    margin-bottom: 20px;
  }
  footer {
    margin-top: 48px;
    position: relative;
  }
}
