@import url("https://fonts.googleapis.com/css?family=Montserrat:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i&display=swap&subset=cyrillic");



header .container.top .headerTop .callBack .blockPersonal a,

#PromoBlock .container .buttonPromo a,

#tariffs .container .rightTarifBlock .tarifOne a,

#area .container a,

#videoControl .container .contControl .buttonControlVideo a,

#AboutUs .container a,

footer .container .contFooter .contacts .rightContact .socialLink a,

#bgPage.developer .container a,

#textDeveloperFooter .container a,

#news a {

  border: 1px solid transparent;

  border-radius: 50px;

  padding: 14px 24px;

  font-weight: 500;

  text-decoration: none;

  font-size: 13px;

  min-width: 195px;

  text-align: center;

}

:root {
      --bar-height: 38px;
}

* {

  font-family: 'Montserrat', sans-serif;

}



.container {

  width: 100%;

  max-width: 1200px;

  margin: 0 auto;

}



body {

  font-family: 'Montserrat', sans-serif;

  font-size: 14px;

  margin: 0;

  transition: padding-top 0.4s ease;
}

/* Полоса */
    .announcement-bar {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      height: var(--bar-height);
      background: #c94c0a;
      color: #fff;
      font-size: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 24px;
      z-index: 900;
      transform: translateY(-100%);
      transition: transform 0.4s ease;
    }

    .announcement-bar.visible {
      transform: translateY(0);
    }

    .announcement-bar__content {
      position: relative;
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 20px;
    }

    .close-btn {
      background: none;
      border: none;
      color: inherit;
      font-size: 22px;
      cursor: pointer;
      width: 32px;
      height: 32px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      transition: background 0.2s;
    }

    .close-btn:hover {
      background: rgba(255,255,255,0.12);
    }

    /* Контент страницы — отступ сверху равен высоте полосы */
    .page-content {
      padding-top: var(--bar-height);
      transition: padding-top 0.4s ease;
    }

    /* Когда полоса скрыта */
    body.bar-closed .page-content {
      padding-top: 0;
    }

@media (max-width: 767px) {
  :root {
    --bar-height: 48px;          /* чуть выше, легче попасть пальцем */
  }

  .announcement-bar {
    height: var(--bar-height);
    font-size: 13.5px;           /* комфортнее читать */
    padding: 0 16px;
    white-space: nowrap;         /* стараемся избежать переноса */
    overflow: hidden;
    text-overflow: ellipsis;     /* … если всё-таки не влезло */
  }

  .announcement-bar__content {
    gap: 12px;                   /* меньше расстояние */
   /* justify-content: space-between; /* текст слева, крестик справа */
    width: 100%;
    max-width: none;
  }

  .close-btn {
    flex-shrink: 0;
    width: 44px !important;
    height: 44px !important;
    font-size: 24px;
    margin-right: -8px;          /* чуть ближе к краю, но не прилипает */
  }

  /* Если текст всё равно переносится — уменьшаем */
  .announcement-bar span {
    font-size: 13px;
    max-width: 75vw;             /* не даём растягиваться слишком сильно */
  }
}

/* Очень узкие экраны (маленькие Android и старые iPhone) */
@media (max-width: 360px) {
  .announcement-bar {
    font-size: 12.5px;
    --bar-height: 44px;
  }
  .close-btn {
    font-size: 22px;
  }
}

.msg-mobile { display: none; }

@media (max-width: 767px) {
  .msg-desktop { display: none; }
  .msg-mobile  {
 display: inline;
 text-align: center;
 }
}

input {

  border: 1px solid #8ba0b7;

  padding: 20px 26px;

  color: #8ba0b7;

  font-size: 14px;

  outline: none;

  font-weight: 300;

  width: 100%;

  background: none;

  /* Firefox 18- */

}



input::-webkit-input-placeholder {

  font-size: 14px;

  color: #8ba0b7;

}



input::-moz-placeholder {

  font-size: 14px;

  color: #8ba0b7;

}



input:-ms-input-placeholder {

  font-size: 14px;

  color: #8ba0b7;

}



.select {

  width: 100%;

  border: 1px solid #8ba0b7;

  padding: 20px 26px;

  color: #8ba0b7;

  font-size: 14px;

  outline: none;

  font-weight: 300;

  position: relative;

  cursor: pointer;

}



.select span {

  width: 100%;

  display: block;

}



.select:before {

  position: absolute;

  right: 20px;

  top: 25px;

  content: '';

  width: 9px;

  height: 5px;

  background: url("../images/dropSelect.png");

  background-size: cover;

  background-position: center;

  background-repeat: no-repeat;

  -webkit-transition: 0.5s;

  transition: 0.5s;

}



.select.active:before {

  -webkit-transform: rotate(180deg);

  transform: rotate(180deg);

  -webkit-transition: 0.5s;

  transition: 0.5s;

}



.select .dropSelect {

  position: absolute;

  display: none;

}



.select .dropSelect.active {

  display: block;

  position: absolute;

  background: #082b4f;

  width: 100%;

  left: 0;

  top: 60px;

  z-index: 2;

}



.select .dropSelect span {

  padding: 20px 26px;

  display: block;

  color: #8ba0b7;

  font-size: 14px;

  text-align: left;

}



/* popUP */



.bgPopUp {

  display: none;

}



.bgPopUp.active {

  position: fixed;

  width: 100%;

  height: 100vh;

  background: rgba(0, 0, 0, 0.5);

  display: -webkit-box;

  display: flex;

  -webkit-box-align: center;

  align-items: center;

  -webkit-box-pack: center;

  justify-content: center;

  z-index: 999;

}



.bgPopUp.active .popUp {

  display: -webkit-box;

  display: flex;

  -webkit-box-orient: vertical;

  -webkit-box-direction: normal;

  flex-direction: column;

  -webkit-box-align: center;

  align-items: center;

  -webkit-box-pack: center;

  justify-content: center;

  position: relative;

  background: #fff;

  width: 100%;

  max-width: 500px;

  padding: 50px;

}



.bgPopUp.active .popUp span {

  position: absolute;

  right: 20px;

  top: 20px;

  font-size: 16px;

  cursor: pointer;

}



.bgPopUp.active .popUp strong {

  font-size: 22px;

  padding-bottom: 20px;

  color: red;

  font-weight: 900;

}



.bgPopUp.active .popUp input {

  margin-bottom: 20px;

  font-size: 16px;

}



.bgPopUp.active .popUp input[type=submit] {

  font-size: 16px;

  font-weight: bold;

  outline: none;

  border: none;

  cursor: pointer;

}



/* popUp */



/* HEADER */



header {

  position: relative;

}



header#HomePage {

  background: url("../images/bgHeaderHome.png");

  background-size: cover;

  background-position: center;

  background-repeat: no-repeat;

}



header .container.top {

  height: 220px;

  display: -webkit-box;

  display: flex;

  -webkit-box-orient: vertical;

  -webkit-box-direction: normal;

  flex-direction: column;

}



header .container.top .headerTop {

  display: -webkit-box;

  display: flex;

  -webkit-box-align: start;

  align-items: flex-start;

  -webkit-box-pack: end;

  justify-content: flex-end;

  position: relative;

  padding-bottom: 32px;

}



header .container.top .headerTop .logoType {

  position: absolute;

  background: url("../images/bgLogo.png");

  background-size: cover;

  background-position: center;

  background-repeat: no-repeat;

  width: 100%;

  max-width: 600px;

  height: 210px;

  display: -webkit-box;

  display: flex;

  -webkit-box-align: start;

  align-items: flex-start;

  -webkit-box-pack: center;

  justify-content: center;

  top: 0;

  padding-top: 35px;

  left: -180px;

  z-index: 3;

  cursor: pointer;

}



header .container.top .headerTop .callBack {

  position: relative;

  padding-top: 35px;

  display: -webkit-box;

  display: flex;

  -webkit-box-align: center;

  align-items: center;

  -webkit-box-pack: end;

  justify-content: flex-end;

  width: 100%;

}



header .container.top .headerTop .callBack .phoneCallBack a {

  text-decoration: none;

}



header .container.top .headerTop .callBack .phoneCallBack a:first-child {

  color: #dcc8e3;

  font-size: 22px;

}



header .container.top .headerTop .callBack .phoneCallBack a:last-child {

  color: #f1cd30;

  font-size: 14px;

  margin-left: 14px;

}



header .container.top .headerTop .callBack .phoneCallBack a img {

  margin-right: 15px;

}



header .container.top .headerTop .callBack .phoneCallBack a b {

  font-weight: bold;

}



header .container.top .headerTop .callBack .phoneCallBack.black > a {

  color: #191919;

}



header .container.top .headerTop .callBack .blockPersonal {

  margin-left: 27px;

  display: -webkit-box;

  display: flex;

  -webkit-box-align: center;

  align-items: center;

  -webkit-box-pack: justify;

  justify-content: space-between;

}



header .container.top .headerTop .callBack .blockPersonal a {

  border-color: #dcc8e3;

  display: -webkit-box;

  display: flex;

  -webkit-box-align: center;

  align-items: center;

  -webkit-box-pack: justify;

  justify-content: space-between;

  text-decoration: none;

  color: #dcc8e3;

  height: 50px;

  width: initial;

  min-width: initial;

}



header .container.top .headerTop .callBack .blockPersonal a:last-child {

  margin-left: 28px;

}



header .container.top .headerTop .callBack .blockPersonal a img {

  margin-right: 13px;

}



header .container.top .headerTop .callBack .blockPersonal.black > a {

  color: #191919;

  border-color: #191919;

}



header .container.top .headerTop .callBack .blockPersonal.black > a:last-child {

  background: #c94d18;

  border-color: #c94d18;

  color: #fff;

}



header .container.top .headerMenu {

  display: -webkit-box;

  display: flex;

  -webkit-box-align: center;

  align-items: center;

  -webkit-box-pack: end;

  justify-content: flex-end;

  position: relative;

}



header .container.top .headerMenu .mobile-menu-toggle {

  display: none;

  position: absolute;

  right: -6px;

  top: 15px;

}



header .container.top .headerMenu .mobile-menu-toggle .menu-item {

  background: #f1cd30;

  display: block;

  height: 3px;

  margin: 0 0 10px;

  -webkit-transition: all 0.3s ease-in-out;

  transition: all 0.3s ease-in-out;

  width: 40px;

}



header .container.top .headerMenu .hamburger-menu.open .menu-item {

  margin: 0 0 5px;

}



header .container.top .headerMenu .hamburger-menu.open .menu-item:first-child {

  -webkit-transform: rotate(45deg);

  transform: rotate(45deg);

  -webkit-transform-origin: 10px;

  transform-origin: 10px;

}



