/* Указываем box sizing */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Убираем внутренние отступы */
ul[class],
ol[class] {
  padding: 0;
}

/* Убираем внешние отступы */
body,
h1,
h2,
h3,
h4,
p,
ul[class],
ol[class],
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
}

/* Выставляем основные настройки по-умолчанию для body */
body {
  min-height: 100vh;
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
  width: 100%;
  height: 100%;
}
/* Удаляем стандартную стилизацию для всех ul и il, у которых есть атрибут class*/
ul[class],
ol[class] {
  list-style: none;
}

/* Элементы a, у которых нет класса, сбрасываем до дефолтных стилей */
a:not([class]) {
  text-decoration-skip-ink: auto;
}
a{
    color:inherit;
    text-decoration: none;
}

/* Упрощаем работу с изображениями */
img {
  max-width: 100%;
  display: block;
}

/* Указываем понятную периодичность в потоке данных у article*/
article > * + * {
  margin-top: 1em;
}

/* Наследуем шрифты для инпутов и кнопок */
input,
button,
textarea,
select {
  font: inherit;
}

/* Удаляем все анимации и переходы для людей, которые предпочитай их не использовать */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* -----------------------ОБНУЛЕНИЕ------------------------------- */
body{
    width: 100%;
    height: 100%;
}
.wrapper{
    min-height: 100%;
    overflow: hidden;
    min-width: 100%;
}
._container{
    margin-left: auto;
    margin-right: auto;
    box-sizing: content-box;
    max-width: 1600px;
    padding-left: 40px;
    padding-right: 40px;
    padding-top: 10px;
}
._headercontainer{
  margin-left: auto;
  margin-right: auto;
  box-sizing: content-box;
  max-width: 1600px;
  padding-left: 40px;
  padding-right: 40px;
}
.header-content{
    padding-top: 20px;
}
.header-row {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}
.footer-call {
    margin-bottom: 20px;
}
.social-footer {
	display: flex;
	justify-content: space-between;
	max-width: 200px;
	width:100%;
	margin: 0 auto;
}
.social {
	display: flex;
	gap:10px;
	max-width: 200px;
	width:100%;
}
.social-mob {
	display: flex;
	gap:10px;
	max-width: 200px;
	width:100%;
	margin-left: 50px;
}
.header-info-group{
    display: flex;
    align-items: center;
}
.header-logo {
    font-family: 'Museo Sans Cyrl';
    font-size: 22px;
    line-height: 24px;
    font-weight: 700;
    cursor: pointer;
}
.header-logo-subtitle{
    font-family: 'Museo Sans Cyrl';
    font-size: 16px;
    line-height: 18px;
    max-width: 200px;
    font-weight: 200;
    opacity: 0.5;
    padding-left: 50px;
}
.connect-number {
    font-family: 'Museo Sans Cyrl';
    font-size: 20px;
    line-height: 24px;
    max-width: 180px;
    font-weight: 600;
    cursor: pointer;
}
.connect-schedule {
    font-family: 'Museo Sans Cyrl';
    font-size: 16px;
    line-height: 18px;
    max-width: 180px;
    font-weight: 200;
    opacity: 0.5;
}
.header-call {
    background: transparent;
    border: none;
    border: 1px dashed #4f7ef5;
    padding: 10px 26px;
    font-family: 'Museo Sans Cyrl';
    font-size: 14px;
    line-height: 16px;
    max-width: 180px;
    font-weight: 300;
    cursor: pointer;
    transition: 1s ease all 0s;
}
.header-call:hover{
    transform: translateY(5px);
    transition: 0.5s ease all 0s;
    background-color: #4f7ef5;
    color: #fff;
}
.devider{
    width: 100%;
    height: 1px;
    background-color: #e2e2e2;
    margin-top: 10px;
}
  .menu-toggle {
    display: none;
  }
  
  .menu-toggle-box {
    position: relative;
    width: 30px;
    height: 30px;
    cursor: pointer;
  }
  
  .menu-toggle-bar {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #000;
    transform-origin: center;
    transition: transform 0.3s ease;
  }
  
  
  .menu-toggle-bar:before,
  .menu-toggle-bar:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #000;
    transition: transform 0.3s ease;
  }
  
  .menu-toggle-bar:before {
    top: -8px;
  }
  
  .menu-toggle-bar:after {
    bottom: -8px;
  }
  
  .menu-open .menu-toggle-bar {
    transform: rotate(45deg);
  }
  
  .menu-open .menu-toggle-bar:before {
    transform: translateY(8px) rotate(90deg);
  }
  
  .menu-open .menu-toggle-bar:after {
    transform: translateY(-8px) rotate(90deg);
  }
  .menu_container{
    margin-left: auto;
    margin-right: auto;
    box-sizing: content-box;
    max-width: 1800px;
    padding-top:10px;
    display: flex;
    justify-content: center;
  }
  .sublist li {
    width: auto;
    padding-left: 10;
    text-align: center;
    
  }
  .sublist li a {
    padding-left: 10;
  }
  .sublist-side.show {
    display: block !important;
  }
  .sublist-side {
    list-style: none;
    margin: 10px 0; /* Добавляем отступы сверху и снизу */
    margin-left: 20px; /* Добавляем отступ слева */
    padding-left: 0; /* Убираем внутренний отступ */
    padding: 0;
    display: none;
    background-color: #a5a5a5;
    border-radius: 4px; /* Добавляем закругление углов */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Добавляем тень */
    border: 1px solid #1f1f1f; /* Добавляем рамку */
  }
  .submenu-toggle.show{
    display: block !important;
  }
  
  .sublist-side li {
    margin: 5px 0; /* Добавляем отступы между элементами */
    font-weight: normal; /* Убираем жирный шрифт для элементов списка */ 
    position: relative;
    margin-bottom: 5px;
  }
  .sublist-side li:before {
    content: "• "; /* Добавляем точку перед элементом списка */
    position: absolute;
    left: -20px; /* Позиционируем точку слева */
  }
  .sublist-side.active {
    display: block;
  }

  .menu-item.link {
    color: #4f7ef5;
    font-weight: 600;
  }
  .menu-item.link {
    color: #4f7ef5;
    font-weight: 600;
  }
  .menu-ko{
    display: flex;
    justify-content: center;
  }
  
  .menu-ko li{
    list-style: none;
    background: white;
    position: relative;
  }
  
  .menu-ko a {
    padding: 0 10px; /* изменено */
    color: black;
    text-decoration: none;
    display: block;
    text-align: center;
    height: 40px;
    line-height: 40px;
    transition: all .5s;
    font-family: 'Museo Sans Cyrl';
    font-size: 16px;
    white-space: nowrap;
  }
  .menu-ko ul {
    position: absolute;
    left: 0;
    text-align: center;
    top: 100%;
    display: none;
    margin: 0 10px;
    min-width: fit-content;
    z-index: 20;
  }
  .menu-ko li:hover > ul {
    display: block;
  }
  .menu a:hover{
    color: #4180be;
  }
  .menu-ko ul ul {
    padding: 0 10px;
    display: none;
    top: 0;
    left: calc(100% + .20em);
    z-index: 20;
  }
  /* Общие стили для бокового меню */
