a {
  text-decoration: none;
}

.menu {
  display: none;
}

.header {
  height: 70px;
  width: 100%;
  background: #3B5998;
  display: flex;
  align-items: center;
}
.header__body {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.container {
  max-width: 800px;
  width: 100%;
  padding: 0 10px;
  margin: 0 auto;
}

.logo {
  font-weight: 800;
  font-size: 14px;
  line-height: 19px;
  text-align: center;
  color: #fff;
  padding: 10px;
  border: 1px solid #FFFFFF;
  width: 76px;
}

.nav {
  display: flex;
  margin-left: 8%;
}
.nav__item {
  font-weight: 800;
  font-size: 20px;
  line-height: 30px;
  text-align: center;
}
.nav__item a {
  color: #FFF9F9;
}
.nav__item:not(:last-child) {
  padding-right: 18px;
}

.article-header {
  background: url("../images/main-picture-01.jpg") no-repeat center center;
  background-size: auto 100%;
  height: 436px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0;
}
.article-header__img-wrap {
  border: 3px solid #FFFFFF;
  padding: 7px;
  width: 44%;
  height: auto;
  margin-left: 10%;
  margin-bottom: 4%;
}
.article-header__img-wrap img {
  width: 100%;
}
.article-header__text {
  background: #F5F5F5;
  padding: 10px 16px;
  font-weight: 800;
  font-size: 20px;
  line-height: 27px;
  color: #000000;
  margin-bottom: 14px;
}
.article-header__footer {
  background: #3B5998;
  width: 100%;
  height: 44px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 16px;
}
.article-header__footer-title {
  font-weight: 600;
  font-size: 20px;
  line-height: 27px;
  color: #FFF9F9;
}

.socials {
  display: flex;
}
.socials__item:not(:last-child) {
  margin-right: 18px;
}

.main {
  padding: 15px 30px;
  background: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.subtitle-section {
  margin-bottom: 40px;
}

.subtitle-item {
  font-weight: 700;
  font-size: 20px;
  line-height: 150%;
  color: #930000;
}
.subtitle-item:not(:last-child) {
  margin-bottom: 1.5em;
}

.image-box {
  width: 100%;
  margin-bottom: 20px;
}
.image-box__img {
  width: 100%;
}
.image-box__description {
  padding: 15px 4px 20px;
  text-align: center;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: #818181;
}

.interview-reply {
  width: 100%;
  margin-bottom: 20px;
}
.interview-reply.question .interview-reply__name {
  color: #3B5998;
}
.interview-reply.reply .interview-reply__name {
  color: #930000;
}
.interview-reply__header {
  display: flex;
  width: 100%;
  align-items: center;
}
.interview-reply__author-pic {
  padding: 0;
  width: 56px;
  height: 56px;
  margin-right: 10px;
}
.interview-reply__name {
  font-weight: 700;
  font-size: 18px;
  line-height: 25px;
}
.interview-reply__role {
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: #818181;
}
.interview-reply__body {
  padding-left: 66px;
}
.interview-reply__reply {
  font-weight: 500;
  font-size: 16px;
  line-height: 150%;
  color: #000000;
}
.interview-reply__reply-p:not(:last-child) {
  margin-bottom: 1.5em;
}
.interview-reply__reply-img {
  width: 100%;
  margin-bottom: 30px;
}

.interview-link {
  font-weight: 700;
  color: #3B5998;
}

b {
  font-weight: 700;
}

.to-form-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  width: 258px;
  height: 44px;
  background: #FF0000;
  border-radius: 3px;
  font-weight: 700;
  font-size: 16px;
  line-height: 150%;
  color: #FFFFFF;
  transition: 0.2s;
  text-decoration: none;
}
.to-form-btn:hover {
  background: #d50404;
  text-decoration: none;
}

footer {
  width: 100%;
  padding: 20px 10px;
  margin-top: 60px;
  text-align: center;
  background: #3B5998;
  color: #FFFFFF;
}

footer a {
  font-weight: 700;
  font-size: 16px;
  line-height: 150%;
  color: #FFFFFF;
  text-decoration: none;
}

@media (max-width: 724px) {
  .nav {
    margin-left: 25px;
  }
  .nav__item {
    font-size: 12px;
    line-height: 16px;
  }
  .logo {
    font-size: 12px;
  }
  .article-header {
    background-position: top center;
    background-size: cover;
  }
  .article-header__img-wrap {
    margin-bottom: auto;
    margin-top: 10%;
    width: 60%;
  }
  .article-header__body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
  }
  .article-header__text {
    font-size: 16px;
    line-height: 22px;
    padding: 10px 20px;
    margin-bottom: 0;
  }
  .article-header__footer-title {
    font-size: 16px;
    line-height: 22px;
  }
  .subtitle-item {
    font-size: 18px;
    margin-bottom: 1em !important;
  }
  .main {
    padding: 15px 20px;
  }
  .image-box {
    margin-bottom: 5px;
  }
  .image-box__description {
    font-size: 12px;
    line-height: 16px;
  }
  .interview-reply {
    margin-bottom: 25px;
  }
  .interview-reply__author-pic {
    width: 40px;
    height: 40px;
  }
  .interview-reply__header {
    margin-bottom: 10px;
  }
  .interview-reply__body {
    padding-left: 0;
  }
  .interview-reply__reply-p {
    margin-bottom: 1em !important;
  }
  .interview-reply__name {
    font-size: 16px;
  }
  .interview-reply__role {
    font-size: 14px;
  }
  .interview-reply__reply {
    font-size: 14px;
  }
  .order-form .top h2 {
    font-size: 24px !important;
  }
}
@media (max-width: 524px) {
  .article-header__img-wrap {
    width: 60%;
    width: calc(100% - 80px);
    margin-left: 4%;
  }
  .nav {
    display: none;
  }
  .header {
    height: 50px;
  }
  .header__body {
    justify-content: space-between;
  }
  .logo {
    font-size: 11px;
    padding: 4px;
    width: 58px;
    line-height: 17px;
  }
  .menu {
    display: block;
  }
  .menu img {
    width: 40px;
  }
}

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