header .container.top .headerMenu .hamburger-menu.open .menu-item:nth-child(2) {

  opacity: 0;

}



header .container.top .headerMenu .hamburger-menu.open .menu-item:nth-child(3) {

  -webkit-transform: rotate(-45deg);

  transform: rotate(-45deg);

  -webkit-transform-origin: 8px;

  transform-origin: 8px;

}



header .container.top .headerMenu ul {

  width: 100%;

  max-width: 837px;

  display: -webkit-box;

  display: flex;

  -webkit-box-align: center;

  align-items: center;

  -webkit-box-pack: end;

  justify-content: flex-end;

  padding: 32px 0;

  border-top: 1px solid #6e6d9b;

}



header .container.top .headerMenu ul.black li a {

  color: #191919;

}



header .container.top .headerMenu ul li {

  margin-left: 30px;

}



header .container.top .headerMenu ul li a {

  white-space: nowrap;

  font-weight: 500;

  color: #fff;

  font-size: 15px;

  text-decoration: none;

}



header .container.top .headerMenu ul li a:hover {

  color: #f1cd30;

}



header .container.slider {

  padding-bottom: 105px;

}



header .container.slider .sliderHeader .itemSlider {

  display: -webkit-box;

  display: flex;

  -webkit-box-align: start;

  align-items: flex-start;

  -webkit-box-pack: justify;

  justify-content: space-between;

  position: relative;

  min-height: 480px;

}



header .container.slider .sliderHeader .itemSlider div {

  padding-top: 180px;

  width: 50%;

  display: -webkit-box;

  display: flex;

  -webkit-box-orient: vertical;

  -webkit-box-direction: normal;

  flex-direction: column;

  -webkit-box-align: start;

  align-items: flex-start;

}



header .container.slider .sliderHeader .itemSlider div > img {

  width: 100%;

}



header .container.slider .sliderHeader .itemSlider div strong {

  font-size: 60px;

  color: #fff;

  font-weight: 900;

  line-height: 65px;

  padding-bottom: 46px;

  position: relative;

  padding-left: 40px;

}



header .container.slider .sliderHeader .itemSlider div strong:before {

  position: absolute;

  top: 32px;

  content: '';

  background: #fff;

  width: 23px;

  height: 1px;

  left: 0;

}



header .container.slider .sliderHeader .itemSlider div span {

  padding-left: 68px;

  color: #fff;

  font-size: 14px;

  display: -webkit-box;

  display: flex;

  -webkit-box-align: center;

  align-items: center;

  position: relative;

}



header .container.slider .sliderHeader .itemSlider div span img {

  margin-right: 13px;

}



header .container.slider .sliderHeader .itemSlider div span:before {

  position: absolute;

  top: 13px;

  content: '';

  background: #fff;

  width: 51px;

  height: 1px;

  left: 0;

}



header .container.slider .sliderHeader .itemSlider .rightBlockSlider {

  padding-top: 0;

  width: 50%;

  background: url("../images/slider1.png");

  background-repeat: no-repeat;

  background-position: center;

  background-size: contain;

  position: absolute;

  height: 100%;

  right: 50px;

  top: 0;

}



header .nextBlock {

  background: url("../images/buttonHeader.png");

  background-repeat: no-repeat;

  background-size: cover;

  background-position: center;

  width: 200px;

  height: 42px;

  display: -webkit-box;

  display: flex;

  -webkit-box-align: end;

  align-items: flex-end;

  -webkit-box-pack: center;

  justify-content: center;

  position: absolute;

  margin: 0 auto;

  bottom: -1px;

  left: 0;

  right: 0;

}



/* HEADER */



/* QuickConntection */



#QuickConnection {

  background: linear-gradient(-55deg, #082b4f 50%, #052547 50%);

}



#QuickConnection > .container {

  text-align: center;

  padding: 110px 0;

}



#QuickConnection > .container strong {

  font-size: 35px;

  font-weight: 300;

  color: #fff;

  text-transform: uppercase;

}



#QuickConnection > .container p {

  padding-top: 30px;

  padding-bottom: 60px;

  font-size: 15px;

  color: #b2b7bc;

}



#QuickConnection > .container .quickTabs .titleQuickTabs {

  display: -webkit-box;

  display: flex;

  -webkit-box-align: center;

  align-items: center;

  -webkit-box-pack: center;

  justify-content: center;

  padding-bottom: 60px;

}



#QuickConnection > .container .quickTabs .titleQuickTabs li {

  padding: 20px 38px;

  font-size: 15px;

  color: #fff;

  border-bottom: 1px solid #fff;

  cursor: pointer;

}



#QuickConnection > .container .quickTabs .titleQuickTabs li.active {

  color: #f1cd30;

  border-bottom: 1px solid #f1cd30;

}



#QuickConnection > .container .quickTabs .ItemQuickTab {

  display: none;

}



#QuickConnection > .container .quickTabs .ItemQuickTab.active {

  display: block;

}



#QuickConnection > .container .quickTabs .ItemQuickTab #Apartment {

  display: -webkit-box;

  display: flex;

  -webkit-box-orient: vertical;

  -webkit-box-direction: normal;

  flex-direction: column;

  -webkit-box-align: center;

  align-items: center;

}



#QuickConnection > .container .quickTabs .ItemQuickTab #Apartment .inputsApartment {

  width: 100%;

  display: -webkit-box;

  display: flex;

  -webkit-box-align: center;

  align-items: center;

  -webkit-box-pack: justify;

  justify-content: space-between;

  margin-bottom: 45px;

}



#QuickConnection > .container .quickTabs .ItemQuickTab #Apartment .inputsApartment label {

  text-align: initial;

  width: 100%;

  margin-right: 60px;

}



#QuickConnection > .container .quickTabs .ItemQuickTab #Apartment .inputsApartment label:last-child {

  margin-right: 0px;

}



#QuickConnection > .container .quickTabs .ItemQuickTab #Apartment .inputsApartment label > span {

  display: block;

  font-size: 13px;

  color: #fff;

  margin-bottom: 15px;

}



#QuickConnection > .container .quickTabs .ItemQuickTab #Apartment p {

  font-size: 13px;

  color: #8ba0b7;

}

#QuickConnection > .container .quickTabs .ItemQuickTab #Apartment .check-policy {
     text-decoration: underline;
     color: red;
     cursor: pointer
}

#QuickConnection > .container .quickTabs .ItemQuickTab #Apartment input[type=submit] {

  font-weight: 5000;

  font-size: 14px;

  color: #fff;

  background: #c94d18;

  border: none;

  max-width: 270px;

}



/* QuickConntection */



/* PROMO BLOCK */



#PromoBlock {

  padding-top: 120px;

  padding-bottom: 150px;

  background: url("../images/bgPromoConnect.png");

  background-repeat: no-repeat;

  background-position: center;

  background-size: cover;

  height: 730px;

}



#PromoBlock .container span {

  font-size: 46px;

  color: #1e1e1e;

}



#PromoBlock .container strong {

  font-size: 94px;

  font-weight: bold;

}



#PromoBlock .container strong span {

  font-size: 67px;

}



#PromoBlock .container strong b {

  color: #fff;

}



#PromoBlock .container p {

  padding: 57px 0;

  font-size: 19px;

  color: #1e1e1e;

  line-height: 29px;

}



#PromoBlock .container .buttonPromo {

  display: -webkit-box;

  display: flex;

  -webkit-box-align: center;

  align-items: center;

  -webkit-box-pack: start;

  justify-content: flex-start;

}



#PromoBlock .container .buttonPromo a {

  text-transform: uppercase;

}



#PromoBlock .container .buttonPromo a:first-child {

  background: #1e1e1e;

  color: #fff;

  margin-right: 15px;

}



#PromoBlock .container .buttonPromo a:last-child {

  border-color: #1e1e1e;

  color: #1e1e1e;

}



/* PROMO BLOCK */



/* specifications */



#specifications {

  background: #1e1e1e;

  padding: 80px 0;

}



#specifications > .container {

  display: -webkit-box;

  display: flex;

  -webkit-box-align: start;

  align-items: flex-start;

  -webkit-box-pack: justify;

  justify-content: space-between;

}



#specifications > .container .itemSpec {

  display: -webkit-box;

  display: flex;

  -webkit-box-align: center;

  align-items: center;

  -webkit-box-pack: center;

  justify-content: center;

}



#specifications > .container .itemSpec p {

  margin-left: 20px;

  color: #fff;

  font-size: 14px;

  line-height: 24px;

}



/* specifications */



/* tariffs */



#tariffs {

  padding: 100px 0;

  background: url("../images/bgTariffs.png");

  background-size: cover;

  background-position: center;

  background-repeat: no-repeat;

}



#tariffs .container {

  display: -webkit-box;

  display: flex;

  -webkit-box-align: start;

  align-items: flex-start;

  -webkit-box-pack: justify;

  justify-content: space-between;

}



#tariffs .container .leftTarifBlock {

  display: -webkit-box;

  display: flex;

  -webkit-box-orient: vertical;

  -webkit-box-direction: normal;

  flex-direction: column;

  -webkit-box-align: start;

  align-items: flex-start;

  position: relative;

}



#tariffs .container .leftTarifBlock strong {

  padding-top: 20px;

  padding-left: 90px;

  font-size: 60px;

  font-weight: 900;

  color: #fff;

  line-height: 65px;

}



#tariffs .container .leftTarifBlock img {

  position: absolute;

  top: -50px;

  left: -25px;

}



#tariffs .container .rightTarifBlock {

  display: -webkit-box;

  display: flex;

  -webkit-box-align: start;

  align-items: flex-start;

  width: 50%;

}



#tariffs .container .rightTarifBlock .tarifOne {

  background: #fff;

  padding: 12px;

  border-radius: 3px;

  display: -webkit-box;

  display: flex;

  -webkit-box-orient: vertical;

  -webkit-box-direction: normal;

  flex-direction: column;

  -webkit-box-pack: start;

  justify-content: flex-start;

  -webkit-box-align: center;

  align-items: center;

  width: 50%;

  margin-right: 50px;

  text-align: center;

}



#tariffs .container .rightTarifBlock .tarifOne:last-child {

  margin-right: 0;

}



#tariffs .container .rightTarifBlock .tarifOne strong {

  line-height: 73px;

  background: #3b84d3;

  text-align: center;

  font-weight: 900;

  font-size: 23px;

  color: #fff;

  width: 100%;

}



#tariffs .container .rightTarifBlock .tarifOne > span {

  padding-top: 17px;

  font-size: 15px;

  color: #272727;

}



