@font-face {
  font-family: 'Roboto';
  src: url('../fonts/Roboto-Black.eot');
  src: url('../fonts/Roboto-Black.eot?#iefix') format('embedded-opentype'), url('../fonts/Roboto-Black.woff2') format('woff2'), url('../fonts/Roboto-Black.woff') format('woff'), url('../fonts/Roboto-Black.ttf') format('truetype'), url('../fonts/Roboto-Black.svg#Roboto-Black') format('svg');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Roboto';
  src: url('../fonts/Roboto-Bold.eot');
  src: url('../fonts/Roboto-Bold.eot?#iefix') format('embedded-opentype'), url('../fonts/Roboto-Bold.woff2') format('woff2'), url('../fonts/Roboto-Bold.woff') format('woff'), url('../fonts/Roboto-Bold.ttf') format('truetype'), url('../fonts/Roboto-Bold.svg#Roboto-Bold') format('svg');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Roboto';
  src: url('../fonts/Roboto-Regular.eot');
  src: url('../fonts/Roboto-Regular.eot?#iefix') format('embedded-opentype'), url('../fonts/Roboto-Regular.woff2') format('woff2'), url('../fonts/Roboto-Regular.woff') format('woff'), url('../fonts/Roboto-Regular.ttf') format('truetype'), url('../fonts/Roboto-Regular.svg#Roboto-Regular') format('svg');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

* {
  margin: 0;
  padding: 0;
}

ul,
ol {
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

body,
html {
  overflow-x: hidden;
}

body {
  font-family: 'Roboto';
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  position: relative;
  background-color: #000;
}

.body-block {
  overflow: hidden;
}

.wrapper {
  max-width: 1140px;
  padding-left: 10px;
  padding-right: 10px;
  margin-left: auto;
  margin-right: auto;
}

h2,
h3,
.page-title {
  font-size: 32px;
  font-weight: 900;
  text-align: center;
}
h2 .yellow,
h3 .yellow,
.page-title .yellow {
  color: #F7B208;
}

/* Шапка */

.header {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 2;
  font-size: 19px;
}

.header__top {
  background: rgba(0, 0, 0, 0.5);
  position: relative;
}

.header__row {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
}

.logo {
  margin-bottom: 20px;
}

.logo img {
  display: block;
}

.skype,
.phone {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
  font-weight: 900;
}

.skype img,
.phone img {
  margin-right: 10px;
}

.nav {
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 30px;
}

.nav .skype,
.nav .phone {
  display: none;
}

.nav__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
          justify-content: space-between;
}
.nav__list .active{
  color:  #F7B208;
}

.nav__link {
  font-weight: 900;
}

.nav__link.active {
  color: #F7B208;
}

.burger {
  display: none;
  width: 25px;
  height: 18px;
  position: absolute;
  right: 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 4;
  margin-left: 20px;
}

.burger__item {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  border-radius: 1px;
  background-color: #fff;
  -webkit-transform-origin: right;
      -ms-transform-origin: right;
          transform-origin: right;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.burger__item:nth-child(1) {
  top: 0;
}

.burger__item:nth-child(2) {
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  top: 50%;
}

.burger__item:nth-child(3) {
  bottom: 0;
}

.burger.active .burger__item:nth-child(2) {
  opacity: 0;
}

.burger.active .burger__item:nth-child(1) {
  -webkit-transform: rotate(-44deg);
      -ms-transform: rotate(-44deg);
          transform: rotate(-44deg);
  width: 94%;
  background-color: #fff;
}

.burger.active .burger__item:nth-child(3) {
  -webkit-transform: rotate(44deg);
      -ms-transform: rotate(44deg);
          transform: rotate(44deg);
  width: 94%;
  background-color: #fff;
}

/* / Шапка */

/* hero */

.hero {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url('../img/hero/bg.png');
  padding-top: 212px;
  padding-bottom: 114px;
}

.hero__content {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
  margin-left: -10px;
  margin-right: -10px;
}

.hero__content > * {
  margin-left: 10px;
  margin-right: 10px;
}

.hero__title {
  width: calc(100% / 12 * 7 - 20px);
  font-size: 48px;
  line-height: 1.66;
  font-weight: 900;
  padding-top: 60px;
}

.hero__title .yellow {
  color: #F7B208;
}

.hero__right {
  width: calc(100% / 12 * 5 - 20px);
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
          justify-content: center;
}

.form {
  width: 100%;
  max-width: 330px;
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.6) 0%, #000000 100%);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.6) 0%, #000000 100%);
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.25);
  border-radius: 6px;
  box-sizing: border-box;
  padding: 42px 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
}

.form > *:not(:last-child) {
  margin-bottom: 30px;
}

.form__title {
  font-weight: 700;
  font-size: 20px;
}

.form__field {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
  width: 100%;
  border-bottom: 1px solid #c4c4c4;
  padding-bottom: 10px;
}

.form__field input {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
          flex-grow: 1;
  width: unset;
  background-color: transparent;
  border: none;
  outline: none;
  font-family: inherit;
  color: #fff;
  box-sizing: border-box;
  padding-right: 15px;
  font-size: 14px;
}

.form__field img {
  margin-right: 15px;
}