.sidebar {
  position: fixed;
  top: 0;
  left: -250px; /* Начальное состояние: боковое меню скрыто за экраном */
  width: 250px;
  height: 100%;
  background-color: #f4f4f4;
  padding: 20px;
  transition: left 0.3s ease-in-out;
  z-index: 1000; /* Помещаем меню поверх других элементов */
}
.sidebar-menu li{
  margin-bottom: 20px;
}

.menu_container_side {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.menu-content-side {
  font-family: sans-serif;
  flex: 1;
  padding: 20px;
  color: #fff;
}
.menu-item-has-children {
  font-weight: bold;
}

.menu-toggle {
  display: none;
  align-items: center;
  height: 50px;
  cursor: pointer;
}

.menu-toggle-box {
  width: 25px;
  height: 3px;
  background-color: #fff;
  position: relative;
  transform: rotate(0);
  transition: transform 0.3s ease-in-out;
}

.menu-toggle-bar {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #fff;
  transition: transform 0.3s ease-in-out;
}

.menu-open .menu-toggle-box {
  transform: rotate(90deg);
}

.menu-open .menu-toggle-bar {
  transform: translateX(-50%);
}

.menu-content {
  color: #ffffff;
  position: relative;
  z-index: 9;
}

.menu-ko-side {
  list-style: none;
  padding: 0;
}


.menu-ko-side li {
  margin-bottom: 15px;
}

.menu-ko-side li a {
  display: block;
  text-decoration: none;
  color: #333;
  font-weight: bold;
}
.submenu-toggle::before {
  content: "•";
  display: inline-block;
  transform: rotate(0deg);
  transition: transform 0.3s;
  
}



.menu-ko-side a:hover {
  color: #ffca18;
}





/* Показываем боковое меню */
.sidebar.open {
  left: 0;
}

.info {
background-color: #ececec;
}
.info-content {
padding-top: 20px;
padding-bottom: 10px;
max-width: 1350px;
margin: 0 auto;
}
.info-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.info-title {
  font-family: 'Museo Sans Cyrl';
  font-size: 52px;
  line-height: 1.3;
  max-width: 500px;
  font-weight: 900;
  color: #FFF;
  text-transform: uppercase;
}
.info-subtitle-row {
display: flex;
align-items: center;
padding-top: 40px;
}
.info-action {
  color: #4180be;
  font-family: 'Museo Sans Cyrl';
  font-weight: 900;
  font-size: 17px;
}
.info-date {
  opacity: .5;
  color: #1b1b1b;
  font-family: 'Museo Sans Cyrl';
  font-weight: 300;
  font-size: 14px;
}
.info-subtitle-text {
    max-width: 265px;
    width: 100%;
    font-size: 14px;
    line-height: 18px;
    font-family: 'Museo Sans Cyrl';
    font-weight: 300;
    padding-left: 30px;
}
.button-row {
  display: flex;
  align-items: center;
  padding-top: 40px;
}
.info-call {
  padding: 10px 22px;
  background: linear-gradient(270deg,#47a3ff 0,#4180be 100%);
  color: #fff;
  font-family: 'Museo Sans Cyrl';
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: 1s ease all 0s;

  -webkit-box-shadow: 3px 5px 8px 0px rgba(34, 60, 80, 0.21);
  -moz-box-shadow: 3px 5px 8px 0px rgba(34, 60, 80, 0.21);
  box-shadow: 3px 5px 8px 0px rgba(34, 60, 80, 0.21);
}
.info-call:hover{
  transform: translateY(5px);
  transition: 0.5s ease all 0s;

  -webkit-box-shadow: 0px 0px 0px 0px rgba(34, 60, 80, 0.21);
-moz-box-shadow: 0px 0px 0px 0px rgba(34, 60, 80, 0.21);
box-shadow: 0px 0px 0px 0px rgba(34, 60, 80, 0.21);
}
.info-cases {
  padding: 10px 26px;
  font-family: 'Museo Sans Cyrl';
  border: none;
  border-radius: 5px;
  margin-left: 20px;
  cursor: pointer;
  transition: 1s ease all 0s;
  background-color: #F0F0F0;
  text-align: center;

  -webkit-box-shadow: 3px 5px 8px 0px rgba(34, 60, 80, 0.21);
  -moz-box-shadow: 3px 5px 8px 0px rgba(34, 60, 80, 0.21);
  box-shadow: 3px 5px 8px 0px rgba(34, 60, 80, 0.21);
}
.info-cases:hover{
  transform: translateY(5px);
  transition: 0.5s ease all 0s;

  -webkit-box-shadow: 0px 0px 0px 0px rgba(34, 60, 80, 0.21);
-moz-box-shadow: 0px 0px 0px 0px rgba(34, 60, 80, 0.21);
box-shadow: 0px 0px 0px 0px rgba(34, 60, 80, 0.21);
}
.infoCard {
  border: 1px solid #d8d8d8;
  background-color: #fff;
}
.infoCard-content {

  margin-left:auto;
  margin-right:auto;
  text-align:center;
  padding: 25px;
}
.infoCard-icon {
  margin-left:auto;
  margin-right:auto;
}
.logoPicture{
  border-radius: 50%;
  width: 60px;
  height: 60px;
  margin-right: 10px;
}
.infoCard-title {
  max-width: 160px;
  font-family: 'Museo Sans Cyrl';
  font-weight: 200;
  padding-top: 10px;
}
@media (max-width: 768px) {
  .infoCard {
    display: none;
  }
}

.popupInfo{
  position: fixed;
  width:100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  top: 0;
  left: 0;
  z-index: 50;
  }
  .popupInfo.passive{
  visibility: hidden;
  opacity: 0;
  transition: 0.5s ease all 0s;
  }
  .popupInfo.active{
  visibility: visible;
  opacity: 1;
  transition: 0.5s ease all 0s;
  }
  .popupInfo-body{
  min-height: 100%;
  display: flex;
  justify-content: center;
  align-items: left;
  padding: 30px 10px;
  }
  .popupInfo-content{
  background-color: #FFF;
  max-width: 800px;
  width: 100%;
  padding: 20px 30px;
  }
  .popupInfo-header{
    display: flex;
    justify-content: space-between;
  }
  .popupInfo-title{
    font-family: 'Museo Sans Cyrl';
    font-weight: 700;
    font-size: 26px;
    line-height: 1.2;
  }
  .popupInfo-cross{
    cursor: pointer;
    transition: 0.3s ease all 0s;
  }
  .popupInfo-cross:hover{
    transform: scale(1.2);
  }
  .popupInfo-row {
    display: flex;
    justify-content: space-between;
    padding-top: 30px;
    margin-bottom: 20px;
  }
  .popupInfo-input {
    width: 49%;
    padding: 10px 10px;
    outline: none;
    font-family: 'Museo Sans Cyrl';
    font-weight: 500;
    border: 1px solid #adb5bd;
  }
  .popupInfo-textarea{
    display: block;
    width: 100%;
    padding: 10px 10px;
    outline: none;
    font-family: 'Museo Sans Cyrl';
    font-weight: 300;
    border: 1px solid #adb5bd;
    margin-bottom: 20px;
  }
  .popupInfo-checkbox {
    position: absolute;
    z-index: -1;
    opacity: 0;
  }
  .popupInfo-checkbox+label {
    display: inline-flex;
    align-items: start;
    user-select: none;
  }
  .popupInfo-checkbox+label::before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    flex-grow: 0;
    border: 1px solid #adb5bd;
    border-radius: 0.25em;
    margin-right: 0.5em;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 50% 50%;
    cursor: pointer;
  }
  .popupInfo-checkbox:checked+label::before {
    border-color: #0b76ef;
    background-color: #4f7ef5;
  }
  .popupInfo-checkbox-label {
    font-family: 'Museo Sans Cyrl';
    font-weight: 100;
    padding-left: 6px;
  }

.serv-content {
  padding-top: 40px;
}
.serv-mainTitle {
  font-size: 24px;
  font-family: 'Museo Sans Cyrl';
  font-weight: 700;
}
.serv-row {
  display: flex;
  padding-top: 40px;
}
.serv-card-50 {
  flex: 0 1 50%;
  background-color: #f1f1f1;
  margin-right: 20px;
  border-radius: 10px;
}
.halfCard-content {
  padding: 40px;
}
.halfcard-title {
  line-height: 1.3;
  font-family: 'Museo Sans Cyrl';
  font-size: 20px;
  margin-bottom: 60px;
  cursor: pointer;
  transition: .3s ease all 0s;
}
.halfcard-title:hover{
  color: #4180be;
}
.halfCard-row {
  display: flex;
  align-items: center;
  padding-top: 10px;
}
.halfCard-pointTitle {
  min-width: 65px;
  opacity: .5;
  font-size: 14px;
  font-family: 'Museo Sans Cyrl';
  font-weight: 300;
}
.halfCard-pointSubTitle {
  padding-left: 20px;
  font-family: 'Museo Sans Cyrl';
  font-weight: 300;
  font-size: 16px;
  line-height: 1.4;
}
.halfCard-order{
  margin-top: 40px;
}
.serv-addCard {
  flex: 1 1 50%;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}
.serv-fullWidthCard {
  flex: 1 1 100%;
  background-color: #f1f1f1;
  width: 100%;
  border-radius: 10px;
}
.fullWidthCard-row {
  display: flex;
  align-items: center;
}
.fullWidthCard-from {
  padding-right: 40px;
  font-size: 17px;
  font-family: 'Museo Sans Cyrl';
  font-weight: 500;
}
.order-button {
  padding: 10px 22px;
  background: linear-gradient(270deg,#47a3ff 0,#4180be 100%);
  color: #fff;
  font-family: 'Museo Sans Cyrl';
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: 1s ease all 0s;

  -webkit-box-shadow: 3px 5px 8px 0px rgba(34, 60, 80, 0.21);
  -moz-box-shadow: 3px 5px 8px 0px rgba(34, 60, 80, 0.21);
  box-shadow: 3px 5px 8px 0px rgba(34, 60, 80, 0.21);
}



.order-button:hover{
  transform: translateY(5px);
  transition: 0.5s ease all 0s;

  -webkit-box-shadow: 0px 0px 0px 0px rgba(34, 60, 80, 0.21);
-moz-box-shadow: 0px 0px 0px 0px rgba(34, 60, 80, 0.21);
box-shadow: 0px 0px 0px 0px rgba(34, 60, 80, 0.21);
}

.serv-order{
  margin-top: 20px;
}
.serv-title {
  line-height: 1.3;
  font-family: 'Museo Sans Cyrl';
  font-size: 20px;
  padding-bottom: 20px;
  cursor: pointer;
  transition: .3s ease all 0s;
}
.serv-title:hover{
  color: #4180be;
}
.serv-card-secRow {
  display: flex;
  width: 100%;
  padding-top: 20px;
}
.serv-card {
  background-color: #f1f1f1;
  width: 100%;
  border-radius: 10px;
}
.serv-card:not(:last-child){
  margin-right: 20px;
}
.serv-card-content {
  padding: 40px;
}
.serv-from {
    font-size: 14px;
    font-family: 'Museo Sans Cyrl';
    font-weight: 300;
    padding-top: 10px;
}
.serv-from-text {
  font-size: 17px;
  font-family: 'Museo Sans Cyrl';
  font-weight: 500;
}

.halfCard.sec{
margin-right: 0;
margin-left: 20px;
}



.addServ-content {
  padding-top: 40px;
}
.addServ-mainTitle {
padding-bottom: 40px;
font-size: 24px;
font-family: 'Museo Sans Cyrl';
font-weight: 700;
}
.addServ-row {
  display: flex;
  justify-content: center;
}
.addServ-card {
  flex: 0 1 25%;
  background-color: #f1f1f1;
  border-radius: 10px;
}
.addServ-card:not(:last-child){
  margin-right: 20px;
}
.addServ-card-content {
  padding: 40px;
}
.addServ-card-title {
  line-height: 1.3;
  font-family: 'Museo Sans Cyrl';
  font-size: 20px;
  padding-bottom: 20px;
  cursor: pointer;
  transition: .3s ease all 0s;
  max-width: 200px;
}

.count {
  margin-top: 40px;
}
.count-content {
  border: 8px solid #4180be ;
  padding: 40px;
  border-top-right-radius: 50px;
  border-bottom-left-radius: 50px;
  border-top-left-radius: 5px;
  border-bottom-right-radius: 5px;
  margin-bottom: 40px;
}
.count-title {
    max-width: 335px;
    font-family: 'Museo Sans Cyrl';
    font-weight: 700;
    font-size: 30px;
    line-height: 1.2;
}
.count-list {
  display: flex;
  align-items: center;
}
.count-item {
  font-family: 'Museo Sans Cyrl';
  font-weight: 500;
  font-size: 17px;
  margin-top: 40px;
  padding-bottom: 40px;
  cursor: pointer;
  transition: .3s ease all 0s;
}
.count-item:hover{
  color: #4180be;
}
.count-item:not(:last-child){
  margin-right: 40px;
}

.form-row {
  display: flex;
  align-items: center;
}
.form-col {
  flex: 0 1 50%;
}
.form-col:not(:last-child){
  margin-right: 20px;
}
.form-label {
  font-family: 'Museo Sans Cyrl';
  font-weight: 200;
  font-size: 17px;
  padding-bottom: 10px;
  padding-top: 10px;
}
.form-input {
  width: 100%;
  padding: 12px 20px;
  font-family: 'Museo Sans Cyrl';
  font-weight: 200;
  font-size: 17px;
}
.form-radio-row {
  display: flex;
  align-items: center;
}
.form-radio-label{
  font-family: 'Museo Sans Cyrl';
  font-weight: 200;
  font-size: 20px;
  padding-right: 20px;

}
.form-radio-label input{
  width: 20px;
  height: 20px;
  cursor: pointer;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.form-checkbox {
padding-top: 40px;
display: flex;
justify-content: space-between;
align-items: center;
}
.count-request{
  max-width: 300px;
  width: 100%;
}
.checkbox-label {
  font-family: 'Museo Sans Cyrl';
  font-weight: 300;
  font-size: 16px;
}

.input-checkbox  {
  position: absolute;
  z-index: -1;
  opacity: 0;
}
.input-checkbox+label {
  display: inline-flex;
  align-items: center;
  user-select: none;

}
.input-checkbox+label::before {
  content: '';
  display: inline-block;

  flex-shrink: 0;
  flex-grow: 0;
  border: 1px solid #adb5bd;
  border-radius: 2px;
  margin-right: 0.5em;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 50% 50%;
  width: 20px;
  height: 20px;
  transition: 0.5s ease all 0s;
}
.input-checkbox:checked+label::before {
  border-color: #4180be;
  background-color: #4180be;
}

.how {
  background-color: #ececec;
  text-align: center;
  padding: 40px 0;
}
.how-content {
  padding-top: 40px;
  padding-bottom: 60px;
}
.how-title {
    max-width: 335px;
    font-family: 'Museo Sans Cyrl';
    font-weight: 600;
    font-size: 30px;
    line-height: 1.2;
    margin-left:auto;
    margin-right:auto;
    text-align:center;
}
.how-row {
  padding-top: 40px;
  display: flex;
  
}
.hCard {
  border: 1px solid #e7e7e7;
  flex: 0 1 50%; 
  height: 263px;
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  background-color: #fff;
}
.hCard-content {
  padding: 40px;
}
.hCard-title {
  width: 100%; 
}
@media only screen and (max-width: 767px) {
  .how-title {
    max-width: 100%; 
  }
  
  .how-row {
    flex-direction: column; 
  }
  
  .hCard {
    flex: 0 0 100%; 
  }
}

.how-request{
  margin-top: 20px;
}
.hCard.last{
  background-color: #4f7ef5;
  color: #fff;
}
.hCard-order{
  margin-left:auto;
  margin-right:auto;
  text-align:center;
  font-family: 'Museo Sans Cyrl';
  font-weight: 700;
  font-size: 26px;
  opacity: .3;
}
.hCard-order.last{
  color: #fff;
  opacity: 1;
}
.popupHow{
  position: fixed;
  width:100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  top: 0;
  left: 0;
  z-index: 10000;
  }
  .popupHow.passive{
  visibility: hidden;
  opacity: 0;
  transition: 0.5s ease all 0s;
  }
  .popupHow.active{
  visibility: visible;
  opacity: 1;
  transition: 0.5s ease all 0s;
  }
  .popupHow-body{
  min-height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 30px 10px;
  }
  .popupHow-content{
  background-color: #FFF;
  max-width: 800px;
  width: 100%;
  padding: 20px 30px;
  }
  .popupHow-header{
    display: flex;
    justify-content: space-between;
  }
  .popupHow-title{
    font-family: 'Museo Sans Cyrl';
    font-weight: 700;
    font-size: 26px;
    line-height: 1.2;
  }
  .popupHow-cross{
    cursor: pointer;
    transition: 0.3s ease all 0s;
  }
  .popupHow-cross:hover{
    transform: scale(1.2);
  }
  .popupHow-row {
    display: flex;
    justify-content: space-between;
    padding-top: 30px;
    margin-bottom: 20px;
  }
  .popupHow-input {
    width: 49%;
    padding: 10px 10px;
    outline: none;
    font-family: 'Museo Sans Cyrl';
    font-weight: 500;
    border: 1px solid #adb5bd;
  }
  .popupHow-checkbox {
    position: absolute;
    z-index: -1;
    opacity: 0;
  }
  .popupHow-checkbox+label {
    display: inline-flex;
    align-items: center;
    user-select: none;
  }
  .popupHow-checkbox+label::before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    flex-grow: 0;
    border: 1px solid #adb5bd;
    border-radius: 0.25em;
    margin-right: 0.5em;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 50% 50%;
    cursor: pointer;
  }
  .popupHow-checkbox:checked+label::before {
    border-color: #0b76ef;
    background-color: #4f7ef5;
  }
  .popupHow-checkbox-label {
    font-family: 'Museo Sans Cyrl';
    font-weight: 100;
    padding-left: 6px;
  }
.order-button {
  display: block;
  margin-top: 20px;
}
.profits-content {
  padding-top: 40px;
  padding-bottom: 40px;
}
.profits-mainTitle {
    font-family: 'Museo Sans Cyrl';
    font-weight: 600;
    font-size: 30px;
    line-height: 1.2;
}
.profits-row {
  display: flex;
  justify-content: center;
  padding-top: 40px;
  flex-wrap: wrap;
}
.pCard {
  border: 1px solid #e7e7e7;
}
.pCard:not(:last-child){
  margin-right: 20px;
}
.pCard-content {
  padding: 45px;
  max-width: 300px;
  margin-left:auto;
  margin-right:auto;
  text-align:center;
}
.pCard-icon {
margin-left:auto;
margin-right:auto;
text-align:center;
}
.pCard-title {
  font-size: 16px;
  line-height: 20px;
  font-family: 'Museo Sans Cyrl';
  font-weight: 300;
  padding-top: 20px;
}
.pCard-subtitle {
  font-size: 14px;
  line-height: 14px;
  font-family: 'Museo Sans Cyrl';
  font-weight: 300;
  opacity: .5;
  padding-top: 10px;
}

.select-content {
  border: 8px solid #4180be ;
  padding: 40px;
  border-top-right-radius: 50px;
  border-bottom-left-radius: 50px;
  border-top-left-radius: 5px;
  border-bottom-right-radius: 5px;
  margin-bottom: 40px;
}
.select-mainTitle {
    font-family: 'Museo Sans Cyrl';
    font-weight: 600;
    font-size: 30px;
    line-height: 1.2;
    margin-left:auto;
    margin-right:auto;
    text-align:center;
}
.select-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.select-item {
  font-size: 14px;
  line-height: 14px;
  font-family: 'Museo Sans Cyrl';
  font-weight: 300;
  padding-top: 10px;
  cursor: pointer;
  margin-top: 20px;
  transition: .3s ease all 0s;
}
.select-item:hover{
  color: #47a3ff;
}
.select-item:not(:last-child){
  margin-right: 20px;
}
.select-connect-row {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 40px;
}
.select-button{
  margin-right: 40px;
}
.select-call {
  font-size: 18px;
  line-height: 20px;
  font-family: 'Museo Sans Cyrl';
  font-weight: 300;

}
.select-phone {
  font-size: 20px;
  line-height: 28px;
  font-family: 'Museo Sans Cyrl';
  font-weight: 500;
  padding-top: 10px;
}


.footer {
  background-color: #ececec;
}
.footer-content {
  padding-top: 60px;
  padding-bottom: 60px;
}
.footer-row {
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
}
.col-title {
  font-family: 'Museo Sans Cyrl';
    font-weight: 700;
    font-size: 22px;
    line-height: 1.4;
    padding-bottom: 20px;
}
.col-item {
    font-family: 'Museo Sans Cyrl';
    font-weight: 300;
    font-size: 16px;
    line-height: 1.4;
    cursor: pointer;
    transition: 0.3s ease all 0s;
}
.col-item:not(:first-child){
  padding-top: 10px;
}
.col-item:hover{
  color: #4180be;
}
.col-phone {
    font-family: 'Museo Sans Cyrl';
    font-weight: 600;
    font-size: 20px;
    line-height: 1.4;
    transition: .3s ease all 0s;
}
.col-phone:hover{
  color: #4180be;
}
.col-schedule {
  font-family: 'Museo Sans Cyrl';
    font-weight: 200;
    font-size: 16px;
    line-height: 1.4;
}

.info_container {
  background: url(../Img/bg-main-2.png) no-repeat;
  background-size: 100%;
  padding: 50px;
}

/* Подключаем библиотеку Font Awesome для иконок */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css');

/* Стилизация кнопок */
.prev-button,
.next-button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  font-size: 24px;
  color: #000;
  transition: color 0.3s;
}

.prev-button:hover,
.next-button:hover {
  color: #ff0000;
}

/* Стилизация иконок */
.fa-chevron-left:before,
.fa-chevron-right:before {
  font-family: 'Font Awesome 5 Free';
}

.prev-button .fa-chevron-left:before {
  content: '\f053';
}

.next-button .fa-chevron-right:before {
  content: '\f054';
}

.footer-call {
  background: transparent;
  color: black;
  border: 1px solid #4f7ef5;
  margin-top: 20px;
}
.footer-call:hover{
  background: #4180be;
  color: #fff;
}
.footer-address {
  font-family: 'Museo Sans Cyrl';
    font-weight: 300;
    font-size: 16px;
    line-height: 1.4;
    padding-top: 20px;

}

.popupServ{
  position: fixed;
  width:100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  top: 0;
  left: 0;
  z-index: 50;
  }
  .popupServ.passive{
  visibility: hidden;
  opacity: 0;
  transition: 0.5s ease all 0s;
  }
  .popupServ.active{
  visibility: visible;
  opacity: 1;
  transition: 0.5s ease all 0s;
  }
  .popupServ-body{
  min-height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 30px 10px;
  }
  .popupServ-content{
  background-color: #FFF;
  max-width: 800px;
  width: 100%;
  padding: 20px 30px;
  }
  .popupServ-header{
    display: flex;
    justify-content: space-between;
  }
  .popupServ-title{
    font-family: 'Museo Sans Cyrl';
    font-weight: 700;
    font-size: 26px;
    line-height: 1.2;
  }
  .popupServ-cross{
    cursor: pointer;
    transition: 0.3s ease all 0s;
  }
  .popupServ-cross:hover{
    transform: scale(1.2);
  }
  .popupServ-row {
    display: flex;
    justify-content: space-between;
    padding-top: 30px;
    margin-bottom: 20px;
  }
  .popupServ-input {
    width: 49%;
    padding: 10px 10px;
    outline: none;
    font-family: 'Museo Sans Cyrl';
    font-weight: 500;
    border: 1px solid #adb5bd;
  }
  .popupServ-textarea{
    display: block;
    width: 100%;
    padding: 10px 10px;
    outline: none;
    font-family: 'Museo Sans Cyrl';
    font-weight: 300;
    border: 1px solid #adb5bd;
    margin-bottom: 20px;
  }
  .popupServ-checkbox {
    position: absolute;
    z-index: -1;
    opacity: 0;
  }
  .popupServ-checkbox+label {
    display: inline-flex;
    align-items: center;
    user-select: none;
  }
  .popupServ-checkbox+label::before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    flex-grow: 0;
    border: 1px solid #adb5bd;
    border-radius: 0.25em;
    margin-right: 0.5em;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 50% 50%;
    cursor: pointer;
  }
  .popupServ-checkbox:checked+label::before {
    border-color: #0b76ef;
    background-color: #4f7ef5;
  }
  .popupServ-checkbox-label {
    font-family: 'Museo Sans Cyrl';
    font-weight: 100;
    padding-left: 6px;
  }
  
  @media (max-width: 768px) {
    .header-connect {
      display: none; 
    }
  }
  @media (max-width: 768px) {
    .header-logo-subtitle,
    .header-call
     {
      display: none;
    }
    .info_container {
        padding: 10px;
    }
    .info-title {
        font-size: 32px;
        text-transform: none;
    }
  }
  
  @media (min-width: 769px) {
    .header-logo-subtitle,
    .header-logo,
    .logoPicture,
    .header-call {
      display: block;
    }
  }
  
  @media only screen and (min-width: 790px) {
    .header-call {
      display: block;
      background: transparent;
      border: none;
      border: 1px dashed #4f7ef5;
      padding: 10px 26px;
      font-family: 'Museo Sans Cyrl';
      font-size: 14px;
      line-height: 16px;
      max-width: 180px;
      font-weight: 300;
      cursor: pointer;
      transition: 1s ease all 0s;
    }
    .header-call:hover {
      transform: translateY(5px);
      transition: 0.5s ease all 0s;
      background-color: #4f7ef5;
      color: #fff;
    }
  }
  
  
  @media (max-width: 768px) {
    .menu-row {
      display: none;
    }
  
    .menu-toggle {
      display: flex;
      align-items: center;
      position: relative;
      cursor: pointer;
      padding-left: 10px;
    }
  
    .menu-toggle-box {
      position: relative;
      margin-right: 10px;
    }
  
    .menu-toggle-label {
      font-family: sans-serif;
      font-size: 16px;
      color: #000;
      font-weight: bold;
    }
  
    .menu-toggle-bar {
      position: absolute;
      top: 50%;
      left: 0;
      width: 100%;
      height: 2px;
      background-color: #000;
      transform-origin: center;
      transition: transform 0.3s ease;
    }
  
    .menu-toggle-bar:before,
    .menu-toggle-bar:after {
      content: '';
      position: absolute;
      width: 100%;
      height: 2px;
      background-color: #000;
      transition: transform 0.3s ease;
    }
  
    .menu-toggle-bar:before {
      top: -8px;
    }
  
    .menu-toggle-bar:after {
      bottom: -8px;
    }
  
    .menu-open .menu-toggle-bar {
      transform: rotate(45deg);
    }
  
    .menu-open .menu-toggle-bar:before {
      transform: translateY(8px) rotate(90deg);
    }
  
    .menu-open .menu-toggle-bar:after {
      transform: translateY(-8px) rotate(90deg);
    }
    .menu-content {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      width: 100%;
      background-color: #fff;
      padding: 20px;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
      border-radius: 4px;
    }
    .menu-open .menu-content {
      display: block;
    }
    
    .how {
        padding: 0 10px;
    }
  }
  @media (max-width: 768px) {
    .footer-row {
      flex-wrap: wrap;
    }
    .footer-col {
      flex-basis: 100%;
    }
    .footer-call {
      margin-top: 0; 
      margin-left: auto; 
      margin-right: auto; 
    }
  }
  @media (max-width: 768px) {
    .footer-row {
      flex-wrap: nowrap;
    }
    .footer-col {
      display: none;
    }
    .footer-col.col-contact {
      display: block;
      flex-basis: 100%;
      text-align: center;
    }
    .footer-col.col-contact p {
      margin-bottom: 10px;
    }
    .menu-toggle .social {
        display: flex;
    }
    .info-firstCol {
        padding: 90px 10px;
    }
    .info_container {
        background-size: cover;
    }
  }
@media (max-width: 1230px) {
    .social {
        display: none;
    }
}