#tariffs .container .rightTarifBlock .tarifOne .itemTarif {

  display: -webkit-box;

  display: flex;

  -webkit-box-orient: vertical;

  -webkit-box-direction: normal;

  flex-direction: column;

  -webkit-box-align: center;

  align-items: center;

  padding-top: 40px;

  padding-bottom: 30px;

}



#tariffs .container .rightTarifBlock .tarifOne .itemTarif span {

  font-size: 15px;

  color: #272727;

  padding: 15px 0;

}



#tariffs .container .rightTarifBlock .tarifOne .itemTarif p {

  font-size: 19px;

  color: #272727;

}



#tariffs .container .rightTarifBlock .tarifOne .itemTarif p b {

  font-weight: bold;

}



#tariffs .container .rightTarifBlock .tarifOne .line {

  background: #d7d5d7;

  width: 85px;

  height: 1px;

}



#tariffs .container .rightTarifBlock .tarifOne a {

  display: block;

  background: #c94d18;

  text-decoration: none;

  color: #fff;

  font-weight: 500;

  font-size: 14px;

  margin-bottom: 26px;

}



/* tariffs */



/* area */



#area {

  background: -webkit-gradient(linear, left top, right top, color-stop(50%, #2d5c96), to(#874888));

  background: linear-gradient(90deg, #2d5c96 50%, #874888 100%);

  padding-top: 92px;

  padding-bottom: 105px;

}



#area .container {

  text-align: center;

}



#area .container .titleArea {

  padding-bottom: 68px;

  display: -webkit-box;

  display: flex;

  -webkit-box-align: start;

  align-items: flex-start;

  -webkit-box-pack: justify;

  justify-content: space-between;

}



#area .container .titleArea strong {

  font-weight: bold;

  font-size: 60px;

  color: #fff;

}



#area .container .titleArea p {

  line-height: 22px;

  color: #fff;

  font-size: 14px;

  text-align: initial;

  padding-top: 10px;

}



#area .container .imgArea {

  background: url("../images/bgArea.png");

  width: 100%;

  background-size: cover;

  background-position: center;

  background-repeat: no-repeat;

  height: 510px;

}



#area .container p {

  padding-top: 70px;

  font-size: 22px;

  line-height: 33px;

  color: #fff;

}



#area .container a {

  background: #c94d18;

  max-width: 280px;

  margin: 44px auto;

  text-decoration: none;

  color: #fff;

  height: 62px;

  display: -webkit-box;

  display: flex;

  -webkit-box-align: center;

  align-items: center;

  -webkit-box-pack: center;

  justify-content: center;

  font-weight: 500;

  color: #fff;

  letter-spacing: 1.2px;

  text-transform: uppercase;

}



/* area */



/* videoControl */



#videoControl {

  padding: 100px 0;

  background: url("../images/bgVideoControl.png");

  background-size: cover;

  background-position: center;

  background-repeat: no-repeat;

}



#videoControl .container strong {

  color: #1e1e1e;

  font-weight: 900;

  font-size: 60px;

}



#videoControl .container .contControl {

  width: 50%;

  padding: 55px;

  margin-top: 60px;

  background: #fff;

  box-shadow: 0px 17px 40px 0px rgba(43, 43, 43, 0.1);

}



#videoControl .container .contControl p {

  line-height: 26px;

  font-size: 16px;

  color: #1e1e1e;

}



#videoControl .container .contControl .buttonControlVideo {

  margin-top: 35px;

  display: -webkit-box;

  display: flex;

  -webkit-box-align: center;

  align-items: center;

  -webkit-box-pack: start;

  justify-content: flex-start;

}



#videoControl .container .contControl .buttonControlVideo a {

  text-decoration: none;

  font-weight: 500;

  text-transform: uppercase;

}



#videoControl .container .contControl .buttonControlVideo a:first-child {

  background: #c94d18;

  color: #fff;

  margin-right: 18px;

}



#videoControl .container .contControl .buttonControlVideo a:last-child {

  border-color: #c94d18;

  color: #c94d18;

}



/* videoControl */



/* Advantages */



#Advantages {

  padding: 100px 0;

  background: url("../images/Advantages.png");

  background-size: cover;

  background-position: center;

  background-repeat: no-repeat;

}



#Advantages .container {

  text-align: center;

}



#Advantages .container strong {

  font-size: 60px;

  font-weight: 900;

  color: #fff;

}



#Advantages .container > span {

  display: block;

  margin-top: 15px;

  color: #fff;

  font-size: 44px;

  font-weight: 300;

}



#Advantages .container .contAdvantages {

  width: 100%;

  display: -webkit-box;

  display: flex;

  -webkit-box-align: start;

  align-items: flex-start;

  -webkit-box-pack: justify;

  justify-content: space-between;

  flex-wrap: wrap;

}



#Advantages .container .contAdvantages .itemAdvantage {

  width: 33%;

  display: -webkit-box;

  display: flex;

  -webkit-box-orient: vertical;

  -webkit-box-direction: normal;

  flex-direction: column;

  -webkit-box-align: center;

  align-items: center;

  margin-top: 70px;

}



#Advantages .container .contAdvantages .itemAdvantage span {

  display: block;

  font-size: 19px;

  font-weight: bold;

  color: #f1cd30;

  padding: 25px 0;

}



#Advantages .container .contAdvantages .itemAdvantage p {

  line-height: 22px;

  font-size: 14px;

  color: #b9c1ca;

}



/* Advantages */



/* AboutUs */



#AboutUs {

  background: #fff;

  padding: 100px 0;

  text-align: center;

}



#AboutUs .container p {

  color: #1e1e1e;

  font-size: 16px;

  line-height: 26px;

}



#AboutUs .container p b {

  font-weight: 900;

  font-size: 30px;

}



#AboutUs .container a {

  background: #c94d18;

  max-width: 280px;

  margin: 50px auto;

  color: #fff;

  text-transform: uppercase;

}



/* AboutUs */



/* FOOTER */



footer {

  background: #1e1e1e;
  padding-bottom: 60px;

  

}



footer .container .menuFooter {

   padding: 30px 0;

  border-bottom: 1px solid #4d4d4d;
  width: 100%;

}



footer .container .menuFooter ul {

  display: -webkit-box;

  display: flex;

  -webkit-box-align: center;

  align-items: center;

  -webkit-box-pack: justify;

  justify-content: space-between;

  padding: 0 150px;

}



footer .container .menuFooter ul li a {

  font-size: 14px;

  color: #bbbbbb;

  text-decoration: none;

}



footer .container .menuFooter ul li a:hover {

  color: #f1cd30;

}



footer .container .contFooter {

  padding-top: 50px;

  display: -webkit-box;

  display: flex;

  -webkit-box-align: start;

  align-items: flex-start;

  -webkit-box-pack: start;

  justify-content: flex-start;

}



footer .container .contFooter .coyriting {

  max-width: 310px;

  width: 100%;

  margin-right: 100px;

}



footer .container .contFooter .coyriting p {

  font-size: 13px;

  color: #fff;

  line-height: 24px;

}



footer .container .contFooter .coyriting a {

  display: block;

  margin: 30px 0;

  font-size: 13px;

  color: #fff;

  font-weight: 500;

  text-decoration: none;

  border-bottom: 1px solid #fff;

}



footer .container .contFooter .coyriting .counter {

  margin-bottom: 20px;

}



footer .container .contFooter .contacts {

  display: -webkit-box;

  display: flex;

  -webkit-box-align: start;

  align-items: flex-start;

  -webkit-box-pack: start;

  justify-content: flex-start;

}



footer .container .contFooter .contacts .leftContact {

  margin-right: 80px;

  width: 100%;

  max-width: 200px;

}



footer .container .contFooter .contacts .leftContact p {

  display: -webkit-box;

  display: flex;

  -webkit-box-orient: vertical;

  -webkit-box-direction: normal;

  flex-direction: column;

  -webkit-box-align: start;

  align-items: flex-start;

  font-size: 12px;

  color: #bbbbbb;

  padding-bottom: 35px;

}



footer .container .contFooter .contacts .leftContact p span {

  padding-top: 15px;

  font-size: 20px;

  font-weight: bold;

  color: #fff;

}



footer .container .contFooter .contacts .leftContact p b {

  color: #fff;

  font-size: 12px;

}



footer .container .contFooter .contacts .rightContact p {

  display: -webkit-box;

  display: flex;

  -webkit-box-orient: vertical;

  -webkit-box-direction: normal;

  flex-direction: column;

  -webkit-box-align: start;

  align-items: flex-start;

  font-size: 12px;

  color: #bbbbbb;

  padding-bottom: 35px;

}



footer .container .contFooter .contacts .rightContact p span {

  padding-top: 15px;

  font-size: 16px;

  color: #fff;

}



footer .container .contFooter .contacts .rightContact p b {

  color: #fff;

  font-size: 12px;

}



footer .container .contFooter .contacts .rightContact .socialLink {

  width: 100%;

  max-width: 505px;

  margin-top: 40px;

  display: -webkit-box;

  display: flex;

  -webkit-box-align: center;

  align-items: center;

  -webkit-box-pack: justify;

  justify-content: space-between;

}



footer .container .contFooter .contacts .rightContact .socialLink a {

  margin-right: 10px;

  border-color: #8f8c8b;

  color: #8f8c8b;

  border-radius: 0px;

  height: 40px;

  display: -webkit-box;

  display: flex;

  -webkit-box-align: center;

  align-items: center;

  -webkit-box-pack: center;

  justify-content: center;

  border-radius: 3px;

  font-size: 12px;

  min-width: initial;

  padding: 14px 11px;

  width: 160px;

}



footer .container .contFooter .contacts .rightContact .socialLink a img {

  margin-right: 10px;

}



footer .container .contFooter .contacts .rightContact .socialLink a:last-child {

  color: #fff;

  background: #c94d18;

  border-color: #c94d18;

}



/* FOOTER */



/* TurboBlock */



#TurboBlock {

  position: relative;

  top: -32px;

}



#TurboBlock .container .turboCont {

  display: -webkit-box;

  display: flex;

  -webkit-box-pack: justify;

  justify-content: space-between;

}



#TurboBlock .container .turboCont .leftBlockTurbo {

  display: -webkit-box;

  display: flex;

  -webkit-box-orient: vertical;

  -webkit-box-direction: normal;

  flex-direction: column;

  background: url("../images/bgLeftBlockTurbo.png");

  background-repeat: no-repeat;

  background-position: center;

  background-size: cover;

  width: 100%;

  padding: 80px 42px;

}



