:root {
  --min-width: 370px;
  --max-width: 1440px;

  --color-primary: #1c56b6;
  --color-primary-1: #1c3a78;
  --color-secondary-grey: #e4e7ed;
  --color-secondary-grey-1: #f1f5f7;
  --color-secondary-grey-2: #f2faff;
  --color-secondary-white: #ffffff;
  --text-color-prymary: #191e27;
  --text-color-secondary: #1c56b6;
  --text-color-white: #ffffff;
}

*::-webkit-input-placeholder,
*:-moz-placeholder,
*::-moz-placeholder,
*:-ms-input-placeholder {
  opacity: 1;
  color: var(--text-color-prymary);
}

button {
  cursor: pointer;
}

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
}

input {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

button,
textarea,
input.text,
input[type='text'],
input[type='button'],
input[type='submit'] {
  -webkit-appearance: none;
}

a,
button,
input,
img {
  transition: all 0.3s;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0 30px 15px;

  font-weight: normal;
  line-height: 100%;
}

.main-title {
  margin: 0;
  padding: 0;

  color: var(--color-primary-1);

  font-size: 38px;
  font-weight: 700;
  line-height: 120%;

  @media (max-width: 1023px) {
    font-size: 32px;
  }

  @media (max-width: 767px) {
    font-size: 28px;
  }
}

.secondary-title,
.secondary-title-1 {
  margin: 0;
  padding: 0;

  color: var(--color-primary-1);

  font-size: 36px;
  font-weight: 500;
  line-height: 120%;
}

.secondary-title-1 {
  margin: 16px 0 8px;

  color: var(--text-color-prymary);

  font-size: 28px;
}

.main-list {
}

.main-list li {
  position: relative;

  padding-left: 32px;
}

.main-list li::before {
  position: absolute;
  top: 2px;
  left: 0;

  display: block;

  width: 18px;
  height: 18px;

  content: ' ';

  background-image: url(../img/li.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

a {
  text-decoration: none;

  outline: none;
}

.main-link {
  color: var(--color-primary);
}

* {
  outline: none !important;

  -webkit-tap-highlight-color: transparent;
}

ul {
  margin: 0;
  padding: 0;
}
ul li {
  list-style-type: none;

  outline: none;
}
img {
  display: block;

  outline: none;
}
p {
  margin: 0;
  padding: 0;
}
form {
  margin: 0;
}

body {
  overflow-x: hidden;

  width: 100%;
  min-width: 370px;
  margin: 0;

  color: var(--text-color-prymary);
  background-color: var(--color-secondary-white);

  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  line-height: 150%;
}

.main-container {
  max-width: 1440px;
  margin: 0px auto;
}

/* Header "Begin" */
.header {
  position: relative;
  z-index: 1000;
  top: 0;
  left: 0;

  width: 100%;
  padding: 12px 0;

  transition: all 0.5s;

  background: var(--color-secondary-white);
}

.header.fixed {
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
}

.header__wrapper {
  position: sticky;
  top: 0;

  display: flex;
  flex-direction: column;
}

.header-contacts {
  display: flex;
  justify-content: space-between;

  margin-bottom: 24px;
}
.header-contacts__item {
  display: flex;
  align-items: center;
}
.header-contacts__item-icon {
  width: 22px;
  height: 22px;
  margin-right: 8px;
}
.header-contacts__item-link {
  color: var(--text-color-prymary);
}

.header-account {
  display: flex;
}

.header-mobile-menu {
  position: relative;

  display: none;

  gap: 16px;
}
.header-mobile-menu nav {
  width: 100%;
}
.header-mobile-menu__location,
.header-mobile-menu__phone {
  display: flex;
  align-items: center;
}
.header-mobile-menu__location-link,
.header-mobile-menu__phone-link {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 32px;
  height: 32px;
}
.header-mobile-menu__location-link-icon,
.header-mobile-menu__phone-link-icon {
  width: 24px;
  height: 24px;

  color: var(--color-primary);
}
.header-mobile-menu__button {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 32px;
  height: 32px;
  padding: 0;

  border: none;
  background: none;
}
.header-mobile-menu__button.opened {
  /* position: relative;
  top: 10px; */
}

.header-mobile-menu__overlay {
  position: fixed;

  display: flex;
  visibility: hidden;
  justify-content: end;

  transition: all 0.3s ease-in-out;

  opacity: 0;
  background-color: rgb(255 255 255 / 70%);

  inset: 0 0 0 0;
}
.header-mobile-menu__overlay.header-mobile-menu--open {
  visibility: visible;

  opacity: 1;
}
.header-mobile-menu--open .header-mobile-menu__inner {
  transform: translateX(0);

  opacity: 1;
}

.header-mobile-menu__inner {
  position: relative;

  display: flex;
  justify-content: flex-end;

  min-width: var(--min-width);
  max-width: 420px;
  height: 100%;

  transition: all 0.3s ease-in-out;
  transform: translateX(300px);

  opacity: 0;
  border-left: 1px solid #f0f0f0;
  background: var(--color-secondary-white);
}

.header-mobile-menu__container {
  margin-top: 80px;
}

.header-mobile-menu__button-close {
  position: absolute;
  top: 12px;
  right: 12px;
}
.header-mobile-menu__list {
  display: flex;
  overflow: scroll;
  flex-direction: column;

  height: 100%;
  /* margin-top: 80px; */
  padding: 16px 22px 16px 34px;

  border-top: 1px solid #f0f0f0;
  background-color: var(--color-secondary-white);

  font-size: 16px;
}
.header-mobile-menu__list-item {
  display: flex;
  flex-direction: column;

  padding-bottom: 18px;
}
.header-mobile-menu__list-item:last-child {
  padding-bottom: 0;
}
.header-mobile-menu__list-item.active {
  padding-bottom: 0;
}
.header-mobile-menu__list-item-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-mobile-menu__account {
  position: absolute;
  top: 20px;
  left: 32px;
}
.header-mobile-menu__list-item-link {
  display: flex;
  align-items: center;

  width: 100%;
  height: 24px;

  color: var(--text-color-prymary);

  font-size: inherit;
}
.header-mobile-menu__list-item-link:hover {
  color: var(--text-color-secondary);
}

@media (max-width: 1439px) {
}

@media (max-width: 1279px) {
}

@media (max-width: 1023px) {
  .header-contacts {
    display: none;
  }

  .header-account {
    display: none;
  }

  .header-mobile-menu {
    display: flex;
  }

  .header-mobile-menu__phone {
    display: flex;
    align-items: center;
  }
}

@media (max-width: 767px) {
}
/* Header "End" */

/* Header Menu "Begin" */
.main-menu {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.menu,
.submenu {
  display: flex;
  align-items: center;

  margin: 0;
  padding: 0;

  font-size: 16px;

  gap: 24px;
}

.menu__item,
.submenu__item {
  display: flex;
  align-items: center;
}

.menu__item:hover,
.submenu__item:hover {
  color: var(--color-primary);
}

.menu__item:hover .menu__item-link,
.submenu__item:hover .submenu__item-link {
  color: var(--color-primary) !important;
}

.menu__item-link,
.submenu__item-link {
  color: var(--text-color-prymary);

  font-size: inherit;
  font-weight: 600;
  line-height: 240%;
}

.submenu {
  justify-content: center;

  margin-top: 0 px;
}

.submenu__item-link {
  font-weight: 500;
}

@media (max-width: 1439px) {
}

@media (max-width: 1279px) {
}

@media (max-width: 1023px) {
  .menu,
  .submenu {
    display: none;
  }
}

@media (max-width: 767px) {
}
/* Header Menu "End" */

/*Style Sandwich*/
.sandwich span {
  display: block;
}
.sandwich {
  z-index: 20;

  display: -webkit-flex;
  display:    -moz-flex;
  display:     -ms-flex;
  display:      -o-flex;
  display:         flex;
  align-items: flex-start;
  flex: none;
  flex-direction: column;

  width: 24px;
  height: 24px;

  cursor: pointer;
}
.sw-topper {
  position: relative;
  top: 5px;

  display: block;

  width: 12px;
  height: 2px;
  margin: 0;

  transition: transform 0.5s, top 0.2s;

  border: medium none;
  border-radius: 4px;
  background-color: var(--color-primary);
}

.sw-bottom {
  position: relative;
  top: 9px;

  display: block;

  width: 18px;
  height: 2px;
  margin: 0;

  transition: transform 0.5s, top 0.2s;

  border: medium none;
  border-radius: 4px;
  background-color: var(--color-primary);
}

.sw-footer {
  position: relative;
  top: 13px;

  display: block;

  width: 22px;
  height: 2px;
  margin: 0;

  transition: transform 0.5s, top 0.2s;

  border: medium none;
  border-radius: 4px;
  background-color: var(--color-primary);
}
.sandwich.active .sw-footer {
  width: 22px;
}

.sandwich.active .sw-topper {
  top: 10px;

  width: 22px;

  transform: rotate(45deg);
}

.sandwich.active .sw-bottom {
  opacity: 0;
}
.sandwich.active .sw-footer {
  top: 6px;

  transform: rotate(-45deg);
}
.btn-main {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  height: 52px;
  padding: 0 40px;

  text-align: center;

  color: #ffffff;
  border: none;
  border-radius: 6px;
  background-color: #1c56b6;

  font-family: 'Montserrat';
  font-size: 16px;
  font-weight: 500;
}
.btn-main:hover {
  text-decoration: underline;

  background: #1c3a78;
}

.logo img {
  width: 166px;
  height: auto;
}

/* Dropdown "Begin" */
.dropdown {
  position: relative;

  cursor: pointer;
}
.dropdown.active .dropdown-menu {
  visibility: visible;

  transform: translateY(0px);

  opacity: 1;
}

.dropdown.active .dropdown-icon {
  transform: rotate(180deg);
}
.dropdown .dropdown-menu__list {
  display: none;
}
.dropdown.active .dropdown-menu__list {
  display: block;
}
.dropdown .dropdown-icon {
  width: 18px;
  height: 18px;

  transition: transform 0.3s;

  color: inherit;
}

.dropdown .dropdown-icon--left {
  margin-right: 4px;
}

.dropdown .dropdown-icon--right {
  margin-left: 4px;
}

.dropdown-menu {
  position: absolute;
  z-index: 1000;
  top: 70%;

  display: flex;
  visibility: hidden;

  transition: all 0.3s;
  transform: translateY(20px);

  opacity: 0;
}

.dropdown--mobile .dropdown-menu {
  position: static;

  transform: translateY(-20px);
}

.dropdown-menu__list {
  position: absolute;
  z-index: -1;

  width: max-content;
  min-width: 160px;
  max-width: 370px;
  margin-top: 12px;
  padding: 14px 24px;

  border: 1px solid var(--color-secondary-grey);
  border-radius: 4px;
  background: var(--color-secondary-white);
  box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.12);
}

.dropdown--mobile .dropdown-menu__list {
  position: static;

  min-width: auto;
  max-width: 100%;
  margin-top: 0px;
  padding: 18px 12px 6px;

  border: none;
  background: none;
  box-shadow: none;
}

.dropdown-menu__list-arrow {
  position: absolute;
  z-index: -1;
  top: -5px;

  width: 10px;
  height: 10px;
}

.dropdown--mobile .dropdown-menu__list-arrow {
  display: none;
}

.dropdown-menu__list-arrow::before {
  position: absolute;
  z-index: -1;

  box-sizing: border-box;
  width: 10px;
  height: 10px;

  content: ' ';
  transform: rotate(45deg);

  border: 1px solid var(--color-secondary-grey);
  border-right-color: transparent;
  border-bottom-color: transparent;
  border-top-left-radius: 2px;
  background: var(--color-secondary-white);
}

.dropdown-menu__list-item {
  margin-bottom: 12px;
}
.dropdown-menu__list-item a {
  display: block;

  color: var(--text-color-prymary);
}
.dropdown-menu__list-item:hover a {
  color: var(--color-primary);
}

.dropdown-menu__list-item:last-child {
  margin-bottom: 0px;
}

.dropdown--mobile .dropdown-menu__list-item {
  margin-bottom: 16px;
}
/* Dropdown "End" */

.header .btn-main {
  height: 40px;
  padding: 0 16px;

  font-size: 13px;
  font-weight: 600;
}

.btn-main.btn-main_border {
  color: #1c56b6;
  border: 1px solid #1c56b6;
  background-color: #ffffff;
}
.btn-main.btn-main_border:hover {
  text-decoration: none;

  color: #1478fd;
  border-color: #1478fd;
  box-shadow: 0 0 0 1px #1478fd;
}
.btn-main.btn-main_page {
  background: #ff6f2c;
}
.btn-main.btn-main_page:hover {
  text-decoration: none;

  background: #fa4f00;
}

.btn-tg {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 35px;
  height: 35px;

  color: #ffffff;
  border: 1px solid #1393e2;
  border-radius: 50%;
  background: #1393e2;

  font-size: 18px;
}
.btn-tg:hover {
  color: #1393e2;
  background: #ffffff;
}

.billbord {
  padding-top: 18px;
}

.billbord__container {
  display: flex;
  flex-direction: column-reverse;
}

.billbord__header {
  padding-top: 32px;
}

.banner__main {
  display: flex;
  align-items: flex-start;
  flex-direction: column;

  height: 500px;
  padding: 52px 47px;

  border-radius: 16px;
  background: #e7e7e7;
  background-image: url(../img/banner_main1.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.title-big {
  margin-bottom: 47px;

  font-size: 70px;
  font-weight: 800;
  line-height: 86%;
}
.title-middle {
  font-size: 24px;
  font-weight: 600;
  line-height: 150%;
}
.banner__main .btn-main {
  margin-top: auto;
  padding: 0 28px;
}
.banner__main .title-big {
  padding: 0;
}
.banner__main .title-big,
.banner__main .title-middle {
  max-width: 356px;
}
.banner__small {
  position: relative;
  z-index: 1;

  display: block;

  height: 190px;
  margin-bottom: 22px;
  padding: 13px 24px;

  color: #000000;
  border-radius: 16px;
  background: #e7e7e7;

  font-weight: 600;
  line-height: 162%;
}
.banner__small:last-child {
  margin-bottom: 0;
}
.banner__image {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;

  display: block;

  width: 100%;
  height: 100%;

  border-radius: 16px;
}
.banner__image img {
  width: 100%;
  height: 100%;

  border-radius: 16px;

  font-family: 'object-fit: cover;';

  object-fit: cover;
}
.subtitle-main {
  font-size: 22px;
  font-weight: 800;
  line-height: 136%;
}
.banner__small .subtitle-main {
  display: block;

  max-width: 147px;
}
.banner__small .subtitle-main span {
  text-transform: uppercase;
}
.banner__small:nth-child(1) {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.banner__small:nth-child(2) {
  height: 288px;
}
.banner__small .title-middle {
  display: block;

  width: 100%;
  margin-bottom: 14px;

  font-weight: 800;
  line-height: 133%;
}

.tarifs {
  padding-top: 52px;
}
.filter-main {
  display: flex;
  align-items: center;
  justify-content: space-between;

  margin-bottom: 24px;
}
.filter-main__item:nth-child(3) {
  display: flex;
  align-items: center;
  flex: 0.5;
  justify-content: flex-end;
}
.tabs-filter {
  display: flex;
  align-items: center;

  gap: 16px;
}
.tabs-filter a {
  display: flex;
  align-items: center;
  justify-content: center;

  height: 48px;
  padding: 0 18px;

  text-align: center;

  color: #1c56b6;
  border: 1px solid #1c56b6;
  border-radius: 6px;

  font-size: 13px;
  font-weight: 600;
}
.tabs-filter a:hover,
.tabs-filter .active a {
  color: #ffffff;
  background-color: #1c56b6;
}
.tabs-filter_main a:hover,
.tabs-filter_main .active a {
  border-color: #ff6f2c;
  background-color: #ff6f2c;
}
.item-form {
  margin-bottom: 20px;
}
.item-form input,
.item-form textarea,
.item-form .jq-selectbox__select-text {
  display: flex;
  align-items: center;
  justify-content: flex-start;

  width: 100%;
  height: 48px;
  padding: 0 16px;

  cursor: pointer;
  transition: all 0.3s;

  color: #1c56b6;
  border: 1px solid #e3e6e8;
  border-radius: 6px;

  font-size: 13px;
  font-weight: 600;
}
.item-form .jqselect:hover .jq-selectbox__select-text {
  color: #1478fd;
  border-color: #1478fd;
  box-shadow: 0 0 0 1px #1478fd;
}
.item-form .jq-selectbox__select-text {
  padding-right: 45px;
}
.item-form .jqselect {
  display: block;

  width: 100%;
}

.filter-main__selects + .filter-main__item .item-form {
  min-width: 200px;
}
.item-form .jq-selectbox__dropdown {
  top: 100% !important;
  bottom: auto !important;

  overflow: auto;

  width: auto !important;
  min-width: 100%;
  max-height: 300px;

  white-space: nowrap;

  border: 1px solid #e3e6e8;
  border-radius: 6px;
  background: #ffffff;

  font-size: 13px;
  line-height: 140%;
}
.item-form .jq-selectbox__dropdown li {
  padding: 10px 20px;

  cursor: pointer;
  transition: all 0.3s;
}
.item-form .jq-selectbox__dropdown li:hover {
  background-color: #f3f3f3;
}
.item-form .jq-selectbox__trigger {
  position: absolute;
  top: 0;
  right: 15px;
  bottom: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  width: 19px;
  height: 19px;
  margin: auto;

  cursor: pointer;

  color: #1c3a78;

  font-family: 'Font Awesome 5 Pro';
  font-size: 12px;
  font-weight: 700;
  font-style: normal;
  font-variant: normal;
  line-height: 1;

  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: auto;
}
.item-form .jq-selectbox__trigger:before {
  content: '\f078';
}
.item-form select {
  position: absolute;

  opacity: 0;
}
.row.row_main {
  margin-bottom: -30px;
}
.row.row_main > div {
  margin-bottom: 30px;
}

.tariffs-slider {
  display: flex;
  overflow: hidden;
}
/* .tariffs-slider.not-initialized .item-tarif{
  
} */
.tariffs-slider.not-initialized > div {
  width: 25%;
  max-width: 350px;
}
.page-tarifs .row{
  flex-wrap: nowrap;
}

.page-tarifs .row > div{
  padding: 0 !important;
}

section.page-tarifs {
  opacity: 0;
  transform: translateY(-40px);
  visibility: hidden;
  transition:
    opacity .45s ease,
    transform .45s ease;
}

section.page-tarifs.is-loaded {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}
/*
.tariffs-slider .slick-list {
  margin: 0 -10px;
} */

.tariffs-slider .slick-list {
  width: 100%;
}

.item-tarif {
  position: relative;
  display: flex;
  align-items: flex-start;
  flex-direction: column;

  gap: 20px;

  /* width: 100%; */
  min-height: 100%;
  margin: 15px 15px 62px 15px;

  /* padding: ; */

  transition: all 0.4s;

  border: 1px solid #e3e6e8;
  border-radius: 14px;
  background: #ffffff;

  padding: 30px 20px;

  box-shadow: 0 0 3px #c7c8c9;

  @media(max-width: 767px) {
    margin-left: 5px !important;
  }
}
.not-initialized .item-tarif {
  min-height: 0 !important;
}
.not-initialized .slick-track{
  margin: auto;
}
.item-tarif.item-tarif_premium {
  background:
  radial-gradient(circle at 18% 22%, rgba(255,255,255,.045) 0%, transparent 30%),
  radial-gradient(circle at 85% 88%, rgba(30,58,120,.18) 0%, transparent 28%),
  linear-gradient(145deg, #222833 0%, #141923 35%, #0b1018 68%, #06090f 100%);
  color: white;
}
.item-tarif.item-tarif_premium .item-tarif__name path{
  fill: #ffffff;
}
.item-tarif.item-tarif_premium .btn-main{
  transition: all 0.4s;
  border: 1px solid rgba(214, 180, 92, .9);
background: linear-gradient(180deg, rgba(33,39,53,.92) 0%, rgba(24,29,40,.96) 100%);
box-shadow:
  0 0 0 1px rgba(255, 214, 120, .18),
  0 0 14px rgba(255, 196, 79, .18),
  0 0 26px rgba(255, 196, 79, .12),
  inset 0 1px 0 rgba(255,255,255,.05),
  inset 0 -8px 18px rgba(0,0,0,.28);
}
.item-tarif.item-tarif_premium .btn-main:hover{
  box-shadow:
  0 0 0 2px rgba(255, 214, 120, .18),
  0 0 14px rgba(255, 196, 79, .18),
  0 0 26px rgba(255, 196, 79, .12),
  inset 0 1px 0 rgba(255,255,255,.05),
  inset 0 -8px 18px rgba(0,0,0,.28);
}
.item-tarif svg {
  transition: all 0.4s;
}
.item-tarif svg .speed-icon {
  transition: all 0.4s;
}
.item-tarif:hover {
  box-shadow: 0px 0px 15px rgba(28, 86, 182, 0.1);
}
.item-tarif:hover img {
  transform: scale(1.2);
}
.item-tarif:hover svg {
  transform: scale(1.2);
}
.item-tarif svg .speed-icon {
  transform: rotate(-90deg);
  transform-origin: 12px 18px;
}
.item-tarif:hover .speed-icon {
  transform: rotate(90deg);
}

.row > div:nth-child(1) .item-tarif:hover svg .speed-icon {
  transform: rotate(-40deg);
}
.row > div:nth-child(2) .item-tarif:hover svg .speed-icon {
  transform: rotate(0deg);
}
.row > div:nth-child(3) .item-tarif:hover svg .speed-icon {
  transform: rotate(40deg);
}
.item-tarif svg circle,
.item-tarif svg path {
  transition: 0.4s all;
}
.item-tarif:hover svg circle {
  stroke: #ff6f2c;
}
.item-tarif:hover svg path {
  stroke: #ff6f2c;
}
.item-tarif__head {
  position: relative;

  width: 100%;

  text-align: left;
  text-transform: uppercase;

  font-size: 26px;
  font-weight: 700;

  margin-right: 40px;

  padding: 12px 48px 12px 14px;
      border-radius: 10px;
    background: rgba(37, 99, 235, 0.06);
    border: 1px solid rgba(37, 99, 235, 0.1);
    color: var(--color-text);
}
.item-tarif__head::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    bottom: 8px;
    width: 3px;
    border-radius: 2px;
    background: linear-gradient(180deg, #2563eb 0%, #0ea5e9 100%);
}
.item-tarif_check .item-tarif__head::after {
  position: absolute;
  top: 0;
  right: 21px;
  bottom: 0;

  display: block;

  width: 24px;
  height: 24px;
  margin: auto;

  /* content: ' '; */

  background-image: url(../img/check_new.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.item-tarif__content {
  display: flex;
  align-items: flex-start;
  flex: 1;
  flex-direction: column;

  width: 100%;
}
.item-tarif__line {
  display: flex;
  align-items: center;

  width: 100%;
  margin-bottom: 26px;
}
.item-tarif__name {
  display: flex;
  align-items: center;
  flex: none;
  justify-content: flex-start;

  height: 44px;
  margin-right: 25px;
  padding: 0 10px;

  text-align: center;

  color: #1c3a78;
  border-radius: 6px;

  font-size: 14px;
  font-weight: 500;
}
.item-tarif__name img {
  flex: none;

  width: 24px;
  margin-right: 10px;
}
.item-tarif__name svg{
  width: 24px;
  height: 24px;
  margin-right: 10px;
  flex: none;
}
.item-tarif__line.muted .item-tarif__name img {
  filter: brightness(0) saturate(100%) invert(50%);
}
.item-tarif__line.muted {
    color: #555555;
}
.item-tarif_premium .item-tarif__line.muted{
  color: #cdcdcd;
}
.item-tarif__value strong {
  white-space: nowrap;

  font-size: 28px;
  font-weight: 600;
  line-height: 110%;
}
.item-tarif__value.tv_hours strong {
  font-size: 22px;
}
.item-tarif__value {
  font-weight: 500;
}
.item-tarif__bottom {
  width: 100%;
  margin-top: auto;
  margin-top: 40px;
}
.item-tarif .btn-main {
  width: 100%;
  height: 44px;

  font-size: 13px;
  background: linear-gradient(90deg, #ff7a00 0%, #ff4d4d 100%);
  transition: all 0.4s;
}
.item-tarif .btn-main:hover {
  background: linear-gradient(90deg, #ff4d4d 0%, #ff7a00 100%);
}
.bottom-button {
  padding-top: 52px;

  text-align: center;
}
.bottom-button .btn-main {
  padding: 0 26px;
}

.callback {
  padding-top: 50px;
}
.callback__block {
  padding: 56px 10px;

  border: 3px solid #1c56b6;
  border-radius: 16px;
  background: #f2faff;
}
.callback__block .row {
  align-items: center;
}
.callback__title {
  text-align: right;

  color: #1c3a78;

  font-size: 26px;
  font-weight: 700;
}
.line-form {
  display: flex;
  align-items: center;

  gap: 16px;
}
.item-form input,
.item-form textarea {
  color: #191e27;

  font-weight: 400;
}
.line-form .item-form {
  width: 284px;
  margin: 0;
}
.line-form .item-form:nth-child(2) {
  width: 206px;
}
.line-form .btn-main {
  height: 48px;
  margin-right: auto;
  margin-left: 15px;

  font-size: 13px;
}
.checkbox {
  display: flex;
  justify-content: center;

  text-align: left;
  letter-spacing: normal;

  opacity: 0.5;

  font-size: 12px;
  font-weight: 400;
  line-height: 130%;
}
.checkbox label input {
  position: absolute;
  z-index: -1;

  width: 1px !important;
  height: 1px !important;
  margin: 12px 2px 0 7px !important;

  opacity: 0 !important;
}
.checkbox label > span {
  position: relative;

  display: block;

  padding: 3px 0 0 32px;

  cursor: pointer;
}
.checkbox label > span:before {
  position: absolute;
  top: 2px;
  left: 0;

  width: 19px;
  height: 19px;

  content: '';
  transition: 0.2s;

  border: 1px solid #191e27;
}
.checkbox label > span:after {
  position: absolute;
  top: 2px;
  left: 0px;

  display: -webkit-flex;
  display:    -moz-flex;
  display:     -ms-flex;
  display:      -o-flex;
  display:         flex;
  align-items: center;
  justify-content: center;

  width: 19px;
  height: 19px;

  content: '';
  content: '\f00c';
  transition: 0.2s;

  opacity: 0;
  color: #191e27;
  background-image: none;

  font-family: 'Font Awesome 5 Pro';
  font-size: 10px;
  font-weight: 700;
  font-style: normal;
  font-variant: normal;
  line-height: 1;

  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: auto;
}
.checkbox label input:checked + span:after {
  opacity: 1;
}
.line-form .checkbox {
  max-width: 215px;
  margin: 0 auto;
}

.services {
  padding-top: 60px;
}
.item-service {
  height: 100%;
  position: relative;
  z-index: 1;

  /* height: 310px; */
  padding: 30px;

  transition: all 0.5s;

  border-radius: 16px;
  background: #e3e6e8;

  font-weight: 500;
  line-height: 175%;
}
.item-service.item-service_help{
  display: flex;
  align-items: center;
}
/* .item-service__bg::before {
	position: absolute;
	display: block;
	content: " ";
	width: 1100px;
	height: 1100px;
	top: -200px;
	right: -200px;
	border-radius: 50%;
	background: #1C3A78;
	transition: all 1.5s;
	transform: scale(0);
	z-index: -1;
	transform-origin: 100% 0;
} */
.item-service__bg {
  position: absolute;
  top: 0;
  left: 0;

  display: block;
  overflow: hidden;

  width: 100%;
  height: 100%;

  pointer-events: none;

  border-radius: 16px;
}
.item-service:hover .item-service__bg::before {
  transform: scale(1.04);
}
.item-service:hover {
  transform: scale(1.04);

  box-shadow: 0 15px 25px #d2e7f5;
}
/* .item-service:hover .btn-main.btn-main_block {
	background: transparent;
	border-color: #fff;
	color: #fff;
	text-decoration: none;
}
.item-service:hover,
.item-service:hover .item-service__news,
.item-service:hover .item-service__date,
.item-service:hover .title-block {
	color: #fff;
} */
.item-service__head {
  display: flex;
  align-items: center;
  justify-content: space-between;

  margin-right: -15px;
  margin-bottom: 23px;
}
.title-block {
  transition: all 1.5s;

  color: #1c3a78;

  font-size: 32px;
  font-weight: 700;
}
.item-service .btn-main {
  height: 40px;
  padding: 0 26px;

  transition: all 1.5s;

  font-size: 13px;
  font-weight: 500;
}
.item-service_actions .title-block {
  color: #1c3a78;
}
.bg-actions {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;

  width: 100%;
  height: 100%;

  border-radius: 16px;
  background-image: url(../img/service_actions.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.item-service.item-service_actions {
  transition: all 0.5s;

  background-color: #f2faff;
}
.item-service_actions:hover .title-middle p {
  color: #ffffff;
}
.item-service .title-middle {
  margin-bottom: 24px;
}
.item-service.item-service_actions p {
  max-width: 428px;
}
.item-service__link {
  position: absolute;
  top: 0;
  left: 0;

  width: 100%;
  height: 100%;

  border-radius: 16px;
}
.item-service .btn-main {
  position: relative;
  z-index: 3;
}
.item-service__wrap {
  display: flex;
  align-items: flex-start;
}
.item-service__content {
  flex: 1;
}
.item-service__image {
  flex: none;

  width: 200px;
  margin-right: 25px;
}
.item-service__image img {
  width: 100%;
}
.item-service_equipment .item-service__image {
  margin-top: -15px;
  margin-bottom: -20px;
  margin-left: -30px;
}
.item-service_help .item-service__content > .btn-main,
.item-service_equipment .item-service__content > .btn-main {
  margin-top: 30px;
}
.btn-main.btn-main_block {
  color: #1c3a78;
  border: 1px solid transparent;
  background-color: #ffffff;
  /* text-decoration: underline; */
}
.btn-main.btn-main_block:hover {
  text-decoration: none;

  color: #1c3a78;
  border-color: #1c3a78;
  background-color: transparent;
}
.item-service__content > .btn-main {
  padding: 0 16px;
}
.item-service p a {
  text-decoration: underline;

  color: #1478fd;
}
.item-service_help .item-service__image {
  width: 211px;
  margin-top: -49px;
  margin-left: -30px;
}
.item-service_news {
  background: #f2faff;
}
.item-service__news {
  transition: all 1.5s;

  color: #191e27;
}
.item-service__news .title-middle {
  display: block;

  width: 100%;
}
.item-service__text {
  display: block;

  max-width: 574px;
}
.item-service__date {
  display: block;

  margin-top: 15px;

  transition: all 1.5s;

  color: #1478fd;
}

.advantages__image img {
  width: 1141px;
}
.advantages__image {
  margin-left: -239px;
}
.item-advantage {
  min-height: 100%;
  padding: 30px 20px;

  transition: 0.4s all;

  border-radius: 8px;
  background: #f0f3f4;

  font-size: 14px;
  font-weight: 500;
  line-height: 157%;
}
.item-advantage__icon {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 43px;
  height: 43px;
  margin-bottom: 21px;
}
.item-advantage__icon img {
  width: 100%;
  height: auto;
}
.item-advantage:hover {
  transform: translateY(-10px);

  box-shadow: 0px 11px 18px -5px rgba(122, 122, 122, 1);
}
.row.row_advantages {
  margin: 0 -13px;
  margin-bottom: -26px;
}
.row.row_advantages > div {
  margin-bottom: 26px;
  padding: 0 16px;
}

.about {
  position: relative;

  overflow: hidden;

  padding-top: 11px;
  padding-bottom: 74px;

  line-height: 162%;
}
.title-section {
  color: #1c3a78;

  font-size: 56px;
  font-weight: 700;
  line-height: 118%;
}
.about .title-section {
  margin-bottom: 18px;
}
.about p {
  max-width: 702px;
}
.about p strong {
  font-weight: 600;
}
.title-small {
  font-size: 20px;
  font-weight: 600;
  line-height: 120%;
}
.about .title-small {
  margin-top: 57px;
  margin-bottom: 23px;
}
.about ul {
  display: grid;

  font-weight: 500;

  grid-template-columns: 1.15fr 0.85fr;
}
.about ul li {
  position: relative;

  margin-bottom: 20px;
  padding-left: 43px;
}
.about ul li::before {
  position: absolute;
  top: 2px;
  left: 0;

  display: block;

  width: 18px;
  height: 18px;

  content: ' ';

  background-image: url(../img/li.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.title-about {
  font-size: 28px;
  font-weight: 600;
  line-height: 136%;
}
.about .title-about {
  max-width: 800px;
  margin-top: 50px;
}
.about__image {
  position: relative;
  z-index: -1;

  margin-top: 28px;
  margin-left: -169px;
}

.home-noname-text {
  padding: 48px 0 0;

  font-size: 16px;
  line-height: 140%;
}

.home-noname-text a {
  color: var(--color-primary);
}

/* Главная страница - блок "Услуги интернет-провайдера GigaNet" */
.home-services {
  padding-top: 74px;
}
.home-services__inner {
  padding: 32px;

  border-radius: 16px;
  background: var(--color-secondary-grey-2);
}
.home-services__content {
  width: 75%;
  padding-top: 32px;

  @media (max-width: 1023px) {
    width: 100%;
  }
}

/* Главная страница - блок "Почему нам доверяют" */
.home-trust {
  padding-bottom: 74px;
}
.home-trust__inner {
  padding: 32px;

  border-radius: 16px;
  background: var(--color-secondary-grey-1);
}
.home-trust__content {
  width: 75%;
  padding-top: 32px;

  @media (max-width: 1023px) {
    width: 100%;
  }
}
.home-trust__content a {
  color: var(--color-primary);
}
.home-trust .main-list {
  margin: 0 18px 0;
  padding: 14px 0;
}

.reviews {
  padding-bottom: 74px;
}
.reviews .title-page {
  margin-bottom: 44px;
}
.title-page {
  color: #1c3a78;

  font-size: 36px;
  font-weight: 500;
  line-height: 102%;
}
.rating {
  display: flex;
  align-items: center;
}
.rating {
  display: flex;
  align-items: center;
  flex: none;
}
.rating__item {
  margin-right: 6px;

  transition: all 0.3s;

  color: #b5b2b2;

  font-size: 18px;
}
.rating_1 > .rating__item:nth-child(1) {
  color: #fdb833;
}
.rating_2 > .rating__item:nth-child(-n + 2) {
  color: #fdb833;
}
.rating_3 > .rating__item:nth-child(-n + 3) {
  color: #fdb833;
}
.rating_4 > .rating__item:nth-child(-n + 4) {
  color: #fdb833;
}
.rating_5 > .rating__item:nth-child(-n + 5) {
  color: #fdb833;
}
.rating__item.active {
  color: #fdb833;
}
.slider-reviews .slick-track {
  display: flex !important;
}
.slider-reviews .slick-slide {
  height: inherit !important;
  padding: 0 15px;
}
.slider-reviews:not(.slick-initialized) > li:not(:first-child) {
  display: none;
}
.slider-reviews .slick-list {
  margin: 0 -15px;
}
.item-review {
  min-height: 100%;
  padding: 24px 47px;
  padding-right: 26px;
  padding-bottom: 37px;

  border-radius: 16px;
  background: #f1f4f7;

  line-height: 175%;
}
.item-review__head {
  display: flex;
  align-items: center;
  justify-content: space-between;

  margin-bottom: 17px;
}
.item-review__info {
  display: flex;
  align-items: center;
}
.item-review__image {
  flex: none;

  width: 60px;
  height: 60px;
  margin-right: 16px;

  border-radius: 50%;
}
.item-review__image img {
  width: 100%;
  height: 100%;

  border-radius: 50%;

  font-family: 'object-fit: cover;';

  object-fit: cover;
}
.item-review__title {
  font-size: 18px;
  font-weight: 600;
  line-height: 178%;
}
.item-review__date {
  font-size: 14px;
}
.slider-reviews {
  padding-bottom: 76px;
}
.slick-arrow {
  top: auto;
  right: 0;
  bottom: 0;
  left: auto;

  display: flex;
  align-items: center;
  justify-content: center;

  width: 50px;
  height: 46px;

  cursor: pointer;
  transition: all 0.3s;
  transform: none;

  color: #1c56b6 !important;
  border-radius: 0 6px 6px 0;
  background: #e3e6e8;

  font-size: 14px;
}
.slick-prev {
  right: 51px;

  border-radius: 6px 0 0 6px;
}
.slick-arrow::before {
  display: none;
}
.slick-arrow:hover {
  color: #ffffff !important;
  background: #1c56b6;
}
.slick-dots {
  bottom: 15px;
  left: 0;

  width: 100%;
}
.slick-dots li {
  width: 6px;
  height: 6px;
  margin: 0 6px;

  transition: all 0.3s;
}
.slick-dots li button {
  width: 6px;
  height: 6px;
  padding: 0;

  transition: all 0.3s;

  opacity: 1;
  border: none;
  border-radius: 6px;
  background-color: #1c3a78;
}
.slick-dots li button:hover,
.slick-dots li.slick-active button {
  background: #1c56b6;
}
.slick-dots li.slick-active,
.slick-dots li.slick-active button {
  width: 36px;
}
.slick-dots li button::before {
  display: none;
}

.footer {
  padding-top: 42px;

  color: #ffffff;
  background-color: #191e27;

  font-size: 14px;
  line-height: 160%;
}

.footer-socials {
  margin-bottom: 24px;

  @media (max-width: 991px) {
    margin-top: 24px;
  }
}

.footer-payments {
}

.footer__contact a {
  display: inline-block;

  vertical-align: middle;

  color: #ffffff;

  font-size: 24px;
  font-weight: 600;
  line-height: 140%;
}
.footer__contact {
  margin-bottom: 19px;
}
.footer .logo {
  display: inline-block;

  margin-top: -10px;
  margin-bottom: 27px;

  vertical-align: middle;
}
.footer__contact:last-child {
  margin-bottom: 0;
}
.footer__name,
.footer__title {
  margin-bottom: 16px;

  font-size: 16px;
  font-weight: 600;
  line-height: 130%;
}
.footer__nav li {
  margin-bottom: 18px;
}
.footer__nav a {
  color: #ffffff;
  border-bottom: 1px solid transparent;
}
.footer__nav a:hover {
  border-color: #ffffff;
}
.list-socials {
  display: flex;
  align-items: center;

  gap: 8px;
}
.list-socials img {
  width: 35px;
}

.footer__name:not(:first-child) {
  margin-top: 32px;
}
.list-payments {
  display: flex;
  align-items: center;
  flex-wrap: wrap;

  gap: 22px;
}
.footer-bottom {
  margin-top: 40px;
  padding: 10px 0;

  color: #e3e6e8;
  border-top: 1px solid rgba(227, 230, 232, 0.3);
}
.create {
  display: flex;
  align-items: center;
}
.create a {
  margin-left: 15px;
}
.footer-bottom a {
  color: #e3e6e8;
}
.footer-bottom a:hover {
  color: #ffffff;
}
.btn_top {
  position: relative;
  z-index: 7;

  display: -webkit-inline-flex;
  display:    -moz-inline-flex;
  display:     -ms-inline-flex;
  display:      -o-inline-flex;
  display:         inline-flex !important;
  float: right;
  align-items: center;
  justify-content: center;

  width: 40px;
  height: 40px;

  -webkit-transition: all 0.3s;
       -o-transition: all 0.3s;
          transition: all 0.3s;
  text-align: center;

  color: #0c3259 !important;
  border-radius: 50%;
  background-color: #ffffff;

  font-size: 18px;
}
.btn_top:hover {
  opacity: 0.8;
}
.footer__title i {
  display: none;
}
.row > div:nth-child(2) .footer__column {
  margin-left: 60px;
}
.row > div:nth-child(4) .footer__column,
.row > div:nth-child(3) .footer__column {
  margin-left: 30px;
}
.menu-overlay {
  display: none;
}

.page-sale {
  padding-bottom: 78px;
}
.title-main {
  padding: 0;

  color: #1c3a78;

  font-size: 40px;
  font-weight: 700;
  line-height: 165%;
}
.page-links {
  display: flex;
  align-items: center;
  justify-content: center;

  margin-bottom: 48px;

  gap: 16px;
}
.page-links a {
  position: relative;
  z-index: 2;

  display: flex;
  align-items: center;
  justify-content: center;

  height: 48px;
  padding: 0 18px;

  text-align: center;

  color: #1c56b6;
  border: 1px solid #1c56b6;
  border-radius: 6px;

  font-size: 13px;
  font-weight: 600;
}
.page-links a:hover,
.page-links .active a {
  color: #ffffff;
  background: #1c56b6;
}
.item-sale {
  display: flex;
  align-items: flex-start;
  flex-direction: column;

  min-height: 100%;

  transition: all 0.5s;

  border-radius: 16px;
  background: #f2faff;

  line-height: 175%;
}
.item-news:hover,
.item-sale:hover {
  transform: scale(1.04);

  box-shadow: 0 15px 25px #d2e7f5;
}
.item-sale__image {
  position: relative;

  overflow: hidden;

  width: 100%;
  height: 344px;

  border-radius: 16px 16px 0 0;
}
.item-sale__image img {
  width: 100%;
  height: 100%;

  border-radius: 16px 16px 0 0;

  font-family: 'object-fit: cover;';

  object-fit: cover;
}
.item-sale__image::after {
  position: absolute;
  top: 0;
  left: 0;

  display: block;

  width: 100%;
  height: 100%;

  content: ' ';

  border-radius: 16px 16px 0 0;
  background-image: url(../img/line_sale1.svg);
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: 456px auto;
}
.row_main > div:nth-child(3) .item-sale__image::after,
.row_main > div:nth-child(2) .item-sale__image::after {
  background-image: url(../img/line_sale2.svg);
  background-repeat: no-repeat;
  background-position: left 20px;
  background-size: 710px auto;
}
.item-sale__content {
  display: flex;
  align-items: flex-start;
  flex: 1;
  flex-direction: column;

  width: 100%;
  padding: 20px 38px;
  padding-bottom: 24px;
}
.item-sale__date {
  display: block;

  width: 100%;
  margin-bottom: 6px;

  color: #1c3a78;

  font-weight: 500;
}
.item-sale__title {
  margin-bottom: 29px;

  color: #191e27;

  font-size: 22px;
  font-weight: 600;
  line-height: 145%;
}
.item-sale p {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;

  margin-bottom: 16px;

  -webkit-line-clamp: 2;
}
.item-news .btn-main,
.item-sale .btn-main {
  height: 44px;
  margin-top: auto;
  padding: 0 16px;

  font-size: 14px;
}
.pager {
  position: relative;

  display: flex;
  align-items: center;
  justify-content: center;

  max-width: 100%;
  height: 46px;
  margin-top: 70px;
}
.page-numbers {
  margin: 0 15px;

  color: #191e27;

  font-weight: 400;
}
.page-numbers:hover,
.page-numbers.current {
  color: #1c56b6;
}
.page-numbers.current {
  font-weight: 600;
}
.prev.page-numbers,
.next.page-numbers {
  position: absolute;
  top: 0;
  left: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  width: 50px;
  height: 46px;
  margin: 0;

  color: #1c56b6;
  border-radius: 6px 0 0 6px;
  background: #e3e6e8;

  font-size: 14px;
}
.next.page-numbers {
  right: 0;
  left: auto;

  border-radius: 0 6px 6px 0;
}
.prev.page-numbers:hover,
.next.page-numbers:hover {
  color: #ffffff;
  background: #1c56b6;
}
.page-news {
  padding-bottom: 74px;
}
.page-news .title-main {
  margin-bottom: 40px;
}
.item-news {
  display: flex;
  align-items: flex-start;
  flex-direction: column;

  min-height: 100%;
  padding: 24px 26px;

  transition: all 0.5s;

  border-radius: 16px;
  background: #f2faff;

  font-weight: 500;
}
.item-news__image {
  display: block;

  width: 100%;
  height: 268px;
  margin-bottom: 10px;

  border-radius: 16px;
}
.item-news__image img {
  width: 100%;
  height: 100%;

  border-radius: 16px;

  font-family: 'object-fit: cover;';

  object-fit: cover;
}
.item-news__date {
  width: 100%;
  margin-bottom: 6px;

  color: #1c3a78;

  line-height: 175%;
}
.item-news__title {
  display: block;

  width: 100%;
  max-width: 370px;
  margin-bottom: 20px;

  color: #191e27;

  font-size: 22px;
  font-weight: 600;
  line-height: 145%;
}
.item-news p {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;

  margin-bottom: 16px;

  -webkit-line-clamp: 3;
}
.wrapper_page .header {
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
}
.page-about {
  padding-bottom: 80px;
}
.billbord-about {
  position: relative;
  z-index: 1;

  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: flex-end;

  height: 700px;
  padding: 28px 80px;
  padding-bottom: 170px;

  color: #ffffff;
  border-radius: 24px;
  background-image: url(../img/billbord_about.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.billbord-about::after {
  position: absolute;
  z-index: -1;
  bottom: 43px;
  left: 48px;

  display: block;

  width: 1563px;
  height: 574px;

  content: ' ';

  background-image: url(../img/billbord_lines.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.title-billbord {
  max-width: 543px;

  font-size: 80px;
  font-weight: 700;
  line-height: 123%;
}
.title-about.title-about_top {
  font-weight: 600;
}
.page-about + .about .about__image {
  margin-top: 0;
}
.about__info {
  margin-top: 94px;
  padding: 56px 87px;

  border-radius: 16px;
  background-color: #f2faff;

  font-size: 18px;
  font-weight: 500;
  line-height: 167%;
}
.about__info p {
  max-width: 100% !important;
}
.about__info .title-about {
  margin-top: 0 !important;
  margin-bottom: 17px;
}
.about .title-about.title-about_top {
  margin-top: 0;
  padding: 20px 0;
}
.page-vacancies {
  padding-bottom: 106px;
}
.billbord-about.billbord-about_vacancies {
  justify-content: flex-start;

  margin-bottom: 12px;

  background-image: url(../img/billbord_vacancies.jpg);
}
.billbord-about.billbord-about_vacancies::before {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;

  display: block;

  width: 100%;
  height: 100%;

  content: ' ';

  border-radius: 24px;
  background: linear-gradient(
  360deg,
  rgba(0, 0, 0, 0) 0%,
  rgba(0, 0, 0, 0.5) 100%
  );
}
.billbord-about.billbord-about_vacancies::after {
  top: 72px;
  left: 0;

  width: 1394px;
  height: 611px;

  background-image: url(../img/billbord_lines2.svg);
}
.item-vacancy {
  margin-bottom: 20px;

  transition: all 0.3s;

  border: 1px solid #1c56b6;
  border-radius: 16px;
}
.item-vacancy__head {
  position: relative;

  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 26px 57px;
  padding-right: 33px;

  cursor: pointer;

  font-size: 28px;
  font-weight: 600;
  line-height: 136%;
}
.item-vacancy__head::after {
  position: relative;

  display: block;

  width: 24px;
  height: 24px;

  content: ' ';

  background-image: url(../img/plus.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.item-vacancy__content {
  display: none;

  padding: 0 87px;
  padding-bottom: 38px;

  font-size: 18px;
  font-weight: 500;
  line-height: 167%;
}
.item-vacancy__content strong {
  font-weight: 600;
}
.item-vacancy__content ul {
  margin-bottom: 24px;
}
.item-vacancy__content ul li {
  position: relative;

  padding-left: 23px;
}
.item-vacancy__content ul li::before {
  position: absolute;
  top: 0;
  left: 3px;

  content: '•';
}
.item-vacancy.active {
  border-color: #f2faff;
  background: #f2faff;
}
.form-page {
  padding: 50px 251px;

  border-radius: 16px;
  background: #f1f4f7;
}
.title-about.title-about_vacancies {
  max-width: 931px;
  margin: 0 auto;
  padding-top: 60px;
  padding-bottom: 45px;

  text-align: center;
}
.item-form textarea {
  height: 99px;
  padding-top: 15px;

  resize: none;
}
.form-page .checkbox {
  justify-content: center;

  margin-top: 15px;

  white-space: nowrap;
}
.col_btn {
  text-align: right;
}
.file-upload input {
  width: 0 !important;
  height: 0 !important;
  padding: 0 !important;

  opacity: 0 !important;
}
.file-upload label {
  display: flex;
  align-items: center;

  height: 48px;

  cursor: pointer;
  transition: all 0.3s;
  letter-spacing: 0.05em;

  color: #191e27;

  font-family: 'Montserrat';
  font-size: 14px;
  font-weight: 400;
}
.file-upload:hover label {
  color: #1c56b6;
}
.file-upload label i {
  margin-right: 14px;

  font-size: 20px;
}
.file-upload label > span {
  position: absolute;
  top: 0;
  left: 0;

  width: 0;
}
.file-upload {
  position: relative;
}
.name-upload {
  position: absolute;
  top: 100%;
  left: 0;

  margin-top: 2px;

  font-size: 12px;
  line-height: 15px;
}

.page-contacts {
  padding-bottom: 74px;
}
.page-contacts .title-main {
  margin-bottom: 30px;
}
.unit-contacts {
  min-height: 100%;
  padding: 23px 36px;

  border-radius: 16px;
  background: #f2faff;

  font-size: 18px;
  font-weight: 500;
  line-height: 167%;
}
.unit-contacts .title-about {
  margin-bottom: 12px;
}
.unit-contacts__mail,
.unit-contacts__phone {
  display: inline-block;

  vertical-align: middle;

  color: #1c3a78;

  font-size: 32px;
  font-weight: 600;
  line-height: 94%;
}
.unit-contacts__mail {
  font-size: 24px;
  line-height: 125%;
}
.unit-contacts__left {
  margin-right: 30px;
}
.unit-contacts__right {
  margin-left: -30px;
}
.unit-contacts__right li {
  margin-bottom: 11px;
}
.unit-contacts__right li:last-child {
  margin-bottom: 0;
}
.unit-contacts__tel a {
  color: #1c3a78;

  font-size: 20px;
  font-weight: 600;
  line-height: 150%;
}
.unit-contacts__tel {
  padding-top: 30px;
  padding-bottom: 18px;
}
.unit-contacts .list-socials img {
  width: 50px;
}
.unit-contacts .list-socials {
  gap: 15px;
}
.unit-contacts__links {
  padding-top: 10px;

  font-size: 16px;
  font-weight: 500;
  line-height: 187%;
}
.unit-contacts__links li {
  margin-bottom: 16px;
}
.unit-contacts__links li:last-child {
  margin-bottom: 0;
}
.unit-contacts__links a {
  color: #191e27;
  border-bottom: 1px #191e27 solid;
}
.unit-contacts__links a:hover {
  color: #1c56b6;
  border-color: #1c56b6;
}
.form-main {
  padding: 27px 62px;
  padding-bottom: 35px;

  border-radius: 16px;
  background: #f1f4f7;
}
.form-main .title-about {
  margin-bottom: 24px;

  text-align: center;

  line-height: 171%;
}
.form-main_bottom {
  display: flex;
  align-items: center;
  flex-direction: column;

  padding-top: 8px;
}
.form-main .checkbox {
  margin-top: 26px;
}
.form-main .item-form {
  margin-bottom: 16px;
}
#map {
  overflow: hidden;

  width: 100%;
  height: 432px;
  margin-top: 50px;

  border-radius: 16px;
  background: #f1f4f7;
}
.page-requisites {
  padding-bottom: 100px;
}
.page-requisites-title {
  margin-top: 32px;
}
.page-requisites .title-middle {
  margin-bottom: 28px;
}
.item-dropdown {
  margin-bottom: 10px;

  border: 1px solid #1c56b6;
  border-radius: 12px;
}
.item-dropdown__head {
  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 11px 34px;
  padding-right: 12px;

  cursor: pointer;

  font-size: 20px;
  font-weight: 600;
  line-height: 190%;
}
.item-dropdown__head::after {
  position: relative;

  display: block;
  flex: none;

  width: 24px;
  height: 24px;

  content: ' ';
  transition: all 0.3s;

  background-image: url(../img/plus.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.item-dropdown.active .item-dropdown__head::after {
  transform: rotate(45deg);
}
.item-dropdown__content {
  display: none;

  padding: 0 40px;
  padding-bottom: 32px;
}
.list-docs li {
  margin-bottom: 18px;
}
.list-docs li:last-child {
  margin-bottom: 0;
}
.list-docs li a {
  position: relative;

  display: block;

  padding-left: 48px;

  color: #191e27;

  font-weight: 500;
}
.list-docs li a img {
  position: absolute;
  top: 0;
  left: 0;

  width: 32px;
  height: auto;
}
.list-docs li a:hover {
  color: #1c56b6;
}
.row_requisites {
  padding-bottom: 40px;
}
.documents-wrap {
  padding: 65px 0;

  background: #f1f4f7;
}
.item-doc {
  position: relative;

  display: block;

  min-height: 100%;
  padding: 17px;
  padding-bottom: 33px;

  color: #191e27;
  border-radius: 16px;
  background: #ffffff;
}
.item-doc:hover {
  box-shadow: 0 5px 15px #c1d7e6;
}
.item-doc__image {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 100%;
  height: 196px;
  margin-bottom: 18px;
  padding: 10px;

  border-radius: 10px;
  background: #f1f4f7;
}
.item-doc__image img {
  width: auto;
  max-height: 136px;
}
.item-doc__icon {
  position: absolute;
  top: 20px;
  left: 17px;

  width: 32px;
  height: 32px;
}
.item-doc__icon img {
  width: 100%;
  height: auto;
}
.item-doc__title {
  display: block;

  width: 100%;

  color: #191e27;

  font-weight: 500;
}
.page-payment {
  padding-bottom: 97px;
}
.billbord-about_payment {
  justify-content: flex-start;

  margin-bottom: 78px;

  background-image: url(../img/billbord_payment.jpg);
  background-position: 50% 7%;
}
.billbord-about_payment,
.billbord-about_vacancies {
  padding-top: 243px;
}
.billbord-about_payment::after {
  display: none;
}
.tabs-payment li {
  margin-bottom: 20px;
}
.tabs-payment a {
  display: flex;
  align-items: center;
  justify-content: space-between;

  height: 90px;
  padding: 0 37px;
  padding-right: 32px;

  color: #191e27;
  border: 1.5px solid #e3e6e8;
  border-radius: 16px;

  font-size: 28px;
  font-weight: 600;
  line-height: 136%;
}
.tabs-payment a:hover,
.tabs-payment .active a {
  border-color: #1c56b6;
}
.form-payment {
  padding: 33px 62px;
  padding-bottom: 57px;

  border-radius: 16px;
  background: #f2faff;
}
.form-payment .btn-main {
  width: 100%;
  padding: 0 10px;
}
.form-payment .title-middle {
  margin: 0 -15px;
  padding-bottom: 33px;

  text-align: center;
}
.form-payment .item-form .jq-selectbox__select-text,
.form-payment .item-form input {
  height: 58px;

  color: #191e27;
  border-color: #c1c1c1;
  background: #ffffff;

  font-size: 14px;
  font-weight: 400;
}
.form-payment .item-form .jqselect:hover .jq-selectbox__select-text {
  color: initial;
  border-color: #c1c1c1;
  box-shadow: none;
}
.form-payment .item-form .jq-selectbox__dropdown {
  font-size: 14px;
}
.form-payment .item-form {
  margin-bottom: 18px;
}
.form-payment .btn-main {
  margin-top: 20px;
}
.text-payment {
  line-height: 175%;
}
.text-payment ul li,
.text-payment p {
  margin-bottom: 15px;
}
.text-payment strong {
  font-weight: 500;
}
.text-payment .btn-main {
  height: 44px;
  padding: 0 16px;

  color: #1c3a78;
  background: transparent;

  font-size: 14px;
}
.tab-pane-payment {
  display: none;
}
.tab-pane-payment:first-child {
  display: block;
}
.text-payment ul li {
  position: relative;

  padding-left: 23px;
}
.text-payment ul li::before {
  position: absolute;
  top: 0;
  left: 3px;

  content: '•';
}
.page-questions {
  padding-bottom: 100px;
}
.page-questions-title {
  margin-top: 32px;
}

.item-question {
  margin: 0;
  padding: 0;
}
.item-additional__head,
.item-question a {
  display: flex;
  align-items: center;
  justify-content: space-between;

  margin-bottom: 20px;
  padding: 26px 57px;
  padding-right: 33px;

  cursor: pointer;

  color: #191e27;
  border: 1px solid #1c56b6;
  border-radius: 12px;

  font-size: 24px;
  font-weight: 600;
  line-height: 158%;
}
.item-additional__head::after,
.item-question a::after {
  position: relative;

  display: block;
  flex: none;

  width: 24px;
  height: 24px;
  margin-left: 6px;

  content: ' ';
  transition: all 0.3s;

  color: var(--text-color-prymary);
  background-image: url(../img/plus.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.item-additional__head:hover,
.item-question a:hover {
  color: #1c56b6;
}
.form-question {
  margin-top: 100px;
  padding: 34px 184px;

  border-radius: 16px;
  background: #f1f4f7;
}
.form-question .title-about {
  margin-bottom: 28px;

  text-align: center;
}
.form-question__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;

  padding-top: 17px;
}
.form-question .item-form {
  margin-bottom: 15px;
}
.form-question .item-form textarea {
  height: 115px;
}
.form-question .row {
  margin: 0 -9px;
}
.form-question .row > div {
  padding: 0 9px;
}
.page-answer {
  position: relative;

  padding-top: 30px;
  padding-bottom: 100px;
}
.page-answer .title-main {
  margin-bottom: 30px;
}
.item-answer {
  margin-bottom: 46px;

  line-height: 175%;
}
.item-answer img {
  max-width: 100%;
  height: auto;
}
.item-answer:last-child {
  margin-bottom: 0;
}
.item-answer .btn-main {
  min-width: 257px;
  margin-top: 30px;
}
.page-equipment {
  padding-top: 24px;
  padding-bottom: 100px;
}
.page-equipment-title {
  padding-top: 24px;
}
.page-equipment .title-main {
  margin-bottom: 30px;
}
.item-equipment {
  position: relative;

  min-height: 100%;
  padding: 24px;

  border-radius: 16px;
  background: #f2faff;
}
.item-equipment__image {
  display: flex;
  overflow: hidden;
  align-items: center;
  justify-content: center;

  width: 100%;
  height: 268px;

  border-radius: 14px;
  background: #ffffff;
}
.item-equipment__image img {
  max-width: 100%;
  max-height: 100%;
}
.tag-equipment {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;

  padding: 6px 14px;

  text-transform: uppercase;

  color: #ffffff;
  border-radius: 8px;
  background: #fa4f00;

  font-size: 13px;
  font-weight: 700;
  line-height: 215%;
}
.item-equipment__title {
  display: block;

  margin-bottom: 12px;

  color: #191e27;

  font-size: 20px;
  font-weight: 600;
  line-height: 160%;
}
.item-equipment__text {
  font-size: 14px;
  font-weight: 500;
  line-height: 200%;
}
.item-equipment__text p,
.item-equipment__text li {
  margin: 0;
}
.item-equipment__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.price-main {
  font-size: 24px;
  font-weight: 600;
  line-height: 133%;
}
.item-equipment .btn-main {
  height: 48px;
  padding: 0 26px;
}
.item-equipment__value {
  display: flex;
  align-items: center;

  font-size: 14px;
  font-weight: 600;
  line-height: 200%;
}
.item-equipment__value img {
  margin-right: 14px;
}
.item-equipment:last-child {
  margin-bottom: 0;
}
.row_equipment {
  align-items: center;

  padding-top: 16px;
}
.descr-equipmenent {
  padding-top: 36px;

  line-height: 175%;
}
.descr-equipmenent a {
  white-space: nowrap;

  color: #191e27;

  font-weight: 500;
}
.page-additional {
  padding-bottom: 100px;
}
.page-additional-title {
  padding-top: 24px;
}
.page-additional .title-main {
  margin-bottom: 30px;
}
.item-additional__content {
  display: none;
}
.item-additional {
  margin-bottom: 24px;
}
.item-additional__content {
  margin-top: 13px;
}
.table-page table {
  width: 100%;

  border-spacing: 0;

  border-radius: 16px;
  background: #f2faff;

  font-weight: 500;
}
.table-page table th {
  text-align: left;
}
.table-page table th,
.table-page table td {
  padding: 11px 37px;

  border-bottom: 1px solid #e3e6e8;
}
.table-page table td:last-child {
  font-weight: 600;
}
.table-page table th {
  text-transform: uppercase;

  font-weight: 600;
}
.table-page table tr:last-child td {
  border: none;
  /* white-space: nowrap; */
}
.item-additional.active .item-additional__head::after {
  transform: rotate(45deg);
}
.item-additional:last-child {
  margin-bottom: 0;
}

.answer-video {
  position: fixed;
  z-index: 1000;
  bottom: 50px;
  left: 50px;

  overflow: hidden;

  width: 400px;
  height: 240px;

  border-radius: 10px;
}

.answer-video iframe {
  width: 100%;
  height: 100%;
}

@media (max-width: 992px) {
  .answer-video {
    width: 200px;
    height: auto;
  }
}

@media (max-width: 992px) {
  .answer-video {
    bottom: 20px;
    left: 20px;
  }
}

/*new*/
.payment-main {
  padding: 24px 28px;

  border: 1px solid #e3e6e8;
  border-radius: 16px;
  background: #f2faff;

  font-size: 14px;
  line-height: 157%;
}
.payment-main__head {
  display: flex;
  align-items: flex-start;

  gap: 43px;
}
.payment-main__logo {
  flex: none;
}
.payment-main__logo img {
  width: 218px;
  height: auto;
}
.payment-main__top {
  display: flex;
  align-items: center;
  justify-content: space-between;

  margin-bottom: 32px;
}
.payment-main__title {
  font-size: 32px;
  font-weight: 600;
  line-height: 100%;
}
.payment-main__value {
  padding: 8px 14px;

  border-radius: 6px;
  background: #ffe000;

  font-size: 16px;
  font-weight: 700;
  line-height: 175%;
}
.payment-main strong {
  font-weight: 500;
}
.payment-main__bottom {
  padding-top: 36px;
  padding-left: 71px;
}
.payment-main__bottom .row > div {
  padding: 0 7px;
}
.payment-main__bottom .row {
  margin: 0 -7px;
}
.item-payment .item-form input,
.payment-main .item-form input {
  height: 58px;

  border-color: #c1c1c1;

  font-size: 14px;
}
.payment-main__buttons {
  display: flex;
  align-items: center;
  justify-content: flex-end;

  gap: 28px;
}
.link-page {
  display: inline-block;

  vertical-align: middle;

  color: #1c3a78;
  border-bottom: 1px #1c3a78 solid;

  font-size: 14px;
  font-weight: 500;
  line-height: 140%;
}
.link-page:hover {
  border-color: transparent;
}
.item-payment {
  display: flex;
  align-items: flex-start;
  flex-direction: column;

  min-height: 100%;
  padding: 24px;
  padding-top: 19px;

  border: 1px solid #e3e6e8;
  border-radius: 16px;

  font-size: 14px;
  line-height: 143%;
}
.item-payment__head {
  display: flex;
  align-items: center;
  justify-content: space-between;

  width: 100%;
  margin-right: -10px;
  margin-bottom: 20px;
}
.item-payment__logo {
  display: flex;
  align-items: center;

  gap: 20px;
}
.item-payment__logo img {
  max-width: 180px;
  max-height: 64px;
}
.item-payment__value {
  padding: 8px 14px;

  border-radius: 6px;
  background: #f2faff;

  font-size: 16px;
  font-weight: 500;
  line-height: 175%;
}
.item-payment__value p {
  margin: 0;
}
.item-payment__title {
  /* min-height: 64px; */
  display: flex;
  align-items: flex-end;

  margin-bottom: 21px;

  font-size: 20px;
  font-weight: 600;
  line-height: 160%;
}
.item-payment__text {
  min-height: 40px;
  margin-right: -15px;

  font-size: 12px;
  line-height: 167%;
}
.item-payment__bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;

  width: 100%;
  margin-top: auto;
  padding-top: 10px;
}
.item-payment__qr img {
  width: 100px;
  height: auto;
}
.item-payment__apps {
  display: flex;
  align-items: center;

  padding-top: 28px;

  gap: 17px;
}
.item-payment__apps img {
  width: auto;
  height: 34px;
}
.item-payment__list li {
  margin-bottom: 12px;
}
.item-payment__list {
  padding-bottom: 11px;
}
.item-payment__text {
  margin-top: auto;
}
.item-payment__text + .item-payment__bottom {
  margin-top: 0;
}
.bottom-form {
  display: flex;
  align-items: center;
  justify-content: space-between;

  width: 100%;
  padding-top: 14px;

  gap: 29px;
}
.bottom-form .btn-main {
  flex-grow: 1;

  padding: 0 10px;
}
.item-payment__form {
  width: 100%;
}
.item-payment__form .item-form {
  margin-bottom: 36px;
}
.item-payment strong {
  font-weight: 600;
}
.page-payment {
  padding-bottom: 50px;
}
.page-payment-title {
  padding-top: 24px;
}
.billbord-about_payment {
  margin-bottom: 47px;
}
.breadcrumbs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;

  padding-top: 22px;
  padding-bottom: 25px;

  color: #1c3a78;

  font-size: 14px;
  font-weight: 500;
  line-height: 160%;
}
.breadcrumbs a {
  color: #1c3a78;
  border-bottom: 1px solid transparent;
}
.breadcrumbs a:hover {
  border-color: #1c3a78;
}
.breadcrumbs li::after {
  margin: 0 10px;

  content: '/';
}
.breadcrumbs li:last-child::after {
  display: none;
}
.page-article .title-section {
  margin-bottom: 25px;

  font-size: 40px;
  line-height: 135%;
}
.page-article .item-news {
  min-height: initial;
  margin-bottom: 37px;
}
.article-content h2 {
  margin-top: 34px;
  margin-bottom: 30px;

  font-size: 22px;
  font-weight: 600;
  line-height: 145%;
}
.article-content h3 {
  margin-top: 30px;
  margin-bottom: 9px;

  font-size: 18px;
  font-weight: 600;
  line-height: 178%;
}
.article-content p a,
.article-content li a {
  color: #191e27;
  border-bottom: 1px #191e27 solid;
}
.article-content p a:hover,
.article-content li a:hover {
  border-color: transparent;
}
.article-content ul li {
  position: relative;

  padding-left: 23px;
}
.article-content ul li::before {
  position: absolute;
  top: 0;
  left: 3px;

  content: '•';
}
.article-content img {
  max-width: 100%;

  border-radius: 16px;
}
.article-content .row img {
  max-width: 100%;
  height: auto;

  border: 1px solid #e3e6e8;
  border-radius: 12px;
}
.article-content .row {
  margin-top: 30px;
}
.article-content .row .col-md-5 i {
  display: block;

  max-width: 341px;
  margin: 0 auto;
}
.page-article {
  padding-bottom: 43px;
}
.menu-dropdown {
  position: absolute;
  top: 100%;
  left: 0;

  display: none;

  width: 100%;
}
.menu-dropdown__content {
  position: relative;
  z-index: 5;

  padding: 36px 44px;

  border-radius: 16px;
  background: #f2faff;
}
.menu-dropdown__title {
  margin-bottom: 25px;

  text-transform: uppercase;

  color: #1c3a78;

  font-size: 18px;
  font-weight: 600;
  line-height: 120%;
}
.menu-dropdown__list li {
  margin-bottom: 15px;

  font-weight: 500;
}
.menu-dropdown__list li a {
  color: #191e27;
  border-bottom: 1px transparent solid;
}
.menu-dropdown__list li a:hover {
  color: #1c3a78;
  border-color: #1c3a78;
}
.menu-dropdown__contacts {
  font-size: 14px;
  font-weight: 500;
  line-height: 160%;
}
.menu-dropdown__item {
  margin-bottom: 18px;
}
.menu-dropdown__contact {
  display: inline-block;

  margin-top: 4px;

  vertical-align: middle;

  color: #191e27;

  font-size: 20px;
  font-weight: 600;
  line-height: 140%;
}
.menu-dropdown__subtitle {
  margin-bottom: 13px;

  font-size: 16px;
  font-weight: 600;
}
.menu-overlay {
  position: fixed;
  z-index: 0;
  top: 93px;
  right: 0;
  bottom: 0;
  left: 0;

  background-color: rgba(255, 255, 255, 0.7);
}
.body_menu .header ~ * {
  filter: blur(5px);
}
.body_menu {
  overflow: hidden;
}
.menu-dropdown__title i {
  display: none;
}
.menu-dropdown__buttons {
  display: none;
}

.page-tarifs {
  padding-bottom: 25px;

  /* background-image: url(../img/waves_tarifs.svg);
  background-repeat: no-repeat;
  background-position: bottom -37px right; */
  background-size: 60%;
}
.page-tarifs.tarifs{
  background-image: none;
}
.page-tarifs .title-section {
  margin-bottom: 40px;
  padding: 0;

  font-size: 40px;
  line-height: 165%;
}

.page-tariffs-hero {
  margin-bottom: 48px;
}
.page-tariffs-hero__inner {
  display: flex;

  padding: 32px 82px;

  border-radius: 16px;
  background: var(--color-secondary-grey-1);

  @media (max-width: 991px) {
    flex-direction: column-reverse;

    padding: 32px;
  }

  @media (max-width: 575px) {
    padding: 24px;
  }
}
.page-tariffs-hero__header {
}
.page-tariffs-hero__header-title {
  margin-bottom: 24px;
}
.page-tariffs-hero__header-btn {
  margin-top: 32px;
}
.page-tariffs-hero__picture {
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-tariffs-hero__picture-image {
  width: 100%;
  height: 100%;

  @media (max-width: 991px) {
    width: 30%;
  }

  @media (max-width: 575px) {
    width: 100%;
  }
}

.page-tariffs-offers {
  margin-top: 54px;
}
.page-tariffs-offers__inner {
  width: 100%;
  padding: 32px !important;

  border-radius: 16px;
  background: var(--color-secondary-grey-1);
}
.page-tariffs-offers__content {
  width: 75%;
  margin-top: 32px;

  @media (max-width: 1023px) {
    width: 100%;
  }
}
.page-tariffs__content {
  width: 75%;
  margin-top: 32px;

  @media (max-width: 1023px) {
    width: 100%;
  }
}
.page-tariffs__content ul {
  margin: 0 18px 0;
  padding: 14px 0;
}
.page-tariffs__content ul li{
      position: relative;
    padding-left: 32px;
}
.page-tariffs__content ul li::before{
      position: absolute;
    top: 2px;
    left: 0;
    display: block;
    width: 18px;
    height: 18px;
    content: ' ';
    background-image: url(../img/li.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.page-tariffs-inner{
  width: 100%;
  padding: 32px !important;

  border-radius: 16px;
}

.page-tariffs-section{
  margin-top: 54px;
}
/* .page-tariffs-section:last-child{
  margin-bottom: 54px;
} */
.page-tariffs-section.grey-1 .page-tariffs-inner{
  background: var(--color-secondary-grey-1);
}
.page-tariffs-section.grey-2 .page-tariffs-inner{
  background: var(--color-secondary-grey-2);
}

.page-tariffs-connection-steps {
  margin-top: 54px;
}
.page-tariffs-connection-steps__inner {
  width: 100%;
  padding: 32px !important;

  border-radius: 16px;
  background: var(--color-secondary-grey-2);
}
.page-tariffs-connection-steps__content {
  width: 75%;
  margin-top: 32px;

  @media (max-width: 1023px) {
    width: 100%;
  }
}

.page-tariffs-reasons {
  margin-top: 54px;
}
.page-tariffs-reasons__inner {
  width: 100%;
  padding: 32px !important;

  border-radius: 16px;
  background: var(--color-secondary-grey-1);
}
.page-tariffs-reasons__content {
  width: 75%;
  margin-top: 32px;

  @media (max-width: 1023px) {
    width: 100%;
  }
}
.page-tariffs-reasons .main-list {
  margin: 0 18px 0;
  padding: 14px 0;
}

.page-tariffs-contact {
  margin-top: 54px;
  margin-bottom: 54px;
}
.page-tariffs-contact__inner {
  width: 100%;
  padding: 32px !important;

  border-radius: 16px;
  background: var(--color-secondary-grey-2);
}
.page-tariffs-contact__content {
  width: 75%;
  margin-top: 32px;

  @media (max-width: 1023px) {
    width: 100%;
  }
}

.filter-main__selects {
  display: flex;
  align-items: flex-start;

  gap: 12px;
}
.filter-main__selects .jq-selectbox__select-text {
  padding-right: 58px;
}
.item-form.item-form_city .jq-selectbox__select-text {
  color: #ffffff !important;
  border-color: #ff6f2c !important;
  background: #ff6f2c !important;
  box-shadow: none !important;
}
.item-form.item-form_city .jq-selectbox__trigger {
  color: #ffffff;
}
.item-form.item-form_city
  .jq-selectbox__select:hover
  .jq-selectbox__select-text {
  border-color: #df5211 !important;
  background: #df5211 !important;
}
.item-form.item-form_city .jq-selectbox__dropdown {
  width: 1080px !important;
  max-height: 380px;
  padding: 36px 62px;

  border-radius: 16px;
  background: #f2faff;
}
.item-form.item-form_city .jq-selectbox__dropdown ul {
  columns: 4;
}
.item-form.item-form_city .jq-selectbox__dropdown li {
  margin-bottom: 15px;
  padding: 0;

  font-size: 14px;
  font-weight: 500;
}
.item-form.item-form_city .jq-selectbox__dropdown li:hover {
  color: #1c3a78;
  background: transparent;
}

.page-coverage {
  padding-bottom: 80px;
}
.page-coverage .title-section {
  margin-bottom: 20px;
  padding: 0;

  font-size: 40px;
  line-height: 165%;
}
.descr-coverage {
  max-width: 1328px;
  margin-bottom: 60px;

  line-height: 175%;
}
.item-select .select2-container--default .select2-selection--single {
  display: flex;
  align-items: center;
  justify-content: flex-start;

  width: 100%;
  height: 48px;
  padding: 0 16px;

  cursor: pointer;
  transition: all 0.3s;

  color: #191e27;
  border: 1px solid #e3e6e8;
  border-radius: 6px;

  font-size: 14px;
  font-weight: 400;
}
.select2-container--default.select2-container--open.select2-container--below
  .select2-selection--single,
.item-select:hover .select2-container--default .select2-selection--single {
  color: #1478fd;
  border-color: #1478fd;
  box-shadow: 0 0 0 1px #1478fd;
}
.select2-container--default
  .select2-selection--single
  .select2-selection__rendered {
  color: inherit;
}
.select2-container {
  display: block;

  width: 100% !important;
}
.item-select .select2-selection__arrow {
  position: absolute;
  top: 0;
  right: 15px;
  bottom: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  width: 19px;
  height: 19px;
  margin: auto;

  cursor: pointer;

  color: #1c3a78;

  font-family: 'Font Awesome 5 Pro';
  font-size: 12px;
  font-weight: 700;
  font-style: normal;
  font-variant: normal;
  line-height: 1;

  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: auto;
}
.item-select .select2-selection__arrow:before {
  content: '\f078';
}
.select2-container--default
  .select2-selection--single
  .select2-selection__arrow
  b {
  display: none;
}
.select2-container--default
  .select2-selection--single
  .select2-selection__arrow {
  right: 15px;
}
.select2-search--dropdown .select2-search__field {
  height: 40px;
  padding: 0 10px;

  border-radius: 6px;
}
.title-input {
  margin-bottom: 12px;

  font-size: 14px;
  font-weight: 500;
}
#map-coverage {
  display: block;

  width: 100%;
  height: 530px;

  background-color: #dddddd;
}
.select2-hidden-accessible {
  bottom: 0;
  left: 50%;
}
.select2-results__option[role='option']:first-child {
  display: none;
}
#addressForm {
  position: relative;

  display: block;
}
.alert-info {
  position: absolute;
  top: 100%;
  left: 0;

  display: none;

  margin-top: 6px;

  color: red;

  font-size: 14px;
  font-weight: 600;
}

.blog_page {
  margin-bottom: 70px;
}

.blog-image {
  overflow: hidden;

  width: 100%;
  max-width: 944px;
  height: 100%;
  max-height: 400px;
  margin-top: 25px;
  margin-bottom: 30px;

  border-radius: 16px;
}

.blog-image img {
  width: 100%;
  height: 100%;

  object-fit: cover;
}

.blog .row p strong {
  padding: 30px 0;

  text-align: left;

  color: #191e27;

  font-size: 22px;
  font-weight: 600;
  line-height: 32px;
}

.blog .row p {
  text-align: left;

  color: #191e27;

  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

.blog .row li {
  margin-left: 30px;

  list-style-type: disc;

  text-align: left;

  color: #191e27;

  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

.item-news-single {
  min-height: fit-content;
  margin-bottom: 25px;
}

.breadcrumb-post {
  display: flex;
}

.item-form .select-wrap,
.tariffs-wrap,
.tariffs-serv-wrap,
.tariffs-serv-nazhach-wrap {
  display: none;
}
.item-form .select-wrap.active,
.tariffs-wrap.active,
.tariffs-serv-wrap.active,
.tariffs-serv-nazhach-wrap.active {
  display: block;
}

/* @media(min-width: 768px) {
  .tariffs-wrap .slick-slide {
    width: 350px !important;
    min-width: 350px;
    /* max-width: 100%; 
  }
} */

.item-tarif__descrip {
  font-size: 14px;
  margin-top: 10px;
  color: black;
}

.item-tarif__cost {
  width: 100%;
  text-align: right;
  font-size: 18px;
}

.item-tarif__cost span{
  font-size: 32px;
}

.billbord-about_wifi {
  padding: 0 205px;
  padding-top: 210px;

  background-image: url(../img/billbord_wifi.jpg);
}
.billbord-about_tv {
  background-image: url(../img/billbord_tv.png);
}
.billbord-about.billbord-about_wifi {
  justify-content: flex-start;

  margin-bottom: 40px;
}
.billbord-about.billbord-about_wifi::before {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;

  display: block;

  width: 100%;
  height: 100%;

  content: ' ';

  border-radius: 24px;
  background: linear-gradient(
  360deg,
  rgba(0, 0, 0, 0) 0%,
  rgba(0, 0, 0, 0.5) 100%
  );
}
.billbord-about.billbord-about_wifi::after {
  top: 72px;
  left: 0;

  width: 1394px;
  height: 611px;

  background-image: url(../img/billbord_lines2.svg);
}
.billbord-about.billbord-about_wifi .title-billbord {
  max-width: 100%;
}

.page-wifi,
.page-tv {
  padding-bottom: 50px;
}
.page-wifi-title,
.page-tv-title {
  padding-top: 24px;
}
.page-wifi-main-text {
  margin-top: 32px;
  margin-bottom: 24px;

  border-radius: 16px;
  background: var(--color-secondary-grey-2);
}
.page-wifi-main-text__inner {
  width: 75%;
  padding: 32px !important;
  @media (max-width: 1023px) {
    width: 100%;
  }
}

.page-wifi-approach {
}
.page-wifi-approach__inner {
  width: 100%;
  padding: 32px !important;

  border-radius: 16px;
  background: var(--color-secondary-grey-1);
}
.page-wifi-approach__content {
  width: 75%;
  margin-top: 32px;

  @media (max-width: 1023px) {
    width: 100%;
  }
}
.page-wifi-approach .main-list {
  margin: 0 18px 0;
  padding: 14px 0;
}

.page-wifi-what-required {
  margin-top: 54px;
}
.page-wifi-what-required__inner {
  width: 100%;
  padding: 32px !important;

  border-radius: 16px;
  background: var(--color-secondary-grey-2);
}
.page-wifi-what-required__content {
  width: 75%;
  margin-top: 32px;

  @media (max-width: 1023px) {
    width: 100%;
  }
}

.page-wifi-choose {
  margin-top: 54px;
  margin-bottom: 54px;
}
.page-wifi-choose__inner {
  width: 100%;
  padding: 32px !important;

  border-radius: 16px;
  background: var(--color-secondary-grey-1);
}
.page-wifi-choose__content {
  width: 75%;
  margin-top: 32px;

  @media (max-width: 1023px) {
    width: 100%;
  }
}
.page-wifi-choose .main-list {
  margin: 0 18px 0;
  padding: 14px 0;
}

.page-tv-ip-difference {
  margin-top: 54px !important;
}
.page-tv-ip-difference__inner {
  width: 100%;
  padding: 32px !important;

  border-radius: 16px;
  background: var(--color-secondary-grey-2);
}
.page-tv-ip-difference__content {
  width: 75%;
  margin-top: 32px;

  @media (max-width: 1023px) {
    width: 100%;
  }
}
.page-tv-ip-difference .main-list {
  margin: 0 18px 0;
  padding: 14px 0;
}

.page-tv-ip-connection-underway {
  margin-top: 54px !important;
}
.page-tv-ip-connection-underway__inner {
  width: 100%;
  padding: 32px !important;

  border-radius: 16px;
  background: var(--color-secondary-grey-1);
}
.page-tv-ip-connection-underway__content {
  width: 75%;
  margin-top: 32px;

  @media (max-width: 1023px) {
    width: 100%;
  }
}

.page-tv-ip-client {
  margin-top: 54px !important;
}
.page-tv-ip-client__inner {
  width: 100%;
  padding: 32px !important;

  border-radius: 16px;
  background: var(--color-secondary-grey-2);
}
.page-tv-ip-client__content {
  width: 75%;
  margin-top: 32px;

  @media (max-width: 1023px) {
    width: 100%;
  }
}
.page-tv-ip-client .main-list {
  margin: 0 18px 0;
  padding: 14px 0;
}

.page-tv-ip-advantages {
  margin-top: 54px !important;
}
.page-tv-ip-advantages__inner {
  width: 100%;
  padding: 32px !important;

  border-radius: 16px;
  background: var(--color-secondary-grey-1);
}
.page-tv-ip-advantages__content {
  width: 75%;
  margin-top: 32px;

  @media (max-width: 1023px) {
    width: 100%;
  }
}
.page-tv-ip-advantages .main-list {
  margin: 0 18px 0;
  padding: 14px 0;
}

.item-info {
  min-height: 100%;
  padding: 34px 20px;
  padding-right: 17px;
  padding-bottom: 52px;

  border-radius: 8px;
  background: #f0f3f4;

  font-size: 14px;
  font-weight: 500;
  line-height: 157%;
}
.item-info__head {
  display: flex;
  align-items: center;

  margin-bottom: 38px;

  font-size: 18px;
  font-weight: 600;
  line-height: 178%;

  gap: 24px;
}
.item-info__icon {
  display: flex;
  align-items: center;
  flex: none;
  justify-content: center;

  width: 43px;
  height: 43px;
}
.item-info__icon img {
  max-width: 100%;
  max-height: 100%;
}
.page-wifi .title-main {
  margin-bottom: 36px;
}
.page-wifi .title-main.title-main_wifi {
  max-width: 975px;

  line-height: 140%;
}
.page-wifi .row_main + .title-main {
  margin-top: 50px;
}

/* Интернет - "Begin" */
.page-inet-main {
}
.page-inet-main__items {
  display: flex;
  flex: 1;
  flex-wrap: wrap;

  margin-bottom: 48px;

  gap: 24px 0;

  @media (max-width: 991px) {
    margin-bottom: 24px;

    gap: 24px;
  }
}
.page-inet-main-item {
  display: flex;
}
.page-inet-main-item:nth-child(2n) .page-inet-main-item__inner {
  background: var(--color-secondary-grey-2);
}
.page-inet-main-item__inner {
  position: relative;

  display: flex;
  overflow: hidden;
  align-items: center;
  justify-content: center;

  width: 100%;
  padding: 24px;

  border-radius: 16px;
  background: var(--color-secondary-grey-1);
}
.page-inet-main-item__inner:hover .page-inet-main-item__header-title {
  color: var(--color-primary);
}
.page-inet-main-item__header {
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-inet-main-item__header-title {
  padding: 0;

  text-align: center;
}
.page-inet-main-item__link {
  position: absolute;

  inset: 0px;
}
/* Интернет - "End" */

/* Интернет для квартиры - "Begin" */
.page-inet-apartment {
  position: relative;
}
.page-inet-apartment-hero {
  margin-bottom: 48px;
}
.page-inet-apartment-hero__inner {
  display: flex;

  padding: 32px 82px;

  border-radius: 16px;
  background: var(--color-secondary-grey-1);

  @media (max-width: 991px) {
    flex-direction: column-reverse;

    padding: 32px;
  }

  @media (max-width: 575px) {
    padding: 24px;
  }
}
.page-inet-apartment-hero__header {
}
.page-inet-apartment-hero__header-title {
  margin-bottom: 24px;
}
.page-inet-apartment-hero__header-btn {
  margin-top: 32px;
}
.page-inet-apartment-hero__picture {
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-inet-apartment-hero__picture-image {
  width: 100%;
  height: 100%;

  @media (max-width: 991px) {
    width: 30%;
  }

  @media (max-width: 575px) {
    width: 100%;
  }
}

.page-inet-apartment-connect-about {
  margin-top: 54px;
}
.page-inet-apartment-connect-about__inner {
  width: 100%;
  padding: 32px !important;

  border-radius: 16px;
  background: var(--color-secondary-grey-2);
}
.page-inet-apartment-connect-about__content {
  width: 75%;
  margin-top: 32px;

  @media (max-width: 1023px) {
    width: 100%;
  }
}
.page-inet-apartment-connect-about .main-list {
  margin: 0 18px 0;
  padding: 14px 0;
}

.page-inet-apartment-connect-equipment {
  margin-top: 54px;
}
.page-inet-apartment-connect-equipment__inner {
  width: 100%;
  padding: 32px !important;

  border-radius: 16px;
  background: var(--color-secondary-grey-1);
}
.page-inet-apartment-connect-equipment__content {
  width: 75%;
  margin-top: 32px;

  @media (max-width: 1023px) {
    width: 100%;
  }
}

.page-inet-apartment-needed-client {
  margin-top: 54px;
}
.page-inet-apartment-needed-client__inner {
  width: 100%;
  padding: 32px !important;

  border-radius: 16px;
  background: var(--color-secondary-grey-2);
}
.page-inet-apartment-needed-client__content {
  width: 75%;
  margin-top: 32px;

  @media (max-width: 1023px) {
    width: 100%;
  }
}
.page-inet-apartment-needed-client .main-list {
  margin: 0 18px 0;
  padding: 14px 0;
}

.page-inet-apartment-advantages {
  margin-top: 54px;
}
.page-inet-apartment-advantages__inner {
  width: 100%;
  padding: 32px !important;

  border-radius: 16px;
  background: var(--color-secondary-grey-1);
}
.page-inet-apartment-advantages__content {
  width: 75%;
  margin-top: 32px;

  @media (max-width: 1023px) {
    width: 100%;
  }
}
.page-inet-apartment-advantages .main-list {
  margin: 0 18px 0;
  padding: 14px 0;
}

.page-inet-apartment-choose {
  margin-top: 54px;
}
.page-inet-apartment-choose__inner {
  width: 100%;
  padding: 32px !important;

  border-radius: 16px;
  background: var(--color-secondary-grey-2);
}
.page-inet-apartment-choose__content {
  width: 75%;
  margin-top: 32px;

  @media (max-width: 1023px) {
    width: 100%;
  }
}
.page-inet-apartment-choose .main-list {
  margin: 0 18px 0;
  padding: 14px 0;
}

.page-inet-apartment-contact {
  margin-top: 54px;
  margin-bottom: 54px;
}
.page-inet-apartment-contact__inner {
  width: 100%;
  padding: 32px !important;

  border-radius: 16px;
  background: var(--color-secondary-grey-1);
}
.page-inet-apartment-contact__content {
  width: 75%;
  margin-top: 32px;

  @media (max-width: 1023px) {
    width: 100%;
  }
}
/* Интернет для квартиры - "End" */

/* Интернет для частного дома - "Begin" */
.page-inet-home {
  position: relative;
}
.page-inet-home-hero {
  margin-bottom: 48px;
}
.page-inet-home-hero__inner {
  display: flex;

  padding: 32px 82px;

  border-radius: 16px;
  background: var(--color-secondary-grey-1);

  @media (max-width: 991px) {
    flex-direction: column-reverse;

    padding: 32px;
  }

  @media (max-width: 575px) {
    padding: 24px;
  }
}
.page-inet-home-hero__header {
}
.page-inet-home-hero__header-title {
  margin-bottom: 24px;
}
.page-inet-home-hero__header-btn {
  margin-top: 32px;
}
.page-inet-home-hero__picture {
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-inet-home-hero__picture-image {
  width: 100%;
  height: 100%;

  @media (max-width: 991px) {
    width: 30%;
  }

  @media (max-width: 575px) {
    width: 100%;
  }
}

.page-inet-home-features {
  margin-top: 54px !important;
}
.page-inet-home-features__inner {
  width: 100%;
  padding: 32px !important;

  border-radius: 16px;
  background: var(--color-secondary-grey-2);
}
.page-inet-home-features__content {
  width: 75%;
  margin-top: 32px;

  @media (max-width: 1023px) {
    width: 100%;
  }
}
.page-inet-home-features .main-list {
  margin: 0 18px 0;
  padding: 14px 0;
}

.page-inet-home-equipment {
  margin-top: 54px !important;
}
.page-inet-home-equipment__inner {
  width: 100%;
  padding: 32px !important;

  border-radius: 16px;
  background: var(--color-secondary-grey-1);
}
.page-inet-home-equipment__content {
  width: 75%;
  margin-top: 32px;

  @media (max-width: 1023px) {
    width: 100%;
  }
}

.page-inet-home-client {
  margin-top: 54px !important;
}
.page-inet-home-client__inner {
  width: 100%;
  padding: 32px !important;

  border-radius: 16px;
  background: var(--color-secondary-grey-2);
}
.page-inet-home-client__content {
  width: 75%;
  margin-top: 32px;

  @media (max-width: 1023px) {
    width: 100%;
  }
}

.page-inet-home-advantages {
  margin-top: 54px !important;
}
.page-inet-home-advantages__inner {
  width: 100%;
  padding: 32px !important;

  border-radius: 16px;
  background: var(--color-secondary-grey-1);
}
.page-inet-home-advantages__content {
  width: 75%;
  margin-top: 32px;

  @media (max-width: 1023px) {
    width: 100%;
  }
}

/* Интернет для частного дома - "End" */

/* Интернет для офиса - "Begin" */
.page-inet-office {
  position: relative;
}
.page-inet-office-hero {
  margin-bottom: 48px;
}
.page-inet-office-hero__inner {
  display: flex;

  padding: 32px 82px;

  border-radius: 16px;
  background: var(--color-secondary-grey-1);

  @media (max-width: 991px) {
    flex-direction: column-reverse;

    padding: 32px;
  }

  @media (max-width: 575px) {
    padding: 24px;
  }
}
.page-inet-office-hero__header {
}
.page-inet-office-hero__header-title {
  margin-bottom: 24px;
}
.page-inet-office-hero__header-btn {
  margin-top: 32px;
}
.page-inet-office-hero__picture {
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-inet-office-hero__picture-image {
  width: 100%;
  height: 100%;

  @media (max-width: 991px) {
    width: 30%;
  }

  @media (max-width: 575px) {
    width: 100%;
  }
}
/* Интернет для офиса - "End" */

/* Интернет для гостиниц и отелей - "Begin" */
.page-inet-hotels {
  position: relative;
}
.page-inet-hotels-hero {
  margin-bottom: 48px;
}
.page-inet-hotels-hero__inner {
  display: flex;

  padding: 32px 82px;

  border-radius: 16px;
  background: var(--color-secondary-grey-1);

  @media (max-width: 991px) {
    flex-direction: column-reverse;

    padding: 32px;
  }

  @media (max-width: 575px) {
    padding: 24px;
  }
}
.page-inet-hotels-hero__header {
}
.page-inet-hotels-hero__header-title {
  margin-bottom: 24px;
}
.page-inet-hotels-hero__header-btn {
  margin-top: 32px;
}
.page-inet-hotels-hero__picture {
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-inet-hotels-hero__picture-image {
  width: 100%;
  height: 100%;

  @media (max-width: 991px) {
    width: 30%;
  }

  @media (max-width: 575px) {
    width: 100%;
  }
}
/* Интернет для гостиниц и отелей - "End" */

/* Интернет для магазина - "Begin" */
.page-inet-shop {
  position: relative;
}
.page-inet-shop-hero {
  margin-bottom: 48px;
}
.page-inet-shop-hero__inner {
  display: flex;

  padding: 32px 82px;

  border-radius: 16px;
  background: var(--color-secondary-grey-1);

  @media (max-width: 991px) {
    flex-direction: column-reverse;

    padding: 32px;
  }

  @media (max-width: 575px) {
    padding: 24px;
  }
}
.page-inet-shop-hero__header {
}
.page-inet-shop-hero__header-title {
  margin-bottom: 24px;
}
.page-inet-shop-hero__header-btn {
  margin-top: 32px;
}
.page-inet-shop-hero__picture {
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-inet-shop-hero__picture-image {
  width: 100%;
  height: 100%;

  @media (max-width: 991px) {
    width: 30%;
  }

  @media (max-width: 575px) {
    width: 100%;
  }
}
/* Интернет для магазина - "End" */

/* Интернет для ноутбука - "Begin" */
.page-inet-laptop {
  position: relative;
}
.page-inet-laptop-hero {
  margin-bottom: 48px;
}
.page-inet-laptop-hero__inner {
  display: flex;

  padding: 32px 82px;

  border-radius: 16px;
  background: var(--color-secondary-grey-1);

  @media (max-width: 991px) {
    flex-direction: column-reverse;

    padding: 32px;
  }

  @media (max-width: 575px) {
    padding: 24px;
  }
}
.page-inet-laptop-hero__header {
}
.page-inet-laptop-hero__header-title {
  margin-bottom: 24px;
}
.page-inet-laptop-hero__header-btn {
  margin-top: 32px;
}
.page-inet-laptop-hero__picture {
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-inet-laptop-hero__picture-image {
  width: 100%;
  height: 100%;

  @media (max-width: 991px) {
    width: 30%;
  }

  @media (max-width: 575px) {
    width: 100%;
  }
}
/* Интернет для ноутбука - "End" */

/* Безлимитный интернет - "Begin" */
.page-inet-unlimited {
  position: relative;
}
.page-inet-unlimited-hero {
  margin-bottom: 48px;
}
.page-inet-unlimited-hero__inner {
  display: flex;

  padding: 32px 82px;

  border-radius: 16px;
  background: var(--color-secondary-grey-1);

  @media (max-width: 991px) {
    flex-direction: column-reverse;

    padding: 32px;
  }

  @media (max-width: 575px) {
    padding: 24px;
  }
}
.page-inet-unlimited-hero__header {
}
.page-inet-unlimited-hero__header-title {
  margin-bottom: 24px;
}
.page-inet-unlimited-hero__header-btn {
  margin-top: 32px;
}
.page-inet-unlimited-hero__picture {
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-inet-unlimited-hero__picture-image {
  width: 100%;
  height: 100%;

  @media (max-width: 991px) {
    width: 30%;
  }

  @media (max-width: 575px) {
    width: 100%;
  }
}

.page-inet-unlimited-advantages {
  margin-top: 54px !important;
}
.page-inet-unlimited-advantages__inner {
  width: 100%;
  padding: 32px !important;

  border-radius: 16px;
  background: var(--color-secondary-grey-2);
}
.page-inet-unlimited-advantages__content {
  width: 75%;
  margin-top: 32px;

  @media (max-width: 1023px) {
    width: 100%;
  }
}

.page-inet-unlimited-preferred {
  margin-top: 54px !important;
}
.page-inet-unlimited-preferred__inner {
  width: 100%;
  padding: 32px !important;

  border-radius: 16px;
  background: var(--color-secondary-grey-1);
}
.page-inet-unlimited-preferred__content {
  width: 75%;
  margin-top: 32px;

  @media (max-width: 1023px) {
    width: 100%;
  }
}
.page-inet-unlimited-preferred .main-list {
  margin: 0 18px 0;
  padding: 14px 0;
}

.page-inet-unlimited-required {
  margin-top: 54px !important;
}
.page-inet-unlimited-required__inner {
  width: 100%;
  padding: 32px !important;

  border-radius: 16px;
  background: var(--color-secondary-grey-2);
}
.page-inet-unlimited-required__content {
  width: 75%;
  margin-top: 32px;

  @media (max-width: 1023px) {
    width: 100%;
  }
}
.page-inet-unlimited-required .main-list {
  margin: 0 18px 0;
  padding: 14px 0;
}

/* Безлимитный интернет - "End" */

/* Телевидение - "Begin" */
.page-tv-main {
}
.page-tv-main__items {
  display: flex;
  flex: 1;
  flex-wrap: wrap;

  margin-bottom: 48px;

  @media (max-width: 991px) {
    margin-bottom: 24px;

    gap: 24px;
  }
}
.page-tv-main-item {
  display: flex;
}
.page-tv-main-item:nth-child(2n) .page-tv-main-item__inner {
  background: var(--color-secondary-grey-2);
}
.page-tv-main-item__inner {
  position: relative;

  display: flex;
  overflow: hidden;
  align-items: center;
  justify-content: center;

  width: 100%;
  padding: 24px;

  border-radius: 16px;
  background: var(--color-secondary-grey-1);
}
.page-tv-main-item__inner:hover .page-tv-main-item__header-title {
  color: var(--color-primary);
}
.page-tv-main-item__header {
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-tv-main-item__header-title {
  padding: 0;

  text-align: center;
}
.page-tv-main-item__link {
  position: absolute;

  inset: 0px;
}
/* Телевидение - "End" */

/* Кабельное телевидение - "Begin" */
.page-tv-cable {
  position: relative;
}
.page-tv-cable-hero {
  margin-bottom: 48px;
}
.page-tv-cable-hero__inner {
  display: flex;

  padding: 32px 82px;

  border-radius: 16px;
  background: var(--color-secondary-grey-1);

  @media (max-width: 991px) {
    flex-direction: column-reverse;

    padding: 32px;
  }

  @media (max-width: 575px) {
    padding: 24px;
  }
}
.page-tv-cable-hero__header {
}
.page-tv-cable-hero__header-title {
  margin-bottom: 24px;
}
.page-tv-cable-hero__header-btn {
  margin-top: 32px;
}
.page-tv-cable-hero__picture {
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-tv-cable-hero__picture-image {
  width: 100%;
  height: 100%;

  @media (max-width: 991px) {
    width: 30%;
  }

  @media (max-width: 575px) {
    width: 100%;
  }
}
/* Кабельное телевидение - "End" */

/* Телевидение для частного дома - "Begin" */
.page-tv-home {
  position: relative;
}
.page-tv-home-hero {
  margin-bottom: 48px;
}
.page-tv-home-hero__inner {
  display: flex;

  padding: 32px 82px;

  border-radius: 16px;
  background: var(--color-secondary-grey-1);

  @media (max-width: 991px) {
    flex-direction: column-reverse;

    padding: 32px;
  }

  @media (max-width: 575px) {
    padding: 24px;
  }
}
.page-tv-home-hero__header {
}
.page-tv-home-hero__header-title {
  margin-bottom: 24px;
}
.page-tv-home-hero__header-btn {
  margin-top: 32px;
}
.page-tv-home-hero__picture {
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-tv-home-hero__picture-image {
  width: 100%;
  height: 100%;

  @media (max-width: 991px) {
    width: 30%;
  }

  @media (max-width: 575px) {
    width: 100%;
  }
}
/* Телевидение для частного дома - "End" */

.section-tv-set {
  margin-top: 54px !important;
}
.section-tv-set__inner {
  width: 100%;
  padding: 32px !important;

  border-radius: 16px;
  background: var(--color-secondary-grey-2);
}
.section-tv-set__content {
  width: 75%;
  margin-top: 32px;

  @media (max-width: 1023px) {
    width: 100%;
  }
}

.section-tv-stages {
  margin-top: 54px !important;
}
.section-tv-stages__inner {
  width: 100%;
  padding: 32px !important;

  border-radius: 16px;
  background: var(--color-secondary-grey-1);
}
.section-tv-stages__content {
  width: 75%;
  margin-top: 32px !important;

  @media (max-width: 1023px) {
    width: 100%;
  }
}
.section-tv-stages .main-list {
  margin: 0 18px 0;
  padding: 14px 0;
}

.section-tv-price {
  margin-top: 54px !important;
}
.section-tv-price__inner {
  width: 100%;
  padding: 32px !important;

  border-radius: 16px;
  background: var(--color-secondary-grey-2);
}
.section-tv-price__content {
  width: 75%;
  margin-top: 32px;

  @media (max-width: 1023px) {
    width: 100%;
  }
}
.section-tv-price .main-list {
  margin: 0 18px 0;
  padding: 14px 0;
}

.section-tv-trust {
  margin-top: 54px !important;
}
.section-tv-trust__inner {
  width: 100%;
  padding: 32px !important;

  border-radius: 16px;
  background: var(--color-secondary-grey-2);
}
.section-tv-trust__content {
  width: 75%;
  margin-top: 32px;

  @media (max-width: 1023px) {
    width: 100%;
  }
}
.section-tv-trust .main-list {
  margin: 0 18px 0;
  padding: 14px 0;
}

.tv-callback-form {
  width: 100%;
  margin-top: 54px !important;
}

/* Видеонаблюдение - "Begin" */
.page-video-main {
}
.page-video-main__items {
  display: flex;
  flex: 1;
  flex-wrap: wrap;

  margin-bottom: 48px;

  gap: 32px 0;

  @media (max-width: 991px) {
    margin-bottom: 24px;

    gap: 24px;
  }
}
.page-video-main-item {
  display: flex;
}
.page-video-main-item:nth-child(2n) .page-video-main-item__inner {
  background: var(--color-secondary-grey-2);
}
.page-video-main-item__inner {
  position: relative;

  display: flex;
  overflow: hidden;
  align-items: center;
  justify-content: center;

  width: 100%;
  padding: 24px;

  border-radius: 16px;
  background: var(--color-secondary-grey-1);
}
.page-video-main-item__inner:hover .page-video-main-item__header-title {
  color: var(--color-primary);
}
.page-video-main-item__header {
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-video-main-item__header-title {
  padding: 0;

  text-align: center;
}
.page-video-main-item__link {
  position: absolute;

  inset: 0px;
}

.page-video-main__callback-form {
  margin-bottom: 54px;
}

.page-video-main-structure {
}
.page-video-main-structure__inner {
  width: 100%;
  padding: 32px !important;

  border-radius: 16px;
  background: var(--color-secondary-grey-2);
}
.page-video-main-structure__content {
  width: 75%;
  margin-top: 32px;

  @media (max-width: 1023px) {
    width: 100%;
  }
}
.page-video-main-structure .main-list {
  margin: 0 18px 0;
  padding: 14px 0;
}

.page-video-main-species {
  margin-top: 54px;
}
.page-video-main-species__inner {
  width: 100%;
  padding: 32px !important;

  border-radius: 16px;
  background: var(--color-secondary-grey-1);
}
.page-video-main-species__content {
  width: 75%;
  margin-top: 32px;

  @media (max-width: 1023px) {
    width: 100%;
  }
}
.page-video-main-species .main-list {
  margin: 0 18px 0;
  padding: 14px 0;
}

.page-video-main-control {
  margin-top: 54px;
}
.page-video-main-control__inner {
  width: 100%;
  padding: 32px !important;

  border-radius: 16px;
  background: var(--color-secondary-grey-2);
}
.page-video-main-control__content {
  width: 75%;
  margin-top: 32px;

  @media (max-width: 1023px) {
    width: 100%;
  }
}
.page-video-main-control .main-list {
  margin: 0 18px 0;
  padding: 14px 0;
}

.page-video-main-install {
  margin-top: 54px;
}
.page-video-main-install__inner {
  width: 100%;
  padding: 32px !important;

  border-radius: 16px;
  background: var(--color-secondary-grey-1);
}
.page-video-main-install__content {
  width: 75%;
  margin-top: 32px;

  @media (max-width: 1023px) {
    width: 100%;
  }
}

.page-video-main-trust {
  margin-top: 54px;
}
.page-video-main-trust__inner {
  width: 100%;
  padding: 32px !important;

  border-radius: 16px;
  background: var(--color-secondary-grey-2);
}
.page-video-main-trust__content {
  width: 75%;
  margin-top: 32px;

  @media (max-width: 1023px) {
    width: 100%;
  }
}
.page-video-main-trust .main-list {
  margin: 0 18px 0;
  padding: 14px 0;
}
/* Видеонаблюдение - "End" */

/* Видеонаблюдение для квартиры - "Begin" */
.page-video-apartment {
  position: relative;
}
.page-video-apartment-hero {
  margin-bottom: 48px;
}
.page-video-apartment-hero__inner {
  display: flex;

  padding: 32px 82px;

  border-radius: 16px;
  background: var(--color-secondary-grey-1);

  @media (max-width: 991px) {
    flex-direction: column-reverse;

    padding: 32px;
  }

  @media (max-width: 575px) {
    padding: 24px;
  }
}
.page-video-apartment-hero__header {
}
.page-video-apartment-hero__header-title {
  margin-bottom: 24px;
}
.page-video-apartment-hero__header-btn {
  margin-top: 32px;
}
.page-video-apartment-hero__picture {
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-video-apartment-hero__picture-image {
  width: 100%;
  height: 100%;

  @media (max-width: 991px) {
    width: 30%;
  }

  @media (max-width: 575px) {
    width: 100%;
  }
}
/* Видеонаблюдение для квартиры - "End" */

/* Видеонаблюдение на стройку - "Begin" */
.page-video-building {
  position: relative;
}
.page-video-building-hero {
  margin-bottom: 48px;
}
.page-video-building-hero__inner {
  display: flex;

  padding: 32px 82px;

  border-radius: 16px;
  background: var(--color-secondary-grey-1);

  @media (max-width: 991px) {
    flex-direction: column-reverse;

    padding: 32px;
  }

  @media (max-width: 575px) {
    padding: 24px;
  }
}
.page-video-building-hero__header {
}
.page-video-building-hero__header-title {
  margin-bottom: 24px;
}
.page-video-building-hero__header-btn {
  margin-top: 32px;
}
.page-video-building-hero__picture {
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-video-building-hero__picture-image {
  width: 100%;
  height: 100%;

  @media (max-width: 991px) {
    width: 30%;
  }

  @media (max-width: 575px) {
    width: 100%;
  }
}
/* Видеонаблюдение на стройку - "End" */

/* Видеонаблюдение для магазина - "Begin" */
.page-video-shop {
  position: relative;
}
.page-video-shop-hero {
  margin-bottom: 48px;
}
.page-video-shop-hero__inner {
  display: flex;

  padding: 32px 82px;

  border-radius: 16px;
  background: var(--color-secondary-grey-1);

  @media (max-width: 991px) {
    flex-direction: column-reverse;

    padding: 32px;
  }

  @media (max-width: 575px) {
    padding: 24px;
  }
}
.page-video-shop-hero__header {
}
.page-video-shop-hero__header-title {
  margin-bottom: 24px;
}
.page-video-shop-hero__header-btn {
  margin-top: 32px;
}
.page-video-shop-hero__picture {
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-video-shop-hero__picture-image {
  width: 100%;
  height: 100%;

  @media (max-width: 991px) {
    width: 30%;
  }

  @media (max-width: 575px) {
    width: 100%;
  }
}
/* Видеонаблюдение для магазина - "End" */

/* Видеонаблюдение для частного дома - "Begin" */
.page-video-home {
  position: relative;
}
.page-video-home-hero {
  margin-bottom: 48px;
}
.page-video-home-hero__inner {
  display: flex;

  padding: 32px 82px;

  border-radius: 16px;
  background: var(--color-secondary-grey-1);

  @media (max-width: 991px) {
    flex-direction: column-reverse;

    padding: 32px;
  }

  @media (max-width: 575px) {
    padding: 24px;
  }
}
.page-video-home-hero__header {
}
.page-video-home-hero__header-title {
  margin-bottom: 24px;
}
.page-video-home-hero__header-btn {
  margin-top: 32px;
}
.page-video-home-hero__picture {
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-video-home-hero__picture-image {
  width: 100%;
  height: 100%;

  @media (max-width: 991px) {
    width: 30%;
  }

  @media (max-width: 575px) {
    width: 100%;
  }
}
/* Видеонаблюдение для частного дома - "End" */

/* Видеонаблюдение для склада - "Begin" */
.page-video-warehouse {
  position: relative;
}
.page-video-warehouse-hero {
  margin-bottom: 48px;
}
.page-video-warehouse-hero__inner {
  display: flex;

  padding: 32px 82px;

  border-radius: 16px;
  background: var(--color-secondary-grey-1);

  @media (max-width: 991px) {
    flex-direction: column-reverse;

    padding: 32px;
  }

  @media (max-width: 575px) {
    padding: 24px;
  }
}
.page-video-warehouse-hero__header {
}
.page-video-warehouse-hero__header-title {
  margin-bottom: 24px;
}
.page-video-warehouse-hero__header-btn {
  margin-top: 32px;
}
.page-video-warehouse-hero__picture {
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-video-warehouse-hero__picture-image {
  width: 100%;
  height: 100%;

  @media (max-width: 991px) {
    width: 30%;
  }

  @media (max-width: 575px) {
    width: 100%;
  }
}
/* Видеонаблюдение для склада - "End" */

/* Видеонаблюдение для ПВЗ - "Begin" */
.page-video-pvz {
  position: relative;
}
.page-video-pvz-hero {
  margin-bottom: 48px;
}
.page-video-pvz-hero__inner {
  display: flex;

  padding: 32px 82px;

  border-radius: 16px;
  background: var(--color-secondary-grey-1);

  @media (max-width: 991px) {
    flex-direction: column-reverse;

    padding: 32px;
  }

  @media (max-width: 575px) {
    padding: 24px;
  }
}
.page-video-pvz-hero__header {
}
.page-video-pvz-hero__header-title {
  margin-bottom: 24px;
}
.page-video-pvz-hero__header-btn {
  margin-top: 32px;
}
.page-video-pvz-hero__picture {
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-video-pvz-hero__picture-image {
  width: 100%;
  height: 100%;

  @media (max-width: 991px) {
    width: 30%;
  }

  @media (max-width: 575px) {
    width: 100%;
  }
}
/* Видеонаблюдение для ПВЗ - "End" */

/* Видеонаблюдение для офиса - "Begin" */
.page-video-office {
  position: relative;
}
.page-video-office-hero {
  margin-bottom: 48px;
}
.page-video-office-hero__inner {
  display: flex;

  padding: 32px 82px;

  border-radius: 16px;
  background: var(--color-secondary-grey-1);

  @media (max-width: 991px) {
    flex-direction: column-reverse;

    padding: 32px;
  }

  @media (max-width: 575px) {
    padding: 24px;
  }
}
.page-video-office-hero__header {
}
.page-video-office-hero__header-title {
  margin-bottom: 24px;
}
.page-video-office-hero__header-btn {
  margin-top: 32px;
}
.page-video-office-hero__picture {
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-video-office-hero__picture-image {
  width: 100%;
  height: 100%;

  @media (max-width: 991px) {
    width: 30%;
  }

  @media (max-width: 575px) {
    width: 100%;
  }
}
/* Видеонаблюдение для офиса - "End" */

.unit-billbord {
  min-height: 100%;
  padding: 33px 36px;

  border-radius: 8px;
  background: rgba(25, 30, 39, 0.4);

  font-weight: 600;
  line-height: 162%;

  backdrop-filter: blur(20px);
}
.unit-billbord .title-page {
  margin-bottom: 22px;

  color: #ffffff;

  font-weight: 600;
}
.unit-billbord .btn-main {
  margin-top: 24px;
}
.unit-billbord p {
  max-width: 408px;
}
.item-authorization {
  display: flex;
  align-items: flex-start;
  flex-direction: column;

  min-height: 100%;

  transition: all 0.3s;

  border: 1px solid #e3e6e8;
  border-radius: 8px;
}
.item-authorization__head {
  width: 100%;
  padding: 12px;

  text-align: center;
  text-transform: uppercase;

  border-radius: 8px;
  background: #f1f4f7;

  font-size: 26px;
  font-weight: 700;
  line-height: 130%;
}
.row > div:nth-child(2) .item-authorization__head {
  background: #ebf7ff;
}
.row > div:nth-child(3) .item-authorization__head {
  background: #dff2fe;
}
.row > div:nth-child(4) .item-authorization__head {
  background: #cdecff;
}
.item-authorization__head span {
  display: block;

  font-size: 20px;
}
.item-authorization__content {
  display: flex;
  align-items: center;
  flex: 1;
  flex-direction: column;

  width: 100%;
  padding: 23px 32px;
  padding-bottom: 25px;

  text-align: center;

  font-weight: 500;
}
.item-authorization__price {
  margin-bottom: 7px;

  font-size: 32px;
  font-weight: 600;
  line-height: 140%;
}
.item-authorization__content p {
  margin-bottom: 17px;
}
.btn-video {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  height: 36px;
  padding: 0 13px;
  padding-right: 20px;

  text-align: center;

  color: #1c56b6;
  border-radius: 6px;
  background: #f1f4f7;

  font-size: 14px;
  font-weight: 500;
  line-height: 100%;

  gap: 12px;
}
.item-authorization .btn-video {
  margin-top: 10px;
  margin-bottom: 19px;
}
.btn-video span {
  border-bottom: 1px #1c56b6 solid;
}
.item-authorization .btn-main {
  width: 100%;
  height: 44px;
  margin-top: auto;
  padding: 0 10px;

  font-size: 13px;
}
.item-authorization:hover {
  box-shadow: 0 5px 15px #d2e7f5;
}
.descr-authorization {
  margin-top: 34px;
  padding: 16px 24px;

  text-align: center;

  border-radius: 16px;
  background: #f2faff;

  font-size: 28px;
  font-weight: 600;
  line-height: 136%;
}
.descr-authorization a,
.descr-authorization span {
  color: #1c56b6;
}
.wrap-descr {
  display: flex;
  align-items: center;
  justify-content: center;
}
.info-block {
  margin-top: 12px;
  padding: 33px 87px;

  border-radius: 16px;
  background: #f1f4f7;

  font-weight: 500;
  line-height: 175%;
}
.info-block .title-main {
  line-height: 140%;
}
.info-block p {
  margin-bottom: 15px;
}
.info-block strong {
  font-weight: 600;
}
.info-block ul {
  max-width: 820px;
}
.premium-free ul li,
.info-block ul li {
  position: relative;

  padding-left: 23px;
}
.premium-free ul li::before,
.info-block ul li::before {
  position: absolute;
  top: 0;
  left: 3px;

  content: '•';
}
.info-block .btn-main {
  margin-top: 26px;
}
.info-block__image {
  margin-top: 33px;
  margin-left: 60px;
}
.info-block__image img {
  max-width: 100%;
  margin: 0 auto;
}
.info-block__content {
  margin-right: -67px;
}
.advantages_page .advantages__image img {
  width: 1238px;
}
.advantages.advantages_page {
  margin: 0;
}
.advantages_page .advantages__image {
  margin-left: -337px;
}
.advantages_page .title-main {
  margin-bottom: 15px;
}
.item-advantage__title {
  margin-bottom: 15px;

  font-size: 18px;
  font-weight: 600;
  line-height: 156%;
}
.advantages_page {
  padding-bottom: 32px;
}
.advantages_page .row.row_advantages > div {
  margin-bottom: 12px;
  padding: 0 6px;
}
.advantages_page .row.row_advantages {
  margin: 0 -6px;
  margin-bottom: -12px;
}
.billbord-about__units {
  width: 100%;
}
.page-premium {
  padding-top: 12px;
  padding-bottom: 78px;

  font-weight: 500;
}
.billbord-premium {
  position: relative;
  z-index: 1;

  min-height: 700px;
  margin-bottom: 48px;
  padding: 108px 89px;

  color: #ffffff;
  border-radius: 24px;
  background-image: url(../img/billbord_premium.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.billbord-premium::before {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;

  display: block;

  width: 100%;
  height: 100%;

  content: ' ';

  border-radius: 24px;
  background: linear-gradient(
  360deg,
  rgba(0, 0, 0, 0) 0%,
  rgba(0, 0, 0, 0.5) 100%
  );
}
.billbord-premium .title-billbord {
  max-width: 100%;
  margin-bottom: 40px;
  padding: 0;
}
.billbord-premium .title-middle {
  max-width: 614px;
  padding-bottom: 15px;
}
.billbord-premium .title-middle p {
  margin-bottom: 15px;
}
.billbord-premium__payments {
  display: flex;
  align-items: center;

  gap: 17px;
}
.page-premium .title-main {
  margin-bottom: 22px;

  line-height: 140%;
}
.tarifs-block {
  margin-bottom: 67px;
  padding: 53px;

  text-align: center;

  border-radius: 16px;
  background: #f1f4f7;
}
.tarifs-block .title-main {
  margin-bottom: 48px;
}
.tarifs-block__wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;

  gap: 37px;
}
.unit-tarif {
  display: flex;
  align-items: flex-start;
  flex-direction: column;

  width: 370px;
  max-width: 100%;
  min-height: 100%;

  transition: all 0.3s;

  border: 1px solid #e3e6e8;
  border-radius: 8px;
  background: #ffffff;
}
.unit-tarif:hover {
  box-shadow: 0 5px 15px #d2e7f5;
}
.unit-tarif__head {
  width: 100%;
  padding: 12px;

  border-radius: 8px;
  background: #ebf7ff;

  font-weight: 500;
}
.unit-tarif__name {
  display: flex;
  align-items: center;
  justify-content: center;

  text-align: center;
  text-transform: uppercase;

  font-size: 26px;
  font-weight: 700;
  line-height: 140%;

  gap: 7px;
}
.unit-tarif__name span {
  text-transform: none;

  color: #1c56b6;

  font-size: 16px;
  font-weight: 500;
}
.unit-tarif__price span {
  font-size: 20px;
  font-weight: 600;
}
.unit-tarif__content {
  display: flex;
  align-items: center;
  flex-direction: column;

  width: 100%;
  padding: 29px 10px;

  font-weight: 500;
}
.unit-tarif:nth-child(2) .unit-tarif__head {
  background: #dff2fe;
}
.include-list {
  display: flex;
  align-items: center;
  flex-direction: column;

  padding-bottom: 22px;
}
.include-list li {
  position: relative;

  margin-bottom: 15px;
  padding-left: 28px;
}
.include-list li::before {
  position: absolute;
  top: -1px;
  left: 0;

  display: block;

  width: 24px;
  height: 24px;

  content: ' ';

  background-image: url(../img/included.svg);
  background-repeat: no-repeat;
  background-position: center;
}
.include-list li.excluded::before {
  background-image: url(../img/excluded.svg);
}
.unit-tarif .btn-main {
  width: 100%;
  max-width: 228px;
  height: 44px;

  font-size: 13px;
}
.tarifs-block__bottom {
  padding-top: 48px;

  text-align: center;
}
.btn-main {
  padding: 0 48px;
}
.title-min {
  font-size: 18px;
  font-weight: 600;
  line-height: 156%;
}
.unit-step {
  display: flex;
  align-items: center;

  min-height: 100%;
  padding: 30px;

  border-radius: 8px;
  background: #f0f3f4;

  font-size: 14px;
  font-weight: 500;
  line-height: 157%;

  gap: 19px;
}
.unit-step__icon {
  display: flex;
  align-items: center;
  flex: none;
  justify-content: center;

  width: 36px;
  height: 36px;
}
.unit-step__icon img {
  width: 100%;
  height: auto;
}
.row.row_small > div {
  margin-bottom: 26px;
  padding: 0 13px;
}
.row.row_small {
  margin: 0 -13px;
  margin-bottom: -26px;
}
.premium-top__content {
  max-width: 736px;
}
.premium-top__content .row_small {
  padding-top: 72px;
}
.premium-top__content .title-min {
  max-width: 576px;
  margin-bottom: 20px;
}
.item-package {
  position: relative;
  position: relative;
  z-index: 1;

  display: flex;
  align-items: flex-start;
  flex-direction: column;

  height: 100%;
  min-height: 500px;
  padding: 32px 34px;

  color: #ffffff;
}
.item-package__image {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;

  width: 100%;
  height: 100%;

  border-radius: 16px;
}
.item-package__image img {
  width: 100%;
  height: 100%;

  border-radius: 16px;

  font-family: 'object-fit: cover;';

  object-fit: cover;
}
.item-package .title-page {
  margin-bottom: 38px;

  color: #ffffff;

  font-weight: 600;
  line-height: 100%;
}
.item-package li {
  margin-bottom: 9px;
}
.btn-unit {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  height: 70px;
  padding: 0 30px;

  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;

  color: #191e27;
  border-radius: 8px;
  background: #f0f3f4;

  font-weight: 500;

  gap: 19px;
}
.btn-unit:hover {
  background-color: #ffffff;
}
.btn-unit strong {
  color: #1c3a78;

  font-weight: 600;
}
.item-package__bottom {
  margin-top: auto;
}
.premium-top {
  padding-bottom: 67px;
}
.title-unit {
  margin-bottom: 17px;

  text-transform: uppercase;

  font-size: 26px;
  font-weight: 700;
  line-height: 140%;
}
.premium-free .title-min {
  margin-bottom: 50px;
}
.premium-free {
  padding-bottom: 52px;

  line-height: 175%;
}
.premium-process {
  padding-bottom: 54px;

  font-weight: 500;
}
.item-process {
  min-height: 100%;
  padding: 27px 37px;
  padding-bottom: 34px;

  border-radius: 8px;
  background: #f0f3f4;

  font-size: 14px;
  line-height: 157%;
}
.item-process .title-min {
  margin-bottom: 15px;
}
.item-package .title-middle {
  margin-right: -15px;

  color: #ffffff;
}
.item-form {
  position: relative;
}
.item-form__icon {
  position: absolute;
  top: 0;
  left: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  width: 70px;
  height: 100%;
}
.item-form__icon + input {
  padding-left: 73px;
}
.item-package__form {
  width: 100%;
  max-width: 336px;
  margin-top: 120px;
}
.item-package__form p {
  max-width: 243px;
  margin-bottom: 15px;
}
.item-package__form .btn-main {
  padding: 0 48px;
}
.btn-main {
  cursor: pointer;
}
.premium-commissions {
  padding-bottom: 60px;

  font-weight: 500;
  line-height: 175%;
}
.premium-commissions .title-min {
  max-width: 963px;
  margin-bottom: 34px;
}
.table-commissions {
  margin-bottom: 15px;
  padding: 15px 24px;

  border-radius: 16px;
  background: #f0f3f4;
}
.table-commissions table {
  width: 100%;

  border-spacing: 0;

  font-weight: 600;
}
.table-commissions td {
  padding: 15px;
  padding-left: 36px;

  border-right: 1px solid #c1c1c1;
  border-bottom: 1px solid #c1c1c1;
}
.table-commissions td:last-child {
  border-right: none;
}
.table-commissions tr:last-child td {
  border-bottom: none;
}
.table-commissions td:first-child {
  padding-left: 0;
}
.table-commissions + p {
  max-width: 1317px;
}
.commissions-calculator .title-min {
  margin-bottom: 15px;
}
.commissions-calculator {
  padding-top: 46px;

  font-size: 14px;
  line-height: 157%;
}
.commissions-calculator p {
  max-width: 684px;
}
.tabs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;

  gap: 16px;
}
.tabs a {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  height: 48px;
  padding: 0 18px;

  text-align: center;

  color: #1c56b6;
  border: 1px solid #1c56b6;
  border-radius: 6px;

  font-size: 13px;
  font-weight: 600;
}
.tabs a:hover,
.tabs .active a {
  color: #ffffff;
  background: #1c56b6;
}
.premium-examples .title-main {
  margin-bottom: 36px;
}
.tab-pane {
  display: none;
}
.tab-pane:first-child {
  display: block;
}
.tab-container {
  padding-top: 39px;
}
.premium-examples p {
  margin-bottom: 15px;
}
.premium-examples p:last-child {
  margin-bottom: 15px;
}
.premium-examples img {
  max-width: 100%;
  height: auto;

  border-radius: 8px;
}
.premium-process .row_main + .row_main {
  padding-top: 25px;
}

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

.title-main_tv {
  margin-top: 70px;
}

.tv__tabs {
  display: flex;

  margin: 0;
  padding: 0;

  list-style: none;
}
.tv__tabs li {
  margin-right: 10px;
}
.tv__tabs li a {
  padding: 10px;

  text-decoration: none;

  color: #1c56b6;
  border: 2px solid #1c56b6;
  border-radius: 5px;
  background-color: #ffffff;
}
.tv__tabs li a.active {
  color: #ffffff;
  background-color: #1c56b6;
}
.tv__content {
  margin-top: 20px;
}
.tv__item {
  display: none;

  padding: 20px;

  border-radius: 5px;
  background-color: #f9f9f9;
}
.tv__item.active {
  display: block;
}

.tv__item-image {
  overflow: hidden;

  width: 100%;
  height: 200px;
  margin-bottom: 30px;

  border-radius: 10px;
}

.tv__item-image img {
  width: 100%;
  height: 100%;

  object-fit: cover;
}

@media (max-width: 580px) {
  .tv__tabs {
    display: flex;
    flex-direction: column;

    gap: 30px;
  }

  .tv__item-image {
    height: 170px;
    margin-bottom: 15px;
  }

  .tv__tabs {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;

    gap: 25px;
  }

  .tv__tabs li {
    margin-right: 0;
  }
}

#cookie-modal {
  position: fixed;
  z-index: 1000;
  bottom: 20px;
  left: 50%;

  display: flex;
  align-items: center;
  justify-content: space-between;

  width: 80%;
  padding: 10px 30px;

  transform: translateX(-50%);
  text-align: center;

  color: #191e27;
  border: 1px solid #e3e6e8;
  border-radius: 16px;
  background-color: #f2faff;
}

#accept-cookies {
  display: inline-block;

  margin: 4px 2px;
  padding: 10px 20px;

  cursor: pointer;
  text-align: center;
  text-decoration: none;

  color: white;
  border: none;
  border-radius: 6px;
  background-color: #ff6f2c;

  font-size: 16px;
}

@media (max-width: 992px) {
  #cookie-modal {
    flex-direction: column;

    gap: 10px;
  }
}

.callback__block .line-form p .wpcf7-spinner {
  display: none;
}

.modal__form {
  margin: 0 auto;
  padding: 30px;
}

.modal__form .callback__title {
  text-align: center;
}

.modal__form .callback__text {
  display: block;

  margin: 15px 0 30px 0;

  text-align: center;
}

.modal__form form {
  display: flex;
  align-items: center;
  flex-direction: column;
}

.modal__form form .item-form {
  width: 100%;
}

.modal__form form .btn__wrapper,
.modal__form form .btn__wrapper input {
  width: 100%;
}

.modal__form .checkbox {
  margin-top: 20px;
}

div.wpcf7-validation-errors {
  position: absolute;

  opacity: 0;
  border: 0px;

  font-size: 0px;
}

span.wpcf7-not-valid-tip {
  position: relative;
  top: -10px;

  display: block;
  display: none !important;

  color: #ff0000;

  font-size: 14px !important;
  font-weight: normal;
}

input.wpcf7-form-control.wpcf7-text.wpcf7-validates-as-required.input-form.wpcf7-not-valid,
textarea.wpcf7-form-control.wpcf7-textarea.wpcf7-validates-as-required.input-form.wpcf7-not-valid {
  border: 1px solid red !important;
}

form .wpcf7-response-output {
  display: none !important;
}
div.wpcf7-mail-sent-ok {
  position: absolute;
  top: 17px;

  width: 100%;
  margin: 0px;
  padding: 0px;

  border: 0px !important;

  font-size: 0px;
}

img.alignright {
  float: right;

  margin: 0 0 1em 1em;
}
img.alignleft {
  float: left;

  margin: 0 1em 1em 0;
}
img.aligncenter {
  display: block;

  max-width: 100%;
  margin-right: auto;
  margin-left: auto;

  object-fit: contain;
}
.alignright {
  float: right;
}
.alignleft {
  float: left;
}
.aligncenter {
  display: block;

  margin-right: auto;
  margin-left: auto;
}

@media (max-width: 580px) {
  .modal__form {
    padding: 0;
  }

  .modal__form .callback__text {
    font-size: 14px;
    line-height: 20px;
  }
}

.page-catalog {
  padding-bottom: 100px;
}
.page-catalog .title-main {
  margin-bottom: 42px;
}
.item-catalog {
  display: block;

  min-height: 100%;
  padding: 24px;

  color: #191e27;
  border-radius: 8px;
  background: #f0f3f4;
}
.item-catalog__image {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 100%;
  height: 300px;
}
.item-catalog__image img {
  max-width: 100%;
  max-height: 100%;

  mix-blend-mode: multiply;
}
.item-catalog__title {
  display: block;

  font-size: 18px;
  font-weight: 600;
  line-height: 178%;
}
.item-catalog:hover {
  color: #1c3a78;
  box-shadow: 0px 0px 15px rgba(28, 86, 182, 0.2);
}
.item-subscriber {
  position: relative;
  z-index: 1;

  display: block;
  overflow: hidden;

  height: 475px;
  padding: 24px;

  color: #191e27;
  border-radius: 8px;
  background: #f0f3f4;

  font-size: 18px;
  font-weight: 600;
  line-height: 178%;
}
.item-subscriber__image {
  position: absolute;
  z-index: -1;
  right: 0;
  bottom: 0;

  display: block;

  width: 100%;
}
.item-subscriber__image img {
  width: 100%;
}
.item-subscriber__title {
  display: block;
}
.item-subscriber:hover {
  color: #ffffff;
  background: #1c56b6;
}
.page-digital .billbord-about {
  background-image: url(../img/billbord_digital.jpg);
}

.banner__main {
  height: 555px;
}
.banner__small {
  height: 215px;
}
.banner__small:nth-child(2) {
  height: 320px;
}
.billbord-about {
  overflow: hidden;

  height: auto;
  padding-bottom: 70px;
}
.row.row_main:empty,
.title-main:empty {
  display: none;

  margin: 0 !important;
  padding: 0 !important;
}
.advantages__image {
  position: relative;
  z-index: -1;
}

/*******/

.modal-container {
  position: fixed;
  z-index: 1060;
  top: 0;
  left: 0;

  display: none;
  overflow-x: hidden;
  overflow-y: auto;

  width: 100%;
  height: 100%;

  outline: 0;
  background-color: #333333bd;
}

.modal-container > div {
  display: flex;
  align-items: center;
  justify-content: center;

  height: 100%;
}

.qr-container {
  position: relative;

  padding: 10px;
  padding-bottom: 0;

  background: white;
}
.closeform {
  position: absolute;
  top: 2px;
  right: -15px;

  width: 26px;

  cursor: pointer;

  border-radius: 10px;
}

.qr-container .closeform {
  top: 5px;
  right: 5px;
}

.qr-payment-desc {
  margin-bottom: 7px;

  font-size: 16px;
}

.btn-center {
  display: flex;

  width: max-content;
  margin: 0 auto;
}
.item-tarif__text {
  margin-bottom: 15px;
}
.item-tarif__separatorLine{
  height: 1px;
  width: 100%;
  margin: 16px 0px;
  background: #d2d1d1;
  border-radius: 10px;
  margin-top: auto;
}
.item-tarif__tag--primary::after{
  position: absolute;
  left: 50%;
  bottom: -30%;
  width: 16px;
  height: 10px;
  background: #1f58b7;
  clip-path: polygon(0% 0%, 100% 0%, 50% 100%);
  content: "";
  display: block;
  transform: translateX(-50%);
}
.item-tarif__tags {
  display: flex;
  gap: 15px;
  align-items: center;
  margin-bottom: 20px;
}
.item-tarif__tag{
  
  padding: 3px 8px;
  border-radius: 999px;
  position: relative;
}
.item-tarif__tag--primary{
  background: #275daa;
  color: white;
}
.item-tarif__tag--secondary{
  color: rgb(73, 73, 73);
  background-color: #d6d7dc;
}
.item-tarif__tagText {
  font-size: 14px;
}
.item-tarif__saleImg {
  width: 55px;
  position: absolute;
  top: -13px;
  right: 5px;
}
.item-tarif__saleImg img{
  transform: none !important;
  width: 100%;
}

.form-title-data {
  margin-top: 30px;
}
.form-title-data .line-form {
  justify-content: center;

  margin-bottom: 20px;
}

.form-title-data .line-form .item-form:nth-child(2) {
  width: unset;
}

.page-wifi .wrap-descr {
  margin-bottom: 20px;
}
.item-form .jq-selectbox__select-text {
  width: auto !important;
}
.wow {
  visibility: hidden;
}

.page-recap {
  padding-top: 105px;
  padding-bottom: 139px;

  background-image: url(../img/bg_error.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.page-recap_error {
  background-image: url(../img/bg_error.jpg);
}
.recap-block {
  max-width: 566px;
  margin: 0 auto;
  padding: 24px 78px;
  padding-bottom: 70px;

  text-align: center;

  color: #001233;
  background: rgba(254, 254, 254, 0.15);

  backdrop-filter: blur(7.5px);
}
.recap-block__value {
  margin-bottom: -40px;

  letter-spacing: 6px;
  text-transform: uppercase;

  font-size: 200px;
  font-weight: 250;
  line-height: 120%;
}
.recap-block__title {
  margin-bottom: 55px;

  text-transform: uppercase;

  font-size: 30px;
  font-weight: 500;
  line-height: 130%;
}
.recap-block__descr {
  margin-bottom: 74px;

  font-size: 20px;
  font-weight: 400;
  line-height: 130%;
}
.recap-block .btn-main {
  height: 66px;
  padding: 0 48px;
}
.page-recap_thanks {
  background-image: url(../img/bg_thanks.jpg);
}
.recap-block__name {
  margin-top: 50px;
  margin-bottom: 34px;

  letter-spacing: 1.5px;
  text-transform: uppercase;

  font-size: 50px;
  font-weight: 800;
  line-height: 120%;
}
.page-recap_thanks .recap-block__descr {
  margin-bottom: 91px;
}

.form-title-data .title-about {
  width: 100%;
  max-width: 750px;
  margin: 0 auto 20px;

  text-align: center;
}

.item-service__content .btn-main img {
  width: 20px;
}

.menu-dropdown__title > a {
  color: #1c56b6;
}

.wpcf7-spinner {
  display: none !important;
}

form .btn-main.hiddenbut {
  pointer-events: none;
}

.advantages__image img {
  width: 100% !important;
  height: 100% !important;

  object-fit: cover;
}

.advantages_page .advantages__image {
  overflow: hidden;

  height: 100%;
  margin-left: 0px !important;

  border-radius: 10px;
}

.grecaptcha-badge {
  display: none !important;
}

.tv__item.equip {
  background-color: transparent !important;
}

body.modal-open {
  overflow: hidden;
}

.modal {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;

  display: none;
  overflow-y: auto;

  width: 100%;
  height: 100%;

  background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
  position: relative;

  overflow-y: auto;

  width: 80%;
  max-width: 500px;
  max-height: 80vh;
  margin: 5% auto;
  padding: 20px;

  border-radius: 8px;
  background-color: #ffffff;
}

.modal-content__title {
  margin-bottom: 12px;
  padding-bottom: 16px;

  text-align: center;

  font-size: 20px;
  font-weight: 600;
}

.close {
  position: absolute;
  top: 10px;
  right: 20px;

  cursor: pointer;

  font-size: 28px;
}

.location-list {
  overflow-y: auto;

  max-height: 400px;
}

.area {
  margin-bottom: 10px;
}

.area-name {
  padding: 10px;

  cursor: pointer;

  border-radius: 4px;
  background-color: #f5f5f5;

  font-weight: bold;
}

.city {
  margin: 5px 0;
  padding: 8px;

  cursor: pointer;
}

.city:hover {
  border-radius: 4px;
  background-color: #f0f0f0;
}

.search-box {
  box-sizing: border-box;
  width: 100%;
  margin-bottom: 15px;
  padding: 10px;

  border: 1px solid #dddddd;
  border-radius: 4px;
}

.location-button {
  height: 100%;
  padding: 10px 20px;

  cursor: pointer;
  transition: background-color 0.3s ease;

  color: white;
  border: none;
  border-radius: 5px;
  background-color: #df5211;

  font-size: 16px;
  font-weight: bold;
}

#openLocationModal{
  margin: 0;
  position: static !important;
}

#locationModal .modal-content {
  max-height: 85vh;
}
@media (max-width: 768px) {
  #locationModal .modal-content {
    max-height: 95vh;
  }
}
#locationList{
  max-height: 700px;
}
.page-tarifs .filter-main__selects {
  align-items: stretch;
}

.page-tarifs .filter-main__selects .item-form{
  margin-bottom: 0;
}

.location-button:hover {
  background-color: #c04810;
}
.page-tarifs.visible {
  display: block;
}
.cities {
  overflow: hidden;

  max-height: 0;
  padding-left: 20px;

  transition: opacity 0.3s ease, max-height 0.3s ease;
  /* Изначально скрыт */

  opacity: 0;
}

.cities.active {
  max-height: 5000px; /*  или другое подходящее значение */
  /* Показываем при добавлении класса 'active' */

  opacity: 1;
}


.faq-block {
    padding: 60px 0;
    background: #f8f9fb;
    margin-top: 30px;
}

.faq-title {
    text-align: center;
    margin-bottom: 40px;
    font-size: 28px;
}

.faq-item {
    border-bottom: 1px solid #e5e5e5;
    padding: 15px 0;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    padding-right: 25px;
}

.faq-question::after {
    content: "+";
    position: absolute;
    right: 0;
    font-size: 20px;
    transition: 0.3s;
}

.faq-item.active .faq-question::after {
    content: "-";
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: 0.3s ease;
    font-size: 15px;
    color: #555;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    margin-top: 10px;
}



.footer-block {
    margin-bottom: 60px;
}

.footer-block h2 {
    margin-bottom: 25px;
    font-size: 26px;
}

/* Контейнер Swiper */
.footer-block .swiper {
    position: relative;
    padding: 0 40px; 
    box-sizing: border-box;
    max-width: 100%;
    margin: 0 auto;
}

/* Слайды */
.footer-block .swiper-slide {
    background: #fff;
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s;
    box-sizing: border-box;
}

.footer-block .swiper-slide:hover {
    transform: translateY(-5px);
}

.footer-block .swiper-slide a {
    text-decoration: none;
    color: #000;
}

/* Стрелки */
.footer-block .swiper-button-prev,
.footer-block .swiper-button-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    background: none; /* без фона */
    border: none;
    color: #000;
    z-index: 10;
    cursor: pointer;
}




.footer-block .swiper-pagination {
    bottom: -5px;
}


@media (max-width: 1024px) {
    .footer-block .swiper-slide {
        width: 48%; 
        margin-right: 4%; 
    }

    .footer-block .swiper-slide:last-child {
        margin-right: 0;
    }
}

@media (max-width: 768px) {
    .footer-block .swiper-slide {
        width: 70%; 
        margin-right: 5%;
    }

    .tariffs-slider .slick-slide {
      width:80.666vw !important;
      max-width: 343px !important;
    }

    .footer-block .swiper-slide:last-child {
        margin-right: 0;
    }
    .back-button{
       width: 100%!important;
       padding-bottom: 30px!important;
    }
}

@media (max-width: 480px) {
    .footer-block .swiper-slide {
        width: 90%;
        margin-right: 5%;
    }


    .footer-block .swiper-button-prev,
    .footer-block .swiper-button-next {
        display: none;
    }

    .footer-block .swiper-slide:last-child {
        margin-right: 0;
    }
}

.back-button{
 
  width: auto;
}