/* 1. Стили для всего блока */
* {
  margin: 0;
  padding: 0;
}

html {
  box-sizing: border-box;
  font-size: 0;
  font-weight: inherit;
}

body {
  width: 1110px;
  margin: 0 auto;
}

/* 2.1 Стиль для блока: меню->лого */

.logo {
  margin: 36px auto 0 auto;
}

.img-logo {
  width: 78px;
  height: 21px;
}

/* 2.2 Стиль для блока: меню->навигация */
li {
  display: inline-block;
}

.a-nav {
  display: inline-block;
  text-decoration: none;
  font-family: "Open Sans", sans-serif;
  font-weight: bold;
  font-size: 14px;
  line-height: 32px;
  list-style: none;
  color: #0f0101;
  text-transform: uppercase;
  margin-right: 30px;
}

.a-nav:not(:last-child) {
  margin-right: 30px;
}

.a-nav:hover {
  display: inline-block;
  font-size: 14px;
  line-height: 32px;
  text-transform: uppercase;
  list-style: none;
  color: #1abc9c;
}

/* 3. Стиль для оформления Заголовков разделов */

.title {
  font-family: "Roboto", sans-serif;
  font-weight: 900;
  font-size: 48px;
  color: #555252;
  text-transform: uppercase;
  margin: 96px auto 30px 0;
  text-align: center;
}

.title {
  position: relative;
}

.title::after {
  content: "";
  display: block;
  width: 164px;
  height: 7px;
  background: #1abc9c;
  overflow: hidden;
  margin: 30px auto 92px auto;
}

/* 4. Стиль для блока: Products */

.catalogue {
  margin: 0 30px 30px 0;
  width: 255px;
  height: 323px;
  background-color: #e9f0fd;
  text-align: center;
}
.catalogue:nth-child(4n + 4) {
  margin-right: 0;
}

.box:hover .name {
  background-color: #1abc9c;
}
.box:hover .cost {
  background-color: #7fd9c7;
}

.name {
  display: inline-block;
  width: 201px;
  height: 40px;
  line-height: 40px;
  background-color: #323232;
  text-align: left;
  text-indent: 13px;
  text-transform: uppercase;
  font-family: "Roboto", sans-serif;
  font-weight: 900;
  font-size: 18px;
  color: white;
}
.con {
  height: 283px;
  line-height: 283px;
}

.cost {
  width: 54px;
  height: 40px;
  line-height: 40px;
  background-color: #8c8c8c;
  display: inline-block;
  text-align: center;
  font-family: "Roboto", sans-serif;
  font-weight: 900;
  font-size: 18px;
  color: white;
}

.img-item {
  display: inline-block;
  vertical-align: middle;
 }

/* 5. Стиль для блока: Products */

.img-blog {
  width: 350px;
  height: 261px;
}

.blog {
  margin-right: 30px;
  width: 350px;
}
.blog:last-child {
  margin-right: 0;
}

.blog-title {
  font-family: "Open Sans", sans-serif;
  font-size: 600;
  font-size: 18px;
  color: #555252;
  line-height: 26px;
  margin: 12px 0 0 0;
  text-align: left;
}
.blog-title::after {
  content: "";
  display: block;
  width: 136px;
  height: 3px;
  background: #1abc9c;
  overflow: hidden;
  margin: 12px 0 23px 0;
}

.blog-text {
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  color: #555252;
  display: block;
  font-size: 14px;
  line-height: 26px;
  margin: 23px 0 14px 0;
}

.button {
  font-family: "Open Sans", sans-serif;
  font-weight: 300;
  width: 160px;
  height: 52px;
  background-color: #1abc9c;
  color: white;
  font-size: 16px;
  line-height: 26px;
  margin-bottom: 45px;
  border-radius: 2px;
  border: 0;
}

/* 6. Стиль общий обтекание */

.float-left {
  float: left;
}

.float-right {
  float: right;
}

.clearfix::after {
  content: "";
  display: table;
  clear: both;
}