#TurboBlock .container .turboCont .leftBlockTurbo strong {

  font-size: 60px;

  color: #fff;

  font-weight: 900;

  display: block;

  margin-bottom: 25px;

}



#TurboBlock .container .turboCont .leftBlockTurbo span {

  font-size: 44px;

  font-weight: 300;

  padding-left: 42px;

  color: #fff;

}



#TurboBlock .container .turboCont .leftBlockTurbo span b {

  color: #c94d18;

  position: relative;

}



#TurboBlock .container .turboCont .leftBlockTurbo span b:before {

  content: '';

  position: absolute;

  width: 22px;

  height: 1px;

  background: #fff;

  left: -42px;

  top: 30px;

}



#TurboBlock .container .turboCont .leftBlockTurbo .advantTurbo {

  display: -webkit-box;

  display: flex;

  -webkit-box-orient: vertical;

  -webkit-box-direction: normal;

  flex-direction: column;

  -webkit-box-pack: start;

  justify-content: flex-start;

  padding-top: 55px;

}



#TurboBlock .container .turboCont .leftBlockTurbo .advantTurbo .itemAdvantTurbo {

  display: -webkit-box;

  display: flex;

  -webkit-box-align: start;

  align-items: flex-start;

  margin-bottom: 45px;

}



#TurboBlock .container .turboCont .leftBlockTurbo .advantTurbo .itemAdvantTurbo img {

  margin-right: 22px;

}



#TurboBlock .container .turboCont .leftBlockTurbo .advantTurbo .itemAdvantTurbo p {

  color: #fff;

  line-height: 24px;

}



#TurboBlock .container .turboCont #TurboForm {

  background: url("../images/bgFormTurbo.png");

  background-repeat: no-repeat;

  background-position: center;

  background-size: cover;

  width: 100%;

  max-width: 380px;

  border-left: 15px solid #fff;

  padding: 55px 35px;

}



#TurboBlock .container .turboCont #TurboForm strong {

  font-size: 23px;

  color: #fff;

  display: block;

  padding-bottom: 30px;

}



#TurboBlock .container .turboCont #TurboForm > label {

  margin-bottom: 30px;

  display: block;

  position: relative;

}



#TurboBlock .container .turboCont #TurboForm > label:before {

  position: absolute;

  content: '';

  width: 22px;

  height: 21px;

  background: url("../images/lk.png");

  background-repeat: no-repeat;

  background-position: center;

  background-size: cover;

  left: 20px;

  top: 40px;

}



#TurboBlock .container .turboCont #TurboForm > label span {

  font-size: 12px;

  font-weight: bold;

  color: #fff;

  padding-bottom: 10px;

  display: block;

}



#TurboBlock .container .turboCont #TurboForm > label input {

  background: #fff;

  padding: 15px;

  padding-left: 50px;

  color: #000;

}



#TurboBlock .container .turboCont #TurboForm .checkin {

  display: -webkit-box;

  display: flex;

  -webkit-box-align: center;

  align-items: center;

  margin-bottom: 30px;

}



#TurboBlock .container .turboCont #TurboForm .checkin div {

  width: 25px;

  height: 25px;

  margin-right: 8px;

}



#TurboBlock .container .turboCont #TurboForm .checkin div label {

  width: 25px;

  height: 25px;

  background: #fff;

}



#TurboBlock .container .turboCont #TurboForm .checkin div input {

  width: 25px;

  height: 25px;

  margin: 0;

}



#TurboBlock .container .turboCont #TurboForm .checkin span {

  font-size: 11px;

  color: #fff;

}



#TurboBlock .container .turboCont #TurboForm input {

  border-color: #fff;

  color: #fff;

  font-size: 14px;

  padding: 26px 0;

}



#TurboBlock .container .footerTUrbo {

  margin: 75px 0;

  display: -webkit-box;

  display: flex;

  -webkit-box-orient: vertical;

  -webkit-box-direction: normal;

  flex-direction: column;

  -webkit-box-align: center;

  align-items: center;

  -webkit-box-pack: center;

  justify-content: center;

  text-align: center;

}



#TurboBlock .container .footerTUrbo p {

  font-size: 16px;

  line-height: 27px;

  color: #262626;

  display: block;

  width: 100%;

  max-width: 910px;

}



#TurboBlock .container .footerTUrbo p b {

  font-weight: bold;

}



/* TurboBlock */



/* tariffic */



#tariffic .container {

  padding-bottom: 95px;

}



#tariffic .container > strong {

  font-size: 35px;

  color: #3e3e3e;

  display: block;

  text-align: center;

  margin-top: 85px;

  margin-bottom: 55px;

}



#tariffic .container .contTarif {

  display: -webkit-box;

  display: flex;

  -webkit-box-orient: vertical;

  -webkit-box-direction: normal;

  flex-direction: column;

  -webkit-box-align: start;

  align-items: flex-start;

}



#tariffic .container .contTarif .itemTarif {

  width: 100%;

  display: -webkit-box;

  display: flex;

  -webkit-box-align: center;

  align-items: center;

  -webkit-box-pack: justify;

  justify-content: space-between;

  padding: 32px 0;

  border-top: 1px solid #d5d5d5;

}



#tariffic .container .contTarif .itemTarif:last-child {

  border-bottom: 1px solid #d5d5d5;

}



#tariffic .container .contTarif .itemTarif .titleItemTarif {

  width: 100%;

}



#tariffic .container .contTarif .itemTarif .titleItemTarif strong {

  font-size: 24px;

  color: #c94d18;

}



#tariffic .container .contTarif .itemTarif .titleItemTarif p {

  padding-top: 15px;

  font-size: 13px;

  color: #343434;

  line-height: 23px;

}



#tariffic .container .contTarif .itemTarif .line {

  width: 2px;

  background: #d5d5d5;

  height: 70px;

  margin: 0 50px;

}



#tariffic .container .contTarif .itemTarif .speed {

  display: -webkit-box;

  -webkit-box-align: center;

  align-items: center;
  
  justify-content: space-between;
  
  -webkit-box-pack:center;
  
  width: 100%;

}



#tariffic .container .contTarif .itemTarif .speed p {

  font-size: 12px;

  color: #343434;

  line-height: 30px;

  
  
 


}



#tariffic .container .contTarif .itemTarif .speed p b {

  font-size: 24px;

  
 

}



#tariffic .container .contTarif .itemTarif .speed p:last-child {

  margin-left: 50px;

  
}



#tariffic .container .contTarif .itemTarif .price {

  font-size: 13px;

  color: #343434;

  display: -webkit-box;

  display: flex;

  -webkit-box-align: center;

  align-items: center;

}



#tariffic .container .contTarif .itemTarif .price strong {

  font-size: 24px;

  color: #c94d18;

  font-weight: bold;

  margin-right: 5px;

}



#tariffic .container .contTarif .itemTarif .price span {

  white-space: nowrap;

}



#tariffic .container .contTarif .itemTarif .buttonTarif a {

  width: 180px;

  line-height: 45px;

  text-align: center;

  text-decoration: none;

  background: #c94d18;

  display: block;

  color: #fff;

  text-transform: uppercase;

  border-radius: 3px;

}



#tariffic .container .contBlockDopTarif {

  display: -webkit-box;

  display: flex;

  -webkit-box-align: start;

  align-items: flex-start;

}



#tariffic .container .contBlockDopTarif .itemDopTarif {

  padding: 50px;

  color: #3e3e3e;

 

  min-height: 200px;

}



#tariffic .container .contBlockDopTarif .itemDopTarif:first-child {

  margin-right: 20px;

}



#tariffic .container .contBlockDopTarif .itemDopTarif strong {

  font-size: 35px;

}



#tariffic .container .contBlockDopTarif .itemDopTarif span {

  font-size: 13px;

  margin-top: 10px;

  display: block;

}



#tariffic .container .contBlockDopTarif .itemDopTarif .priceDopTarif {

  display: -webkit-box;

  display: flex;

  margin: 35px 0;

  -webkit-box-align: center;

  align-items: center;
  
  

}



#tariffic .container .contBlockDopTarif .itemDopTarif .priceDopTarif img {

  margin-right: 20px;

}



#tariffic .container .contBlockDopTarif .itemDopTarif .priceDopTarif p {

  font-size: 14px;

  color: #262626;

}



#tariffic .container .contBlockDopTarif .itemDopTarif .priceDopTarif p b {

  font-size: 24px;

  color: #c94d18;

  font-weight: bold;

  margin-top: 15pxs;

}



#tariffic .container .contBlockDopTarif .itemDopTarif p {

  font-size: 14px;

  line-height: 27px;

}



#bgPage {

  padding: 135px 0;

  position: relative;

  top: -32px;

}



#bgPage.news {

  background: url("../images/bgNews.png");

  background-repeat: no-repeat;

  background-position: center;

  background-size: cover;

  padding: 100px;

}



#bgPage.news .container strong {

  font-size: 47px;

  color: #fff;

}



#bgPage.Tarif {

  background: url("../images/tariffBg.png");

  background-repeat: no-repeat;

  background-position: center;

  background-size: cover;

}



#bgPage.faq {

  background: url("../images/faqBG.png");

  background-repeat: no-repeat;

  background-position: center;

  background-size: cover;

}



#bgPage.developer {

  background: url("../images/devBG.png");

  background-repeat: no-repeat;

  background-position: center;

  background-size: cover;

}



#bgPage.contacts {

  background: url("../images/contactBG.png");

  background-repeat: no-repeat;

  background-position: center;

  background-size: cover;

}



#bgPage.contacts .container strong {

  color: #191919;

}



#bgPage.developer .container {

  display: -webkit-box;

  display: flex;

  -webkit-box-orient: vertical;

  -webkit-box-direction: normal;

  flex-direction: column;

  -webkit-box-pack: center;

  justify-content: center;

}



#bgPage.developer .container strong {

  color: #fff;

}



#bgPage.developer .container p {

  font-size: 16px;

  color: #fff;

  line-height: 25px;

}



#bgPage.developer .container p:before {

  background: #fff;

}



#bgPage.developer .container a {

  display: block;

  max-width: 24px;

  text-decoration: none;

  color: #fff;

  background: #c94d18;

  border-radius: 3px;

  margin-top: 60px;

}



#bgPage .container strong {

  font-size: 50px;

  color: #244047;

  font-weight: 900;

}



#bgPage .container p {

  padding-top: 27px;

  color: #244047;

  font-size: 44px;

  padding-left: 44px;

  position: relative;

}



#bgPage .container p:before {

  position: absolute;

  content: '';

  width: 23px;

  height: 1px;

  background: #244047;

  left: 0px;

  top: 53px;

}



/* tariffic */



