.page {
  &__title, h1.page__title, h2.page__title {
    @include rem(margin-bottom, 17px);

    span {
      display: inline;
      font-weight: $fw-light;
    }
  }

  &__subtitle, h3.page__subtitle {
    text-align: center;
    color: $gray-light;

    @include rem(margin-bottom, 68px);
  }

  &__header {
    @include clearfix;
    @include rem(margin-bottom, 30px);

    h2, h1, h3 {
      margin-bottom: 0 !important;
    }

    .tabs_stack {
      margin-bottom: 0;
      @include rem(margin-top, 10px);
    }
  }

  &__actions {
    margin-top: -7px;
  }

  &__list, ul.page__list {
    list-style: none;
    padding-left: 0;

    @include rem(font-size, 18px);

    li {
      @include rem(margin-bottom, 20px);
    }
  }

  &__features,
  &__features.features {
    text-align: left;
    background: transparent;
    margin: 40px -14px 0;

    .features__item {
      margin-bottom: 30px;

      &__img {
        margin-bottom: 45px;
      }

      &__text {
        font-size: 18px;
        font-weight: normal;
        font-style: normal;
        font-stretch: normal;
        line-height: 1.67;
        color: #3f4d60;
      }
    }
  }

  .section--padding {
    @include rem(padding, 70px 0)
  }

  .container {
    width: 1200px;
    max-width: 100%;
  }

  @media (max-width: $screen-tablet)  {
    &__features, &__features.features {
      margin-left: 0;
      margin-right: 0;
    }
  }

  @media (max-width: $screen-landscape)  {
    &__features, &__features.features {
      text-align: center;

      &__item {
        max-width: 215px;
      }
    }

    .text-center-sm {
      text-align: center;
    }
  }

  @media (max-width: 640px)  {
    &__subtitle, h3.page__subtitle {
      margin-bottom: 40px;
    }
  }
}

.page_border {
  border-bottom: 1px solid #eaedef;
  width: 1240px;
  max-width: 100%;
  margin: 0 auto;
}

.page_title {
  &--sub {
    font-weight: $fw-semi;
    color: $primary;
    font-family: $ff;
    letter-spacing: .07em;
    margin: 5px 0 25px;
    text-transform: uppercase;

    @include rem(font-size, 14px);
    @include rem(margin, 5px 0 25px);
  }
}

.sub_title {
  text-transform: uppercase;
  font-weight: $fw-semi;
  color: #333;
  letter-spacing: .03em;
  position: relative;

  @include rem(font-size, 18px);
  @include rem(margin, 40px 0 10px);

  &:first-child {
    margin-top: 0;
  }
}

.page_nav {
  position: static;
  background: $white !important;
  width: 100%;

  &__title {
    font-weight: 600;
    font-size: 32px;
    vertical-align: middle;
    margin: 10px 50px 10px 0;
    color: rgb(51, 51, 51);
    text-decoration: none;
    display: none;

    a {
      text-decoration: none !important;
      color: $text !important;
    }

  }

  .btn {
    margin-top: 6px;
  }

  &__list {
    display: inline-block;
    width: 100%;
    text-align: center;
    border-top: 1px solid #eaedef;

    @include rem(padding-top, 29px);
    @include rem(padding-bottom, 29px);

    @include clearfix;
  }

  &__item {
    float: none;
    display: inline-block;
    vertical-align: middle;
    font-weight: $fw-semi;
    color: rgba($secondary, .8);

    @include rem(font-size, 18px);
    @include rem(line-height, 20px);
    @include rem(margin, 0 45px 0 0);

    &:last-child {
      margin-right: 0;
    }

    a {
      color: $secondary;
      opacity: 0.6;
      font-weight: normal;
      display: inline-block;
      position: relative;

      @include rem(padding, 10px 0);

      &:hover {
        color: $secondary;
        opacity: 1;
        text-decoration: none;
      }

      &:after {
        display: none;
        content: '';
      }
    }

    &.active {
      a {
        color: $secondary;
        opacity: 1;
        font-weight: $fw-semi;
      }
    }
  }

  &__inner {
    padding: 0;
  }

  &__list {
    margin-bottom: 0;
  }

  .container {
    width: 1240px + 30px;
    max-width: 100%;
  }

  @media (max-width: $screen-landscape) {
    overflow: hidden;
    height: 56px;

    &__inner {
      padding: 14px;
      overflow: hidden;
      overflow-x: auto;
      height: 70px;
      white-space: nowrap;
    }

    &__list {
      width: auto;
      margin: 0 !important;
      white-space: nowrap;
      padding-right: 20px;
      text-align: center;
      min-width: 100%;
      border-top: 0;
      padding-top: 0;
      padding-bottom: 0;

      @include clearfix;
    }

    &__item {
      margin-top: 0;
      float: none;
      display: inline-block;
      vertical-align: top;
      margin-right: 25px;

      a {
        padding: 4px 0;
      }
    }

    &__inner {
      border-top: 1px solid #eaedef;
    }
  }

  @media all and (max-width: $screen-mobile) {
    &__inner {
      padding: 17px 14px;
    }
  }
}