html a {
  text-decoration: none;
}

nav .navbar-brand {
  margin-right: 40px;
}
nav .nav-link {
  font-weight: 600;
  color: #667085;
}
section {
  padding-top: 80px;
  padding-bottom: 80px;
  margin-top: 50px;
  margin-bottom: 50px;
}

section.header {
  margin-bottom: 0;
  padding-bottom: 0;
  padding-top: 20px;
}
section.header hr {
  margin: 70px 10% 0 10%;
}

section.advert {
  text-align: center;
  padding-top: 60px;
  margin-top: 0;
}
section.advert .advert_categories {
  display: flex;
  border: 1px #d0d5dd solid;
  justify-content: space-around;
  flex-wrap: wrap;
  margin: 30px 0 30px 0;
  border-radius: 8px;
}
section.advert .advert_categories .item {
  margin-top: 30px;
  margin-bottom: 30px;
  background-color: #fff;
  border-right: 1px #d0d5dd solid;
  text-align: center;
  align-self: flex-start;
  flex: 1;
}
section.advert .advert_categories .item:last-child {
  border: none;
}
section.advert .add-info {
  color: #475467;
  font-weight: 600;
}

section.prices {
  background-color: #f9fafb;
  padding: 100px 0 50px 0;
}
section.prices .img-title {
  margin-bottom: 50px;
}
section.prices h2 {
  margin-bottom: 50px;
}
section.prices .img-desc {
  text-align: center;
  margin: 10px;
  font-weight: 600;
}
section.prices .item-card {
  background-color: #fff;
  text-align: center;
  line-height: 50px;
  margin-bottom: 50px;
}
section.prices .item-card img {
  margin-top: -30px;
}
section.prices .item-card .limit {
  font-weight: 600;
  font-size: 1.2rem;
}
section.prices .item-card .price-title {
  color: #667085;
  font-weight: 600;
  font-size: 1.2rem;
}
section.prices .item-card .price {
  font-size: 2rem;
  font-weight: bolder;
  margin-bottom: 20px;
}

section.net {
  background-image: url("../img/network.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  padding-bottom: 150px;
}
section.net p.lead {
  font-weight: 500;
}
section.net .points {
  background-color: #fff;
  margin-top: 20px;
}
section.net .points .point {
  font-weight: 600;
  background-image: url("../img/network-done.png");
  padding: 10px 0 10px 30px;
  background-repeat: no-repeat;
  background-position: left center;
}

footer {
  background-color: #364054;
  color: #f2f4f7;
  padding: 10px;
}
footer .menu {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
footer .menu a,
footer .menu div {
  padding: 0 10px 0 10px;
  color: #a4a8b2;
}
footer .menu a {
  color: #a4a8b2;
}
footer .menu a:hover {
  color: #fff;
}
footer hr {
  border-top: 1px #5b6577 solid;
}
footer .copyright {
  text-align: right;
}

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

/* Layout: fix footer at bottom */
html, body {
  height: 100%;
}
body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* Основной контент должен растягиваться */
main, .content, .site-content {
  flex: 1 0 auto;
}

/* Footer остаётся внизу */
footer, .site-footer {
  flex-shrink: 0;
  margin-top: auto;
}