/* faq */



#faq .container .questions {

  color: #676767;

  display: -webkit-box;

  display: flex;

  -webkit-box-align: start;

  align-items: flex-start;

  padding: 50px 0;

  border-bottom: 1px solid #676767;

}



#faq .container .questions > strong {

  font-size: 230px;

  color: #e8e8e8;

  font-weight: 900;

  margin-right: 50px;

  display: block;

  max-width: 180px;

}



#faq .container .questions .contQuestions {

  padding-top: 25px;

}



#faq .container .questions .contQuestions strong {

  font-size: 25px;

  color: #3e3e3e;

  line-height: 37px;

}



#faq .container .questions .contQuestions p {

  margin-top: 50px;

  color: #676767;

  line-height: 26px;

  margin-left: 50px;

  padding-left: 10px;

  border-left: 1px solid #676767;

}



#faq .container .questions .contQuestions p b {

  font-weight: bold;

}



/* faq */



/* developer */



#developer .container {

  padding: 80px 0;

  text-align: center;

}



#developer .container strong {

  font-size: 35px;

  color: #2d2d2d;

}



#developer .container .contAdvanDev {

  margin-top: 60px;

  display: -webkit-box;

  display: flex;

  -webkit-box-align: start;

  align-items: flex-start;

  -webkit-box-pack: justify;

  justify-content: space-between;

}



#developer .container .contAdvanDev div {

  width: 25%;

  text-align: initial;

  margin: 30px;

}



#developer .container .contAdvanDev div p {

  margin-top: 20px;

  font-size: 15px;

  color: #2d2c2c;

  line-height: 24px;

}



#developerFooter {

  background: #f5f5f5;

}



#developerFooter .FooterContDeveloper {

  display: -webkit-box;

  display: flex;

  -webkit-box-orient: vertical;

  -webkit-box-direction: normal;

  flex-direction: column;

  -webkit-box-align: center;

  align-items: center;

  padding: 80px 0;

  text-align: center;

}



#developerFooter .FooterContDeveloper strong {

  font-size: 35px;

  color: #2d2d2d;

}



#developerFooter .FooterContDeveloper .contAdvanDev {

  display: -webkit-box;

  display: flex;

  -webkit-box-align: start;

  align-items: flex-start;

  flex-wrap: wrap;

  margin-top: 60px;

}



#developerFooter .FooterContDeveloper .contAdvanDev .itemAdvanDev {

  width: 33%;

  display: -webkit-box;

  display: flex;

  -webkit-box-orient: vertical;

  -webkit-box-direction: normal;

  flex-direction: column;

  -webkit-box-align: center;

  align-items: center;

  text-align: center;

}



#developerFooter .FooterContDeveloper .line {

  margin-top: 60px;

  width: 90px;

  height: 1px;

  background: #c94d18;

}

.white-popup {
  position: relative;
  background: #FFF;
  padding: 20px;
  width: auto;
  max-width: 700px;
  margin: 20px auto;
}

.popup-title {
  text-align: center;
  font-weight: bold;
  font-size: 21px;
  color: #000;
  margin-bottom: 40px;
  margin-top: 20px;
}

.formsub input[type="text"] {
  margin-bottom: 10px;
}

input[type="submit"] {
  cursor: pointer;
}

.formsub input[type="submit"] {
      font-weight: 5000;
      cursor: pointer;
    font-size: 14px;
    color: #fff;
    background: #c94d18;
    border: none;
    margin-top: 20px;
    max-width: 270px;
}

#developerFooter .FooterContDeveloper p {

  font-size: 18px;

  line-height: 30px;

  color: #2d2d2d;

  padding-top: 50px;

}



#textDeveloperFooter {

  padding: 90px 0;

}



#textDeveloperFooter .container {

  display: -webkit-box;

  display: flex;

  -webkit-box-orient: vertical;

  -webkit-box-direction: normal;

  flex-direction: column;

  -webkit-box-align: center;

  align-items: center;

}



#textDeveloperFooter .container p {

  max-width: 600px;

  text-align: center;

  font-size: 18px;

  line-height: 30px;

  color: #2d2d2d;

}



#textDeveloperFooter .container a {

  margin-top: 45px;

  text-transform: uppercase;

  color: #fff;

  background: #c94d18;

  border-radius: 5px;

}



/* developer */



/* news */



#news {

  padding: 80px 0;

  display: -webkit-box;

  display: flex;

  -webkit-box-orient: vertical;

  -webkit-box-direction: normal;

  flex-direction: column;

  -webkit-box-align: center;

  align-items: center;

}

#news a {

  display: block;

  margin-top: 50px;

  border-radius: 5px;

  border: 1px dotted #000103;

  color: #303030;

  text-transform: uppercase;

}


#news .container {

    width: 100%;

  display: -webkit-box;

  display: flex;

  -webkit-box-align: start;

  align-items: flex-start;

  flex-wrap: wrap;
} 


#news .container > div {

  width: 100%;

  margin: 30px;

  display: -webkit-box;

  display: flex;

  -webkit-box-orient: vertical;

  -webkit-box-direction: normal;

  flex-direction: column;

  -webkit-box-align: center;

  align-items: center;

  background: #f5f5f5;

  margin-top: 45px;

  padding: 30px;

  position: relative;

}

#news .container > div:hover {

  background: #fff;

  cursor: pointer;

  box-shadow: 0px 26px 74px -25px rgba(0, 0, 0, 0.36);

}



#news .container > div:hover strong {

  color: #c94d18;

}



#news .container > div .imgItemNews {


  width: 280px;

  height: 280px;

  border-radius: 50%;

  position: absolute;

  margin: 0;

  top: -50px;

  left: 0;

  right: 0;

  margin: 0 auto;

  box-shadow: 0 10px 0 0 #d9d9d9;


}



#news .container > div .data {

  text-align: left;

  width: 100%;

  margin-top: 150px;

}



#news .container > div .data span {

  color: #979797;

  font-size: 10px;

}



#news .container > div .data span:first-child {

  padding-right: 10px;

  border-right: 1px solid #979797;

}



#news .container > div .data span:last-child {

  margin-left: 5px;

}



#news .container > div strong {

  width: 100%;

  text-align: left;

  font-size: 18px;

  color: #2d2d2d;

  padding: 20px 0;

}



#news .container > div p {

  font-size: 13px;

  line-height: 21px;

  color: #979797;

  white-space: pre-line;

  width: 100%;

}






/* news */



/* contacts*/



#contacts {

  padding-top: 75px;

}



#contacts .container {

  display: -webkit-box;

  display: flex;

  width: 100%;

  -webkit-box-align: start;

  align-items: flex-start;

}



#contacts .container .leftContacts {

  width: 100%;

  max-width: 380px;

  display: -webkit-box;

  display: flex;

  -webkit-box-orient: vertical;

  -webkit-box-direction: normal;

  flex-direction: column;

  -webkit-box-pack: start;

  justify-content: flex-start;

  margin-right: 130px;

}



#contacts .container .leftContacts .itemContact {

  display: -webkit-box;

  display: flex;

  -webkit-box-align: start;

  align-items: flex-start;

  -webkit-box-pack: start;

  justify-content: flex-start;

  margin-bottom: 40px;

}



#contacts .container .leftContacts .itemContact img {

  margin-right: 15px;

}



#contacts .container .leftContacts .itemContact p {

  font-size: 15px;

  color: #303030;

}



#contacts .container .leftContacts .itemContact p span {

  font-weight: bold;

  display: block;

  margin-bottom: 10px;

}



#contacts .container iframe {

  width: 100%;

  min-height: 415px;

}



#FilesCont {

  background: #f5f5f5;

  margin-top: 75px;

  padding: 75px 0;

}



#FilesCont .container.filesContact {

  display: -webkit-box;

  display: flex;

  -webkit-box-align: start;

  align-items: flex-start;

  -webkit-box-pack: center;

  justify-content: center;

  flex-wrap: wrap;

}



#FilesCont .container.filesContact > div {

  width: 33%;

  margin-right: 40px;

}



#FilesCont .container.filesContact > div:last-child {

  margin-right: 0;

}



#FilesCont .container.filesContact > div strong {

  font-size: 20px;

  color: #303030;

}



#FilesCont .container.filesContact > div .contFiles {

  margin-top: 50px;

  display: -webkit-box;

  display: flex;

  -webkit-box-align: start;

  align-items: flex-start;

  flex-wrap: wrap;

}



#FilesCont .container.filesContact > div .contFiles a {

  display: -webkit-box;

  display: flex;

  -webkit-box-align: start;

  align-items: flex-start;

  width: 40%;

  margin-right: 30px;

  margin-bottom: 30px;

  text-decoration: none;

}



#FilesCont .container.filesContact > div .contFiles a img {

  margin-right: 10px;

}



#FilesCont .container.filesContact > div .contFiles a p {

  font-weight: 500;

  font-size: 12px;

  color: #303030;

}



/* contacts */



@media (max-width: 1250px) {

  .container {

    max-width: calc(100% - 50px);

  }



  header .container.top .headerTop {

    -webkit-box-align: center;

    align-items: center;

    margin-top: 20px;

  }



  header .container.top .headerTop .logoType {

    position: relative;

    padding-top: 0;

    left: 0;

    max-width: initial;

    width: initial;

    height: initial;

    padding: 10px 20px;

    background: #fff;

    margin-right: 15px;

  }



  header .container.top .headerTop .callBack {

    padding-top: 0;

  }



  header .container.slider .sliderHeader .itemSlider div strong {

    font-size: 40px;

    line-height: 40px;

  }



  #PromoBlock .container strong {

    font-size: 65px;

  }



  #specifications > .container {

    flex-wrap: wrap;

  }



  #tariffs .container {

    -webkit-box-orient: vertical;

    -webkit-box-direction: normal;

    flex-direction: column;

    -webkit-box-align: center;

    align-items: center;

  }



  #tariffs .container .leftTarifBlock strong {

    padding-left: 50px;

    padding-bottom: 20px;

    text-align: center;

    font-size: 40px;

  }



  #tariffs .container .leftTarifBlock img {

    display: none;

  }



  #tariffs .container .rightTarifBlock {

    width: 70%;

    margin-left: 40px;

  }



  #area .container .titleArea strong {

    font-size: 40px;

  }



  #videoControl .container strong {

    font-size: 40px;

  }



  #Advantages .container strong {

    font-size: 40px;

  }



  #TurboBlock {

    top: 0;

    padding-top: 50px;

  }



  #tariffic .container .contTarif .itemTarif .line {

    margin: 0 25px;

  }



  #tariffic .container .contTarif .itemTarif .speed p:last-child {

    margin-left: 25px;

  }



  #bgPage {

    top: 10px;

    padding: 50px 0;

  }



  #news .container > div {

    width: calc(30% - 30px);

  }

}



