* {
  /*Обнуляем значения присваиваемые
  браузерами по умолчанию. */
  margin: 0;
  padding: 0;
  border: 0;
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  font-family: Roboto, sans-serif;
  margin: auto;
}
body {
  display: block;
}

.header {
  /*Панель навигации по ТЗ
  должна быть зафиксирована. */

  position: fixed;
  width: 100%;
  /*height: 84px;*/
  background-color: #007765;
  top: 0; /*Ставит панель навигации
  на место. */
  left: 0;
}
header {
  display: block;
}
.container {
  /* Параметры указанные в тех. задании. */
  max-width: 1219px;
  margin: 0 auto;
  padding: 0 55px 0;
}
div {
  /* Делаем все дивы блочными */
  display: block;
}
.header__container {
  /*position: relative;*/
  height: 100%;
  display: flex;
  justify-content: space-between;
}
.header__logo {
  /*position: relative;*/
  margin: 20px 0 0;
}
.header__list {
  /*padding: 28px 0 0;*/
  padding-top: 28px; /*вместо min-height*/
  padding-bottom: 28px; /*вместо min-height*/

  /*margin-left: 10px;*/
}

.header__link,
.header__list span {
  font-weight: 500;
  margin-left: 8px;
  font-size: 24px;
  line-height: 28px;
  color: white;
  text-decoration: none;
}

.jumbotron {
  /*min-height: 403px;*/
  padding-top: 160px; /*вместо min-height*/
  padding-bottom: 160px; /*вместо min-height*/
  background-image: url(images/image-8.png);
  background-size: cover;
  background-position: 0 0;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 84px;
}
.jumbotron p {
  font-weight: 500px;
  font-size: 72px;
  line-height: 84px;
  text-align: center;
  color: white;
}

/* Решаем проблему с кривыми якорями */
#problem {
  padding-top: 55px;
  margin-top: -55px;
  -webkit-background-clip: content-box;
  background-clip: content-box;
}
.problem {
  /*min-height: 719px;*/
  background-color: #eeeeee;
}
.problem__title {
  padding-top: 48px;
  padding-bottom: 16px; /*вместо min-height*/
  color: #007765;
  font-size: 64px;
  line-height: 75px;
  font-weight: 500;
  text-align: center;
  /*margin: 0;*/
}
.problem__text {
  font-size: 32px;
  font-weight: 400;
  line-height: 37px;
  padding-bottom: 92px; /*вместо min-height*/
}

.hero {
  /*min-height: 483px;*/
  padding-top: 128px; /*вместо min-height*/
  padding-bottom: 128px; /*вместо min-height*/
  background-image: url(images/image-9.png);
  background-size: cover;
  background-position: 0 0;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero__text {
  font-size: 48px;
  font-weight: 500;
  line-height: 56px;
  font-style: italic;
  color: #ffffff;
  text-align: center;
  max-width: 893px;
}


/* Решаем проблему с кривыми якорями */
#ppc {
  padding-top: 55px;
  margin-top: -55px;
  -webkit-background-clip: content-box;
  background-clip: content-box;
}
.ppc__title {
  padding-top: 48px;
  padding-bottom: 16px;
  color: #007765;
  font-size: 64px;
  line-height: 75px;
  font-weight: 500;
  text-align: center;
}
.ppc__logo {
  float: left;
  width: 115px;
  height: auto;
  margin: 0 48px 35px 0;
}

.ppc__text {
  font-size: 32px;
  font-weight: 400;
  line-height: 37px;
  padding-bottom: 92px;
}

/* Блок Team*/
/* Решаем проблему с кривыми якорями */
#team {
  padding-top: 55px;
  margin-top: -55px;
  -webkit-background-clip: content-box;
  background-clip: content-box;
}
.team {
  background-color: #eeeeee;
}
.team__title {
  padding-top: 48px;
  padding-bottom: 32px;
  color: #007765;
  font-size: 64px;
  line-height: 75px;
  font-weight: 500;
  text-align: center;
}
.team__profiles {
  padding-bottom: 94px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.team__profile {
  padding: 30px;
  width: 350px;
  height: 283px;
  text-align: center;
}
.team__profile img {
  padding-bottom: 12px;
}
.team__name {
  font-size: 24px;
  font-weight: 700;
  line-height: 28px;
  color: #007765;
}
.team__position {
  font-size: 18px;
  font-style: italic;
  font-weight: normal;
  line-height: 21px;
}
footer {
  background: #333333;
  display: flex;
  justify-content: center;
}
.rectangle__text {
  font-size: 18px;
  font-weight: normal;
  line-height: 21px;
  color: white;
  max-width: 540px;
  text-align: center;
  padding-top: 48px;
  padding-bottom: 64px;
}
