* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

::after,
::before {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Open Sans', 'Montserrat', sans-serif;
  background-color: #fdfdfd;
}

a {
  text-decoration: none;
  color: #86b53f;
}

a.link {
  cursor: alias;
}

img {
  max-width: 100%;
  height: auto;
}

svg.currency-icon {
  width: 12px;
  height: 14px;
  fill: #221f26;
}

.main-btn {
  color: #86b53f;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  padding: 16px 32px;
  border-radius: 200px;
  border: 2px solid #86b53f;
  font-family: "Open Sans", sans-serif;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  background-color: transparent;
  cursor: pointer;
  outline: none;
}

.main-btn:hover {
  background-color: #86b53f;
  color: #fdfdfd;
}

.main-btn.main-btn--low {
  padding: 12px 32px;
}

.tooltip {
  position: absolute;
  padding: 24px;
  color: #fdfdfd;
  font-family: "Open Sans";
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  margin: 0;
  -webkit-box-shadow: 0 0 4px rgba(55, 58, 72, 0.25);
  box-shadow: 0 0 4px rgba(55, 58, 72, 0.25);
  border-radius: 8px;
  background-color: #86b53f;
  visibility: hidden;
  opacity: 0;
  z-index: 2;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}




.tooltip:hover {
  visibility: visible;
  opacity: 1;
}

.tooltip b {
  font-weight: 700;
}

.visibly-hidden {
  visibility: hidden;
  opacity: 0;
}


@media (max-width:767px) {
  .container {
    max-width: 100%;
  }

  .main-btn {
    font-size: 14px;
    line-height: 14px;
    padding: 16px 24px;
  }
}



@media (max-width:360px) {
  .main-btn {
    font-size: 12px;
    line-height: 14px;
    padding: 12px 18px;
  }
}


/* Общая шапка */

.header {
  padding: 24px 0 0px;
}

.header__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 20px;
}


.header__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-right: 48px;
}

.header__logo svg {
  width: 185px;
  height: 40px;
  fill: #221f26;
}


.header__nav {
  margin-right: auto;
}

.header-nav__list {
  padding: 0;
  margin: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.header-nav__item {
  margin-right: 16px;
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: relative;
}

.header-nav__item:last-child {
  margin-right: 0;
}


.header-nav__link {
  display: block;
  color: #47484d;
  font-family: "Open Sans";
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: relative;
}

.header-nav__link::after {
  content: "";
  position: absolute;
  height: 1px;
  width: 100%;
  left: 0;
  bottom: 1px;
  background-color: #86b53f;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: center;
  transform-origin: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.header-nav__link--active,
.header-nav__link:hover {
  color: #86b53f;
}

.header-nav__link--active::after,
.header-nav__link:hover::after {
  -webkit-transform: scale(1);
  transform: scale(1);
}


.header__lang-nav {
  margin-right: 36px;
}

.lang-nav {
  position: relative;
}

.lang-nav__checkbox {
  position: absolute;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.lang-nav__toggle {
  color: #47484d;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.lang-nav__toggle.lang-nav__toggle--mobile {
  color: #edeef3;
}


.lang-nav__list {
  padding: 0;
  margin: 0;
  list-style: none;
  position: absolute;
  width: 100%;
  min-width: 142px;
  top: 35px;
  left: -8px;
  overflow: hidden;
  -webkit-box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.16);
  box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.16);
  background-color: #fff;
  z-index: 2;
}

.lang-nav__list.lang-nav__list--mobile {
  top: -65px;
}



.lang-nav__item {
  max-height: 0;
  overflow: hidden;
  -webkit-transition: all 300ms;
  transition: all 300ms;
}


.lang-nav__checkbox:checked~.lang-nav__list .lang-nav__item {
  max-height: 48px;
}


.lang-nav__item a {
  padding: 12px 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  color: #47484d;
  font-family: "Open Sans";
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.lang-nav__item a:hover {
  color: #FDFDFD;
  background-color: #86B53F;
}

.lang-nav__icon {
  width: 18px;
  height: 18px;
  margin-right: 5px;
}

.lang-nav__dropdown {
  margin-left: 2px;
  width: 16px;
  height: 16px;
  fill: none;
  stroke: #47484D;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.lang-nav__toggle--mobile .lang-nav__dropdown {
  stroke: #edeef3;
}

.lang-nav__checkbox:checked~.lang-nav__toggle .lang-nav__dropdown {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}




.cabinet-nav__list {
  padding: 0;
  margin: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.cabinet-nav__login {
  margin-right: 20px;
}

.cabinet-nav__login a {
  color: #47484d;
  font-family: "Open Sans";
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}


.cabinet-nav__login a:hover {
  text-decoration: underline;
}

.cabinet-nav__register a {
  padding: 10px 20px;
  color: #fdfdfd;
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  display: inline-block;
  border-radius: 200px;
  background-color: #86b53f;
  transition-duration: .5s;
  border: 2px solid #86b53f;
}

.cabinet-nav__register a:hover {
  color: #86b53f;
  background-color: #fdfdfd;
}

.cabinet-nav__account {
  margin-right: 22px;
}

.cabinet-nav__enter {
  display: none;
}


.cabinet-nav__account a {
  color: #86b53f;
  font-family: "Open Sans";
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

.cabinet-nav__logout svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: #47484d;
}


.hosting-nav {
  background-color: #373a48;
  width: 100%;
  overflow-x: hidden;
  z-index: 1;
}

.hosting-nav__btn {
  display: none;
}

.hosting-nav--bordered {
  border-top: 1px solid rgba(237, 238, 243, 0.32);
}

.hosting-nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.hosting-nav__item {
  width: 25%;
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}



.hosting-nav__item::before {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
  width: 1px;
  height: 43px;
  background-color: rgba(237, 238, 243, 0.32);
}

.hosting-nav__item:last-child::after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 0;
  width: 1px;
  height: 43px;
  background-color: rgba(237, 238, 243, 0.32);
}

.hosting-nav__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #fdfdfd;
  font-family: "Open Sans";
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  padding: 19px 0 16px;
  text-align: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  height: 100%;
}

.hosting-nav__link--active,
.hosting-nav__link:hover {
  background-color: #86b53f;
}

.js-message {
  font-family: 'Open Sans', sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  line-height: 28px;
  margin-bottom: 10px;
  text-align: center;
}

.js-message--error {
  color: #EE9A5A;
}

.js-message--success {
  color: #86b53f;
}

@media (max-width:1199px) {

  .header__logo {
    margin-right: 32px;
  }

  .header__logo svg {
    width: 145px;
    height: 36px;
  }

  .header-nav__link {
    font-size: 14px;
    line-height: 18px;
  }


  .lang-nav__toggle,
  .lang-nav__item a {
    font-size: 14px;
    line-height: 18px;
  }

  .header__lang-nav {
    margin-right: 24px;
  }

}

@media (max-width:991px) {

  .header__logo svg {
    width: 100px;
    height: 30px;
  }

  .cabinet-nav__login {
    margin-right: 0;
  }

  .cabinet-nav__login a {
    padding: 8px 20px;
    color: #fdfdfd;
    font-family: "Open Sans";
    font-size: 14px;
    font-weight: 400;
    line-height: 14px;
    display: inline-block;
    border-radius: 200px;
    background-color: #86b53f;
  }

  .cabinet-nav__register a {
    display: none;
  }

  .cabinet-nav__account {
    display: none;
  }

  .cabinet-nav__logout a {
    padding: 8px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-color: #edeef3;
    border-radius: 50%;
  }

  .hosting-nav__link {
    padding: 16px;
    font-size: 14px;
    line-height: 18px;
  }


}

@media (max-width:767px) {

  .header__logo {
    margin-right: auto;
  }

  .header__logo svg {
    word-wrap: 14px;
    height: 26px;
  }

  .header__nav {
    display: none;
  }

  .header__lang-nav {
    display: none;
  }

  .cabinet-nav__account {
    display: block;
    font-size: 14px;
  }

  .cabinet-nav__name {
    display: none;
  }

  .cabinet-nav__enter {
    display: block;
  }


  .hosting-nav {
    white-space: nowrap;
    position: relative;
  }

  .hosting-nav__btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    width: 18px;
    height: 18px;
    background-color: transparent;
    margin-right: 16px;
    vertical-align: middle;
  }

  .hosting-nav__btn span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #fff
  }

  .hosting-nav__btn span::before,
  .hosting-nav__btn span::after {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #fff
  }

  .hosting-nav__btn span::before,
  .hosting-nav__btn span::after {
    content: "";
    display: block;
    -webkit-transition: .2s;
    transition: .2s
  }

  .hosting-nav__btn span::before {
    -webkit-transform: translateY(-7px);
    transform: translateY(-7px)
  }

  .hosting-nav__btn span::after {
    -webkit-transform: translateY(5px);
    transform: translateY(5px)
  }

  .hosting-nav__btn--active span {
    height: 0
  }

  .hosting-nav__btn--active span::before {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-transform-origin: center;
    transform-origin: center
  }

  .hosting-nav__btn--active span::after {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transform-origin: center;
    transform-origin: center
  }




  .hosting-nav__list {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    overflow-x: auto;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: 100%;
    white-space: nowrap;
  }

  .hosting-nav__item {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
  }

  .hosting-nav__item:last-child {
    padding-right: 20px;
  }


}

/* Общая шапка конец*/




/* Страница index */

.index-heading {
  padding: 64px 0 116px;
}

.index-heading__ddos {
  margin-bottom: 110px;
}

.ddos {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.ddos__info {
  width: 54%;
}

.ddos__title {
  color: #221f26;
  font-family: 'Montserrat';
  font-size: 48px;
  font-weight: 700;
  line-height: 60px;
  margin: 0;
  margin-bottom: 24px;
}

.ddos__text {
  margin: 0;
  margin-bottom: 48px;
  color: #47484d;
  font-family: "Open Sans";
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
}

.ddos__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.ddos__btn {
  margin-right: 12px;
}

.ddos__note {
  color: #9b9b9e;
  font-family: "Open Sans";
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}


.ddos__img {
  width: 45%;
  position: relative;
  right: -30px;
}

.index-heading__defend {
  margin-bottom: 106px;
}

.defend {
  border-radius: 8px;
  background-color: #f6f6f6;
  padding: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.defend__img {
  width: 293px;
  margin-right: 98px;
}

.defend__info {
  max-width: 555px;
}

.defend__title {
  color: #221f26;
  font-family: 'Montserrat';
  font-size: 38px;
  font-weight: 700;
  line-height: 46px;
  margin: 0;
  margin-bottom: 16px;
}

.defend__text {
  margin: 0;
  margin-bottom: 32px;
  color: #47484d;
  font-family: "Open Sans";
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
}

.defend__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.defend__btn {
  margin-right: 12px;
}

.defend__note {
  color: #9b9b9e;
  font-family: "Open Sans";
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}


.vps {
  min-height: 354px;
  border-radius: 8px;
  background-color: #f6f6f6;
  padding: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
}

.vps__info {
  max-width: 562px;
}

.vps__title {
  color: #221f26;
  font-family: 'Montserrat';
  font-size: 38px;
  font-weight: 700;
  line-height: 46px;
  margin: 0;
  margin-bottom: 16px;
}

.vps__text {
  color: #47484d;
  font-family: "Open Sans";
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  margin: 0;
  margin-bottom: 24px;
}

.vps__img {
  position: absolute;
  width: 462px;
  right: 0;
  top: -42px;
}

.vps__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.vps__btn {
  margin-right: 12px;
}

.vps__note {
  color: #9b9b9e;
  font-family: "Open Sans";
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}

.features {
  background-color: #373a48;
  padding: 64px 0 50px;
}

.features__title {
  color: #fdfdfd;
  font-family: 'Montserrat';
  font-size: 38px;
  font-weight: 700;
  line-height: 46px;
  margin: 0;
  margin-bottom: 48px;
  text-align: center;
}

.features__list {
  padding: 0;
  margin: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.features__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-preferred-size: 31%;
  flex-basis: 31%;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  margin-bottom: 48px;
}


.features__icon {
  width: 40px;
  min-width: 40px;
  height: 40px;
  fill: none;
  stroke: #86B53F;
  stroke-width: 3;
  margin-right: 16px;
  margin-top: 4px;
}

.features__text {
  color: #edeef3;
  font-family: "Open Sans";
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  margin: 0;
}

.index-reviews {
  padding: 100px 0;
}

.index-reviews__title {
  color: #221f26;
  font-family: 'Montserrat';
  font-size: 38px;
  font-weight: 700;
  line-height: 46px;
  margin: 0;
  margin-bottom: 48px;
}


.index-reviews__list {
  margin: 0;
  padding: 0;
  list-style: none;
  -webkit-column-count: 2;
  column-count: 2;
  margin-bottom: 16px;
}

.index-reviews__item {
  display: inline-block;
  width: 99%;
  margin-bottom: 32px;
}

.review-item {
  border-radius: 4px;
  background-color: #f6f6f6;
  padding: 16px 32px;
}


.review-item__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.review-item__heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-right: auto;
}

.review-item__avatar {
  border: 4px solid #90c142;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  margin-right: 10px;
}

.review-item__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.review-item__name {
  color: #221f26;
  font-family: "Open Sans";
  font-size: 18px;
  font-weight: 700;
  line-height: 28px;
}

.review-item__note {
  color: #9b9b9e;
  font-family: "Open Sans";
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}

.rating {
  border-radius: 4px;
  border: 2px solid #edeef3;
  padding: 11px 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
}

.rating.rating--transparent {
  border-color: transparent;
}

.rating__text {
  color: #221f26;
  font-family: "Open Sans";
  font-size: 20px;
  font-weight: 700;
  line-height: 30px;
  margin-right: 32px;
}

.rating__count {
  margin: 0;
  color: #47484d;
  font-family: "Open Sans";
  font-size: 18px;
  font-weight: 400;
  line-height: 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-right: 22px;
  cursor: pointer;
}

.rating__count:last-child {
  margin-right: 0;
}



.rating__icon {
  width: 20px;
  height: 20px;
  margin-left: 6px;
  fill: none;
  stroke: #90c142;
  stroke-width: 2px;
}

.rating__icon.rating__icon--dislike {
  stroke: #ee9a5a;
}

.review-item__text {
  margin: 16px 0 0;
  color: #47484d;
  font-family: 'Open Sans', sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  width: 100%;
}

.index-reviews__btn {
  margin: 0 auto;
}

.services__sections {
  overflow: hidden;
}

.services__sections__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.services__sections__block {
  width: 50%;
  background-color: #f6f6f6;
  padding: 64px 80px;
  position: relative;
}

.services__sections__block,
.services__sections__block * {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.services__sections__block:hover {
  background-color: #373a48;
}

.services__sections__block:nth-child(1) {
  padding-left: 0;
}

.services__sections__block:nth-child(1)::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  left: -100%;
  top: 0;
  background-color: #f6f6f6;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}


.services__sections__block:nth-child(2) {
  padding-right: 0;
}

.services__sections__block:nth-child(2)::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  right: -100%;
  top: 0;
  background-color: #f6f6f6;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.services__sections__block:nth-child(1):hover::before,
.services__sections__block:nth-child(2):hover::after {
  background-color: #373a48;
}

.services__sections__title {
  color: #221f26;
  font-family: 'Montserrat';
  font-size: 38px;
  font-weight: 700;
  line-height: 46px;
  margin: 0;
  margin-bottom: 24px;
}

.services__sections__block:hover .services__sections__title {
  color: #fdfdfd;
}

.services__sections__text {
  color: #47484d;
  font-family: "Open Sans";
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  margin: 0;
  margin-bottom: 48px;
}

.services__sections__block:hover .services__sections__text {
  color: #edeef3;
}

.services__sections__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #47484d;
  font-family: "Open Sans";
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  margin-bottom: 4px;
}

.services__sections__block:hover .services__sections__link {
  color: #90c142;
}

.services__sections__icon {
  margin-left: 8px;
  fill: none;
  stroke: #47484d;
  stroke-width: 2;
  -webkit-transition: 0.1s;
  transition: 0.1s;
}

.services__sections__block:hover .services__sections__icon {
  stroke: #90c142;
}

.services__sections__note {
  color: #9b9b9e;
  font-family: "Open Sans";
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}

.services__sections__block:hover .services__sections__note {
  color: #999ba4;
}

.cta {
  padding: 86px 0;
  overflow-x: hidden;
}

.cta__wrapper {
  max-width: 100%;
  width: 945px;
  margin: 0 auto;
  border: 14px solid #86b53f;
  padding: 64px 50px;
  display: block;
  text-align: center;
  position: relative;
}

.cta__wrapper.cta__wrapper--decorated {
  padding-right: 410px;
  text-align: left;
}

.cta__title {
  margin: 0;
  margin-bottom: 24px;
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: bold;
  font-size: 38px;
  line-height: 46px;
}

.cta__text {
  margin: 0;
  margin-bottom: 32px;
  font-family: "Open Sans";
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  line-height: 28px;
  color: #47484D;
}

.cta__text a {
  color: #86B53F;
  display: inline-block;
  border-bottom: 1px dashed #86B53F;
  position: relative;
}

.cta__tooltip {
  width: 294px;
  top: -176px;
  left: 30%;
}

.cta__tooltip::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 8px;
  left: 28px;
  border: 6px solid transparent;
  border-top: 8px solid #86B53F;
  bottom: -12px;
}