@media (max-width: 1150px) {

  header .container.top .headerTop .callBack {

    -webkit-box-orient: vertical;

    -webkit-box-direction: normal;

    flex-direction: column;

    -webkit-box-align: end;

    align-items: flex-end;

  }



  header .container.top .headerTop .callBack .phoneCallBack {

    margin-bottom: 20px;

  }

}



@media (max-width: 1100px) {

  #videoControl .container {

    display: -webkit-box;

    display: flex;

    -webkit-box-orient: vertical;

    -webkit-box-direction: normal;

    flex-direction: column;

    -webkit-box-pack: center;

    justify-content: center;

    -webkit-box-align: center;

    align-items: center;

  }



  #videoControl .container strong {

    text-align: center;

  }



  #videoControl .container .contControl {

    width: 100%;

  }



  #videoControl .container .contControl p {

    text-align: center;

  }



  #videoControl .container .contControl .buttonControlVideo {

    -webkit-box-pack: center;

    justify-content: center;

  }



  footer .container .menuFooter ul {

    padding: 0 50px;

  }



  footer .container .contFooter {

    -webkit-box-orient: vertical;

    -webkit-box-direction: reverse;

    flex-direction: column-reverse;

  }



  footer .container .contFooter .coyriting {

    max-width: 100%;

    margin-right: 0;

    margin-top: 50px;

  }



  footer .container .contFooter .coyriting a {

    padding-bottom: 30px;

  }



  #tariffic .container .contBlockDopTarif {

    -webkit-box-orient: vertical;

    -webkit-box-direction: normal;

    flex-direction: column;

  }



  #tariffic .container .contBlockDopTarif .itemDopTarif {

    width: 100%;

    min-height: 300px;

  }



  #tariffic .container .contBlockDopTarif .itemDopTarif:first-child {

    margin-right: 0;

    margin-bottom: 50px;

  }

}



@media (max-width: 1050px) {

  #tariffic .container .contTarif .itemTarif .line {

    margin: 0 10px;

  }



  #tariffic .container .contTarif .itemTarif .speed p:last-child {

    margin-left: 10px;

  }

}



@media (max-width: 1000px) {

  #tariffic .container .contTarif .itemTarif {

    display: -webkit-box;

    display: flex;

    -webkit-box-orient: vertical;

    -webkit-box-direction: normal;

    flex-direction: column;

  }



  #tariffic .container .contTarif .itemTarif .line {

    width: 100%;

    height: 2px;

    margin: 25px 0;

  }



  #tariffic .container .contTarif .itemTarif .speed {

    -webkit-box-pack: center;

    justify-content: center;

  }



  #tariffic .container .contTarif .itemTarif .speed p:last-child {

    margin-left: 25px;

  }



  #tariffic .container .contTarif .itemTarif .price {

    -webkit-box-pack: center;

    justify-content: center;

  }



  #developer .container .contAdvanDev {

    flex-wrap: wrap;

  }



  #developer .container .contAdvanDev div {

    width: 40%;

  }



  #developerFooter .FooterContDeveloper .contAdvanDev {

    -webkit-box-pack: center;

    justify-content: center;

  }



  #developerFooter .FooterContDeveloper .contAdvanDev .itemAdvanDev {

    width: 40%;

    margin: 20px;

  }



  #news .container > div {

    width: calc(50% - 60px);

  }



  #contacts .container .leftContacts {

    margin-right: 30px;

  }



  #FilesCont .container.filesContact > div {

    width: calc(50% - 80px);

    margin-right: 0;

    margin: 40px;

  }

}



@media (max-width: 900px) {

  header .container.top {

    min-height: 220px;

    height: initial;

  }



  header .container.top .headerTop {

    -webkit-box-orient: vertical;

    -webkit-box-direction: normal;

    flex-direction: column;

    -webkit-box-align: center;

    align-items: center;

    -webkit-box-pack: center;

    justify-content: center;

  }



  header .container.top .headerTop .callBack {

    -webkit-box-align: center;

    align-items: center;

    margin-top: 30px;

  }



  header .container.top .headerMenu {

    border-top: 1px solid #6e6d9b;

    min-height: 50px;

  }



  header .container.top .headerMenu .mobile-menu-toggle {

    display: block;

  }



  header .container.top .headerMenu ul {

    display: none;

    opacity: 0;

    border: none;

  }



  header .container.top .headerMenu ul.active {

    display: block;

    opacity: 1;

  }



  header .container.top .headerMenu ul li {

    padding: 15px 0;

  }



  header .container.top .headerMenu ul li a {

    font-size: 16px;

  }



  header .container.slider {

    padding-bottom: 50px;

  }



  header .container.slider .sliderHeader .itemSlider {

    min-height: initial;

  }



  header .container.slider .sliderHeader .itemSlider .rightBlockSlider {

    position: initial;

    height: 300px;

  }



  header .container.slider .sliderHeader .itemSlider .leftBlockSlider {

    padding-top: 0;

  }



  #QuickConnection > .container .quickTabs .ItemQuickTab #Apartment .inputsApartment label {

    margin-right: 20px;

  }



  #PromoBlock {

    height: 100%;

    padding: 50px 0;

    background-size: initial;

  }



  #PromoBlock .container strong span {

    font-size: 40px;

  }



  #PromoBlock .container strong {

    font-size: 40px;

  }



  #PromoBlock .container p {

    background: #fff;

    padding: 25px;

    margin: 20px 0;

  }



  #specifications > .container .itemSpec {

    margin: 20px;

  }



  #tariffs .container .rightTarifBlock {

    margin-left: 0;

    width: 100%;

  }



  #area .container .titleArea {

    -webkit-box-orient: vertical;

    -webkit-box-direction: normal;

    flex-direction: column;

    -webkit-box-align: center;

    align-items: center;

  }



  #area .container .titleArea p {

    text-align: center;

  }



  #area .container .imgArea {

    height: 300px;

  }



  footer .container .menuFooter ul {

    flex-wrap: wrap;

    -webkit-box-pack: center;

    justify-content: center;

  }



  footer .container .menuFooter ul li {

    margin: 10px;

  }



  footer .container .contFooter .contacts {

    -webkit-box-orient: vertical;

    -webkit-box-direction: normal;

    flex-direction: column;

  }



  footer .container .contFooter .contacts .leftContact {

    max-width: 100%;

  }



  #TurboBlock .container .turboCont {

    -webkit-box-orient: vertical;

    -webkit-box-direction: normal;

    flex-direction: column;

  }



  #TurboBlock .container .turboCont #TurboForm {

    border-left: 0;

    margin-top: 50px;

    width: 100%;

    min-width: 100%;

  }



  #bgPage.news {

    padding: 50px 0;

  }



  #bgPage.news .container strong {

    font-size: 30px;

  }

}



@media (max-width: 850px) {

  #contacts .container {

    -webkit-box-orient: vertical;

    -webkit-box-direction: normal;

    flex-direction: column;

  }



  #contacts .container .leftContacts {

    margin-right: 0;

    max-width: 100%;

  }



  #FilesCont .container.filesContact > div {

    width: 100%;

    margin: 0;

    margin-bottom: 40px;

  }

}



@media (max-width: 650px) {

  #developer .container strong {

    font-size: 24px;

  }



  #developer .container .contAdvanDev div {

    width: 100%;

  }



  #developerFooter .FooterContDeveloper strong {

    font-size: 24px;

  }



  #developerFooter .FooterContDeveloper .contAdvanDev .itemAdvanDev {

    width: 100%;

  }



  #news .container > div {

    width: 100%;

    margin: 50px 0;

  }

}



@media (max-width: 600px) {

  .container {

    max-width: calc(100% - 30px);

  }



  .bgPopUp.active .popUp {

    padding: 25px;

    min-width: calc(100% - 25px);

  }



  header .container.slider .sliderHeader .itemSlider div strong {

    font-size: 24px;

    line-height: initial;

    padding-bottom: 20px;

  }



  header .container.slider .sliderHeader .itemSlider .rightBlockSlider {

    height: 200px;

  }



  #QuickConnection > .container .quickTabs .ItemQuickTab #Apartment .inputsApartment {

    -webkit-box-orient: vertical;

    -webkit-box-direction: normal;

    flex-direction: column;

    margin-bottom: 0;

  }



  #QuickConnection > .container .quickTabs .ItemQuickTab #Apartment .inputsApartment label {

    margin-right: 0;

    margin-bottom: 30px;

  }



  #PromoBlock .container .buttonPromo {

    -webkit-box-orient: vertical;

    -webkit-box-direction: normal;

    flex-direction: column;

    -webkit-box-pack: center;

    justify-content: center;

  }



  #PromoBlock .container .buttonPromo a {

    margin-bottom: 20px;

  }



  #tariffs {

    padding: 50px 0;

  }



  #tariffs .container .leftTarifBlock strong {

    padding-left: 0;

  }



  #tariffs .container .rightTarifBlock {

    -webkit-box-orient: vertical;

    -webkit-box-direction: normal;

    flex-direction: column;

  }



  #tariffs .container .rightTarifBlock .tarifOne {

    width: 100%;

    margin-bottom: 30px;

  }



  #videoControl .container .contControl .buttonControlVideo {

    -webkit-box-orient: vertical;

    -webkit-box-direction: normal;

    flex-direction: column;

  }



  #videoControl .container .contControl .buttonControlVideo a:first-child {

    margin-right: 0;

    margin-bottom: 20px;

  }



  #Advantages .container .contAdvantages .itemAdvantage {

    width: 100%;

    margin-top: 30px;

  }



  footer .container .contFooter .contacts .rightContact .socialLink {

    flex-wrap: wrap;

    -webkit-box-pack: center;

    justify-content: center;

  }



  footer .container .contFooter .contacts .rightContact .socialLink a {

    margin: 20px;

  }



  #TurboBlock .container .turboCont .leftBlockTurbo strong {

    font-size: 30px;

  }



  #TurboBlock .container .turboCont .leftBlockTurbo span {

    font-size: 24px;

  }



  #TurboBlock .container .turboCont .leftBlockTurbo span b:before {

    top: 15px;

  }



  #faq .container .questions {

    -webkit-box-orient: vertical;

    -webkit-box-direction: normal;

    flex-direction: column;

    -webkit-box-align: center;

    align-items: center;

  }

}