.form__submit {
  width: 100%;
  display: block;
  padding: 22px 0;
  color: #fff;
  font-family: inherit;
  background: -webkit-linear-gradient(top, #F7B208 0%, #A37506 100%);
  background: linear-gradient(180deg, #F7B208 0%, #A37506 100%);
  border-radius: 8px;
  border: none;
  outline: none;
  text-transform: uppercase;
  font-weight: 900;
  cursor: pointer;
}

.form__confident {
  font-size: 14px;
  line-height: 1.42;
  max-width: 200px;
}

/* / hero */

/* Преимущества */

.advantages {
  background-color: #000;
  padding: 120px 0 60px 0;
}

.advantages__items {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
  margin-left: -10px;
  margin-right: -10px;
}

.advantages__item {
  margin-left: 10px;
  margin-right: 10px;
  width: calc(100% / 12 * 3 - 20px);
  text-align: center;
  margin-top: 60px;
}

.advantages__img {
  margin-bottom: 15px;
}

.advantages__name {
  margin-bottom: 25px;
}

.advantages__text {
  line-height: 1.16;
}

/* / Преимущества */

/* О нас */

.about {
  background-color: #000;
  padding: 60px 0 120px;
}

.about__title {
  margin-bottom: 60px;
}

.about__items {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
  margin-left: -10px;
  margin-right: -10px;
}

.about__item {
  margin-left: 10px;
  margin-right: 10px;
  width: calc(100% / 12 * 4 - 20px);
  border-radius: 6px;
  overflow: hidden;
}

.about__item img {
  display: block;
}

/* / О нас */

/* Статьи */

.articles {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url('../img/articles/bg.png');
  padding: 120px 0;
}

.article {
  font-size: 16px;
  line-height: 1.37;
}

.article:not(:last-child) {
  margin-bottom: 60px;
}

.article__title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 30px;
}

/* / Статьи */

/* Подвал */

.footer {
  background-color: #000;
}

.footer__rights {
  text-align: center;
  padding: 30px 0;
  font-size: 14px;
}

/* / Подвал */

@media screen and (max-width: 992px) {
  .hero__title {
    font-size: 44px;
  }

  .page-title {
    font-size: 30px;
  }

  .advantages__item {
    width: calc(100% / 12 * 4 - 20px);
  }
}

@media screen and (max-width: 768px) {
  .hero__title {
    font-size: 40px;
  }

  .page-title {
    font-size: 28px;
  }

  .header__top .skype,
  .header__top .phone {
    display: none;
  }

  .header__row {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
            justify-content: center;
  }

  .nav {
    position: absolute;
    right: 0;
    top: 0;
    background-color: #000;
    width: 100%;
    height: 100vh;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
            align-items: center;
    padding-top: 80px;
    -webkit-transform: translateX(100%);
        -ms-transform: translateX(100%);
            transform: translateX(100%);
    -webkit-transition: 0.25s;
    transition: 0.25s;
    opacity: 0;
  }

  .nav .skype,
  .nav .phone {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    margin-bottom: 15px;
  }

  .nav__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
            align-items: center;
  }

  .nav__item:not(:last-child) {
    margin-bottom: 10px;
  }

  .nav.active {
    -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }

  .burger {
    display: block;
  }

  .logo {
    width: 200px;
  }

  .hero {
    padding-top: 120px;
    padding-bottom: 60px;
  }

  .hero__content {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
            justify-content: center;
  }

  .hero__title {
    width: calc(100% / 12 * 12 - 20px);
    padding-top: 0;
    max-width: 450px;
    text-align: center;
    margin-bottom: 60px;
  }

  .hero__right {
    width: calc(100% / 12 * 12 - 20px);
  }

  .advantages {
    padding-top: 60px;
  }

  .advantages__item {
    width: calc(100% / 12 * 6 - 20px);
  }

  .about {
    padding-bottom: 60px;
  }

  .about__items {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
            justify-content: center;
  }

  .about__item {
    width: calc(100% / 12 * 6 - 20px);
    margin-bottom: 20px;
  }

  .articles {
    padding: 60px 0;
  }
}

@media screen and (max-width: 480px) {
  .hero__title {
    font-size: 36px;
    line-height: 1.38;
  }

  .page-title {
    font-size: 26px;
    margin-bottom: 30px;
  }

  .advantages__title {
    margin-bottom: 0;
  }

  .advantages__item {
    width: calc(100% / 12 * 12 - 20px);
    margin-top: 30px;
  }

  .articles {
    background-position-x: -2300px;
  }

  .about {
    padding-top: 0;
  }

  .about__item {
    width: calc(100% / 12 * 12 - 20px);
  }
}

.article{

}

.article p{
  line-height: 1.6em;
  padding-bottom: 15px;
}

.article h2,
.article h3 {
  padding-bottom: 15px;
}
.article h2 span,
.article h3 span{
   color: #F7B208;
}
.article ul{
  margin-left: 20px;
  padding-bottom: 15px;
  list-style-type: circle;
}

.article ul li{
  padding-bottom: 5px;
}

.breadcrumbs{
 display: -webkit-box;
 display: -webkit-flex;
 display: flex;
 -webkit-box-align: center;
 -webkit-align-items: center;
 align-items: center;
 -webkit-box-pack: center;
 -webkit-justify-content: center;
 justify-content: center;

}
.breadcrumbs div{
  padding: 15px;
}

.breadcrumbs a{
  color:  #F7B208;
}

.error-form{
  border-color: red
}

.page-template{
  text-align: center;
 display: -webkit-box;
 display: -webkit-flex;
 display: flex;
 -webkit-box-align: center;
 -webkit-align-items: center;
 align-items: center;
 -webkit-box-pack: center;
 -webkit-justify-content: center;
 justify-content: center;
 -webkit-box-orient: vertical;
-webkit-box-direction: normal;
    -ms-flex-direction: column;
        flex-direction: column;
}

.button{
  display: block;
  margin-top: 25px;
  color: #F7B208;
  font-weight: bold;
  font-size: 20px;
}

.blog-list{
  font-size: 20px;
  line-height: 1.8em;
}