.cta__text a:hover .cta__tooltip {
  opacity: 1;
  visibility: visible;
}

.cta__noscript {
  margin: 0;
  margin-bottom: 48px;
  font-family: "Open Sans";
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  line-height: 28px;
  color: #EE9A5A;
}

.cta__form {
  max-width: 555px;
  margin: 0 auto;
}

.cta__form .form__submit {
  margin: 12px auto 0;
}

.form__submit[disabled='disabled'] {
  cursor: wait;
}

.cta__wrapper.cta__wrapper--decorated .form__submit {
  margin-left: 0;
}

.service-auth {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.service-auth a {
  width: 40px;
  height: 40px;
  display: block;
  background: #fff;
  padding: 5px;
  border-radius: 4px;
}

.service-auth a img {
  max-width: 100%;
}

.form {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.form__label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  font-family: "Open Sans";
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  color: #9B9B9E;
  position: relative;
}


.form__input {
  width: 100%;
  margin-top: 2px;
  margin-bottom: 4px;
  background-color: transparent;
  border: 2px solid #C3C3C5;
  border-radius: 4px;
  padding: 10px 20px 10px;
  font-family: "Open Sans";
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  line-height: 28px;
  color: #47484D;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.form__input.form__input--light {
  border-color: #71747f;
  color: #EDEEF3;
}

.form__input.form__input--password {
  padding-right: 60px;
}

.form__input.form__input--currency {
  padding-right: 70px;

}

.form__input--prefix {
  padding-left: 40px;
}



.form__input::-webkit-input-placeholder {
  color: #C3C3C5;
}

.form__input:-ms-input-placeholder {
  color: #C3C3C5;
}

.form__input::-ms-input-placeholder {
  color: #C3C3C5;
}

.form__input::placeholder {
  color: #C3C3C5;
}


.form__input.filled {
  border-bottom: 2px solid #86B53F;
}

.form__input.form__input--error {
  border-bottom: 2px solid #EE9A5A;
  color: #ee9a5a;
}

.form__input:focus {
  outline: none;
  border-color: #86B53F;
  color: #47484D;
}

.form__input--light.form__input:focus {
  color: #EDEEF3;
}

.autorisation-page__form .form__label {
  margin-bottom: 20px;
}


.form__textarea {
  width: 100%;
  height: 187px;
  margin-top: 2px;
  margin-bottom: 40px;
  border: 2px solid #C3C3C5;
  border-radius: 4px;
  padding: 10px 20px 10px;
  font-family: "Open Sans";
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  line-height: 28px;
  color: #47484D;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  resize: none;
}

.form__textarea::-webkit-input-placeholder {
  color: #C3C3C5;
}

.form__textarea:-ms-input-placeholder {
  color: #C3C3C5;
}

.form__textarea::-ms-input-placeholder {
  color: #C3C3C5;
}

.form__textarea::placeholder {
  color: #C3C3C5;
}

.form__textarea:focus {
  outline: none;
  border: 2px solid #86B53F;
}

.form__textarea.filled {
  border-bottom: 2px solid #86B53F;
}

.form__note {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 24px;
  color: #EE9A5A;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  opacity: 0;
  visibility: hidden;
}

.form__input--error~.form__note {
  opacity: 1;
  visibility: visible;
  margin-bottom: 16px;
}

.form__eye {
  fill: none;
  stroke: #71747F;
  stroke-width: 1.5;
  position: absolute;
  right: 20px;
  top: 34px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  visibility: hidden;
  opacity: 0;
}

.form__input--password[type="password"]~.form__eye--open {
  visibility: visible;
  opacity: 1;
}

.form__input--password[type="text"]~.form__eye--close {
  visibility: visible;
  opacity: 1;
}

.form__agreement {
  margin-bottom: 20px;
}

.agreement {
  position: relative;
}

.agreement__checkbox {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  position: absolute;
  display: block;
  width: 20px;
  height: 20px;
}

.agreement__label {
  padding-left: 26px;
  font-family: "Open Sans";
  font-style: normal;
  font-weight: normal;
  text-align: left;
  font-size: 14px;
  line-height: 20px;
  color: #71747F;
  display: block;
}

.agreement__label--light {
  color: #999ba4;
}

.agreement__icon {
  position: absolute;
  pointer-events: none;
  left: 0;
  top: 0;
}

.checkbox-icon {
  stroke: #C3C3C5;
  stroke-width: 3;
  fill: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}


.checkbox-icon--checked {
  stroke: #86B53F;
  visibility: hidden;
  opacity: 0;
}

.agreement__checkbox:hover~.checkbox-icon {
  stroke: #86B53F;
}

.agreement__checkbox:checked~.checkbox-icon {
  visibility: hidden;
  opacity: 0;
}

.agreement__checkbox:checked~.checkbox-icon.checkbox-icon--checked {
  visibility: visible;
  opacity: 1;
}



.cta__email-decoration {
  position: absolute;
  width: 369px;
  height: 372px;
  top: 49px;
  right: -82px;
}


.page-navigation {
  background-color: #f6f6f6;
  padding: 64px 0;
}

.page-navigation__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #47484d;
  font-family: 'Montserrat';
  font-size: 38px;
  font-weight: 700;
  line-height: 46px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.page-navigation__link:hover {
  color: #86b53f;
}

.page-navigation__icon {
  margin-left: 24px;
  fill: none;
  width: 64px;
  height: 64px;
  stroke: #47484d;
  stroke-width: 2;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.page-navigation__link:hover .page-navigation__icon {
  stroke: #86b53f;
}


@media (max-width:1199px) {



  .ddos__info {
    width: 60%;
  }

  .ddos__img {
    width: 38%;
  }


  .vps__img {
    width: 324px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }


}



@media (max-width:991px) {

  .ddos__title {
    max-width: 500px;
    margin: 0 auto 24px;
  }

  .ddos__info {
    width: 100%;
    text-align: center;
  }

  .ddos__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .ddos__btn {
    margin-right: 0;
    margin-bottom: 4px;
  }


  .ddos__img {
    display: none;
  }


  .defend {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }


  .defend__img {
    width: 220px;
    margin-right: 0;
    margin-bottom: 32px;
  }

  .defend__wrapper {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .vps {
    background-color: transparent;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .vps__info {
    max-width: 100%;
    text-align: center;
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }


  .vps__wrapper {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .vps__img {
    width: 250px;
    position: static;
    -webkit-transform: none;
    transform: none;
    margin-bottom: 32px;
  }


  .features__item {
    -ms-flex-preferred-size: 47%;
    flex-basis: 47%;
  }

  .review-item__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;

  }

  .review-item__text {
    margin-bottom: 16px;
  }

  .review-item__heading {
    margin-right: 0;
  }

  .review-item__rating {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }


  .services__sections__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .services__sections__block {
    width: 100%;
    text-align: center;
  }

  .services__sections__block:nth-child(1) {
    padding-left: 80px;
    margin-bottom: 32px;
  }

  .services__sections__block:nth-child(2) {
    padding-right: 80px;
  }

  .services__sections__block:nth-child(1)::before,
  .services__sections__block:nth-child(2)::after {
    display: none;
  }

  .services__sections__link {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }


}


@media (max-width:767px) {
  .index-heading {
    padding: 24px 0 32px;
  }

  .ddos {
    margin-bottom: 32px;
  }

  .ddos__title {
    font-size: 32px;
    line-height: 48px;
    margin-bottom: 8px;
    max-width: 400px;
  }

  .ddos__text {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 24px;
  }


  .ddos__note {
    font-size: 12px;
    line-height: 16px;
  }

  .ddos__note br {
    display: none;
  }

  .index-heading__defend {
    margin-bottom: 32px;
  }

  .defend {
    padding: 32px 15px;
    width: calc(100% + 30px);
    margin-left: -15px;
  }

  .defend__img {
    margin-bottom: 24px;
  }

  .defend__title {
    font-size: 26px;
    line-height: 32px;
    margin-bottom: 8px;
  }

  .defend__text {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 24px;
  }


  .defend__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .defend__btn {
    margin-right: 0;
    margin-bottom: 4px;
  }


  .defend__note {
    font-size: 12px;
    line-height: 16px;
  }

  .defend__note br {
    display: none;
  }


  .vps {
    padding: 0;
  }

  .vps__img {
    margin-bottom: 24px;
  }

  .vps__title {
    font-size: 26px;
    line-height: 32px;
    margin-bottom: 8px;
  }

  .vps__text {
    font-size: 16px;
    line-height: 24px;
  }

  .vps__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .vps__btn {
    margin-right: 0;
    margin-bottom: 4px;
  }

  .vps__note {
    font-size: 12px;
    font-weight: 400;
    line-height: 16px;
  }


  .vps__note br {
    display: none;
  }

  .features {
    padding: 32px 0px 40px;
  }

  .features__title {
    text-align: center;
    font-size: 26px;
    line-height: 32px;
    margin-bottom: 24px;
  }


  .features__item {
    margin-bottom: 24px;
  }

  .features__item:last-child {
    margin-bottom: 0;
  }

  .features__icon {
    margin-right: 12px;
  }

  .features__text {
    font-size: 16px;
    line-height: 24px;
  }

  .index-reviews {
    padding: 32px 0 0;
    margin-bottom: 48px;
  }

  .index-reviews__title {
    font-size: 26px;
    line-height: 32px;
    margin-bottom: 16px;
  }

  .page-reviews__item.page-reviews__item {
    margin-bottom: 16px;
  }

  .review-item {
    padding: 16px;
  }


  .review-item__avatar {
    width: 48px;
    height: 48px;
    border: 2px solid #90c142;
    margin-right: 8px;
  }

  .review-item__name {
    font-size: 16px;
    line-height: 24px;
  }

  .review-item__note {
    font-size: 12px;
    line-height: 16px;
  }

  .review-item__text {
    margin-bottom: 8px;
    font-size: 14px;
    line-height: 20px;
  }

  .rating {
    padding: 8px 16px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .rating__text {
    font-size: 16px;
    line-height: 24px;
    margin-right: 12px;
  }

  .rating__count {
    font-size: 16px;
    line-height: 16px;
    margin-right: 18px;
  }

  .services__sections {
    display: none;
  }

  .cta {
    padding: 24px 0 24px;
  }

  .cta__wrapper {
    max-width: unset;
    width: calc(100% + 30px);
    margin-left: -15px;
    border-width: 8px;
    padding: 24px;
  }

  .cta__title {
    font-size: 26px;
    line-height: 32px;
    margin-bottom: 24px;
  }

  .cta__text {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 24px;
  }


  .form__label {
    font-size: 12px;
    line-height: 16px;
  }

  .form__input {
    padding: 10px 12px;
    font-size: 14px;
    line-height: 16px;
    border-width: 1px;
  }

  .form__input:focus {
    border-width: 1px;
  }

  .form__input.form__input--error {
    border-width: 1px;
  }

  .form__input.filled {
    border-width: 1px;
  }

  .form__input.form__input--password {
    padding-right: 30px;
  }

  .form__eye {
    width: 14px;
    height: 14px;
    stroke-width: 1;
    top: 30px;
    right: 12px;
  }



  .form__note {
    font-size: 14px;
    line-height: 16px;
  }

  .form__input--error~.form__note {
    margin-bottom: 4px;
  }

  .form__agreement {
    margin-bottom: 32px;
  }

  .checkbox-icon {
    width: 24px;
    height: 24px;
  }

  .agreement__label {
    font-size: 12px;
    line-height: 16px;
    padding-left: 30px;
  }

  .cta__form .form__submit {
    margin: 0 auto 0;
  }

  .page-navigation__link {
    font-size: 16px;
    line-height: 24px;
  }

  .page-navigation {
    padding: 24px 16px;
  }

  .page-navigation__icon {
    width: 24px;
    height: 24px;
  }

  .form__textarea {
    padding: 10px 12px;
    font-size: 14px;
    line-height: 16px;
    border-width: 1px;
  }

  .form__textarea:focus {
    border-width: 1px;
  }

  .form__textarea.filled {
    border-bottom: 1px solid #86B53F;
  }


}


@media (max-width:540px) {
  .features__item {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
  }

  .index-reviews__list {
    -webkit-column-count: 1;
    column-count: 1;
    margin-bottom: 24px;
  }

  .index-reviews__item {
    width: 100%;
  }

  .index-reviews__item:last-child {
    margin-bottom: 0;
  }

  .rating__text {
    width: 100%;
    margin-bottom: 8px;
  }

}





/* Страница index конец*/



/* Страница hosting */


.hosting-heading {
  padding: 64px 0 0px;
  overflow-x: hidden;
}

.hosting-heading__title {
  margin: 0;
  margin-bottom: 20px;
  color: #221f26;
  font-family: 'Montserrat';
  font-size: 48px;
  font-weight: 700;
  line-height: 60px;
  text-align: center;
}

.hosting-heading__text {
  color: #47484d;
  font-family: "Open Sans";
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  text-align: center;
  margin: 0;
  margin-bottom: 49px;
}


.hosting-heading__nav {
  margin-bottom: 24px;
}

.presentation-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.presentation-nav__link {
  color: #86b53f;
  font-family: "Open Sans";
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  padding: 8px 20px;
  border-radius: 200px;
  border: 1px solid #c3c3c5;
  color: #C3C3C5;
  font-family: "Open Sans";
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  background-color: transparent;
  cursor: pointer;
  margin-right: 16px;
}

.presentation-nav__link.presentation-nav__link--rectangle {
  border-radius: 4px;
  padding: 8px 20px;
}

.presentation-nav__link:last-child {
  margin-left: auto;
  margin-right: 0;
}


.presentation-nav__link:hover,
.presentation-nav__link--active {
  border: 1px solid #86b53f;
  color: #86b53f;
}


.presentation-nav__icon {
  width: 19px;
  height: 20px;
  fill: none;
  stroke: #C3C3C5;
  stroke-width: 2;
  margin-right: 4px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}



.presentation-nav__icon.presentation-nav__big {
  width: 26px;
  height: 27px;
}

.presentation-nav__link:hover .presentation-nav__icon,
.presentation-nav__link--active .presentation-nav__icon {
  stroke: #86b53f;
}

.hosting-heading__tarifs {
  margin-bottom: 64px;
}

.hosting-tarifs__list {
  padding: 0;
  margin: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}


.hosting-tarifs__item {
  -ms-flex-preferred-size: 33%;
  flex-basis: 33%;
}

.tarif-presentation {
  border-radius: 8px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  cursor: pointer;
  background-color: #f6f6f6;
}



.tarif-presentation__heading {
  padding: 12px 8px 16px;
  text-align: center;
  background-color: #edeef3;
  border: 4px solid transparent;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  color: #221f26;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.tarif-presentation--active .tarif-presentation__heading {
  background-color: #86b53f;
  color: #fdfdfd;
}


.tarif-presentation__title {
  margin: 0;
  margin-bottom: 4px;
  font-family: "Open Sans";
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
}

.tarif-presentation__price {
  font-family: "Open Sans";
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
}

.tarif-presentation__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 16px 8px 32px;
  background-color: #f6f6f6;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  border: 4px solid transparent;
}

.tarif-presentation--active .tarif-presentation__body {
  border: 4px solid #86b53f;
}

.tarif-presentation__list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.tarif-presentation__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: baseline;
  margin-bottom: 12px;
  color: #47484d;
  font-family: "Open Sans";
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

.tarif-presentation__item sup {
  color: red;
}

.hosting-tarifs__item .tarif-presentation__item:nth-child(6) {
  margin-bottom: 40px;
}

.tarif-presentation__item:last-child {
  margin-bottom: 32px;
}

.tarif-presentation__item.tarif-presentation__item--inactive {
  opacity: 0.4;
}

.tarif-presentation__icon {
  margin-top: 6px;
  min-width: 12px;
  height: 12px;
  margin-right: 8px;
  fill: none;
  stroke: #86b53f;
}

.tarif-presentation__btn {
  margin: auto auto 0;
  border-color: #c3c3c5;
  color: #c3c3c5;
}

.tarif-presentation--active .tarif-presentation__btn {
  border-color: #86b53f;
  color: #86b53f;
}

.tarif-presentation--active .tarif-presentation__btn:hover {
  color: #fdfdfd;
}


.tarifs-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: 8px;
}

.tarifs-table th {
  padding: 16px;
  text-align: center;
  color: #221f26;
  font-family: "Open Sans";
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
  border: 2px solid #edeef3;
  background-color: #F6F6F6;
}

.tarifs-table th:first-child {
  text-align: left;
  padding: 16px 24px;
  border: none;
  background-color: transparent;
}


.hosting-tarifs__table th:nth-child(3) {
  border-right-color: #86b53f;
}

.hosting-tarifs__table th:nth-child(4) {
  color: #fdfdfd;
  background-color: #86b53f;
  border-color: #86b53f;
}

.tarifs-table__price {
  display: block;
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  color: #47484D;
}

.hosting-tarifs__table th:nth-child(4) .tarifs-table__price {
  color: #fdfdfd;
}


.tarifs-table td {
  padding: 16px;
  color: #47484d;
  font-family: "Open Sans";
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-align: center;
  border: 2px solid #edeef3;
}


.tarifs-table td:first-child {
  text-align: left;
  padding: 16px 24px;
}

.hosting-tarifs__table td:nth-child(3) {
  border-right-color: #86b53f;
}

.hosting-tarifs__table td:nth-child(4) {
  border-right-color: #86b53f;
}

.hosting-tarifs__table tr:nth-child(9) td:nth-child(4) {
  border-bottom-color: #86b53f;
}

.tarifs-table tr:last-child td {
  border: none;
}

.tarifs-table__icon {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: #86b53f;
}

.tarifs-table__icon.tarifs-table__icon--unavailable {
  stroke: #ee9a5a;
}

.tarifs-table__btn {
  margin: 0 auto;
}

.hosting-settings {
  padding-bottom: 100px;
}

.hosting-settings__title {
  color: #221f26;
  font-family: 'Montserrat';
  font-size: 38px;
  font-weight: 700;
  line-height: 46px;
  margin: 0;
  margin-bottom: 16px;
}

.hosting-settings__text {
  margin: 0;
  margin-bottom: 32px;
  color: #47484d;
  font-family: "Open Sans";
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
}

.hosting-settings__link {
  text-decoration: underline;
  color: #86b53f;
}

.hosting-settings__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.hosting-settings__calculator {
  margin-bottom: 48px;
  margin-right: 48px;
}

.calculator {
  width: 522px;
  border-radius: 8px;
  border: 4px solid #edeef3;
}

.calculator__heading {
  padding: 32px;
  background-color: #edeef3;
}

.calculator__title {
  color: #221f26;
  font-family: "Open Sans";
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
  margin: 0;
  text-align: center;
}

.calculator__form {
  padding: 24px 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.calculator__label {
  color: #47484d;
  font-family: "Open Sans";
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  margin-bottom: 4px;
  position: relative;
}

.main-heading__tarif-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.calculator__radio {
  cursor: pointer;
  margin-right: 12px;
  margin-bottom: 8px;
}

.calculator__radio:last-child {
  margin-right: 0;
}

.calculator__radio input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 0;
  height: 0;
  position: absolute;
}

.calculator__radio-text {
  padding: 6px 16px;
  border-radius: 4px;
  border: 2px solid #c3c3c5;
  background-color: transparent;
  color: #47484d;
  font-family: "Open Sans";
  font-size: 18px;
  font-weight: 400;
  line-height: 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.calculator__radio input:hover+.calculator__radio-text,
.calculator__radio input:checked+.calculator__radio-text {
  border: 2px solid #86b53f;
}

.calculator__data-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.calculator__input {
  width: 65px;
  height: 20px;
  border-radius: 2px;
  border: 1px solid #c3c3c5;
  padding-left: 8px;
}

.calculator__unit {
  font-family: "Open Sans";
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: #c3c3c5;
  position: absolute;
  right: 8px;
  top: 0.5px;
}

.calculator__price {
  margin-left: auto;
  font-family: "Open Sans";
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: #9b9b9e;
}

.calculator__price b {
  color: #86b53f;
}

.calculator__rage-wrapper {
  margin-bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
}

.calculator__range-text {
  color: #47484d;
  font-family: "Open Sans";
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  margin-right: 4px;
}

.calculator__range-text:last-child {
  margin-right: 0;
  margin-left: 4px;
}

input[type=range].calculator__range {
  -webkit-appearance: none;
  width: 100%;
  margin: 7px 0;
}

input[type=range].calculator__range:focus {
  outline: none;
}

input[type=range].calculator__range::-webkit-slider-runnable-track {
  width: 100%;
  height: 10px;
  cursor: pointer;
  -webkit-box-shadow: 0px 0px 0px rgba(0, 0, 0, 0), 0px 0px 0px rgba(13, 13, 13, 0);
  box-shadow: 0px 0px 0px rgba(0, 0, 0, 0), 0px 0px 0px rgba(13, 13, 13, 0);
  background: #edeef3;
  border-radius: 4px;
  border: 2px solid #edeef3;
}

input[type=range].calculator__range::-webkit-slider-thumb {
  -webkit-box-shadow: 0px 0px 0px #000031, 0px 0px 0px #00004b;
  box-shadow: 0px 0px 0px #000031, 0px 0px 0px #00004b;
  border: 2px solid #86b53f;
  height: 24px;
  width: 24px;
  border-radius: 15px;
  background: #edeef3;
  cursor: pointer;
  -webkit-appearance: none;
  margin-top: -9px;
}

input[type=range].calculator__range:focus::-webkit-slider-runnable-track {
  background: #fcfcfd;
}

input[type=range].calculator__range::-moz-range-track {
  width: 100%;
  height: 10px;
  cursor: pointer;
  box-shadow: 0px 0px 0px rgba(0, 0, 0, 0), 0px 0px 0px rgba(13, 13, 13, 0);
  background: #edeef3;
  border-radius: 4px;
  border: 2px solid #edeef3;
}

input[type=range].calculator__range::-moz-range-thumb {
  box-shadow: 0px 0px 0px #000031, 0px 0px 0px #00004b;
  border: 2px solid #86b53f;
  height: 24px;
  width: 24px;
  border-radius: 15px;
  background: #edeef3;
  cursor: pointer;
}

input[type=range].calculator__range::-ms-track {
  width: 100%;
  height: 10px;
  cursor: pointer;
  background: transparent;
  border-color: transparent;
  color: transparent;
}

input[type=range].calculator__range::-ms-fill-lower {
  background: #dee0e9;
  border: 2px solid #edeef3;
  border-radius: 8px;
  box-shadow: 0px 0px 0px rgba(0, 0, 0, 0), 0px 0px 0px rgba(13, 13, 13, 0);
}

input[type=range].calculator__range::-ms-fill-upper {
  background: #edeef3;
  border: 2px solid #edeef3;
  border-radius: 8px;
  box-shadow: 0px 0px 0px rgba(0, 0, 0, 0), 0px 0px 0px rgba(13, 13, 13, 0);
}

input[type=range].calculator__range::-ms-thumb {
  box-shadow: 0px 0px 0px #000031, 0px 0px 0px #00004b;
  border: 2px solid #86b53f;
  height: 24px;
  width: 24px;
  border-radius: 15px;
  background: #edeef3;
  cursor: pointer;
  height: 10px;
}

input[type=range].calculator__range:focus::-ms-fill-lower {
  background: #edeef3;
}

input[type=range].calculator__range:focus::-ms-fill-upper {
  background: #fcfcfd;
}

.calculator__list {
  padding: 0;
  margin: 0;
  margin-bottom: 32px;
  list-style: none;
}

.calculator__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #47484d;
  font-family: "Open Sans";
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  margin-bottom: 12px;
}

.calculator__item:last-child {
  margin-bottom: 0;
}

.calculator__icon {
  min-width: 20px;
  height: 20px;
  fill: none;
  stroke: #86b53f;
  margin-right: 8px;
  stroke-width: 1;
}

.calculator__icon--big {
  min-width: 24px;
  height: 24px;
  stroke-width: 2;
}

.calculator__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.calculator__total {
  color: #47484d;
  font-family: "Open Sans";
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}

.calculator__total b {
  display: block;
  color: #47484d;
  font-family: "Open Sans";
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
}

.hosting-settings__instruction {
  max-width: 480px;
  padding-top: 32px;
}

.hosting-settings__subtitle {
  margin: 0;
  margin-bottom: 16px;
  font-family: "Open Sans";
  font-style: normal;
  font-weight: bold;
  font-size: 24px;
  line-height: 32px;

  color: #221F26;
}

.hosting-settings__list {
  padding: 0;
  padding-left: 52px;
  margin: 0;
  margin-bottom: 16px;
  list-style: none;
}

.hosting-settings__item {
  position: relative;
  color: #47484d;
  font-family: "Open Sans";
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  margin-bottom: 24px;
}

.hosting-settings__item::before {
  content: attr(data-number);
  position: absolute;
  width: 32px;
  height: 32px;
  border: 2px solid #86b53f;
  background-color: #edeef3;
  border-radius: 50%;
  left: -52px;
  top: 4px;
  color: #47484d;
  font-family: "Open Sans";
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  z-index: 2;
}

.hosting-settings__item::after {
  content: '';
  position: absolute;
  top: 8px;
  left: -36px;
  width: 2px;
  height: calc(100% + 24px);
  background-color: #EDEEF3;
  z-index: 1;
}

.hosting-settings__item:last-child::after {
  content: none;
}


.hosting-settings__note {
  color: #47484d;
  font-family: "Open Sans";
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

@media (max-width:1199px) {
  .hosting-tarifs__item {
    -ms-flex-preferred-size: 24%;
    flex-basis: 24%;
  }

  .calculator {
    width: unset;
    -ms-flex-preferred-size: 48%;
    flex-basis: 48%;
  }

  .hosting-settings__instruction {
    -ms-flex-preferred-size: 48%;
    flex-basis: 48%;
  }

  .calculator__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .calculator__total {
    margin-bottom: 8px;
  }

  .calculator__total b {
    display: inline;
  }


}

@media (max-width:991px) {

  .hosting-heading__text br {
    display: none;
  }

  .hosting-heading__nav {
    display: none;
  }

  .hosting-tarifs__list {
    position: relative;
  }

  .hosting-tarifs__list:after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    height: 100%;
    width: 200px;
    background: -webkit-gradient(linear, left top, right top, from(rgba(256, 256, 256, 0)), to(rgba(256, 256, 256, 1)));
    background: linear-gradient(to right, rgba(256, 256, 256, 0), rgba(256, 256, 256, 1));
    pointer-events: none;
  }

  .hosting-tarifs__item {
    margin: 0 15px;
    height: 100%;
  }


  .tarif-presentation__body {
    padding: 16px 32px 32px;
  }


  .hosting-settings__title {
    text-align: center;
  }

  .hosting-settings__text {
    text-align: center;
  }

  .hosting-settings__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .calculator {
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
    width: 100%;
  }



  .calculator__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .calculator__item {
    -ms-flex-preferred-size: 48%;
    flex-basis: 48%;
    font-size: 16px;
    line-height: 24px;
  }

  .calculator__total {
    text-align: center;
    margin-bottom: 12px;
  }

  .calculator__total b {
    display: block;
  }


  .hosting-settings__instruction {
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
    -ms-flex-item-align: center;
    align-self: center;
    max-width: 560px;
  }




}


@media (max-width:767px) {
  .hosting-heading {
    padding: 24px 0 32px;
  }

  .hosting-heading__title {
    font-size: 32px;
    line-height: 48px;
    margin-bottom: 8px;
  }

  .hosting-heading__text {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 24px;
  }

  .hosting-heading__tarifs {
    margin-bottom: 0;
  }

  .hosting-tarifs__list {
    width: calc(100% + 30px);
    margin-left: -15px;
  }


  .hosting-tarifs__list:after {
    width: 30vw;
  }

  .hosting-tarifs__list .slick-list {
    padding-left: 15px;
  }

  .hosting-tarifs__item {
    width: 60vw;
  }


  .hosting-settings__title {
    font-size: 26px;
    line-height: 32px;
    margin-bottom: 16px;
    text-align: left;
  }

  .hosting-settings__text {
    font-size: 16px;
    line-height: 24px;
    text-align: left;
  }

  .hosting-settings__calculator {
    margin-bottom: 32px;
  }

  .calculator__heading {
    padding: 16px;
  }

  .calculator__form {
    padding: 24px 16px 32px;
  }

  .calculator__radio-text {
    padding: 2px 8px;
    font-size: 16px;
    line-height: 22px;
  }

  .calculator__list {
    margin-bottom: 24px;
  }

  .calculator__item {
    font-size: 16px;
    line-height: 22px;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
  }

  .calculator__input {
    display: block;
  }

  .calculator__unit {
    top: 21px;
    right: unset;
    left: 40px;
  }

  .calculator__total {
    text-align: center;
  }

  .calculator__total b {
    display: block;
  }

  .hosting-settings__instruction {
    padding: 0;
  }

  .hosting-settings__item {
    font-size: 16px;
    line-height: 24px;
  }




}

@media (max-width:540px) {

  .hosting-tarifs__list:after {
    width: 15vw;
  }

  .hosting-tarifs__item {
    margin: 0 8px;
    width: 80vw;
  }

  .tarif-presentation__body {
    padding: 16px;
  }

  .tarif-presentation__item {
    font-size: 14px;
    line-height: 18px;
  }

}

@media (max-width:359px) {
  .tarif-presentation__title {
    font-size: 20px;
    line-height: 24px;
  }
}

/* Страница hosting конец*/



/* Страница vps */

.vps-heading {
  padding: 64px 0;
}

.vps-heading__title {
  color: #221f26;
  font-family: 'Montserrat';
  font-size: 48px;
  font-weight: 700;
  line-height: 60px;
  margin: 0;
  margin-bottom: 20px;
  text-align: center;
}

.vps-heading__text {
  color: #47484d;
  font-family: "Open Sans";
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  margin: 0;
  margin-bottom: 49px;
  text-align: center;
}

.vps-heading__nav {
  margin-bottom: 24px;
}

.vps-tarifs__list {
  padding: 0;
  margin: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.vps-tarifs__item {
  -ms-flex-preferred-size: 360px;
  flex-basis: 360px;
}

.vps-tarifs__table th:nth-child(2) {
  border-right-color: #86b53f;
}

.vps-tarifs__table th:nth-child(3) {
  color: #fdfdfd;
  background-color: #86b53f;
  border-color: #86b53f;
}

.vps-tarifs__table th:nth-child(3) .tarifs-table__price {
  color: #fdfdfd;
}

.vps-tarifs__table td:nth-child(3) {
  border-right-color: #86b53f;
}

.vps-tarifs__table td:nth-child(2) {
  border-right-color: #86b53f;
}

.vps-tarifs__table tr:nth-child(5) td:nth-child(3) {
  border-bottom-color: #86b53f;
}

.vps-system {
  padding-bottom: 100px;
}

.vps-system__title {
  color: #221f26;
  font-family: "Open Sans";
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
  margin: 0;
  margin-bottom: 16px;
}

.vps-system__list {
  padding: 0;
  margin: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.vps-system__item {
  -ms-flex-preferred-size: 16%;
  flex-basis: 16%;
}


.vps-system__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-transition: 1.5s ease-in-out;
  transition: 1.5s ease-in-out;
  overflow: hidden;
  max-height: 0;
}

.vps-system__wrapper--active {
  max-height: 800px;
  padding-top: 64px;
  -webkit-transition: 2.2s ease-in-out;
  transition: 2.2s ease-in-out;
}

.vps-system__info {
  -ms-flex-preferred-size: 74%;
  flex-basis: 74%;
}

.system-info {
  border: 2px solid #edeef3;
  border-radius: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}


.system-info__heading {
  padding: 32px;
  background-color: #edeef3;
  width: 100%;
}

.system-info__title {
  color: #221f26;
  font-family: "Open Sans";
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
  margin: 0;
}

.system-info__column {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  /*-webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;*/
  flex-wrap: wrap;
}

.system-info__column {
  border-right: 2px solid #edeef3;
}

.system-info__column:last-child {
  border-right: none;
}

.system-info__item {
  padding: 24px 32px;
  border-bottom: 2px solid #edeef3;
  border-top: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 50%;
}

.system-info__item:nth-child(2n-1) {
  border-right: 2px solid #edeef3;
}

.system-info__item:last-child {
  border-bottom: none;
}


.system-info__icon {
  width: 64px;
  height: 64px;
  margin-right: 11px;
}

.system-info__text {
  color: #47484d;
  font-family: "Open Sans";
  font-size: 18px;
  font-weight: 700;
  line-height: 28px;
  margin: 0;
  margin-bottom: 12px;
}

.system-info__icon--top {
  -ms-flex-item-align: start;
  align-self: flex-start;
}

.system-info__text:last-child {
  margin-bottom: 0;
}

.system-info__note {
  color: #9b9b9e;
  font-family: "Open Sans";
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  display: block;
  margin-bottom: 12px;
  margin-top: -12px;
}

.vps-system__note {
  width: 262px;
  color: #9b9b9e;
  font-family: "Open Sans";
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  margin: 0;
  margin-top: 30px;
}

.vps-system__dropdown {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  color: #86b53f;
  font-family: "Open Sans";
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  border-bottom: 1px dashed #86b53f;
  margin: 20px auto 0;
}

.vps-system__dropdown svg {
  min-width: 20px;
  height: 20px;
  margin-left: 8px;
  fill: none;
  stroke: #86b53f;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.vps-system__dropdown.active svg {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.vsp-presentation {
  padding: 100px 0;
}

.vsp-presentation__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.vsp-presentation__info {
  -ms-flex-preferred-size: 40%;
  flex-basis: 40%;
}

.vsp-presentation__title {
  margin: 0;
  margin-bottom: 20px;
  color: #221f26;
  font-family: 'Montserrat';
  font-size: 38px;
  font-weight: 700;
  line-height: 46px;
}

.vsp-presentation__text {
  color: #221f26;
  font-family: "Open Sans";
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  margin: 0;
  margin-bottom: 32px;
}

.vsp-presentation__text b {
  font-weight: 700;
}

.vsp-presentation__note {
  margin: 0;
  color: #9b9b9e;
  font-family: "Open Sans";
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
}

.vsp-presentation__img {
  width: 60%;
  position: relative;
  right: -80px;
}


@media (max-width:1199px) {

  .vps-tarifs__item {
    -ms-flex-preferred-size: 32%;
    flex-basis: 32%;
  }

  .system-info__item {
    padding: 24px 16px;
  }

  .system-info__icon {
    width: 48px;
    height: 48px;
  }

  .system-info__text,
  .system-info__note {
    font-size: 16px;
    line-height: 24px;
  }

  .vps-system__note {
    width: unset;
    -ms-flex-preferred-size: 22%;
    flex-basis: 23%;
    font-size: 16px;
    line-height: 24px;
  }

  .vsp-presentation__info {
    -ms-flex-preferred-size: 65%;
    flex-basis: 50%;
  }

  .vsp-presentation__img {
    right: 0;
    width: 50%;
  }


}

@media (max-width:991px) {

  .vps-heading__text br {
    display: none;
  }

  .vps-heading__nav {
    display: none;
  }

  .vps-tarifs__list:after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    height: 100%;
    width: 200px;
    background: -webkit-gradient(linear, left top, right top, from(rgba(256, 256, 256, 0)), to(rgba(256, 256, 256, 1)));
    background: linear-gradient(to right, rgba(256, 256, 256, 0), rgba(256, 256, 256, 1));
    pointer-events: none;
  }

  .vps-tarifs__item {
    margin: 0 15px;
  }

  .vps-system__title {
    text-align: center;
  }

  .vps-system__list {
    margin-bottom: 16px;
  }

  .vps-system__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .system-info__heading {
    padding: 16px;
  }

  .vsp-presentation {
    padding: 48px 0 0;
  }

  .vsp-presentation__info {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
  }

  .vsp-presentation__img {
    display: none;
  }




}

@media (max-width:767px) {

  .vps-heading {
    padding: 24px 0 32px;
  }

  .vps-heading__title {
    font-size: 32px;
    line-height: 48px;
    margin-bottom: 8px;
  }

  .vps-heading__text {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 24px;
  }



  .vps-tarifs__list {
    width: calc(100% + 30px);
    margin-left: -15px;
  }


  .vps-tarifs__list:after {
    /* width: 30vw; */
    content: none;
  }

  .vps-tarifs__list .slick-list {
    padding-left: 15px;
  }

  .vps-tarifs__item {
    width: 60vw;
  }

  .vps-system {
    padding-bottom: 32px;
  }

  .vps-system__list {
    width: calc(100% + 30px);
    margin-left: -15px;
    margin-bottom: 24px;
  }

  .vps-system__item {
    width: 30vw;
  }

  .system-info__column {
    width: 100%;
  }

  .system-info__item:last-child {
    border-bottom: 2px solid #edeef3;
  }

  .vps-system__note {
    text-align: center;
  }

  .vsp-presentation {
    padding: 24px 0 32px;
  }

  .vsp-presentation__title {
    font-size: 32px;
    line-height: 48px;
    margin-bottom: 8px;
  }

  .vsp-presentation__text,
  .vsp-presentation__note {
    font-size: 16px;
    line-height: 24px;
  }

}


@media (max-width:540px) {

  .vps-tarifs__list:after {
    width: 15vw;
  }

  .vps-tarifs__item {
    margin: 0 8px;
    width: 80vw;
  }

}


/* Страница vps конец*/



/* Страница domain */


.domains {
  padding: 100px 0;
}

.domains__title {
  color: #221f26;
  font-family: 'Montserrat';
  font-size: 48px;
  font-weight: 700;
  line-height: 60px;
  margin: 0;
  margin-bottom: 48px;
}


.domains__search {
  margin-bottom: 64px;
}

.search {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.search__wrapper {
  width: 100%;
  position: relative;
  margin-bottom: 21px;
}

.search__icon {
  width: 32px;
  height: 32px;
  fill: none;
  stroke: #c3c3c5;
  stroke-width: 2;
  position: absolute;
  top: 16px;
  left: 30px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.search__input:focus~.search__icon {
  stroke: #86B53F;
}

.search__input {
  border-radius: 200px;
  border: 2px solid #c3c3c5;
  width: 100%;
  padding: 18px 296px 18px 80px;
  color: #47484d;
  font-family: "Open Sans";
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  outline: none;
}

.search__input:focus {
  border: 2px solid #86B53F;
}

.search__input::-webkit-input-placeholder {
  color: #C3C3C5;
}

.search__input:-ms-input-placeholder {
  color: #C3C3C5;
}

.search__input::-ms-input-placeholder {
  color: #C3C3C5;
}

.search__input::placeholder {
  color: #C3C3C5;
}

.search__submit.main-btn {
  position: absolute;
  right: 0;
  top: 0;
  padding: 18px 64px;
  font-size: 18px;
  line-height: 28px;
  color: #fdfdfd;
  background-color: #86b53f;
}

.search__filter {
  position: relative;
  margin-left: 33px;
}

.search__checkbox {
  position: absolute;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.search__checkbox-icon {
  position: absolute;
  top: 4px;
  pointer-events: none;
}

.search__label {
  padding-left: 26px;
  color: #47484d;
  font-family: "Open Sans";
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
}

.search__checkbox:hover~.checkbox-icon {
  stroke: #86B53F;
}

.search__checkbox:checked~.checkbox-icon.checkbox-icon--checked {
  visibility: visible;
  opacity: 1;
}

.domains__table-wrapper {
  border-radius: 8px;
  background-color: #f6f6f6;
  padding: 19px 0 35px;
  max-height: 240px;
  overflow: hidden;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.domains-table {
  width: 100%;
  border-radius: 8px;
  border-collapse: collapse;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.domains__table-item {
  display: flex;
  align-items: center;
  min-width: 230px;
  padding: 12px 24px;
  flex: 1;
  border-right: 2px solid #EDEEF3;
}

.domains__table-item:nth-child(4n) {
  border: none;
}

.domains__table-item .search__filter {
  margin: 0;
  width: 100%;
}

.domains__table-item .search__filter .search__label {
  padding-left: 0;
  display: flex;
  justify-content: space-between;
}

.domains-table .domains-table__adress {
  padding: 12px 0 12px 24px;
  position: relative;
}

.domains-table td:nth-child(2),
.domains-table td:nth-child(4),
.domains-table td:nth-child(6) {
  border-right: 2px solid #EDEEF3;
}

.domains-table__adress {
  color: #47484d;
  font-family: "Open Sans";
  font-size: 18px;
  font-weight: 700;
  line-height: 28px;
}

.domains-table__price {
  color: #47484d;
  font-family: "Open Sans";
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
}

.domains__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 18px;
  color: #939499;
  font-family: "Open Sans";
  font-size: 18px;
  font-weight: 600;
  line-height: 28px;
  border-radius: 8px;
  background-color: #edeef3;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  margin-bottom: 16px;
}

.domains__btn:hover {
  color: #86b53f;
}

.domains__btn svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: #939499;
  stroke-width: 1.5;
  margin-right: 8px;
  margin-top: 4px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.domains__btn:hover svg {
  stroke: #86b53f;
}

.domains__btn--active svg {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.domains__note {
  color: #9b9b9e;
  font-family: "Open Sans";
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}


.domains__subtitle {
  color: #221f26;
  font-family: 'Montserrat';
  font-size: 38px;
  font-weight: 700;
  line-height: 46px;
  margin: 0 0 20px;
  display: none;
}

.search-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin-bottom: 64px;
}

.search-table__row#search-table--template {
  display: none;
}

.search-table__row {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}


.search-table__row:hover {
  background-color: #f6f6f6;
}

.search-table td {
  padding: 15px 0;
  color: #47484d;
  font-family: "Open Sans";
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  border: 2px solid transparent;
  border-bottom-color: #EDEEF3;
  border-style: solid none;
}

.search-table__row--found td {
  color: #86b53f;
  border-color: #86b53f;
}

.search-table__row--taken td {
  color: #ee9a5a;
  border-color: #ee9a5a;
}

.search-table__row--unavailable td {
  color: #c3c3c5;
}


.search-table td:first-child {
  padding-left: 16px;
  border-left-style: solid;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}

.search-table td:nth-child(3) {
  padding-left: 60px;
}

.search-table td:last-child {
  padding-right: 16px;
  text-align: center;
  border-right-style: solid;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}

.search-table td b {
  font-weight: 700;
}

.search-table__note {
  color: #fdfdfd;
  font-family: "Open Sans";
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  padding: 2px 8px;
  border-radius: 4px;
  margin-left: 8px;
}

.search-table__note--premium {
  background-color: #6c3fb5;
}

.search-table__note--promotion {
  background-color: #3fb592;
}

.search-table__discount {
  color: #ee9a5a;
  font-family: "Open Sans";
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  display: block;
}

.search-table__btn {
  margin-left: auto;
  min-width: 183px;
}

.search-table__icon {
  display: none;
}


.search-table__row--taken .search-table__btn {
  border: 2px solid #ee9a5a;
  color: #ee9a5a;
}

.search-table__row--taken .search-table__btn:hover {
  color: #fdfdfd;
  background-color: #ee9a5a;
}


.search-table__row--unavailable .search-table__btn {
  border: 2px solid #c3c3c5;
  color: #c3c3c5;
}

.search-table__row--unavailable .search-table__btn:hover {
  color: #fdfdfd;
}

.domains-search__btn {
  margin: 0 auto;
}


@media (max-width:1199px) {

  .domains-table td {
    padding: 12px 12px;
    font-size: 16px;
    line-height: 24px;
  }

  .domains__table-wrapper {
    max-height: 220px;
  }

}

@media (max-width:991px) {

  .search {
    margin-bottom: 12px;
  }


  .search__input {
    border-width: 1px;
    font-size: 16px;
    line-height: 24px;
    padding: 11px 210px 11px 40px;
    margin-bottom: 12px;
  }

  .search__input:focus {
    border-width: 1px;
  }


  .search__icon {
    width: 24px;
    height: 24px;
    top: 12px;
    left: 16px;
  }

  .search__submit.main-btn {
    padding: 13px 24px;
    font-size: 14px;
    line-height: 18px;
  }

  .search__filter {
    /*display: none;*/
  }

  .domains-table tr {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .domains-table td {
    width: 25%;
    padding-left: 24px;
  }


  .domains-table td:nth-child(4) {
    border-right: none;
  }


  .search-table td:nth-child(2) {
    display: none;
  }

  .search-table__price {
    display: block;
  }

  .search-table__btn.main-btn--low {
    min-width: unset;
    padding: 8px;
  }

  .search-table__btn span {
    display: none;
  }

  .search-table__icon {
    display: block;
    fill: none;
    stroke: #86b53f;
    width: 16px;
    height: 16px;
  }

  .search-table__row--taken .search-table__icon {
    stroke: #ee9a5a;
  }

  .search-table__row--unavailable .search-table__icon {
    stroke: #c3c3c5;
  }

}

@media (max-width:767px) {

  .domains {
    padding: 24px 0 32px;
  }

  .domains__title {
    font-size: 32px;
    line-height: 48px;
    margin-bottom: 8px;
    text-align: center;
  }



  .domains__subtitle {
    font-size: 26px;
    line-height: 32px;
    margin-bottom: 8px;
  }



  .search-table {
    width: calc(100% + 30px);
    margin-left: -15px;
    margin-bottom: 24px;
  }

  .search-table td {
    font-size: 16px;
    line-height: 24px;
  }

  .search-table__note {
    font-size: 12px;
    line-height: 18px;
  }

  .search-table td:nth-child(3) {
    padding-left: 8px;
  }

  .search-table td:last-child {
    padding-left: 8px;
    padding-right: 8px;
  }

}

@media (max-width:540px) {

  .search__input {
    padding: 12px 12px 12px 40px;
  }

  .search__submit.main-btn {
    position: static;
    margin: 8px auto 0;
  }


  .search__label {
    font-size: 16px;
    line-height: 24px;
  }

  .search__checkbox-icon {
    top: 0px;
  }


  .domains-table td {
    width: 50%;
    padding-left: 16px;
  }

  .domains-table td:nth-child(2n) {
    text-align: right;
  }

  .domains__btn {
    font-size: 14px;
    line-height: 18px;
  }

  .domains__btn svg {
    display: none;
  }


  .search-table__note {
    display: block;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    margin-left: 0;
    font-size: 10px;
    line-height: 14px;
  }
}

/* Страница domain конец*/






/* Страница ssl*/



.ssl-heading {
  padding: 64px 0 100px;
  overflow-x: hidden;
}


.ssl-heading__title {
  margin: 0;
  margin-bottom: 48px;
  font-style: normal;
  font-weight: bold;
  font-size: 48px;
  line-height: 60px;
  color: #221F26;
}

.ssl-heading__nav {
  margin-bottom: 24px;
}

.ssl-tarifs__list {
  padding: 0;
  margin: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-around;
}

.ssl-tarifs__item {
  -ms-flex-preferred-size: 360px;
  flex-basis: 360px;
}

.ssl-tarifs__item .tarif-presentation__heading {
  min-height: 124px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}


.ssl-tarifs__table th:nth-child(2),
.ssl-tarifs__table th:nth-child(3),
.ssl-tarifs__table th:nth-child(4) {
  width: 22%;
}

.ssl-tarifs__table th:nth-child(2) {
  border-right-color: #86b53f;
}

.ssl-tarifs__table th:nth-child(3) {
  color: #fdfdfd;
  background-color: #86b53f;
  border-color: #86b53f;
}

.ssl-tarifs__table th:nth-child(3) .tarifs-table__price {
  color: #fdfdfd;
}

.ssl-tarifs__table td:nth-child(3) {
  border-right-color: #86b53f;
}

.ssl-tarifs__table td:nth-child(2) {
  border-right-color: #86b53f;
}

.ssl-tarifs__table tr:nth-child(6) td:nth-child(3) {
  border-bottom-color: #86b53f;
}

.sertificates-search__form {
  margin-bottom: 64px;
}


.ssl-form__wrapper {
  border-radius: 8px;
  background-color: #f6f6f6;
  padding: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}


.ssl__column {
  -ms-flex-preferred-size: 23%;
  flex-basis: 23%;
}

.ssl-form__title {
  color: #9b9b9e;
  font-family: "Open Sans";
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  margin: 0;
  margin-bottom: 5px;
}

.ssl-form__filter {
  position: relative;
  margin-bottom: 17px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}

.ssl-form__filter:last-child {
  margin-bottom: 0;
}

.ssl-form__checkbox {
  position: absolute;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.ssl-form__checkbox-icon {
  position: absolute;
  top: 4px;
  pointer-events: none;
}

.ssl-form__label {
  color: #47484d;
  font-family: "Open Sans";
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  padding-left: 30px;
  margin-right: 4px;
  cursor: pointer;
}

.ssl-form__checkbox:hover~.checkbox-icon {
  stroke: #86B53F;
}

.ssl-form__checkbox:checked~.checkbox-icon.checkbox-icon--checked {
  visibility: visible;
  opacity: 1;
}

.ssl-form__info-icon {
  fill: none;
  stroke: #c3c3c5;
  stroke-width: 2;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  cursor: pointer;
}

.ssl-form__info-icon:hover {
  stroke: #86b53f;
}

.ssl-form__tooltip {
  width: 294px;
  right: -296px;
  top: -24px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.ssl-form__info-icon:hover~.tooltip {
  visibility: visible;
  opacity: 1;
}


.ssl-form__input-wrapper {
  position: relative;
  margin-bottom: 16px;
  display: block;
}

.ssl-form__input-wrapper::before {
  content: attr(data-prefix);
  position: absolute;
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  line-height: 28px;
  color: #C3C3C5;
  top: 14px;
  left: 16px;
}

.ssl-form__input-wrapper::after {
  content: attr(data-currency);
  position: absolute;
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  line-height: 28px;
  color: #C3C3C5;
  top: 12px;
  right: 16px;
}

.ssl-form__dropdown {
  display: none;
}

.sertificates-search__title {
  color: #221f26;
  font-family: 'Montserrat';
  font-size: 38px;
  font-weight: 700;
  line-height: 46px;
  margin: 0;
  margin-bottom: 24px;
}

.sertificates-search__table {
  margin-bottom: 64px;
}


.sertificates-table {
  width: 100%;
  border-collapse: collapse;
}

.sertificates-table tr {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.sertificates-table tr:hover {
  background-color: #f6f6f6;
}

.sertificates-table th {
  color: #9b9b9e;
  font-family: "Open Sans";
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  text-align: left;
  padding: 4px 0;
}

.sertificates-table td {
  color: #47484d;
  font-family: "Open Sans";
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  border: 2px solid #edeef3;
  text-align: center;
  padding: 32px 0;
  width: 12.5%;
  border-radius: 4px;
}

.sertificates-table td:first-child {
  color: #221f26;
  font-family: "Open Sans";
  font-size: 20px;
  font-weight: 700;
  line-height: 30px;
  background-color: #f6f6f6;
  padding-left: 16px;
  text-align: left;
  width: 25%;
  position: relative;
}

.sertificates-table__info-icon {
  width: 16px;
  height: 16px;
  stroke: #c3c3c5;
  stroke-width: 1.5;
  position: absolute;
  right: 9px;
  top: 9px;
  fill: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  cursor: pointer;
}

.sertificates-table__info-icon:hover {
  stroke: #86b53f;
}

.sertificates-table__info-icon:hover~.sertificates-table__tooltip {
  opacity: 1;
  visibility: visible;
}

.sertificates-table__tooltip {
  width: 294px;
  right: -296px;
  top: -24px;
}


.sertificates-table td:last-child {
  border: none;
}

.sertificates-table__price {
  display: block;
  color: #47484d;
  font-family: "Open Sans";
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

.sertificates-table__icon {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: #86b53f;
  stroke-width: 1;
}

.sertificates-table__icon.sertificates-tablee__icon--unavailable {
  stroke: #ee9a5a;
}

.sertificates-table__btn {
  margin: 0 auto;
}

.sertificates-search__btn {
  margin: 0 auto;
}

@media (max-width:1199px) {

  .ssl-tarifs__item {
    -ms-flex-preferred-size: 32%;
    flex-basis: 32%;
  }

  .ssl-form__wrapper {
    padding: 24px;
  }

  .ssl__column {
    margin-right: 24px;
  }

  .ssl__column:last-child {
    margin-right: 0;
  }

  .sertificates-table__btn {
    margin-left: 8px;
  }

}


@media (max-width:991px) {

  .ssl-heading__nav .presentation-nav__link:nth-child(2) {
    display: none;
  }

  .ssl-tarifs__list:after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    height: 100%;
    width: 200px;
    background: -webkit-gradient(linear, left top, right top, from(rgba(256, 256, 256, 0)), to(rgba(256, 256, 256, 1)));
    background: linear-gradient(to right, rgba(256, 256, 256, 0), rgba(256, 256, 256, 1));
    pointer-events: none;
  }

  .ssl-tarifs__item {
    margin: 0 15px;
  }

  .ssl-form__wrapper {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .ssl__column {
    -ms-flex-preferred-size: 49%;
    flex-basis: 49%;
    margin-bottom: 16px;
    margin-right: 0;
  }

  .sertificates-table__btn.main-btn {
    padding: 8px;
  }

  .sertificates-table td:first-child {
    font-size: 18px;
    line-height: 28px;
  }

  .sertificates-table th:first-child {
    text-align: left;
  }

  .sertificates-table th {
    text-align: center;
  }

  .sertificates-table td {
    width: 10%;
    padding: 16px 0px;
  }



}

@media (max-width:767px) {


  .ssl-heading {
    padding: 24px 0 32px;
  }

  .ssl-heading__title {
    font-size: 32px;
    line-height: 48px;
    margin-bottom: 8px;
  }

  .ssl-tarifs__list {
    width: calc(100% + 30px);
    margin-left: -15px;
  }


  .ssl-tarifs__list:after {
    /* width: 30vw; */
    content: none;
  }

  .ssl-tarifs__list .slick-list {
    padding-left: 15px;
  }

  .ssl-tarifs__item {
    width: 60vw;
  }

  .sertificates-search__form {
    margin-bottom: 32px;
  }

  .ssl-form {
    padding: 16px 16px 0;
  }

  .ssl-form__label {
    font-size: 16px;
    line-height: 24px;
  }

  .ssl-form__checkbox-icon {
    top: 0;
  }


  .ssl-form__input-wrapper::before,
  .ssl-form__input-wrapper::after {
    font-size: 16px;
    line-height: 24px;
    top: 10px;
  }


  .sertificates-search__title {
    font-size: 26px;
    line-height: 32px;
    margin-bottom: 8px;
  }

  .sertificates-search__table-wrapper {
    overflow-x: auto;
    width: calc(100% + 30px);
    margin-left: -15px;
    padding-left: 15px;
  }

  .sertificates-table {
    width: 900px;
    margin-bottom: 32px;
  }


  .sertificates-table__btn.main-btn {
    padding: 16px 24px
  }

  .ssl-form__wrapper {
    max-height: 105px;
    overflow: hidden;
    -webkit-transition: 0.8s;
    transition: 0.8s;
  }

  .ssl-form__dropdown {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 16px;
    width: 100%;
  }

  .ssl-form__dropdown.active {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    width: 0;
    height: 0;
  }

  .ssl-form__dropdown svg {
    min-width: 20px;
    height: 20px;
    margin-left: 8px;
    fill: none;
    stroke: #86b53f;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }

}



@media (max-width:540px) {

  .presentation-nav__link {
    padding: 8px 12px;
    font-size: 14px;
    line-height: 18px;
  }

  .presentation-nav__icon {
    display: none;
  }

  .ssl__column {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
  }
}




/* Страница ssl конец*/






/* Страница about */


.about {
  padding: 64px 0 100px;
}

.about__heading {
  margin-bottom: 48px;
}

.about-heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.about-heading__info {
  -ms-flex-preferred-size: 66.6%;
  flex-basis: 66.6%;
}

.about-heading__title {
  margin: 0;
  margin-bottom: 16px;
  color: #221f26;
  font-family: 'Montserrat';
  font-size: 48px;
  font-weight: 700;
  line-height: 60px;
}

.about-heading__text {
  margin: 0;
  margin-bottom: 48px;
  color: #47484d;
  font-family: "Open Sans";
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
}

.about-list {
  padding: 0;
  margin: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.about-list__item {
  -ms-flex-preferred-size: 23%;
  flex-basis: 23%;
}

.about-list__title {
  margin: 0;
  margin-bottom: 12px;
  color: #221f26;
  font-family: 'Montserrat';
  font-size: 40px;
  font-weight: 700;
  line-height: 48px;
}

.about-list__text {
  margin: 0;
  color: #221f26;
  font-family: "Open Sans";
  font-size: 16px;
  font-weight: 400;
  line-height: 25px;
}

.about-list__note {
  color: #9b9b9e;
  font-family: "Open Sans";
  font-size: 16px;
  font-weight: 400;
  line-height: 25px;
}

.about-heading__img {
  -ms-flex-preferred-size: 33%;
  flex-basis: 33%;
  position: relative;
  right: -80px;
}

.about__servers {
  margin-bottom: 64px;
}

.about-servers {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.about-servers__img {
  -ms-flex-preferred-size: 50%;
  flex-basis: 50%;
}

.about-servers__info {
  -ms-flex-preferred-size: 40%;
  flex-basis: 40%;
}

.about-servers__title {
  margin: 0;
  margin-bottom: 16px;
  color: #221f26;
  font-family: 'Montserrat';
  font-size: 38px;
  font-weight: 700;
  line-height: 46px;
}

.about-servers__text {
  color: #47484d;
  font-family: "Open Sans";
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  margin: 0;
  margin-bottom: 16px;
}

.about-servers__text:last-child {
  margin-bottom: 0;
}

.about__ddos {
  margin-bottom: 100px;
}

.about-ddos {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.about-ddos__info {
  -ms-flex-preferred-size: 65%;
  flex-basis: 65%;
  margin-right: 45px;
  margin-left: auto;
}

.about-ddos__title {
  margin: 0;
  margin-bottom: 16px;
  color: #221f26;
  font-family: 'Montserrat';
  font-size: 38px;
  font-weight: 700;
  line-height: 46px;
}

.about-ddos__text {
  margin: 0;
  margin-bottom: 16px;
  color: #000000;
  font-family: "Open Sans";
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
}

.about-ddos__text:last-child {
  margin-bottom: 0;
}

.ddos-note {
  border-radius: 6px;
  border: 4px solid #edeef3;
  width: 164px;
  padding: 12px;
}

.ddos-note__title {
  margin: 0;
  margin-bottom: 4px;
  color: #86b53f;
  font-family: 'Montserrat';
  font-size: 38px;
  font-weight: 700;
  line-height: 46px;
}

.ddos-note__text {
  margin: 0;
  color: #47484d;
  font-family: "Open Sans";
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}

.about-ddos__principes {
  width: 100%;
  margin-top: 100px;
}


.ddos-principes__title {
  margin: 0;
  margin-bottom: 16px;
  color: #221f26;
  font-family: 'Montserrat';
  font-size: 38px;
  font-weight: 700;
  line-height: 46px;
}

.about-ddos__principes .ddos-principes__title {
  width: 65%;
  margin-left: auto;
  margin-right: auto;
}



.about__features {
  width: 65%;
  margin-left: auto;
  margin-right: auto;
}

.about-features__title {
  margin: 0;
  margin-bottom: 16px;
  color: #221f26;
  font-family: 'Montserrat';
  font-size: 38px;
  font-weight: 700;
  line-height: 46px;
}

.about-features__text {
  margin: 0;
  margin-bottom: 16px;
  color: #000000;
  font-family: "Open Sans";
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
}

.about-features__text:last-child {
  margin-bottom: 0;
}


@media (max-width:1199px) {
  .about-list__item {
    -ms-flex-preferred-size: 31%;
    flex-basis: 31%;
  }

  .about-servers__img {
    margin-right: 24px;
  }

  .about-ddos__principes .ddos-principes__title {
    width: 100%;
    text-align: center;
  }

}


@media (max-width:991px) {

  .about-heading__info {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
  }

  .about-heading__title,
  .about-heading__text {
    text-align: center;
  }

  .about-heading__img {
    display: none;
  }

  .about-servers {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .about-servers__img {
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
    margin-bottom: 24px;
  }

  .about-servers__info {
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
    text-align: center;
  }

  .about-ddos__info {
    margin-left: 0;
  }

  .about__features {
    width: 100%;
  }

}

@media (max-width:767px) {
  .about {
    padding: 24px 0 32px;
  }

  .about__heading {
    margin-bottom: 32px;
  }

  .about-heading__title {
    font-size: 32px;
    line-height: 48px;
    margin-bottom: 8px;
  }

  .about-heading__text {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 24px;
  }

  .about-list {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }

  .about-list__item {
    -ms-flex-preferred-size: 185px;
    flex-basis: 185px;
    text-align: center;
    margin-bottom: 8px;
  }

  .about-list__title {
    font-size: 32px;
    line-height: 48px;
    margin-bottom: 8px;
  }

  .about-list__text {
    font-size: 14px;
    line-height: 20px;
  }

  .about-servers {
    margin-bottom: 32px;
  }

  .about-servers__title {
    font-size: 26px;
    line-height: 32px;
    margin-bottom: 8px;
  }

  .about-servers__text {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 24px;
  }

  .about__ddos {
    margin-bottom: 48px;
  }

  .about-ddos {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .about-ddos__info {
    margin-right: 0;
    margin-bottom: 24px;
  }

  .about-ddos__title {
    font-size: 26px;
    line-height: 32px;
    margin-bottom: 8px;
    text-align: center;
  }

  .about-ddos__text {
    font-size: 16px;
    line-height: 24px;
    text-align: center;
  }

  .about-ddos__principes {
    display: none;
  }

  .about-features__title {
    font-size: 26px;
    line-height: 32px;
    margin-bottom: 8px;
    text-align: center;
  }

  .about-features__text {
    font-size: 16px;
    line-height: 24px;
    text-align: center;
  }


}



/* Страница about конец*/


/* Страница reviews */


.page-reviews {
  padding: 64px 0 100px;
  min-height: 60vh;
}

.page-reviews__title {
  color: #221f26;
  font-family: 'Montserrat';
  font-size: 48px;
  font-weight: 700;
  line-height: 60px;
  margin: 0;
  margin-bottom: 24px;
}

.page-reviews__form {
  margin-bottom: 32px;
}

.comment-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  padding: 32px;
  border: 14px solid #edeef3;
}

.comment-form__avatar {
  border: 4px solid #90c142;
  width: 64px;
  min-width: 64px;
  height: 64px;
  border-radius: 50%;
  margin-right: 32px;
}

.comment-form__wrapper {
  width: 100%;
}

.comment-form__label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  font-family: "Open Sans";
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 20px;
  color: #9B9B9E;
  margin-bottom: 16px;
}

.comment-form__textarea {
  margin-top: 2px;
  border: 2px solid #C3C3C5;
  border-radius: 4px;
  padding: 14px 20px;
  font-family: "Open Sans";
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  line-height: 28px;
  color: #47484D;
}


.comment-form__textarea::-webkit-input-placeholder {
  color: #C3C3C5;
}

.comment-form__textarea:-ms-input-placeholder {
  color: #C3C3C5;
}

.comment-form__textarea::-ms-input-placeholder {
  color: #C3C3C5;
}

.comment-form__textarea::placeholder {
  color: #C3C3C5;
}

.comment-form__textarea:focus {
  outline: none;
  border: 2px solid #86B53F;
}


.comment-form__textarea.filled {
  border-bottom: 2px solid #86B53F;
}

.comment-form__autorisation {
  display: none;
}

.comment-form__autorisation-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.comment-form__register {
  margin-right: 12px;
}

.comment-form__note {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 20px;
  color: #9B9B9E;
  max-width: 155px;
}



.page-reviews__list {
  padding: 0;
  margin: 0;
  list-style: none;
  margin-bottom: 64px;
}

.page-reviews__item {
  margin-bottom: 32px;
}

.page-reviews__item:last-child {
  margin-bottom: 0;
}

.page-reviews__showmore {
  margin-bottom: 16px;
}

.showmore-navigation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
}



.showmore-navigation__count {
  color: #9b9b9e;
  font-family: "Open Sans";
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}

.showmore-navigation__select-label {
  position: relative;
  color: #9b9b9e;
  font-family: "Open Sans";
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.showmore-navigation__select {
  color: #47484d;
  font-family: "Open Sans";
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  border: none;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding-right: 14px;
  margin-left: 8px;
}

.showmore-navigation__icon {
  position: absolute;
  fill: none;
  stroke: #47484d;
  width: 12px;
  height: 12px;
  right: 0;
  top: 6px;
  pointer-events: none;
}

.page-reviews__btn {
  display: block;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin: 0 auto;
  color: #9b9b9e;
  font-family: "Open Sans";
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  padding-bottom: 2px;
  border-bottom: 1px dashed #9b9b9e;
  display: none;
}


@media (max-width:991px) {
  .comment-form__textarea {
    height: 152px;
  }
}


@media (max-width:767px) {
  .page-reviews {
    padding: 24px 0 32px;
  }

  .page-reviews__title {
    font-size: 32px;
    line-height: 48px;
    margin-bottom: 8px;
    text-align: center;
  }


  .page-reviews__form {
    width: calc(100% + 30px);
    margin-left: -15px;
  }

  .comment-form {
    padding: 16px;
    border-width: 7px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;

  }

  .comment-form__avatar {
    margin: 0 auto 12px;
  }

  .comment-form__textarea,
  .comment-form__textarea:focus,
  .comment-form__textarea.filled {
    border-width: 1px;

  }

  .comment-form__textarea {
    padding: 10px 12px;
    font-size: 14px;
    line-height: 20px;
  }


  .comment-form__submit {
    margin: 0 auto;
  }

  .showmore-navigation {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .page-reviews__list {
    margin-bottom: 24px;
  }

}

@media (max-width:620px) {

  .showmore-navigation__button {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    margin: 12px auto 0;
  }


}


@media (max-width:540px) {

  .comment-form__autorisation-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: center;
  }

  .comment-form__register {
    margin-right: 0;
    margin-bottom: 8px;
  }

  .showmore-navigation__select-label,
  .showmore-navigation__select,
  .showmore-navigation__count {
    display: none;
  }

}



/* Страница reviews конец*/





/* Страницы faq*/

.faq {
  padding: 64px 0 100px;
}


.faq__title {
  color: #221f26;
  font-family: 'Montserrat';
  font-size: 48px;
  font-weight: 700;
  line-height: 60px;
  margin: 0;
  margin-bottom: 32px;
  text-align: center;
}

.faq__search {
  margin-bottom: 48px;
}


.faq-categories {
  padding: 0;
  margin: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin: 0 -1%;
}

.faq-categories__item {
  -ms-flex-preferred-size: 32%;
  flex-basis: 31%;
  margin: 0 1% 30px;
}

.faq-categories__item a {
  height: 100%;
  display: block;
  border: 8px solid #edeef3;
  padding: 32px;
  transition: 0.3s;
  -webkit-transition: 0.3s;
}

.faq-categories__item a:hover {
  border-color: #86b53f;
}


.faq-categories__title {
  color: #221f26;
  font-family: 'Montserrat';
  font-size: 38px;
  font-weight: 700;
  line-height: 46px;
  margin: 0;
  margin-bottom: 16px;
}

.faq-categories__text {
  margin: 0;
  color: #47484d;
  font-family: "Open Sans";
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
}

.faq__subtitle {
  color: #221f26;
  font-family: 'Montserrat';
  font-size: 48px;
  font-weight: 700;
  line-height: 60px;
  margin: 0;
  margin-bottom: 30px;
}


.faq__breadcrumbs.breadcrumbs {
  margin-bottom: 32px;
}

.breadcrumbs {
  padding: 0;
  margin: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.breadcrumbs__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-right: 8px;
}

.breadcrumbs__link {
  color: #9b9b9e;
  font-family: "Open Sans";
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.breadcrumbs__link:hover,
.breadcrumbs__link--active {
  color: #86b53f;
}

.breadcrumbs__icon {
  margin-left: 8px;
  width: 16px;
  height: 16px;
  fill: none;
  stroke: #86b53f;
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
}

.faq__list.faq-list {
  max-width: 945px;
  margin: 0 auto 64px;
}

.faq-list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.faq-list__item {
  padding: 32px 66px;
  position: relative;
  color: #47484d;
  font-family: "Open Sans";
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  border-bottom: 2px solid #edeef3;
  cursor: pointer;
}

.faq-list__item.active {
  background-color: #f6f6f6;
  border: none;
}

.faq-list__item::before {
  content: "+";
  font-family: "Open Sans";
  font-size: 38px;
  font-weight: 700;
  line-height: 32px;
  color: #86b53f;
  position: absolute;
  top: 30px;
  left: 19px;
}

.faq-list__item.active::before {
  content: "—";
  font-size: 22px;
}


.faq-list__dropdown {
  max-height: 0;
  overflow: hidden;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  padding: 0 66px;
}

.faq-list__item--active+.faq-list__dropdown {
  background-color: #f6f6f6;
}

.faq-list__sublist {
  padding: 0;
  margin: 0;
  list-style: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  padding-bottom: 32px;
}


.faq-list__link {
  padding: 12px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-bottom: 1px solid #edeef3;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  color: #47484d;
  font-family: "Open Sans";
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
}

.faq-list__link:hover {
  color: #86b53f;
  border-color: #86b53f;
}

.faq-list__arrow {
  fill: none;
  stroke: #47484d;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  margin-left: auto;
}

.faq-list__link:hover .faq-list__arrow {
  stroke: #86b53f;
}


.faq__btn {
  color: #86b53f;
  font-family: "Open Sans";
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  display: block;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin: 0 auto 100px;
  padding-bottom: 2px;
  border-bottom: 1px dashed #86b53f;
  cursor: default;
}

.faq__btn--active {
  visibility: hidden;
  opacity: 0;
  position: absolute;
}

.faq__support {
  max-height: 0;
  overflow: hidden;
  -webkit-transition: 0.7s;
  transition: 0.7s;
}

.article__title {
  margin: 0 0 24px;
  color: #221f26;
  font-family: 'Montserrat';
  font-size: 48px;
  font-weight: 700;
  line-height: 60px;
}

.article__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 82px;
}

.article__info {
  width: 66%;
  margin-right: 128px;
}

.article__info > p {
  margin: 0 0 24px;
  color: #47484d;
  font-family: "Open Sans";
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
}

.article__info > blockquote {
  color: #47484d;
  font-family: 'Open Sans', sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
  background: #f4ffe4;
  margin: 0 0 24px;
  padding: 14px 0 14px 40px;
  position: relative;
}

.article__info > blockquote::before {
  content: '';
  width: 3px;
  display: block;
  height: 100%;
  position: absolute;
  background: #86b53f;
  top: 0;
  left: 0;
}

.article__info > blockquote.quote--orange {
  background: #ffe8d6;
}

.article__info > blockquote.quote--orange::before {
  background: #ee9a5a;
}

.article__info > h1,
.article__info > h2,
.article__info > h3,
.article__info > h4,
.article__info > h5,
.article__info > h6 {
  color: #47484d;
}

.article__info blockquote h4 {
  margin: 0 0 10px;
}

.article__info pre {
  background: #f0f0f0;
  padding: 0 20px;
}

.article__info > img {
  width: 100%;
  margin-bottom: 24px;
}

.article__info > p > img {
  max-width: 100%;
  /*height: 100% !important;*/
  margin-bottom: 24px;
}

.article__info > ol,
.article__info > ul {
  margin: 0 0 24px;
  color: #47484d;
  font-family: 'Open Sans', sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
}

.article__info > ul {
  list-style-type: none;
}

.article__info > ol li,
.article__info > ul li {
  position: relative;
}

.article__info > ul li::before {
  content: '';
  width: 18px;
  height: 1px;
  display: block;
  position: absolute;
  background: #47484d;
  top: 14px;
  left: -30px;
}

.article__info > table {
  border-collapse: collapse;
}

.article__info > table th,
.article__info > table td {
  color: #47484d;
}

.article__info > table td {
  border: 1px solid #e5e5e5;
  padding: 5px;
}

.article__text {
  margin: 0 0 24px;
  color: #47484d;
  font-family: "Open Sans";
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
}

.article__info span[data-tooltip] {
  border-bottom: 1px dashed #86B53F;
  cursor: help;
  color: #86B53F;
  z-index: 1;
  position: relative;
}

.article__info span[data-tooltip]::after {
  content: attr(data-tooltip);
  position: absolute;
  visibility: hidden;
  opacity: 0;
  transition: all 0.4s ease-in-out;
  width: 400px;
  font-size: 14px;
  line-height: 1.2;
  box-shadow: 0 0 5px #888;
  padding: 10px;
  z-index: 2;
  top: 100%;
  left: 50%;
  background: #fff;
}

.article__info span[data-tooltip]:hover::after {
  opacity: 1;
  visibility: visible;
}

.article__note {
  padding: 32px;
  margin: 0;
  margin-bottom: 24px;
  border-radius: 4px;
  background-color: #edeef3;
  color: #47484d;
  font-family: "Open Sans";
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
}


.article__subtitle {
  margin: 0;
  margin-bottom: 16px;
  color: #47484d;
  font-family: "Open Sans";
  font-size: 18px;
  font-weight: 700;
  line-height: 28px;
}

.article__list {
  padding: 0;
  padding-left: 24px;
  margin: 0;
  list-style: none;
}

.article__item {
  color: #47484d;
  font-family: "Open Sans";
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  position: relative;
  margin-bottom: 12px;
}


.article__item:last-child {
  margin-bottom: 0;
}

.article__item::before {
  content: "";
  position: absolute;
  top: 14px;
  left: -24px;
  height: 2px;
  width: 16px;
  background-color: #86b53f;
}

.article__img {
  width: 100%;
  margin-bottom: 24px;
}



.article__aside {
  position: relative;
  padding-top: 12px;
}

.article__share-list {
  position: -webkit-sticky;
  position: sticky;
  top: 32px;
}

.share-list {
  padding: 0;
  margin: 0;
  list-style: none;
}


.article__share-list .share-list__item {
  margin-bottom: 12px;
}

.article__share-list .share-list__item:last-child {
  margin-bottom: 0;
}

.share-list__link {
  width: 64px;
  height: 64px;
  border-radius: 100px;
  background-color: #edeef3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: relative;
}

.share-list__link:hover {
  background-color: #86b53f;
}

.share-list__icon {
  fill: #b8b8be;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.share-list__link:hover .share-list__icon {
  fill: #fff;
}


.share-list__note {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: -160px;
  padding: 8px 24px;
  color: #fdfdfd;
  font-family: "Open Sans";
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  -webkit-box-shadow: 0 0 4px rgba(55, 58, 72, 0.25);
  box-shadow: 0 0 4px rgba(55, 58, 72, 0.25);
  border-radius: 8px;
  background-color: #86b53f;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  z-index: 2;
}

.share-list__note::before {
  content: "";
  position: absolute;
  left: -16px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  border: 8px solid transparent;
  border-right: 10px solid #86b53f;
}

.share-list__link:hover .share-list__note {
  visibility: visible;
  opacity: 1;
}

.article__rating {
  margin-bottom: 48px;
}

.article__nav {
  width: calc(100% + 226px);
  margin: 0 -113px;
}

.article-nav__list {
  padding: 0;
  margin: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.article-nav__item {
  margin-right: 30px;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.article-nav__item:last-child {
  margin-right: 0;
}

.article-nav__link {
  display: block;
  border: 8px solid #edeef3;
  padding: 24px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  color: #47484d;
  font-family: "Open Sans";
  font-size: 20px;
  font-weight: 700;
  line-height: 30px;
}

.article-nav__link:hover {
  border-color: #86b53f;
  color: #86b53f;
}

.article-nav__link--previous {
  padding-left: 113px;
  padding-right: 24px;
}


.article-nav__link--next {
  padding-left: 24px;
  padding-right: 113px;
}


.article-nav__arrow {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: #47484d;
  stroke-width: 2;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.article-nav__link:hover .article-nav__arrow {
  stroke: #86b53f;
}

.article-nav__link--previous .article-nav__arrow {
  margin-right: 24px;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}


.article-nav__link--next .article-nav__arrow {
  margin-left: 24px;
}

.article__data {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-bottom: 24px;
  border-bottom: 2px solid #edeef3;
  margin-bottom: 64px;
}

.article__form {
  margin-bottom: 32px;
}

.comments {
  border-radius: 8px;
  background-color: #f6f6f6;
  padding: 40px 98px;
}


.comments__list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.comments__item {
  margin-bottom: 32px;
}

.comments__item--answer {
  padding-left: 82px;
  margin-bottom: 48px;
}

.comments__item:last-child {
  margin-bottom: 0;
}

.comment {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.comment__avatar {
  border: 4px solid #90c142;
  width: 64px;
  min-width: 64px;
  height: 64px;
  border-radius: 50%;
  margin-right: 16px;
}

.comment__info {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.comment__heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 12px;
}

.comment__nickname {
  color: #47484d;
  font-family: "Open Sans";
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  margin-right: 24px;
}

.comment__date {
  color: #9b9b9e;
  font-family: "Open Sans";
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

.comment__text {
  margin: 0;
  margin-bottom: 16px;
  color: #47484d;
  font-family: "Open Sans";
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
}

.comment__controls {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.comment__rating {
  margin-right: 32px;
}

.comment__reply {
  border: none;
  background-color: transparent;
  color: #86b53f;
  font-family: "Open Sans";
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  cursor: pointer;
}


@media (max-width:1365px) {
  .article__nav {
    width: 100%;
    margin: 0;
  }
}


@media (max-width:1199px) {

  .faq-categories__item a {
    padding: 24px;
  }

  .faq-categories__title {
    font-size: 28px;
    line-height: 36px;
  }

  .faq-categories__text {
    font-size: 16px;
    line-height: 24px;
  }

  .article-nav__item {
    -ms-flex-preferred-size: 49%;
    flex-basis: 49%;
    margin-right: 2%;
  }

  .article-nav__link--previous,
  .article-nav__link--next {
    padding: 24px;
  }

  .comments {
    padding: 24px 32px;
  }

}

@media (max-width:991px) {

  .faq {
    padding-bottom: 48px;
  }



  .faq__subtitle {
    text-align: center;
  }



  .faq-categories__item {
    -ms-flex-preferred-size: 49%;
    flex-basis: 48%;
  }

  .faq__list.faq-list {
    margin-bottom: 0;
  }

  .faq__btn {
    margin-bottom: 24px;
  }


  .article__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .article__aside {
    padding-top: 32px;
  }

  .article__share-list {
    position: static;
  }


  .share-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .article__share-list .share-list__item {
    margin-bottom: 0;
    margin-right: 12px;
  }


  .article__info {
    width: 100%;
    margin-right: 0;
  }
}

@media (max-width:767px) {

  .faq {
    padding: 24px 0 32px;
  }

  .faq__title {
    font-size: 32px;
    line-height: 48px;
    margin-bottom: 8px;
  }

  .faq-categories {
    margin: 0;
  }

  .faq__search {
    margin-bottom: 0px;
  }

  .faq-categories__item {
    -ms-flex-preferred-size: 315px;
    flex-basis: 315px;
    margin: 0 auto 12px;
  }

  .faq-categories__title {
    font-size: 24px;
    line-height: 30px;
    margin-bottom: 8px;
  }

  .breadcrumbs {
    white-space: nowrap;
    overflow-x: auto;
    width: calc(100% + 30px);
    margin-left: -15px;
    padding-left: 15px;
  }

  .breadcrumbs__link {
    font-size: 16px;
    line-height: 24px;
  }

  .faq__subtitle {
    font-size: 32px;
    line-height: 48px;
    margin-bottom: 8px;
  }

  .faq__list.faq-list {
    margin-bottom: 0;
  }

  .faq-list__item {
    padding: 16px 32px;
    font-size: 18px;
    line-height: 28px;
  }

  .faq-list__item::before {
    font-size: 24px;
    top: 14px;
    left: 10px;
  }

  .faq-list__item.active::before {
    font-size: 16px;
  }

  .faq-list__dropdown {
    padding: 0 24px;
  }

  .faq-list__link {
    font-size: 16px;
    line-height: 24px;
    position: relative;
    padding-right: 22px;

  }

  .faq-list__arrow {
    width: 16px;
    height: 16px;
    position: absolute;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }

  .faq__btn {
    font-size: 16px;
    line-height: 24px;
    padding-left: 8px;
  }


  .article__title {
    font-size: 32px;
    line-height: 48px;
    margin-bottom: 8px;
  }

  .article__wrapper {
    margin-bottom: 32px;
  }

  .article__text {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 24px;
  }

  .article__note {
    width: calc(100% + 30px);
    margin-left: -15px;
    padding: 16px;
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 24px;
  }

  .article__item {
    font-size: 16px;
    line-height: 24px;
  }

  .article__rating.rating {
    margin-bottom: 32px;
    padding-left: 0;
  }


  .article-nav__list {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }

  .article-nav__item {
    margin-right: 0;
    margin-bottom: 16px;
    -ms-flex-preferred-size: 370px;
    flex-basis: 370px;
  }

  .article-nav__link {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .article__data {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 24px;
    padding-bottom: 12px;
  }

  .article__data .hashtags {
    margin-bottom: 12px;
  }

  .article__data .article-parametrs {
    margin-bottom: 12px;
  }

  .comment {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .comment__avatar {
    margin: 0 0 12px;
  }

  .comment__heading {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .comment__text {
    margin-bottom: 8px;
    font-size: 14px;
    line-height: 20px;
  }

  .comments__item--answer {
    padding-left: 32px;
  }

  .comment__controls {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

}


@media (max-width:460px) {

  .article-nav__list {
    width: calc(100% + 30px);
    margin-left: -15px;
  }

  .article-nav__link--previous,
  .article-nav__link--next {
    padding: 8px;
  }

  .article-nav__link {
    font-size: 16px;
    line-height: 24px;
  }

  .comments {
    width: calc(100% + 30px);
    margin-left: -15px;
    padding: 24px 16px;
  }

  .comment__date {
    font-size: 14px;
    line-height: 18px;
  }


}


@media (max-width:359px) {

  .faq-list__item {
    font-size: 14px;
    line-height: 20px;
  }

  .faq-list__item::before {
    top: 10px;
  }

  .faq-list__link {
    font-size: 14px;
    line-height: 20px;
  }

  .article-nav__arrow {
    width: 16px;
    height: 16px;
  }

  .article-nav__link--previous .article-nav__arrow {
    margin-right: auto;
  }

  .article-nav__link--next .article-nav__arrow {
    margin-left: auto;
  }

  .comments__item--answer {
    padding-left: 0;
  }


}


/* Страницы faq конец*/






/* Страницы news */

.news {
  padding: 64px 0 0px;
}


.news__title-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 24px;
}

.news__title {
  margin: 0;
  color: #221f26;
  font-family: 'Montserrat';
  font-size: 48px;
  font-weight: 700;
  line-height: 60px;
}

.news__subtitle {
  margin: 0;
  margin-bottom: 24px;
  color: #47484d;
  font-family: "Open Sans";
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
}

.search-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.search-link__icon {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: #c3c3c5;
  stroke-width: 2;
  margin-right: 4px;
}

.search-link__text {
  color: #c3c3c5;
  font-family: "Open Sans";
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  border-bottom: 1px dashed #c3c3c5;
}

.search-link__text--disable {
  visibility: hidden;
  opacity: 0;
  position: absolute;
}

.search-link--active .search-link__text--disable {
  visibility: visible;
  opacity: 1;
  position: static;
}

.search-link--active .search-link__text--enable {
  visibility: hidden;
  opacity: 0;
  position: absolute;
}

.news__search-wrapper {
  max-height: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  overflow: hidden;
}

.news__search {
  margin-bottom: 24px;
}


.news__list {
  padding: 0;
  margin: 0;
  margin-bottom: 64px;
  list-style: none;
}

.news-list__item {
  margin-bottom: 40px;
}

.news-list__item:last-child {
  margin-bottom: 0;
}

.news-item__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border: 8px solid #edeef3;
}

.news-item__presentation {
  width: 61%;
  padding: 32px;
}

.hashtags__items {
  margin-bottom: 8px;
}

.hashtags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.hashtags__item {
  color: #86b53f;
  font-family: "Open Sans";
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  margin-right: 8px;
}

.hashtags__item:last-child {
  margin-right: 0;
}

.hashtags__icon {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: #c3c3c5;
  stroke-width: 1.5;
  margin-right: 8px;
}

.news-item__title {
  margin: 0;
  margin-bottom: 24px;
  color: #000000;
  font-family: 'Montserrat';
  font-size: 38px;
  font-weight: 700;
  line-height: 46px;
  max-height: 138px;
  overflow: hidden;
}

.article-parametrs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.article-parametrs__parametr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-right: 20px;
  color: #9b9b9e;
  font-family: "Open Sans";
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}

.article-parametrs__parametr:last-child {
  margin-right: 0;
}

.article-parametrs__parametr svg {
  fill: none;
  stroke: #c3c3c5;
  stroke-width: 1.5;
  margin-right: 4px;
}

.news-list__img {
  width: 39%;
}

.news-list__img img {
  -o-object-fit: cover;
  object-fit: cover;
  height: 100%;
  width: 100%;
}

.news__breadcrumbs {
  margin-bottom: 32px;
}


.news__article {
  margin-bottom: 64px;
}


@media (max-width:991px) {

  .news-item__presentation {
    padding: 16px;
  }

  .news-item__title {
    font-size: 28px;
    line-height: 36px;
    max-height: 108px;
  }

  .cta__wrapper.cta__wrapper--decorated {
    padding: 64px 50px;
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .cta__decoration {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
  }

  .cta__email-decoration {
    position: relative;
    top: -24px;
    right: -24px;
    width: 24%;
    height: auto;
  }

  .cta__wrapper.cta__wrapper--decorated .form__submit {
    margin-left: auto;
  }


}


@media (max-width:767px) {



  .news {
    padding: 24px 0 12px;
  }

  .news__title-wrapper {
    margin-bottom: 12px;
  }

  .news__title {
    font-size: 32px;
    line-height: 48px;
  }

  .search-link__text {
    font-size: 16px;
    line-height: 24px;
  }

  .news__list {
    width: calc(100% + 30px);
    margin-left: -15px;
    margin-bottom: 24px;
  }

  .news-item__link {
    border-width: 4px;
  }

  .news-list__item {
    margin-bottom: 24px;
  }


  .hashtags__item {
    font-size: 2.2vw;
    line-height: 1.5;
  }

  .news-item__title {
    font-size: 3.2vw;
    line-height: 1.5;
    margin-bottom: 2vw;
  }

  .article-parametrs {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .article-parametrs__parametr {
    font-size: 2.2vw;
    line-height: 1.5;
    margin-right: 1.5vw;
  }

  .article-parametrs__parametr svg {
    width: 3vw;
    height: 3vw;
  }

  .cta__wrapper.cta__wrapper--decorated {
    padding: 24px;
  }

  .cta__email-decoration {
    position: relative;
    top: -12px;
    right: -12px;
    width: 24%;
    height: auto;
  }

}


@media (max-width:540px) {

  .news__list {
    width: 100%;
    margin-left: 0;
  }

  .news-list__item {
    width: 80%;
    min-width: 290px;
    margin: 0 auto 12px;
  }

  .news-item__link {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
  }

  .news-item__presentation {
    width: 100%;
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }

  .news-list__img {
    width: 100%;
    height: 40vw;
  }



  .hashtags__item {
    font-size: 12px;
    line-height: 18px;
  }

  .news-item__title {
    font-size: 16px;
    line-height: 24px;
  }

  .article-parametrs__parametr {
    font-size: 12px;
    line-height: 18px;
  }

  .article-parametrs__parametr svg {
    width: 16px;
    height: 16px;
  }


}


/* Страницы news конец*/






/* Страница contacts*/


.contacts {
  padding: 56px 0 100px;
}

.contacts__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.contacts__info {
  width: 48%;
  min-width: 48%;
  margin-right: auto;
  padding-top: 8px;
}

.contacts__title {
  margin: 0;
  margin-bottom: 16px;
  color: #221f26;
  font-family: 'Montserrat';
  font-size: 48px;
  font-weight: 700;
  line-height: 60px;
}

.contacts__text {
  margin: 0;
  margin-bottom: 32px;
  color: #47484d;
  font-family: "Open Sans";
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
}

.contacts-list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.contacts-list__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  margin-bottom: 20px;
}

.contacts-list__item:last-child {
  margin-bottom: 0;
}

.contacts-list__icon {
  width: 32px;
  min-width: 32px;
  height: 32px;
  border-radius: 200px;
  background-color: #86b53f;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-right: 12px;
}

.contacts-list__icon svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: #fff;
  stroke-width: 2;
}

.contacts-list__icon.contacts-list__icon--filled svg {
  fill: #fff;
}

.contacts-list__info {
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  color: #47484d;
  font-family: "Open Sans";
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
}

.contacts-list__link {
  color: #86b53f;
  font-family: "Open Sans";
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  text-decoration: underline;
}

.contacts-list__note {
  color: #9b9b9e;
  font-family: "Open Sans";
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}

@media (max-width:1199px) {
  .contacts__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .contacts__info {
    width: 70%;
    min-width: unset;
    margin-right: 0;
    margin-bottom: 64px;
  }

  /*   .contacts-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  } */


}

@media (max-width:767px) {
  .contacts__info {
    width: 100%;
    margin-bottom: 32px;
  }

  .contacts {
    padding: 24px 0 32px;
  }

  .contacts__title {
    font-size: 32px;
    line-height: 48px;
    margin-bottom: 8px;
  }

  .contacts__text {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 24px;
  }


  .contacts__list {

    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    max-width: -webkit-max-content;
    max-width: -moz-max-content;
    max-width: max-content;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }




}


/* Страница contacts конец*/




/* Страница partner */

.partner {
  padding: 64px 0 100px;
}

.partner__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.partner__info {
  width: 60%;
  margin-right: auto;
}

.partner__header {
  margin: 0;
  margin-bottom: 16px;
  color: #221f26;
  font-family: 'Montserrat';
  font-size: 48px;
  font-weight: 700;
  line-height: 60px;
}

.partner__text {
  margin: 0;
  margin-bottom: 16px;
  color: #47484d;
  font-family: "Open Sans";
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
}


.partner__text a {
  color: #86b53f;
  text-decoration: underline;
}

.partner__text:last-child {
  margin-bottom: 0;
}

.partner__img {
  width: 29%;
}

@media (max-width:991px) {

  .partner {
    padding-bottom: 48px;
  }

  .partner__info {
    width: 100%;
    margin-right: 0;
  }

  .partner__img {
    display: none;
  }
}

@media (max-width:767px) {
  .partner {
    padding: 24px 0 32px
  }

  .partner__header {
    font-size: 32px;
    line-height: 48px;
    margin-bottom: 8px;
  }

  .partner__text {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 16px;
  }

}







/* Страница partner конец*/





/* Страницы contract и policy*/

.contract,
.policy {
  padding: 48px 0 148px;
}


.documentation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-bottom: 96px;
}

.documentation__aside {
  position: relative;
  width: 24%;
  margin-right: auto;
  padding-bottom: 20px;
}

.documentation__nav {
  position: -webkit-sticky;
  position: sticky;
  top: 20px;
}

.documentation__nav-list {
  padding: 0 0 0 32px !important;
  margin: 0;
  list-style: none;
  height: 90vh;
  overflow: auto;
}


.documentation__nav-item {
  position: relative;
  padding-bottom: 16px;
  padding-right: 12px;
}

.documentation__nav-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: -20px;
  width: 2px;
  height: 100%;
  background-color: #edeef3;
}

.documentation__nav-item:last-child::before {
  height: 24px;
}


.documentation__nav-link {
  color: #221f26;
  font-family: "Open Sans";
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}


.documentation__nav-link:hover,
.documentation__nav-link--active {
  color: #86b53f;
}

.documentation__nav-link::before {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  left: -32px;
  top: 0;
  background-color: #edeef3;
  border-radius: 50%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.documentation__nav-link:hover:before,
.documentation__nav-link--active:before {
  background-color: #86b53f;
}

.documentation__article {
  width: 66%;
}


.documentation__title {
  margin: 0;
  margin-bottom: 34px;
  color: #221f26;
  font-family: 'Montserrat';
  font-size: 48px;
  font-weight: 700;
  line-height: 60px;
}

.documentation__block {
  margin-bottom: 48px;
}

.documentation__block:last-child {
  margin-bottom: 0;
}

.documentation__subtitle {
  margin: 0;
  margin-bottom: 16px;
  color: #221f26;
  font-family: 'Montserrat';
  font-size: 38px;
  font-weight: 700;
  line-height: 46px;
}

.documentation__text {
  margin: 0;
  margin-bottom: 16px;
  color: #221f26;
  font-family: "Open Sans";
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

.documentation__text:last-child {
  margin-bottom: 0;
}


.documentation__list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.documentation__text+.documentation__list {
  margin-top: 24px;
}

.documentation__text+.documentation__list.documentation__list--disc {
  list-style-type: disc;
  margin-left: 20px;
}

.documentation__item {
  color: #221f26;
  font-family: "Open Sans";
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  margin-bottom: 16px;
}

.documentation__count {
  color: #86b53f;
  font-weight: 700;
}

.documentation__link {
  font-weight: normal;
  font-size: 16px;
  line-height: 24px;
  color: #212121;
  text-decoration: underline;
}


.documentation__subtlist {
  padding: 0;
  padding-top: 15px;
  padding-bottom: 10px;
  margin: 0;
  list-style: none;
}

.documentation__subitem {
  position: relative;
  padding-left: 48px;
  margin-bottom: 15px;
}

@media (max-width:991px) {
  .documentation__aside {
    min-width: 190px;
    max-width: 190px;
    margin-right: 30px;
  }
}

@media (max-width:767px) {
  .documentation__wrapper {
    margin-top: 0;
  }

  .documentation__aside {
    display: none;
  }

  .documentation__title {
    margin: 0;
    margin-bottom: 15px;
  }

  .documentation__update {
    margin: 0;
    margin-bottom: 15px;
  }

  .documentation__text {
    margin: 0;
    margin-bottom: 15px;
  }

  .documentation__subtitle {
    margin: 0;
    margin-bottom: 15px;
  }
}

@media (max-width:575px) {
  .documentation__title {
    font-size: 30px;
    line-height: 40px;
  }

  .documentation__update {
    font-size: 14px;
    line-height: 18px;
  }

  .documentation__text {
    font-size: 16px;
    line-height: 24px;
  }

  .documentation__text.documentation__text--heading {
    margin-bottom: 24px;
  }

  .documentation__subtitle {
    font-size: 26px;
    line-height: 36px
  }

}

@media (max-width:1199px) {
  .documentation__article {
    width: 71%;
  }
}

@media (max-width:991px) {
  .documentation__aside {
    display: none;
  }

  .documentation__article {
    width: 100%;
  }

}

@media (max-width:767px) {

  .contract,
  .policy {
    padding: 24px 0 32px;
  }

  .documentation__title {
    font-size: 32px;
    line-height: 48px;
    margin-bottom: 16px;
  }

  .documentation__block {
    margin-bottom: 32px;
  }

  .documentation__subtitle {
    font-size: 26px;
    line-height: 32px;
    margin-bottom: 8px;
  }

  .documentation__text {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 16px;
  }

  .documentation__subitem {
    padding-left: 24px;
  }

}

@media (max-width:460px) {

  .documentation__title {
    font-size: 24px;
    line-height: 32px;
  }

  .documentation__subtitle {
    font-size: 20px;
    line-height: 28px;
  }

  .documentation__subtitle br {
    display: none;
  }

}


/* Страницы contract и policy конец*/



/* Страница map*/
.map {
  padding: 48px 0 132px;
}

.map__title {
  margin: 0;
  margin-bottom: 48px;
  color: #221f26;
  font-family: 'Montserrat';
  font-size: 48px;
  font-weight: 700;
  line-height: 60px;
}

.map__subtitle {
  margin: 0;
  margin-bottom: 16px;
  color: #221f26;
  font-family: "Open Sans";
  font-size: 20px;
  font-weight: 700;
  line-height: 30px;
}


.map__list {
  padding: 0;
  margin: 0;
  margin-bottom: 48px;
  list-style: none;
}

.map__list:last-child {
  margin-bottom: 0;
}

.map__item {
  margin-bottom: 16px;
}

.map__item:last-child {
  margin-bottom: 0;
}

.map__link {
  color: #86b53f;
  font-family: "Open Sans";
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.map__link:hover {
  text-decoration: underline;
}

.map__dropdown-icon {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: #86b53f;
  stroke-width: 1.5;
  margin-left: 4px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}


.map__link--active .map__dropdown-icon {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.map__sublist {
  padding: 0;
  padding-left: 32px;
  margin: 0;
  list-style: none;
  max-height: 0;
  overflow: hidden;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.map__subitem {
  margin-bottom: 16px;
}

.map__subitem:first-child {
  margin-top: 8px;
}

.map__subitem:last-child {
  margin-bottom: 0;
}

.map__subitem .map__link {
  font-size: 16px;
  line-height: 24px;
}

@media (max-width:767px) {
  .map {
    padding: 24px 0 32px
  }

  .map__title {
    font-size: 32px;
    line-height: 48px;
    margin-bottom: 8px;
  }

  .map__link {
    font-size: 16px;
    line-height: 24px;
  }

}



/* Страница map конец*/



/* Страница 404*/


.p404 {
  border-top: 1px solid #ffffff54;
  padding: 62px 0 104px;
  background-color: #373a48;
  min-height: calc(100vh - 152px);
  background-image: url('../img/p404-bg.png');
  background-repeat: no-repeat;
  background-size: 100%;
}

.p404__title {
  margin: 0;
  width: 0;
  height: 0;
}

.p404__img {
  display: block;
  margin: 0 auto 32px;
}

.p404__text {
  max-width: 691px;
  margin: 0 auto 48px;
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  line-height: 28px;
  color: #EDEEF3;
  text-align: center;
}

.p404__btn {
  margin: 0 auto;
}

@media (max-width:1199px) {
  .p404 {
    background-image: none;
  }
}


@media (max-width:767px) {
  .p404-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    min-height: calc(100vh - 74px);
  }

  .p404 {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
  }

  .p404__img {
    width: 80%;
  }

  .p404__text {
    font-size: 16px;
    line-height: 24px;
  }

}



/* Страница 404 конец*/









/* Страницы login signup forgot и confirm */



.autorisation-page {
  min-height: 100vh;
  background-color: #373A48;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.autorisation-page__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}


.autorisation-page__logo {
  width: 176px;
  height: 40px;
  fill: #fff;
  margin-bottom: 72px;
}

.autorisation-page__title {
  margin: 0;
  margin-bottom: 24px;
  text-align: center;
  color: #86b53f;
  font-family: 'Montserrat';
  font-size: 38px;
  font-weight: 700;
  line-height: 46px;
}

.autorisation-page__title a {
  color: #999ba4;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.autorisation-page__title a:hover {
  color: #86b53f;
}

.autorisation-page__form {
  max-width: 462px;
  margin-bottom: 12px;
}

.captcha-wrapper {
  margin-bottom: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.autorisation-page__form .form__submit {
  margin: 20px auto 0;
}

.autorisation-page__info {
  max-width: 677px;
  margin: 0 auto;
}

.autorisation-page__text {
  margin: 0;
  margin-bottom: 48px;
  color: #edeef3;
  font-family: "Open Sans";
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  text-align: center;
}

.autorisation-page__btn {
  margin: 0 auto;
}

.confirm-form {
  max-width: 366px;
  margin: 0 auto;
}

.confirm-form__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 48px;
}

.confirm-form__input {
  width: 52px;
  height: 52px;
  border-radius: 4px;
  margin-right: 12px;
  border: 2px solid #999ba4;
  background-color: transparent;
  text-align: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  outline: none;
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: bold;
  font-size: 18px;
  line-height: 28px;
  color: #86B53F;
}

.confirm-form__input:last-child {
  margin-right: 0;
}

.confirm-form__input:focus {
  border: 2px solid #86b53f;
}

@media (max-width:767px) {

  .autorisation-page__logo {
    margin-bottom: 24px;
  }

  .autorisation-page__title {
    font-size: 26px;
    line-height: 1.5;
    margin-bottom: 12px;
  }

  .confirm-form__input {
    width: 42px;
    height: 42px;
    margin-right: 6px;
  }

  .autorisation-page__text {
    font-size: 16px;
    line-height: 24px;
  }

}






/* Страницы login signup forgot и confirm конец*/














/* footer */

#return-to-top {
  position: fixed;
  bottom: 170px;
  right: 55px;
  background-color: #86b53f;
  width: 50px;
  height: 50px;
  display: block;
  text-decoration: none;
  display: none;
  -webkit-transition: all 0.3s linear;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid #86b53f;
}

#return-to-top svg {
  fill: #fff;
  margin: 0;
  position: relative;
  top: -2px;
  left: -2px;
  transform: rotate(180deg);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

#return-to-top:hover {
  background: #fff;
  border: 2px solid #86b53f;
}

#return-to-top:hover svg {
  fill: #86b53f;
}

.footer {
  background-color: #373a48;
  padding: 64px 0;
  overflow: hidden;
}

.footer__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}


.footer__presentation {
  -ms-flex-preferred-size: 265px;
  flex-basis: 230px;
  margin-right: 174px;
}

.footer__logo {
  margin-bottom: 24px;
  display: block;
}

.footer__logo svg {
  fill: #fdfdfd;
  width: 175px;
  height: 40px;
}

.footer__title {
  color: #edeef3;
  font-family: "Open Sans";
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  margin: 0;
  margin-bottom: 32px;
}

.footer-payment__title {
  color: #edeef3;
  font-family: "Open Sans";
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  margin: 0;
  margin-bottom: 4px;
}

.footer-payment__list {
  padding: 0;
  margin: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 -5px;
}

.footer-payment__icon {
  width: 24px;
  height: 24px;
  margin: 0 5px 8px;
}


.footer__nav {
  margin-right: 80px;
}


.foter-nav__title {
  margin: 0;
  margin-bottom: 16px;
  color: #fdfdfd;
  font-family: "Open Sans";
  font-size: 18px;
  font-weight: 700;
  line-height: 28px;
}

.foter-nav__list {
  padding: 0;
  padding: 0;
  list-style: none;
}

.foter-nav__item {
  margin-bottom: 8px;
}

.foter-nav__link {
  display: block;
  color: #edeef3;
  font-family: "Open Sans";
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.foter-nav__link:hover {
  text-decoration: underline;
  color: #86b53f;
}


.footer__contacts {
  margin-left: auto;
}

.footer-contacts__title {
  color: #fdfdfd;
  font-family: "Open Sans";
  font-size: 18px;
  font-weight: 700;
  line-height: 28px;
  margin: 0;
  margin-bottom: 16px;
}

.footer-contacts__text {
  color: #edeef3;
  font-family: "Open Sans";
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  margin: 0;
  margin-bottom: 25px;
}

.footer-contacts__list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer-contacts__item {
  margin-bottom: 12px;
}

.footer-contacts__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #edeef3;
  font-family: "Open Sans";
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

.footer-contacts__link:hover {
  text-decoration: underline;
  color: #86b53f;
}

.footer-contacts__icon {
  background-color: #86b53f;
  fill: #fff;
  border-radius: 50%;
  margin-right: 12px;
}

.footer__info {
  margin-top: 48px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.footer-copyright {
  color: #999ba4;
  font-family: "Open Sans";
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  margin: 0;
  margin-right: 194px;
}

.footer-documents__list {
  padding: 0;
  margin: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.footer-documents__item {
  margin-right: 32px;
}

.footer-documents__item:last-child {
  margin-right: 0;
}

.footer-documents__link {
  color: #999ba4;
  font-family: "Open Sans";
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  display: block;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.footer-documents__link:hover {
  text-decoration: underline;
  color: #86b53f;
}

/* scroll */
.scrollbar-inner > .scroll-element .scroll-bar {
  background-color: #86b53f;
}

.scrollbar-inner > .scroll-element:hover .scroll-bar {
  background-color: #86b53f;
  opacity: 1;
}

.scrollbar-inner > .scroll-element.scroll-draggable .scroll-bar {
  background-color: #86b53f;
  opacity: 1;
}

@media (max-width: 1199px) {
  .footer__wrapper {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .footer__presentation,
  .footer__nav {
    margin-right: 0;
  }

  .footer__contacts {
    margin-left: 0;
  }

  .footer-copyright {
    margin-right: auto;
  }

}

@media (max-width: 991px) {

  .footer__presentation,
  .footer__nav,
  .footer__contacts {
    -ms-flex-preferred-size: 48%;
    flex-basis: 42%;
    margin-bottom: 24px;
  }

  .footer__info {
    margin-top: 24px;
  }

  .footer-copyright {
    -ms-flex-preferred-size: 180px;
    flex-basis: 160px;
  }


  .footer-documents__item {
    margin-right: 12px;
  }

}


@media (max-width: 767px) {
  .footer__info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }


  .footer-copyright {
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    margin: 0 auto;
    text-align: center;
  }

  .footer-documents {
    margin-bottom: 48px;
    overflow-y: auto;
    width: calc(100% + 30px);
    margin-left: -15px;
  }


  .footer-documents__list {
    white-space: nowrap;
    padding: 0 15px;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    margin: 0 auto;
  }

}


@media (max-width: 540px) {
  .footer__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;

  }

  .footer__presentation,
  .footer__nav,
  .footer__contacts {
    text-align: center;
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
    margin: 0 auto 48px;
  }

  .footer__logo {
    margin-bottom: 8px;
  }

  .footer__title {
    max-width: 196px;
    font-size: 12px;
    line-height: 16px;
    opacity: 0.54;
    margin: 0 auto;
  }

  .footer__payment {
    display: none;
  }

  .footer__nav {
    display: none;
  }

  .footer-contacts__title,
  .footer-contacts__text {
    display: none;
  }

  .footer__info {
    margin-top: 0;
  }

  .footer-contacts__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  
  .footer-documents__list {
    flex-direction: column;
  }
}




/* footer конец*/





/*  mobile-menu */

.mobile-menu {
  display: none;
}

@media (max-width: 991px) {
  #return-to-top {
    right: 16px;
  }
}

@media (max-width: 767px) {
  .mobile-menu {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 7;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }

  .mobile-menu--active {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  .mobile-menu__wrapper {
    height: 100%;
    width: calc(100% - 56px);
    background-color: #373a48;
    padding: 16px;
    overflow-y: auto;
    overflow-x: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .mobile-menu__logo {
    margin-bottom: 12px;
    display: block;
  }

  .mobile-menu__logo svg {
    fill: #fdfdfd;
    width: 114px;
    height: 26px;
  }

  .mobile-menu__account {
    color: #86b53f;
    font-family: "Open Sans";
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    margin-bottom: 12px;
    display: block;
  }

  .mobile-menu__register {
    padding: 8px 20px;
    color: #fdfdfd;
    font-family: "Open Sans";
    font-size: 14px;
    font-weight: 400;
    line-height: 14px;
    display: inline-block;
    border-radius: 200px;
    background-color: #86b53f;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    margin-bottom: 12px;
  }

  .mobile-menu__nav {
    margin-bottom: auto;
  }

  .mobile-menu__list {
    padding: 16px 0;
    margin: 0 0 16px;
    list-style: none;
    border-top: 1px solid #86b53f;
    position: relative;
  }

  .mobile-menu__list:last-child {
    margin-bottom: 0;
  }

  .mobile-menu__list::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    top: -1px;
    left: -50%;
    background-color: #86b53f;
  }

  .mobile-menu__item {
    margin-bottom: 4px;
  }

  .mobile-menu__item--gap {
    margin-bottom: 8px;
  }

  .mobile-menu__item:last-child {
    margin-bottom: 0;
  }


  .mobile-menu__link {
    color: #edeef3;
    font-family: "Open Sans";
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;

  }

  .mobile-menu__icon {
    background-color: #86b53f;
    fill: #fff;
    border-radius: 50%;
    margin-right: 4px;
  }


  .mobile-menu__close {
    padding: 16px;
    border: none;
    background-color: #373a48;
    opacity: 0.88;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    outline: none;
  }


  .menu-close__icon {
    width: 24px;
    height: 24px;
    border: 1px solid #fdfdfd;
    border-radius: 4px;
    padding: 4px;
    fill: none;
    stroke: #fff;
    stroke-width: 1.5;
  }

}

/*  mobile-menu конец*/


/*confirm-email*/
.confirm-email__wrapper {
  border: 14px solid #86B53F;
  padding: 62px;
  text-align: center;
  margin: 60px 0;
}

.confirm-email__wrapper p {
  font-size: 18px;
  line-height: 28px;

  width: 78%;
  margin: 0 auto 40px;
}

.confirm-email__wrapper a.main-btn {
  margin: auto;
}

@media (max-width: 1199px) {
  .confirm-email__wrapper {
    padding: 44px;
  }

  .confirm-email__wrapper .ddos__title {
    font-size: 40px;
  }

  .confirm-email__wrapper p {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .confirm-email__wrapper {
    padding: 32px;
  }

  .confirm-email__wrapper .ddos__title {
    font-size: 32px;
  }

}

@media (max-width: 575px) {
  .confirm-email__wrapper {
    margin: 44px 0;
  }
}

@media (max-width: 425px) {
  .confirm-email__wrapper {
    padding: 20px 12px;
  }

  .confirm-email__wrapper .ddos__title {
    font-size: 28px;
    line-height: 36px;
  }

}

@media (max-width: 375px) {

  .confirm-email__wrapper .ddos__title {
    font-size: 26px;
    line-height: 36px;
  }

  .confirm-email__wrapper p {
    font-size: 16px;
    line-height: 24px;
  }

}
/*confirm-email конец*/