@media (max-width: 500px) {

  header .container.top .headerTop .callBack .phoneCallBack {

    display: -webkit-box;

    display: flex;

    -webkit-box-orient: vertical;

    -webkit-box-direction: normal;

    flex-direction: column;

    -webkit-box-align: center;

    align-items: center;

  }



  header .container.top .headerTop .callBack .phoneCallBack a {

    margin-top: 20px;

  }



  header .container.top .headerTop .callBack .blockPersonal {

    -webkit-box-orient: vertical;

    -webkit-box-direction: normal;

    flex-direction: column;

    -webkit-box-align: center;

    align-items: center;

    -webkit-box-pack: center;

    justify-content: center;

    margin-left: 0;

  }



  header .container.top .headerTop .callBack .blockPersonal a:last-child {

    margin-left: 0;

    width: 100%;

    margin-top: 30px;

    text-align: center;

    -webkit-box-pack: center;

    justify-content: center;

  }



  header .container.slider .sliderHeader .itemSlider div span {

    padding-left: 40px;

    -webkit-box-align: start;

    align-items: flex-start;

  }



  header .container.slider .sliderHeader .itemSlider div span:before {

    width: 23px;

  }



  #QuickConnection > .container strong {

    font-size: 24px;

  }



  #QuickConnection > .container .quickTabs .titleQuickTabs li {

    padding: 10px 15px;

  }



  #PromoBlock .container span {

    font-size: 24px;

  }



  #PromoBlock .container strong span {

    font-size: 24px;

  }



  #PromoBlock .container strong b {

    font-size: 24px;

  }



  #PromoBlock .container strong {

    font-size: 24px;

  }



  #tariffs .container .leftTarifBlock strong {

    font-size: 24px;

    line-height: initial;

  }



  #area {

    padding: 30px 0;

  }



  #area .container .titleArea strong {

    font-size: 24px;

  }



  #area .container p {

    font-size: 16px;

  }



  #videoControl {

    padding: 50px 0;

  }



  #videoControl .container strong {

    font-size: 24px;

  }



  #videoControl .container .contControl {

    margin-top: 25pxFad;

  }



  #Advantages {

    padding: 50px 0;

  }



  #Advantages .container strong {

    font-size: 24px;

  }



  #Advantages .container > span {

    font-size: 24px;

  }



  footer {

    padding-bottom: 10px;

  }



  #tariffic .container .contBlockDopTarif .itemDopTarif {

    background: #f7f7f7 !important;

    padding: 25px;

  }



  #bgPage .container strong {

    font-size: 30px;

  }



  #bgPage .container p {

    font-size: 20px;

  }



  #bgPage .container p:before {

    top: 40px;

  }

}
/* Мобильная версия - исправление отображения TV-пакетов */
@media (max-width: 768px) {
  .tv-box .inner {
    padding: 30px 0;
  }
  
  .pack-slider-box {
    padding: 0 10px;
    max-width: 100%;
  }
  
  
  .pack-slider .pack .ttl {
    font-size: 18px; /* Размер шрифта заголовка */
    white-space: normal; /* Позволяет переносить текст */
    height: auto; /* Автоматическая высота */
    min-height: 40px; /* Минимальная высота */
    padding: 0 5px; /* Отступы внутри заголовка */
    margin-bottom: 15px; /* Отступ снизу */
}

.pack-slider .pack .chanels {
    display: block; /* Убедитесь, что кнопка занимает блоковое место */
    min-width: 100px; /* Минимальная ширина кнопки */
    max-width: 100%; /* Не шире родителя */
    color: white;
    font-size: 14px; /* Размер шрифта кнопки */
    background-color: #c94d18;
    border-radius: 5px;
    text-align: center; /* Центрирование текста внутри кнопки */
    padding: 10px; /* Внутренний отступ */
    margin-top: 10px; /* Отступ сверху для отдаления от других элементов */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); /* Тень для кнопки */
    height: auto; /* Автоматическая высота */
}

.pack-slider .pack {
    min-height: 245px; /* Минимальная высота блока с пакетом */
    padding: 35px; /* Отступы вокруг контента */
    display: flex;
    flex-direction: column; /* Элементы располагаются вертикально */
    justify-content: space-between; /* Расположение элементов с равным расстоянием */
    text-align: center; /* Центрирование текста */
}  
  .pack-slider .pack .price-box {
    margin-bottom: 15px;
  }
  
  .pack-slider .pack .price-box b {
    font-size: 28px;
  }
  
  .pack-slider .pack .price-box span {
    font-size: 14px;
  }
  
  
.slider-controls div {
    width: 12px;
    height: 24px;
    background-size: contain;
    margin-top: -12px;
  }
  
  .pack-slider .slide {
    padding: 0 5px;
    display: flex;
    justify-content: center;
  }
  

  /* Для экранов меньше 360px */
  @media (max-width: 360px) {    
.pack-slider .pack .ttl {
    font-size: 18px; /* Размер шрифта заголовка */
    white-space: normal; /* Позволяет переносить текст */
    height: auto; /* Автоматическая высота */
    min-height: 40px; /* Минимальная высота */
    padding: 0 5px; /* Отступы внутри заголовка */
    margin-bottom: 15px; /* Отступ снизу */
}
.pack-slider .pack .chanels {
    display: block; /* Убедитесь, что кнопка занимает блоковое место */
    min-width: 100px; /* Минимальная ширина кнопки */
    max-width: 100%; /* Не шире родителя */
    color: white;
    font-size: 14px; /* Размер шрифта кнопки */
    background-color: #c94d18;
    border-radius: 5px;
    text-align: center; /* Центрирование текста внутри кнопки */
    padding: 10px; /* Внутренний отступ */
    margin-top: 10px; /* Отступ сверху для отдаления от других элементов */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); /* Тень для кнопки */
    height: auto; /* Автоматическая высота */
}

.pack-slider .pack {
    min-height: 245px; /* Минимальная высота блока с пакетом */
    padding: 35px; /* Отступы вокруг контента */
    display: flex;
    flex-direction: column; /* Элементы располагаются вертикально */
    justify-content: space-between; /* Расположение элементов с равным расстоянием */
    text-align: center; /* Центрирование текста */
}  
  }
}

/* Общие стили для кнопок каналов (добавить в основной CSS) */
.pack-slider .pack .chanels {

 display: block; /* Кнопка занимает блоковое место */
    
    min-width: 100px; /* Минимальная ширина */
    max-width: 100%; /* Но не шире родителя */
    
    color: white;
    font-size: 14px;
    background-color: #c94d18;
  
    border-radius: 5px;
    text-align: center; /* Центрирование текста внутри кнопки */
    
    padding: 10px; /* Добавление внутреннего отступа для улучшения внешнего вида */
    margin-top: 10px; /* Отступ сверху для отдаления от других элементов */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); /* Тень для кнопки */
}  
/* Особые стили для очень маленьких экранов */
@media (max-width: 480px) {
  .pack-slider .pack .ttl {
    font-size: 18px; /* Размер шрифта заголовка */
    white-space: normal; /* Позволяет переносить текст */
    height: auto; /* Автоматическая высота */
    min-height: 40px; /* Минимальная высота */
    padding: 0 5px; /* Отступы внутри заголовка */
    margin-bottom: 15px; /* Отступ снизу */
}

.pack-slider .pack .chanels {
    display: block !important;
    text-align: center !important;
    margin: 10px auto 0 !important;
    padding: 8px 15px !important;
    background: #c94d18 !important;
    color: white !important;
    border-radius: 4px !important;
    width: fit-content !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    box-shadow: none !important;
    border: none !important;
    position: relative !important;
    left: 0 !important;
    right: 0 !important;
    transform: none !important;
}

.pack-slider .pack {
    min-height: 245px; /* Минимальная высота блока с пакетом */
    padding: 35px; /* Отступы вокруг контента */
    display: flex;
    flex-direction: column; /* Элементы располагаются вертикально */
    justify-content: space-between; /* Расположение элементов с равным расстоянием */
    text-align: center; /* Центрирование текста */
}    
  .pack-slider .pack .price-box b {
    font-size: 24px;
  }
  
  .httl {
    font-size: 24px;
    margin: 30px 0;
  }
  
  .tv-box .inner .httl {
    margin-bottom: 30px;
  }
  }

.pb-0 {
  padding-bottom: 0 !important;
}.httl {
	font-size: 35px;
	color: #3e3e3e;
	display: block;
	text-align: center;
	margin-top: 85px;
	margin-bottom: 55px;
}
.tv-box .inner {
	background: url('../images/tv-bg.jpg') center top no-repeat;
	 background-size: cover; 
	padding: 70px 0 100px;
}

.tv-box .inner .httl {
	color: white;
	margin-top: 0px;
	margin-bottom: 60px;
}

.pack-slider-box {
	max-width: 1050px;
	margin: 0 auto;
	padding: 0 40px;
	position: relative;	
}
.pack-slider .slide {
	padding: 0 15px;
	text-align: center;
}
.pack-slider .pack {
	background-color: white;
	border-radius: 10px;
	padding: 35px 35px 0 35px;
	display: block;
	min-height: 245px;

	text-align: center;
	text-decoration: none;
}
.pack-slider .pack .ttl {
	font-size: 18px;
	color: #343434;
	font-weight: 500;
	text-transform: uppercase;
	margin-bottom: 10px;
}
.pack-slider .pack .desc {
	font-size: 13px;
	color: #343434;
	margin-bottom: 20px;
	min-height: 20px;
}
.pack-slider .pack .price-box {
	margin-bottom: 20px;
}
.price-box b {
	font-size: 39px;
	color: #ca4d18;
	font-weight: bold;
	line-height: 1;	
}
.price-box span {
	font-size: 17px;
	color: #343434;
}
.pack-slider .pack .chanels {
	display: inline-block;
	max-width: 150px;
	width: 100%;
	color: white;
	font-size: 14px;
	background-color: #c94d18;
	padding: 13px 0;
	border-radius: 5px;
}
.slider-controls div {
	width: 17px;
	height: 32px;
	position: absolute;
	top: 50%;
	margin-top: -16px;
	cursor: pointer;
}
.slider-controls div.prev {
	left: 0;
	background: url('../images/prev.png') center top no-repeat;
}
.slider-controls div.next {
	right: 0;
	background: url('../images/next.png') center top no-repeat;
}
.pb-0 {
	padding-bottom: 0 !important;
}

.httl {
	font-size: 35px;
	color: #3e3e3e;
	display: block;
	text-align: center;
	margin-top: 85px;
	margin-bottom: 55px;
}
.tv-box .inner {
	background: url('../images/tv-bg.jpg') center top no-repeat;
	 background-size: cover; 
	padding: 70px 0 100px;
}

.tv-box .inner .httl {
	color: white;
	margin-top: 0px;
	margin-bottom: 60px;
}

.pack-slider-box {
	max-width: 1050px;
	margin: 0 auto;
	padding: 0 40px;
	position: relative;	
}
.pack-slider .slide {
	padding: 0 15px;
	text-align: center;
}
.pack-slider .pack {
	background-color: white;
	border-radius: 10px;
	padding: 35px 35px 0 35px;
	display: block;
	min-height: 245px;

	text-align: center;
	text-decoration: none;
}
.pack-slider .pack .ttl {
	font-size: 18px;
	color: #343434;
	font-weight: 500;
	text-transform: uppercase;
	margin-bottom: 10px;
}
.pack-slider .pack .desc {
	font-size: 13px;
	color: #343434;
	margin-bottom: 20px;
	min-height: 20px;
}
.pack-slider .pack .price-box {
	margin-bottom: 20px;
}
.price-box b {
	font-size: 39px;
	color: #ca4d18;
	font-weight: bold;
	line-height: 1;	
}
.price-box span {
	font-size: 17px;
	color: #343434;
}
.pack-slider .pack .chanels {
	display: inline-block;
	max-width: 150px;
	width: 100%;
	color: white;
	font-size: 14px;
	background-color: #c94d18;
	padding: 13px 0;
	border-radius: 5px;
}
.slider-controls div {
	width: 17px;
	height: 32px;
	position: absolute;
	top: 50%;
	margin-top: -16px;
	cursor: pointer;
}
.slider-controls div.prev {
	left: 0;
	background: url('../images/prev.png') center top no-repeat;
}
.slider-controls div.next {
	right: 0;
	background: url('../images/next.png') center top no-repeat;
}
.add-box {
	padding: 80px 0;
}
.add-box .httl {
	margin-top: 0px;
}
.add-box .inner {
	display: flex;
	display: -webkit-flex;
	justify-content: center;
	flex-wrap: wrap;
		-webkit-flex-wrap: wrap;
	max-width: 900px;
	margin: 0 auto;
}
.add-box .box  {
	flex: 0 0 300px;
	-webkit-flex: 0 0 300px;
	margin-bottom: 30px;
}
.add-box .box .img  {
	height: 185px;
	background-size: cover !important;
}
.add-box .box .desc  {
	padding: 35px 35px 0 35px;
	min-height: 320px;
}
.add-box .box.add1 .desc  {
	background-color: #be0676;
}
.add-box .box.add2 .desc  {
	background-color: #00ad98;
}
.add-box .box.add3 .desc  {
	background-color: #d55f00;
}
.add-box .box .ttl  {
	font-size: 20px;
	color: white;
	line-height: 1.4;
	margin-bottom: 20px;
}
.add-box .box p  {
	font-size: 13px;
	color: white;
	line-height: 1.4;
	margin-bottom: 15px;
}
.add-box .box li  {
	font-size: 13px;
	color: white;
	margin-bottom: 10px;
	margin-left: 20px;
	list-style: none;
}
.select-box {
	padding: 15px 0;
}
.select-box select {
	background-color: #d8d8d8;
	border: 0;
	border-radius: 3px;
	padding: 5px;
}
.btn1 {
	font-size: 14px;
	color: white;
	background-color: #c94d18;
	padding: 14px 25px;
	border-radius: 3px;
	cursor: pointer;
	text-decoration: none;
	display: inline-block;
	margin-right: 15px;
}
.add-box .box .price-box  {
	display: inline-block;
}
.add-box .box .price-box b {
	font-size: 24px;
}
.add-box .box .price-box span {
	font-size: 14px;
}

.channel-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.channel-item {
    margin: 5px;
    overflow: hidden;
    padding: 5px;
    vertical-align: top;
    width: 20%;
}
.channel-item-label {font-size: 12px;display: block;text-align: center;padding-top: 5px;}
.channel-item img {
    margin: 0 auto;
    display: block;
    padding: 5px;
}

.mapcont p{
  text-align: center;
  font-weight: bold;

  font-size: 60px;

  color: #d55f00;


}
.map{
  width:100%;}


.details-container {
    display: flex; /* Используем flex для контейнера */
    gap: 10px; /* Расстояние между колонками */
}

details {
    margin: 10px 0;
    border-radius: 0 0 8px 8px; /* Закругленные нижние края */
    overflow: hidden; /* Скрывает содержимое, выходящее за границы */
    width: 250px; /* Устанавливаем ширину details на 250px */
}
summary {
    padding: 10px 15px; /* Поля вокруг текста */
    background-color: #c94d18; /* Оранжевый фон */
    color: white; /* Белый цвет текста */
    cursor: pointer; /* Курсор указывает, что элемент кликабельный */
    outline: none; /* Убирает обводки по умолчанию */
    border-radius: 8px 8px 0 0; /* Закругленные только верхние края */
    border: none; /* Убирает границы */
    font-weight: bold; /* Жирный шрифт */
}

summary:hover {
    background-color: #b95400; /* Более темный оттенок при наведении */
}
.channels {
    background-color: #c94d18; /* Оранжевый фон для списка */
    color: white; /* Белый цвет текста */
    padding: 4px; /* Поля вокруг текста */
    border-radius: 0 0 8px 8px; /* Закругление нижних краев */
    display: flex; /* Используем flex */
    flex-direction: column; /* Вертикальное расположение */
    font-size:15px;}

details[open] .channels {
    display: block; /* Показывает содержимое при открытии */
}

.channels p {
    margin: 3px 0; /* Уменьшаем отступы */
}
.channel-link {
    color: white; /* Цвет текста такой же, как у других элементов */
    text-decoration: none; /* Убираем подчеркивание */
    font-weight: normal; /* Обычный вес шрифта */

}

.channel-link:hover {
    font-weight: bold; /* Делаем текст жирным при наведении */
}

.channel-link:visited {
    color: white; /* Цвет текста после перехода по ссылке */
}
.search-container {
    margin-bottom: 10px; /* Отступ снизу */
}

.channels li {
    margin-bottom: 10px; /* Добавляем отступ между элементами списка */
}

#searchInput {
    width: 100%; /* Ширина поля ввода */
    padding: 5px; /* Поля внутри поля ввода */
    font-family: 'Rubik', sans-serif; /* Шрифт */
    font-size: 18px; /* Размер шрифта */
    color: #c94d18; /* Цвет текста */
    border: 1px solid #c94d18; /* Цвет рамки */
    border-radius: 8px; /* Скругленные края */
    box-sizing: border-box; /* Учет полей и границ в ширине */
}

#searchInput::placeholder {
    color: #c94d18; /* Цвет текста в placeholder */
    opacity: 0.7; /* Прозрачность текста в placeholder */
}

.popup-title1 {
    padding: 10px 15px; /* Поля вокруг текста */
    text-align:center;
    color: black; /* Белый цвет текста */
    cursor: pointer; /* Курсор указывает, что элемент кликабельный */
    outline: none; /* Убирает обводки по умолчанию */
    border-radius: 8px 8px 8px 8px; /* Закругленные только верхние края */
    border: solid #c94d18; /* Убирает границы */
    font-weight: bold; /* Жирный шрифт */
	font-size: 18px;
}

.popup-title1 a {
        text-decoration: none; /* Убирает подчеркивание */
        color: black; /* Устанавливает черный цвет текста */
    }

.popup-title1 a:hover {
        color: black; /* Удерживает черный цвет при наведении */
	font-weight: bold;  
	
}

/* Медиа-запросы для адаптации под мобильные устройства */
@media (max-width: 768px) {
    .details-container {
        flex-direction: column; /* Вертикальное расположение для мобильных устройств */
        gap: 5px; /* Уменьшаем расстояние между колонками */
    }

    details {
        width: 100%; /* Устанавливаем ширину details на 100% */
    }

    #searchInput {
        width: 100%; /* Поле ввода занимает всю ширину */
        font-size: 14px; /* Увеличиваем размер шрифта */
    }
}

@media (max-width: 480px) {
    summary {
        padding: 8px; /* Уменьшаем поля для мобильных устройств */
        font-size: 14px; /* Увеличиваем размер шрифта для удобства чтения */
    }

    .channels p {
        margin: 5px 0; /* Увеличиваем отступы для лучшей читаемости */
    }
}

 .slide {
            display: none; /* Скрыть все пакеты по умолчанию */
        }
        .slide.visible {
            display: block; /* Показать только подходящие пакеты */
        }
/* Уведомление в виде куки */
#cookie_note {
    display: none; /* Скрыть по умолчанию */
   position: fixed;
    bottom: 5px;
    left: 50%;
    width: 1200px;
    height: 50 px;
    transform: translateX(-50%);
    padding: 5px 30px ; /* Установите небольшой отступ сверху и снизу для уменьшения высоты */
    background-color: white;
    border-radius: 4px;
    box-shadow: 2px 3px 10px rgba(0, 0, 0, 0.4);
    display: flex; /* Используем Flexbox для размещения содержимого */
flex-direction: column; /* Устанавливаем вертикальное направление для содержимого */
}   
#cookie_note p {
    font-family: 'Rubik', sans-serif;
    margin: 0px 0; /* Уменьшили отступы сверху и снизу для параграфов */
    font-size: 0.9rem; /* Размер шрифта остального текста */
    text-align: justify;
    color: black;
}

#cookie_note ul {
    font-family: 'Rubik', sans-serif;
    font-size: 0.9rem;
    color: black;
    margin: 5px 0; /* Уменьшили отступы сверху и снизу для списка */
    padding-left: 20px; /* Отступ слева для списка */
    list-style-type: disc; /* Устанавливаем тип маркера в виде кружка */


}

#cookie_note ul li {
    margin-bottom: 3px; /* Уменьшили отступ между элементами списка */
}

.cookie_accept {
    margin: 0px 0; /* Уменьшили отступ, чтобы кнопка не забирала много места */
    width: 120px; /* Ширина кнопки */
    background-color: #c94c0a; /* Оранжевая кнопка */
    color: white; /* Цвет текста кнопки */
    border: none; /* Убираем рамку */
    padding: 8px; /* Уменьшаем отступы по сравнению с оригиналом */
    border-radius: 4px; /* Закругленные углы */
    cursor: pointer; /* Курсор-указатель */
    align-self: flex-end; /* Выровнять кнопку по правому краю контейнера */
}

@media (min-width: 576px) {
    #cookie_note.show {
        display: flex; /* Отображаем в виде flex-контейнера */
    }
}

@media (max-width: 575px) {
    #cookie_note.show {
        display: block;
        text-align: justify;
        width: 90%; /* Ширина на маленьких экранах */
    }
}


