@font-face {
    font-family: "Manrope"; 
    src: url("https://ovva.pro/wp-content/themes/erp/assets/fonts/Manrope-Regular.ttf"); 
    font-style: normal; 
    font-weight: normal; 
    } 

//
h1,h2,h3,h4,h5,text,button,label,form,a,p{
    font-family: Manrope , sans-serif;
}

* {
	margin: 0;
	padding: 0;
	border: 0;
	box-sizing: border-box;
}
*::before,
*::after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

body {
	background: #F3F3F3;
	min-height: 100vh;
	font-family: Manrope , sans-serif;
	font-weight: 400;
    font-size: 18px;
    line-height: 26px;
    color: #4E4E4E;
}
a {
    text-decoration: none;
    font-weight: 400;
    line-height: 26px;
    color: #4E4E4E;
   }
header {
	position: fixed;
	width: 100%;
	top: 0;
	left: 0;
	z-index: 2000;
	min-height:36px;
	background: rgba(255,255,0,0);
    display: flex;
    padding: 5px 0;
    align-items: center;
    justify-content: space-between;
    transition: all 0.4s ease;
}

.container{
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px;
    position: relative;
}
.content-wrapper{
	width: 100%;
}
.header__nav {
    display: block;
}
.header__menu {
    display: flex;
	position: relative;
	z-index: 2;
}
.header__menu li {
	list-style: none;
	margin: 0px 0px 0px 36px;
	color: #000;
	font-size: 16px;
	text-decoration: none;
}

.menu-title{
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 26px;
    text-align: center;
    color: #000000;
}
.header-inner{
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    /* gap: 10px; */
}
.header-inner img{
    cursor: pointer;
    margin-right: 10px;
}
.header__container{
    display: flex;
    align-items: center;
    max-width: 1201px;
    min-height: 36px;
    justify-content: space-between;
}

.header-frames{
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 0px;
    gap: 20px;
    width: 320px;
    height: 36px;
}

.menu__item {
    position: relative;
}
.arrow-down {
    margin-left: 5px;
    transition: transform 0.3s ease;
    width: 25.5px;
    height: auto;
}

.menu__item:hover .arrow-down {
    transform: rotate(180deg);
}

.submenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #ffffff; /* Цвет фона выпадающего меню */
    width: 199px;
    left: -70%;
    background: #FFFFFF;
box-shadow: 0px 20px 40px rgba(0, 0, 0, 0.03);
border-radius: 16px;
padding: 0 16px;
}

.submenu__item {
    display: block;
    padding: 12px 0px;
}

.menu__item:hover .submenu {
    display: block;
}
.submenu li{
    margin: 0px;
}
.submenu hr{
    height: 1px;
    width: 100%;
background: #F0F0F0;
}

.button-ghost-s{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 8px 16px;
    gap: 10px;
    width: auto;
    height: auto;
    border-radius: 79px;
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    text-align: center;
    color: #0048D4;
    cursor: pointer;
}
.button-ghost-m{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 0px;
    gap: 10px;
    border-radius: 79px;
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: 24px;
    text-align: center;
    color: #0048D4;
    background: rgba(255,255,255,0);
    cursor: pointer;
}
.button-main-menu{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 8px 16px;
    gap: 10px;
    width: auto;
    height: auto;
    background: #3D9FFF;
    border-radius: 79px;
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
    text-align: center;
    color: #FFFFFF;
    cursor: pointer;
}
.button-m{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 12px 32px;
    gap: 10px;
    width: auto;
    height: auto;
    background: #3D9FFF;
    border-radius: 79px;
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: 24px;
    text-align: center;
    color: #FFFFFF;
    cursor: pointer;
}
.button-ghost-blue{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 12px 32px;
    gap: 10px;
    width: auto;
    height: auto;
    background: rgba(61, 159, 255, 0.2);
    border-radius: 79px;
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: 24px;
    text-align: center;
    color: #3D9FFF;
    cursor: pointer;
}

/* ховер */
.button-ghost-s:hover{
    color: #3D9FFF;
}
.button-ghost-m:hover{
    color: #3D9FFF;
}
.button-main-menu:hover{
    background: #0048D4;
}
.button-m:hover{
    background: #0048D4;
}
.button-ghost-blue:hover{
    background: rgba(0, 72, 212, 0.2);
    color: #0048D4;
}
.contact-submit:hover{
    background: #0048D4;
    cursor: pointer;
}
.header__menu li:hover {
    
}
a.button-ghost-blue:hover{
    text-decoration: none;
    font-weight: initial;
}
a:hover{
    text-decoration: none;
    color: #000;
}
footer a:hover{
    text-decoration: none;
    color: #000;
}
/* ховер */

.content-wrapper{
    margin-top: 136px;
    padding: 0px;
    padding-bottom: 0;
    line-height: 34px;
}
.menu-burger__header{
    display: none;
}

.h1-main{
    font-style: normal;
    font-weight: 700;
    font-size: 72px;
    line-height: 80px;
    text-align: center;
    letter-spacing: -0.015em;
    color: #101010;
}
.plain-text{
font-weight: 400;
font-size: 18px;
line-height: 26px;
text-align: center;
color: #4E4E4E;
}
.content-wrapper__container{
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 0px;
}
.dual-button{
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0px;
    /* gap: 20px; */
    max-width: 640px;
    justify-content: space-between;
    margin-top: 32px;
    margin-bottom: 40px;
}
.dual-button button{
    width: 300px;

}
.dual-button a{
    width: 300px;
    margin-left: 20px;
}
.sweep-info{
    display: flex;
    flex-direction: row;
    padding: 0px;
    max-width: 1200px;
    justify-content: space-between;
    align-self: normal;
}
.sweep-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0px 10px;
    /* gap: 16px; */
    width: 380px;
    height: auto;
}
.sweep-grid-container {
    display: grid;
    grid-gap: 16px;
    padding: 0px 10px;
    width: 380px;
    height: auto;
}
.sweep-h2{
    font-weight: 400;
    font-size: 48px;
    line-height: 56px;
    text-align: center;
    color: #101010;
    margin-bottom: 16px;
}
.sweep-text{
    line-height: 26px;
    margin-left: 8px;
}
.sweep-info hr{
    width: 1px;
    flex-shrink: 0;
    align-self: stretch;
    border-radius: 7px;
    background: #E8E8E8;
}
.dashboard{
    margin-top: 65px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.dashboard img{
    width: 100%;
    max-width: 1190px;
    z-index: -1;
}
.description{
width: 100%;
height: auto;
background: #FFFFFF;
border-radius: 32px;
padding-top: 80px;
padding-bottom: 80px;
margin-top: -56px;
}
.description-inner{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.description-title{
    font-style: normal;
    font-weight: 500;
    font-size: 40px;
    line-height: 48px;
    letter-spacing: -0.015em;
    color: #101010;
}
.description-about{
    font-weight: 400;
    font-size: 24px;
    line-height: 32px;
    max-width: 600px;
    padding-left: 18px;
}
.description-content{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding-top: 100px;
    
}
.description-content img{
    width: 600px;
height: 283px;
padding-left: 18px;
}
.description-content p{
    max-width: 513px;
    color: #101010;
    align-self: flex-end;
}

.orientation{
    padding-top: 100px;
    padding-bottom: 100px;
    width: 100%;
}
.orientation-help{
    padding-bottom: 100px;
    padding-top: 0px;
}

.quiz{
    padding-bottom: 100px;
}
.quiz-container{
    flex-shrink: 0;
    border-radius: 20px;
    background: #FFF;
    width: 100%;
    min-height: 674px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    height: fit-content;
}
.quiz-right{
    max-width: 600px;
    width: 100%;
    height: auto;
    border-radius: 20px;
    background: rgba(61, 159, 255, 0.20);
    position: relative;
}
.quiz-img{
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    position: absolute;
    right: 0;
    width: inherit;
}
.quiz-left{
    width: 100%;
    display: flex;
}
/* quiz form */
#regForm {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 60px;
    width: 100%;
    justify-content: space-between;
  }
  .tabs-container{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
  }
  /* Mark input boxes that gets an error on validation: */
  input.invalid {
    background-color: #ffdddd;
  }
  
  /* Hide all steps by default: */
  #regForm .tab {
    display: none;
  }
  
  /* Make circles that indicate the steps of the form: */
  #regForm .step {
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbbbbb;
    border: none;
    border-radius: 50%;
    display: inline-block;
    opacity: 0.5;
  }
  
  /* Mark the active step: */
  #regForm .step.active {
    opacity: 1;
  }
  
  /* Mark the steps that are finished and valid: */
  #regForm .step.finish {
    background-color: #4CAF50;
  }
  .quiz-control-btns{
    display: flex;
    flex-direction: row;
  }
  .quiz-control-btns .prev-btn{
    display: flex;
    padding: 12px;
    align-items: center;
    justify-content: center;
    border-radius: 90px;
    border: 2px solid var(--Gray-light, #CFCFCF);
    cursor: pointer;
    margin-right: 16px;
  }
  .quiz-control-btns .prev-btn:hover svg path {
    fill: white; /* Цвет иконки при наведении */
  }
  .quiz-control-btns .prev-btn:hover{
    border: 2px solid var(--Gray-light, #CFCFCF);
    background: var(--Gray-light, #CFCFCF);
  }
  .step-cont{
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    color: var(--Gray-light, #CFCFCF);
    padding-top: 50px;
  }
.quiz-form-inner-container{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: center;
}
.quiz-form-container{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-content: start;
    justify-content: flex-start;
}
.quiz-form-inner-container p{
    margin-bottom: 40px;
}
.quiz-form-container p,
.quiz-form-container div
{
    margin-bottom: 40px;
}
.quiz-form-container.last-step div{
    margin-bottom: 20px;
}
.quiz-form-container .feedback-line{
    padding-bottom: 0px;
}
.quiz-form-container .feedback-line:last-child{
    padding-bottom: 20px;
}
.quiz-form-inner-nb{
    color: var(--SeaBlue, #3D9FFF);
    /* H1 Bold */
    font-family: Manrope;
    font-size: 72px;
    font-style: normal;
    font-weight: 700;
    line-height: 80px; /* 111.111% */
    letter-spacing: -1.08px;
}
.quiz-form-title{
    color: var(--Black, #101010);
    font-size: 32px;
    font-style: normal;
    font-weight: 500;
    line-height: 40px;
}
/* Стили для радиокнопок */
.radio-container {
    display: inline-block;
    position: relative;
    padding-left: 30px;
    margin-right: 20px;
    cursor: pointer;
  }
  .quiz-form-container .radio-container:first-child {
    margin-bottom: 20px;
  }
  .radio-container input[type="radio"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
  }
  
  .checkmark {
    position: absolute;
    top: 0;
    left: 10px;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border: 2px solid rgba(61, 159, 255, 1); 
    background-color: transparent; 
    border-radius: 4px; 
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;

  }
  
  .radio-container:hover input ~ .checkmark {
    background-color: rgba(61, 159, 255, 1); /* Изменение цвета обводки при наведении */
  }
  
  .radio-container input:checked ~ .checkmark {
    background-color: rgba(61, 159, 255, 1); /* Изменение цвета обводки для выбранной радиокнопки */
  }
  
  /* Добавляем галочку внутри радиокнопки */
  .radio-container .checkmark::after {
    content: "";
    display: none;
    top: 50%;
    left: 50%; 
    transform: translate(-50%, -50%);
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
  }
  
  .radio-container input:checked ~ .checkmark::after {
    display: block; /* Показываем галочку при выборе */
  }
  
  /* Дополнительные стили, если нужно */
  .quiz-form-title {
    margin-bottom: 10px;
  }
  
  .feedback-line-check {
    margin-top: 10px;
  }
  #regForm-succes{
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    padding: 60px;
    width: 100%;
    justify-content: center;
  }

.orientation-container{
    max-width: 1200px;
    height: auto;
    background: #FFFFFF;
    border-radius: 20px;
    padding: 60px;
}
.orientation-title{
    font-style: normal;
    font-weight: 500;
    font-size: 32px;
    line-height: 40px;
    color: #101010;
    padding-bottom: 40px;
}
.orientation-block{
display: flex;
flex-direction: row;
align-items: flex-start;
padding: 0px;
/* gap: 8px; */
}
.orientation-block-help{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 8px;
    align-items: stretch;
}
.orientation-card{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    /* gap: 16px; */
    width: 264px;
    height: 201px;
    background: #F3F3F3;
    border: 1px solid #CFCFCF;
    border-radius: 20px;
    margin-right: 8px;
}
.orientation-card:last-child{
    margin-right: 0px;
}
.orientation-icons{
    width: 93px;
    height: 93px;
}
.orientation-card p{
    color: #101010;
    margin-top: 16px;
}
.orientation-block-help-card{
    width: 100%;
    height: 100%;
    background: var(--white, #FFF);
 
}
.help-card-title{
    font-size: 20px;
    line-height: 28px;
    padding-bottom: 4px;
    color: #101010 !important;
}
.orientation-block-help-card p{
    color: var(--grey, #4E4E4E);
}

.modules-container{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
}
.modules-inner{
    align-self: flex-start;
}
.modules-title{
    font-weight: 500;
    font-size: 40px;
    line-height: 48px;
    letter-spacing: -0.015em;
    color: #101010;
}
.modules-up{
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    padding: 0px;
    /* gap: 8px; */
    width: 600px;
    flex-wrap: wrap;
}
.modules-down{
    width: 587px;
    height: 186px;
    left: 964px;
    top: 3844px;
    background: #FFFFFF;
    border: 1px solid #F0F0F0;
    border-radius: 20px;
    margin-top: 140px;
    display: flex;
    flex-direction: row;
    padding: 20px;
}
.modules-down-body{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 8px;
}
.modules-card{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    /* gap: 16px; */
    width: 296px;
    height: 201px;
    background: #FFFFFF;
    border: 1px solid #F0F0F0;
    border-radius: 20px;
    min-height: 197px;
}
 .modules-card {
    /* margin-right: 8px;  */
    margin-bottom: 8px; 
  } 
  
  /* Применяем марджин справа только к нечетным элементам */
  .modules-card:nth-child(odd) {
    margin-right: 8px;
  }
  
  /* Применяем марджин снизу ко всем элементам */
  .modules-card:nth-last-child(-n+2) {
    margin-bottom: 0;
  }

  .modules-card:last-child{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-right: 0px;
}

.modules-icons{
    width: 93px;
    height: 93px;
    margin-bottom: 16px;
}
.modules-down-icon{
    position: absolute;
    width: auto;
    height: 319px;
    right: 50px;
    bottom: 0px;
}
.modules-down p{
    width: 265px;
height: auto;
}
.modules-down-mob{
    width: 587px;
    height: 319px;
    margin-top: 8px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
}
.modules-down-main {
    background: #FFFFFF;
    border: 1px solid #F0F0F0;
    border-radius: 20px;
    width: 587px;
    height: 186px;
}
.modules-down-container p{
    padding-left: 20px;
    /* padding-top: 139px; */
    position: absolute;
    top: 155px;
    max-width: 300px;
}

.functional{
 margin-top: 100px;
 margin-bottom: 100px;
 width: 100%;
}
.functional-container{

}
.functional-inner{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding-bottom: 40px;
}
.functional-title{
    font-weight: 500;
    font-size: 40px;
    line-height: 48px;
    letter-spacing: -0.015em;
    color: #101010;
}
.slider-btn-container{
    display: flex;
    /* gap: 16px; */
}
.slider-btn{
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    padding: 12px;
    width: 48px;
    height: 48px;
    background: #FFFFFF;
    border-radius: 78px;
    cursor: pointer;
}
.slider-btn:first-child{
    margin-right: 16px;
}

.swiper{
    background: #FFFFFF !important;
    border-radius: 20px !important;
    z-index: 1000;
}
.swiper-wrapper {
    
    max-width: 1200px !important;
    height: 719px !important;
}
.swiper-slide{
    text-align: center;
          font-size: 18px;
          background-color: aliceblue;
          display: flex;
          justify-content: center;
          align-items: center;
}
.slide-block{
        display: flex;
        flex-direction: column;
        align-content: space-between;
        justify-content: space-between;
        align-items: flex-start;
    
}
.swiper-pagination{
    left: 890px !important;
    top: 177px;
    width: auto !important;
    z-index: 1001 !important;
    height: 10px !important;
    text-align: inherit;
}
.swiper-slide img{
    width: 61%;
    object-fit: cover;
    position: relative;
    top: 0px;
    left: 55px;
  }
.swiper-pagination-bullet-active {
    width: 27px !important;
    border-radius: 20px !important;
    background: #3D9FFF !important;
}
.swiper-slide {
    background: #FFFFFF !important;
    /* border-radius: 20px !important; */
}
.swiper-title{
    max-width: 780px;
    width: auto;
    height: auto;
    font-style: normal;
    font-weight: 500;
    font-size: 32px;
    line-height: 40px;
    color: #101010;
    padding: 60 0 0 60;
    text-align: left;
}
.swiper-text{
    width: auto;
    height: auto;
    padding: 0 26 60 54;
    text-align: start;
}
.swiper-content{
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-direction: row;
    width: inherit;
}
.motivation-container{
    display: flex;
    flex-direction: row;
    height: auto;
    min-height: 312px;
    background: #FFFFFF;
    border-radius: 20px;
    
}
.motivation-inner{
    max-width: 600px;
    min-height: 312px;
    background: #3D9FFF;
    border-radius: 20px;
    padding: 40px;
    width: 100%;
}
.motivation-title{
    font-style: normal;
    font-weight: 500;
    font-size: 40px;
    line-height: 48px;
    letter-spacing: -0.015em;
    color: #FFFFFF;
}
.motivation-content{
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}


.reviews{
    margin-top: 100px;
    margin-bottom: 100px;
}


.itc-slider__item {
    flex: 0 0 50%;
    max-width: 50%;
    max-width: 596px;
    min-height: 460px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 7rem;
  }
  .reviews-btns{
    position: absolute;
    top: -84;
    right: 0;
  }
  .reviews-card{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 32px;
    gap: 0px;
    max-width: 600px;
    /* min-height: 510px; */
    background: #FFFFFF;
    border: 1px solid #F0F0F0;
    border-radius: 20px;
    justify-content: space-between;
  }
  .reviews-text{
    margin-bottom: 32px;
  }
  .stars{
    display: flex;
    flex-direction: row;
    /* gap: 12px; */
    padding-bottom: 32px;
  }
  .stars img{
   width: auto !important;
   margin-right: 12px;
  }
  .stars img:last-child{
    margin-right: 0px;
  }
    .reviews-client-icon img{
        width: auto !important;
        height: 48px;
        border-radius: 100%;
    }
.reviews-text p{
font-style: normal;
font-weight: 400;
font-size: 18px;
line-height: 26px;
color: #4E4E4E;
}    

.client-name{
    font-weight: 600;
font-size: 18px;
line-height: 26px;
color: #101010;
}
.client-description{
    font-weight: 400;
font-size: 14px;
line-height: 22px;
color: #4E4E4E;
}
.reviews-client {
    display: flex;
    flex-direction: row;
    /* gap: 21px; */
}
.reviews-client-data{
    margin-left: 21px;
}

.working-us{
    background: #FFFFFF;
    border-radius: 32px;
    width: 100%;
    padding-top: 80px;
    padding-bottom: 80px;
}

.working-us-title{
font-weight: 500;
font-size: 40px;
line-height: 48px;
letter-spacing: -0.015em;
color: #101010;
}
.working-us-container{
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    padding: 0px;
    margin-top: 80px;
    justify-content: space-between;
}
.working-us button{
    margin: 0 auto;
    margin-top: 70px;
}
.working-us-card{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    padding: 0px 10px;
    /* gap: 16px; */
    max-width: 384px;
    width: 100%;
    min-height: 170px;
    /* height: 100%; */
}
.working-us-card-img{
    display: flex;
    /* height: 274px;
    max-width: 271px;
    width: 100%; */
    background-size: cover !important;;
    justify-content: flex-end;
    align-items: center;
    align-self: center;
    background-repeat: no-repeat !important;
    width: 225px;
    height: 229px;
    margin-bottom: 35px;
}
.working-us hr{
    height: 1px;
    align-self: stretch;
    background: var(--Stroke-grey, #F0F0F0);
    width: 100%;
    margin: 20px 0px;
}
.step{
    font-size: 32px;
    font-weight: 500;
    line-height: 40px;
    color: #101010;
}
.step-blue-point{
    max-width: 24px;
    width: 100%;
    height: 12px;
    border-radius: 20px;
    background: var(--SeaBlue, #3D9FFF);
}
.step-rate-container{
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-bottom: 12px;
}
.step-rate{
    margin-left: 12px;
}
.rates{
    padding-top: 100px;
    padding-bottom: 100px;
}
.rates-container{
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px;
    position: relative;
}
.rates-inner{
    padding-bottom: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.rates-title{
    font-weight: 500;
    font-size: 40px;
    line-height: 48px;
    letter-spacing: -0.015em;
    color: #101010;
}
.rates-description-subtitle{
    text-align: center;
    padding-bottom: 24px;
    padding-left: 10px;
}
.rates-description{}
.rates-cards{
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    padding: 0px;
    gap: 8px;
    justify-content: space-between;
}
.rates-cards .owl-item img{
    width: auto !important;
}
.rates-card{
    display: flex;
    flex-direction: column;
    align-items: center;
    /* gap: 20px; */
    padding: 20px 12px;
    width: auto;
    background: #FFFFFF;
    border: 1px solid #F0F0F0;
    border-radius: 20px;
}
/* .rates-card div{
    margin-bottom: 20px;
} */
.rates-card div:last-child{
    margin-bottom: 0px;
}
.standart-rate{
    background: rgba(61, 159, 255, 0.1);
}
.rates-information{
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0px;
    /* gap: 8px; */
    margin-bottom: 20px;
}
.rate-page-title{
padding-bottom: 64px;
margin-bottom: 8px;
}
.rate-title{
    font-style: normal;
    font-weight: 400;
    font-size: 24px;
    line-height: 32px;
    text-align: center;
    color: #4E4E4E;
    margin-bottom: 8px;
}
.rate-text{
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 22px;
    text-align: center;
    color: #4E4E4E;
}
.users-numbers{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0px;
    /* gap: 8px; */
    margin-bottom: 20px;
}
.users-numbers h5{
    font-style: normal;
    font-weight: 500;
    font-size: 32px;
    line-height: 40px;
    text-align: center;
    color: #4E4E4E;
    margin-bottom: 8px;
}
.users-numbers p{
    font-weight: 400;
    font-size: 14px;
    line-height: 22px;
    text-align: center;
    color: #4E4E4E;
}
.rates-price{
    display: flex;
    flex-direction: column;
    /* gap: 10px; */
    min-height: 94px;
    margin-bottom: 20px;
}
.price-r{
    font-style: normal;
    font-weight: 700;
    font-size: 24px;
    line-height: 32px;
    text-align: center;
    /* text-decoration-line: line-through;
    color: #CFCFCF; */
    min-height: 32px;
    margin-bottom: 10px;
}
.price-long{
    font-weight: 400;
    font-size: 14px;
    line-height: 22px;
    text-align: center;
    color: #4E4E4E;
    min-height: 22px;
}
.price-free{
    font-weight: 700;
    font-size: 32px;
    line-height: 40px;
    text-align: center;
    color: #4E4E4E;
    min-height: 40px;
    margin-bottom: 10px;
}
.rates-card button{
    width: 100%;
    margin-bottom: 10px;
    margin-top: 10px;
}
.rates-card .button-m{
    margin-bottom: 20px;
    margin-top: 0px;
}
.rate-space{
    font-weight: 700;
    font-size: 32px;
    line-height: 40px;
    text-align: center;
    color: #4E4E4E;
    margin-bottom: 20px;
}
/*accordion*/
.rate-accor{
        display: flex;
        /* gap: 10px; */
        flex-direction: column;
}
.accordion {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    padding: 0px;
    gap: 8px;
    background-color: transparent;
    color: #101010;
    cursor: pointer;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-weight: 400;
    font-size: 20px;
    line-height: 28px;
    transition: 0.4s;
    justify-content: space-between;
}
.accordion::after {
    content: url('../img/angle-down.svg');
}
.active::after {
    transform: rotate(180deg);
}
.active, .accordion:hover{
    /*background-color: ;*/
}
.rates-page .accordion:after {
    content: none;
}
.rates-page .accordion{
    padding-top: 8px;
}
.panel {
    padding: 0px;
    background-color: transparent;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
}
.panel-item{
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0px;
    /* gap: 8px; */
    padding-top: 8px;
    padding-bottom: 8px;
}
.panel-item p{
    margin-left: 8px;
}
.panel-content-item{
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0px;
    gap: 8px;
    padding-top: 8px;
    padding-bottom: 8px;
}
.panel-big-numb{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0px;
    /* gap: 8px; */
    padding-bottom: 8px;
}
.panel-big-numb p{
    text-align: center;
}
.big-numb{
    font-style: normal;
    font-weight: 500;
    font-size: 32px;
    line-height: 40px;
    text-align: center;
    color: #4E4E4E;
    margin-bottom: 8px;
}
.panel-big-last{
    padding-bottom: 16px;
}

.invisible{
    display: none;
}


.serv-links{
    padding-bottom: 100px;
}
.serv-links-inner{
    padding-bottom: 40px;
}
.serv-links-container{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: flex-start;
    flex-shrink: 0;
    min-height: 396.79px;
    grid-gap: 8px;
}
.serv-links-card{
    display: flex;
    padding: 20px;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    flex: 1 0 0;
    align-self: stretch;
    border-radius: 20px;
    background: var(--White, #FFF);
    height: 100%;
}
.serv-links-card .button-ghost-m{
    width: 100%;
}

.serv-docs-container{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;

}
.serv-docs-left{

}
.serv-docs-right {
    width: 100%;
    padding-left: 24px;
}
.serv-docs-right p{
    color: #101010;
}
.serv-docs-cirkle{
    width: 556px;
    height: 556px;
    flex-shrink: 0;
    border-radius: 1000px;
    background: var(--White, #FFF);
    display: grid;
    justify-content: center;
}
.serv-docs-right hr{
    height: 2px;
    align-self: stretch;
    background: var(--White, #FFF);
    width: 100%;
    margin: 20px 0px;
}
.serv-docs-right-title{
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px;
    margin-bottom: 8px;
}

.blog-container{
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px;
    position: relative;
}
.blog-inner{
    display: flex;
    justify-content: space-between;
    padding-bottom: 40px;
}
.blog-title{
    font-style: normal;
    font-weight: 500;
    font-size: 40px;
    line-height: 48px;
    letter-spacing: -0.015em;
    color: #101010;
    
}
.blog-card{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    padding: 32px;
    /* gap: 32px; */
    min-height: 214px;
    min-width: 385px;
    background: #FFFFFF;
    border: 1px solid #F0F0F0;
    border-radius: 20px;
}
.blog-card-title{
    font-style: normal;
    font-weight: 400;
    font-size: 24px;
    line-height: 32px;
    color: #000000;
    margin-bottom: 32px;
}
.blog-date{
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 22px;
    color: #101010;
}
.blog-slide {
    width: auto;
    gap: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
}

.documentation {
    padding-top: 100px;
    padding-bottom: 100px;
}
.documentation-container{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.documentation-title{
    font-weight: 500;
    font-size: 40px;
    line-height: 48px;
    letter-spacing: -0.015em;
    color: #101010;
    margin-bottom: 40px;
}
.documentation-content{
    display: block;
    flex-direction: row;
    width: 100%;
    /* gap: 8px; */
}
.document{
    padding: 39 53;
    background: #FFFFFF;
    border: 1px solid #F0F0F0;
    border-radius: 20px;
    width: fit-content;
    cursor: pointer;
}
/* .document:first-child{
    margin-right: 8px;
} */

.document-img{
    box-sizing: border-box;
    max-width: 190px;
    height: auto;
    border: 1px solid #F0F0F0;
}

.FAQ-container{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.FAQ-title{
    font-weight: 500;
    font-size: 40px;
    line-height: 48px;
    letter-spacing: -0.015em;
    color: #101010;
}
.FAQ-description{
    padding-bottom: 51px;
}
.FAQ-accor{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0px;
    max-width: 600px;
    /* gap: 8px; */
}
.FAQ-accor button{
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    padding: 16px;
    /* gap: 16px; */
    max-width: 600px;
    height: auto;
    background: #FFFFFF;
    border-radius: 12px;  
    align-items: center;
}
.FAQ-accor .panel{
    background: #FFFFFF;
    border-radius: 12px;
}
.FAQ-accor-item{
    background: #FFFFFF;
    border-radius: 12px;
    margin-bottom: 8px;
}
.FAQ-accor-item:last-child{
    margin-bottom: 0px;
}
.FAQ-accor-item .accordion::after{
        content: url('../img/Union.svg');
        transform: rotate(90deg);
        margin-left: 16px;
}
.FAQ-accor-item .active::after {
    transform: rotate(0deg);
}

.FAQ-accor p{
    padding: 0 16px;
}
.FAQ-accor .panel-item{
    display: flex;
    flex-direction: column;
}
.FAQ-accor-item hr{
    width: 100%;
    height: 1px;
    background: #F3F3F3;
}
.underline-accor{
    padding: 0 16px;
    }

.special{
    width: 100%;
    padding: 80 0;
    margin-top: 100px;
    margin-bottom: 100px;
    background: #FFFFFF;
    border-radius: 32px;
    position: relative;
    overflow: hidden;
}
.special-title{
    font-style: normal;
    font-weight: 500;
    font-size: 40px;
    line-height: 48px;
    letter-spacing: -0.015em;
    color: #101010;
    margin-right: 100px;
}
.special-inner{
    display: flex;
    padding-bottom: 56px;
    /* gap: 100px; */
}
.special-content{
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}
.special-description{
    display: flex;
    /* gap: 40px; */
    flex-direction: column;
    max-width: 513px;
    padding-top: 210px;
}
.special-description p{
    margin-bottom: 40px;
}
.special-inner p{
    font-weight: 400;
    font-size: 40px;
    line-height: 48px;
    color: #CFCFCF;
}
.special-img{
    position: absolute;
    width: 1032px;
    height: 740px;
    left: 590px;
    top: 100px;
}
.special-img img{
    width: 100%;
}

footer{
    width: 100%;
}


.footer-container{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 28px;
    
}
.footer-section{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0px 10px;
    /* gap: 28px; */
    min-width: 150px;
    max-width: 300px;
    width: 100%;
}
.footer-title{
    font-weight: 400;
    font-size: 18px;
    line-height: 26px;
    color: #101010;
    margin-bottom: 28px;
}
.footer-section a, .footer-section p{
    margin-bottom: 28px;
}
.footer-section a:last-child, .footer-section .we-support:last-child p{
    margin-bottom: 0px;
}
.footer-section hr{
    width: 95%;
    height: 1px;
    background: #CFCFCF;
    margin-bottom: 28px;
}
.we-support{
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-direction: row;
}

.footer-container-doc{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    /* gap: 16px; */
    padding-top: 28px;
    padding-bottom: 100px;
}
.vert-line{
    margin-left: 16px;
    margin-right: 16px;
    margin-bottom: 16px;
}
.doc-line{
    height: 1px;
background: #CFCFCF;
width: 100%;
}

.disabled { 
    pointer-events: none; 
    cursor: default; 
    } 

    .header-mobile{
        display: none;
    }
    .fixed-menu{
        background: #FFFFFF;
        position: fixed;
    }
    .white{
        background: #FFFFFF;
        transition: all 0.4s ease;
    }

@media(min-width: 1000px){
    footer .container{
        padding: 0px;
    }
}


@media(max-width: 1219px){
    .modules-down-body{
            display: grid;
            grid-template-columns: repeat(1, 1fr);
            grid-gap: 8px;
        }
        .modules-down-mob {
            width: 600px;
        }
        .modules-down-main {
            width: 600px;
        }
}

@media(max-width: 1155px){
    .swiper-pagination{
    left: 750px !important;
    }

}
@media(max-width: 1060px){
    .swiper-pagination{
    left: 700px !important;
    }
    .swiper-title {
        max-width: 700px;
    }

}

@media(max-width: 1017px){
    .header-desc{
        display: none;
    }
    .header-mobile{
        display: flex;
    }
    .header__nav hr{
        height: 1px;
        width: 100%;
        background: #F0F0F0;
        margin-top: 32px;
        margin-bottom: 32px;
    }
    .fixed-menu{
        background: #FFFFFF;
    }
    .white{
        background: #FFFFFF;
        transition: all 0.4s ease;
    }
    .header__nav {
        display: flex;
    position: absolute;
    top: 55px;
    left: 0;
    background: #FFFFFF;
    width: 100%;
    transition: all 0.4s ease;
    left: -100%;
    flex-direction: column;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0px;
    /* gap: 64px; */
    padding-bottom: 55px;
    }
    .header-frames{
        justify-content: center;
        transition: all 0.4s ease;
       margin-top: 64px;
    }
    .header-frames.open-menu{
        left:0;
    }
    .header__menu {
        display: flex;
        flex-direction: column;
        text-align: center;
        padding: 0px;
        /* gap: 32px; */
    }
    .menu-bottom{
        display: flex;
        padding: 0px;
        /* gap: 32px; */
        flex-direction: column;
    }
    .header__nav.open-menu{
        left:0;
    }
    .header__menu li {
        margin: 0px;
        font-weight: 500;
        font-size: 32px;
        line-height: 40px;
        text-align: center;
        color: #000000;
        margin-bottom: 32px;
        }
        .header__menu li:last-child {
            margin-bottom: 0px;
        }
    .menu-burger__header {
        position: relative;
        width: 40px;
        height: 35px;
        display: block;
        margin-left: 10px;
    }
    .menu-burger__header span, .menu-burger__header:after, .menu-burger__header:before{
        height: 3px;
        width: 100%;
        position: absolute;
        background: #101010;
        border-radius: 21px;
        margin: 0 auto;
    }
    .menu-burger__header span{
        top: 16px;
    }
    .menu-burger__header:after, .menu-burger__header:before{
        content: '';
    }
    .menu-burger__header:after{
        bottom: 10px;
    }
    .menu-burger__header:before{
        top: 10px;
    }
    .menu-burger__header.open-menu span {
        opacity:0; 
        transition: 0.5s; 
    }
    .menu-burger__header.open-menu:before {
        transform: rotate(45deg);
        top: 16px;
        transition: 0.4s;
    }
    .menu-burger__header.open-menu:after {
        transform: rotate(-45deg);
        bottom: 16px;
        transition: 0.4s;
    }

    header {
        height: 60px;
        position: fixed;
    }
    .content-wrapper {
        margin-top: 136px;
        display: flex;
        flex-direction: column;
    }
    .fixed-pade {
        overflow: hidden;
    }
    .header__container{
    display: flex;
    flex-direction: row-reverse;
    transition: all 0.4s ease;
    }
 .header-frames .button-ghost-s{
    display: none;
 }
 
 .menu-subtitle{
    font-weight: 400;
font-size: 24px;
line-height: 32px;
text-align: center;
color: #CFCFCF;
margin-bottom: -8px;
margin-bottom: 32px;
 }
 
 
    body {  
        font-style: normal;
        font-weight: 400;
        font-size: 16px;
        line-height: 24px;
    }
    .container{
        padding: 10 34;
    }
    .h1-main{
        font-weight: 700;
        font-size: 48px;
        line-height: 56px;
        text-align: center;
        letter-spacing: -0.015em;
    }
    .plain-text{
        font-weight: 400;
        font-size: 16px;
        line-height: 24px;
        text-align: center;
    }
    .content-wrapper__container{
        margin-top: 22px;
        padding-bottom: 0px;
    }
    .dual-button { 
        margin-top: 24px;
        margin-bottom: 32px;
    }
    .sweep-text{
        text-align: center;
    }
    .sweep-h2{
        font-weight: 400;
        font-size: 40px;
        line-height: 48px;
        text-align: center;
    }
    .dashboard{
        margin-top: 36px;
    }
    .title{
        font-weight: 500;
        font-size: 28px;
        line-height: 36px;
        letter-spacing: -0.015em;
        
    }
    .description{
    padding-top: 48px;
    padding-bottom: 48px;
    border-radius: 16px;
    margin-top: -41px;
    }
    .description-about{
        font-weight: 400;
        font-size: 20px;
        line-height: 28px;
        max-width: 355px;
    }
    .description-content p{
        max-width: 355px;
    }
    .description-content img{
    max-width: 350px;
    height: inherit;
    }
    .description-title{
        max-width: 50%;
    }
    .orientation{
        padding-top: 64px;
    padding-bottom: 64px;
    }
    .orientation-help{
        padding-top: 0px;
    }

    .quiz{
        padding-bottom: 64px;
    }
    .quiz-container {
        min-height: 600px;
    }
    .quiz-form-inner-container p {
        margin-bottom: 32px;
    }
    .quiz-form-container p,
    .quiz-form-container div
    {
        margin-bottom: 32px;
    }
    .quiz-form-container.last-step div{
        margin-bottom: 16px;
    }
    .quiz-form-inner-nb {
        font-size: 48px;
        font-weight: 700;
        line-height: 56px; /* 116.667% */
        letter-spacing: -0.72px;
    }
    #regForm {
        display: inline-flex;
        flex-direction: column;
        align-items: flex-start;
        padding: 34px;
        width: 100%;
        justify-content: flex-start;
    }
    #regForm-succes{
        display: inline-flex;
        flex-direction: column;
        align-items: center;
        padding: 34px;
        width: 100%;
        justify-content: center;
      }
    .quiz-form-title {
        font-size: 24px;
        font-style: normal;
        font-weight: 500;
        line-height: 32px;
    }
    .orientation-container{
        border-radius: 16px;
        padding: 24px;
    }
    .orientation-title{
        font-weight: 500;
        font-size: 28px;
        line-height: 36px;
        letter-spacing: -0.015em;
        padding-bottom: 24px;
    }
    .orientation-block{
        display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    }
    .orientation-block-help{
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-gap: 8px;
        align-items: stretch;
    }
    .orientation-card{
        width: 49.2%;
        /* margin-right: 0; */
    }
    .orientation-block-help-card{
        width: 100%;
        height: 100%;
        background: var(--white, #FFF);
     
    }
    .help-card-title{
        font-size: 20px;
        line-height: 28px;
        padding-bottom: 4px;
        color: #101010 !important;
    }
    .orientation-block-help-card p{
        color: var(--grey, #4E4E4E);
    }
    
    .orientation-card:nth-child(2) {
         margin-right: 0px; 
        margin-bottom: 8px;
    }
    .modules-up {
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        padding: 0px;
        /* gap: 8px; */
        max-width: 600px;
        flex-wrap: wrap;
        padding-left: 20px;
        justify-content: flex-end;
    }
    .modules-down {
        max-width: 100%;
        width: -webkit-fill-available;
        width: -moz-available;
        width: -ms-available;
        height: 186px;
        left: 0;
        top: 0;
        background: #FFFFFF;
        border: 1px solid #F0F0F0;
        border-radius: 20px;
        margin-top: 140px;
        display: flex;
        flex-direction: row;
        padding: 20px;
        position: relative;
    }
    .modules-container {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-content: space-between;
    }
    .modules-inner{
        padding-bottom: 24px;
    }
    .modules-cards{
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-end;
    }
    .modules-card {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
        /* gap: 16px; */
        max-width: 350px;
        /* height: auto; */
        background: #FFFFFF;
        border: 1px solid #F0F0F0;
        border-radius: 20px;
        width: 46.5%;
    }
    .modules-card:last-child {
        width: 100%;
        max-width: 550;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .modules-down-mob{
        width: 550px;
    }
    .modules-down-main {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        justify-content: flex-end;
    }
    .modules-down-body{
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        grid-gap: 8px;
    }
    .modules-down-container p{
        padding-left: 20px;
        /* padding-top: 139px; */
        position: absolute;
        top: 155px;
        max-width: 300px;
    }
    .modules-down-icon{
        position: initial;
    width: auto;
    height: 319px;
    padding-right: 60px;
    }

    .functional {
        margin-top: 64px;
        margin-bottom: 64px;
    }
    .functional-inner {
        
        padding-bottom: 24px;
    }
    .swiper-title {
        width: auto;
        height: auto;
        font-weight: 500;
        font-size: 24px;
        line-height: 32px;
        padding: 24 0 0 24;
        text-align: left;
    }
    .swiper-text {
        width: auto;
        height: auto;
        padding: 24 24 64 24;
        text-align: start;
        font-style: normal;
        font-weight: 400;
        font-size: 16px;
        line-height: 24px;
    }
    .swiper-content {
        display: flex;
        justify-content: space-between;
        align-items: flex-end;
        flex-direction: column;
        width: inherit;
    }
    .functional-inner .slider-btn-container{
        display: none;
    }
    .swiper-pagination {
        left: 57% !important;
        top: 25px;
        /* width: 200px !important; */
        right: 0;
        height: 10px;
    }
    .swiper-wrapper {
        max-width: 1200px !important;
        height: 566px !important;
    }
    .swiper-slide img{
        width: 100%;
        object-fit: cover;
        top: 0px;
        left: 0px;
        padding: 0px 24px;
      }
    .motivation-inner{
        font-weight: 600;
        font-size: 28px;
        line-height: 36px;
        letter-spacing: -0.015em;
        color: #FFFFFF;
        border-radius: 16px;
        padding: 24px;
        width: -webkit-fill-available;
        width: -moz-available;
        width: -ms-available;
        width: 50%;
    }
    .motivation-content {
        padding: 24px;
        width: 50%;
    }
    .reviews {
        margin-top: 64px;
        margin-bottom: 64px;
    }
    .reviews-btns {
        position: absolute;
        top: -60;
        right: 0;
    }
    .slider-btn {
        padding: 6px;
        width: 36px;
        height: 36px;
    }
    .reviews-card{
    padding: 16px;
    /* gap: 16px; */
    /* min-height: 495px; */
    }
    .stars{
        padding-bottom: 16px;
      }
    .reviews-text p {
        font-weight: 400;
        font-size: 16px;
        line-height: 24px;
    }
    .client-name {
        font-weight: 600;
        font-size: 14px;
        line-height: 22px;
    }
    .client-description {
        font-weight: 400;
        font-size: 12px;
        line-height: 18px;
    }
    .working-us {
        padding-top: 32px;
        padding-bottom: 32px;
    }
    .working-us-container {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: flex-start;
        padding: 0px;
        margin-top: 24px;
        row-gap: 44px;
    }
    .working-us-card {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        padding: 0px;
        /* gap: 16px; */
        max-width: 100%;
        width: 100%;
        min-height: 0px;
        height: auto;
        margin-right: 24px;
    }
    .working-us-card:last-child {
        margin-right: 0px;
    }
    .working-us-card-img {
        width: 100px;
        height: 100px;
        margin-bottom: 20px;
    }
    .step {
        font-size: 24px;
        font-style: normal;
        font-weight: 500;
        line-height: 32px;
    }
    .rates {
        padding-top: 64px;
        padding-bottom: 64px;
    }
    .rates-container{
        padding: 10 0;
    }
    .rates-inner {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding-bottom: 24px;
        padding-left: 34px;
    }
    .rates-description {
        max-width: 350px;
    }
    .rates-cards {

    }
        .rates-cards .owl-stage{
            padding-left: 34px !important;
        }
    

    .rates-card {
        /* gap: 14px; */
        padding: 20px 12px;
        min-width: 270px;
        width: auto;
    }
 /*   .rates-card:first-child {
        margin-left: 34px;
    }
    .rates-card:last-child {
        margin-right: 34px;
    }
    */
    .rates-information {
        margin-bottom: 14px;
    }
    .users-numbers {
        margin-bottom: 14px;
    }
    .rates-price {
        margin-bottom: 14px;
    }

    .rate-title {
        font-weight: 500;
        font-size: 20px;
        line-height: 26px;
    }
    .rate-page-title{
        padding-bottom: 48px;
        padding-left: 34px;
        }
    .rate-text {
        font-weight: 400;
        font-size: 16px;
        line-height: 24px;
    }
    .users-numbers h5 {
        font-weight: 700;
        font-size: 28px;
        line-height: 34px;
        text-align: center;
        letter-spacing: -0.015em;
    }
    .price-free {
        font-weight: 700;
        font-size: 28px;
        line-height: 34px;
        text-align: center;
        letter-spacing: -0.015em;
    }
    .price-r {
        font-weight: 700;
        font-size: 28px;
        line-height: 34px;
        text-align: center;
        letter-spacing: -0.015em;
    }
    .price-long {
        font-weight: 700;
        font-size: 12px;
        line-height: 18px;
    }
    .rates-card .button-m{
        width: 246px;
        font-weight: 500;
        font-size: 16px;
        line-height: 20px;
        margin-bottom: 14px;
    }
    .rate-space{
        font-weight: 500;
        font-size: 18px;
        line-height: 24px;
        margin-bottom: 14px;
    }
    /* .rate-accor {
        gap: 8px;
    } */
    .rates-card button {
        margin-bottom: 8px;
        margin-top: 8px;
    }
    .panel-item {
        padding-top: 6px;
        padding-bottom: 6px;
    }
    .panel-content-item{
        padding-top: 6px;
        padding-bottom: 6px;   
    }
    .panel-big-numb{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 0px;
        /* gap: 8px; */
        padding-bottom: 8px;
    }
    .panel-big-numb p{
        text-align: center;
    }
    .big-numb{
        font-weight: 700;
        font-size: 28px;
        line-height: 34px;
    }
    .panel-big-last{
        padding-bottom: 16px;
    }
    .accordion {
        font-weight: 400;
        font-size: 18px;
        line-height: 24px;
    }

    .serv-links{
        padding-bottom: 64px;
    }
    .serv-links-inner{
        padding-bottom: 24px;
    }
    .serv-links-container{
        grid-template-columns: repeat(2, 1fr);
    }

    .serv-docs-cirkle {
        width: 346px;
        height: 346px;
    }      
    .serv-docs-cirkle img{
        height: inherit;
    }    
    .serv-docs-right {
        width: 100%;
        padding-left: 16px;
    }

    .blog-container{
        padding: 10 0;
    }
    .blog-inner {
        padding-bottom: 24px;
        padding-left: 34px;
    }
    .blog-inner .slider-btn-container{
        display: none;
    }
    .blog-slide {
        overflow-x: scroll;
        display: flex;
        align-items: stretch;
        justify-content: space-between;
    }
 /*   .blog-slider:first-child {
        margin-left: 34px;
    }
    .blog-slider:last-child {
        margin-right: 34px;
    }
    */
    .blog-card{
        min-height: 170px;
        min-width: 332.67px;
        padding: 16px;
        /* gap: 24px; */
    }
    .blog-card-title {
        margin-bottom: 24px;
    }
    .blog-date{
        font-weight: 400;
        font-size: 10px;
        line-height: 14px;
    }
    .documentation {
        padding-top: 64px;
        padding-bottom: 64px;
    }
    .documentation .container{
        padding: 10px 0px;
    }
    .documentation-title{
        margin-bottom: 32px;
        padding-left: 34px;
    }
    .documentation-content {
        display: flex;
        flex-direction: column;
        /* gap: 8px; */
        align-items: flex-end;
    }
    .document {
        padding: 45 63;
    }
    .document:first-child {
        margin-right: 0px;
        margin-bottom: 8px;
    }

    .FAQ-description {
        padding-bottom: 24px;
        font-weight: 400;
        font-size: 14px;
        line-height: 20px;
    }
    .FAQ-accor {
        max-width: 350px;
        /* gap: 8px; */
    }
    .FAQ-accor button {
        max-width: 350px;
        height: auto;
        background: #FFFFFF;
        border-radius: 12px;
        font-weight: 400;
        font-size: 20px;
        line-height: 28px;
        color: #101010;
    }

    .special {
        padding-top: 32px;
        margin-top: 64px;
        margin-bottom: 64px;
        background: #FFFFFF;
        border-radius: 32px;
        position: relative;
        overflow: hidden;
        padding-bottom: 0px;
    }
    .special .container{
        padding-bottom: 0px;
    }
    .special-container {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }
    .special-inner {
        width: 100%;
        display: flex;
        padding-bottom: 32px;
        flex-direction: row;
        justify-content: space-between;
    }
    .special-inner p {
        font-weight: 400;
        font-size: 28px;
        line-height: 36px;
        letter-spacing: -0.015em;
    }
    .special-description {
        display: flex;
        /* gap: 24px; */
        flex-direction: column;
        max-width: 100%;
        padding-top: 0px;
    }
    .special-description p {
        margin-bottom: 24px;
    }    
    .special-content {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        flex-direction: column;
    }
    .special-img {
        display: flex;
        position: initial;
        width: auto;
        height: auto;
        padding-top: 24px;
        flex-direction: column;
        align-items: center;
        align-content: center;
        flex-wrap: wrap;
        justify-content: center;
        margin: 0 auto;
    }
    .special-img img{
    width: 100%;
    max-width: 1190px;
    }
    .footer-container-doc{
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        /* gap: 16px; */
        padding-top: 25px;
        padding-bottom: 64px;
    }

    .footer-container {
        display: flex;
        justify-content: flex-start;
        align-items: flex-start;
        flex-direction: row;
        flex-wrap: wrap;
        /* row-gap: 40px; */
        padding-bottom: 25px;
    }
    .footer-section {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        padding: 0px 10px;
        /* gap: 28px; */
        min-width: 330px;
        width: 100%;
    }
    .footer-section:first-child {
        margin-bottom: 40px;
    }
    .footer-section a, .footer-section p {
        margin-bottom: 16px;
    }
    .footer-section hr {
        margin-bottom: 16px;
    }
    .footer-title {
        font-weight: 400;
        font-size: 16px;
        line-height: 24px;
    }
    .footer-section a {
        font-weight: 400;
        font-size: 16px;
        line-height: 24px;
    }
    .reviews-btn-container{
        display: inherit !important;
    }
    .reviews-slider .owl-stage{
        padding-left: 0px !important;
    }
}
@media(max-width: 800px){
    .modules-up{

    }

}


@media(max-width: 700px){
    .header__nav {
        display: flex;
        position: absolute;
        top: 50px;
        left: 0;
        background: #FFFFFF;
        width: 100%;
        transition: all 0.4s ease;
        left: -100%;
        flex-direction: column;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 0px;
        /* gap: 16px; */
        padding-bottom: 25px;
    }
    .header-frames {
        margin-top: 16px;
    }
    .header__menu li {
        font-size: 18px;
        line-height: 24px;
        margin-bottom: 16px;
    }
    .menu-subtitle {
        font-weight: 400;
        font-size: 18px;
        line-height: 24px;
        margin-bottom: -5px;
    }
    .header__nav hr {
        margin-top: 16px;
        margin-bottom: 16px;
    }
    /* .header__menu {
        gap: 16px;
    } */

    body {  
        font-style: normal;
        font-weight: 400;
        font-size: 14px;
        line-height: 20px;
    }
    .container{
        padding: 5 10;
    }
    .h1-main{
        font-style: normal;
        font-weight: 700;
        font-size: 28px;
        line-height: 34px;      
        text-align: center;
        letter-spacing: -0.015em;
        padding: 5 10;
    }
    .plain-text{
        font-style: normal;
        font-weight: 400;
        font-size: 14px;
        line-height: 20px;
        padding: 5 10;
    }
    .content-wrapper__container{
        margin-top: 22px;
        padding-bottom: 0px;
    }
    .content-wrapper .container{
        padding: 0px;
    }
    .dual-button { 
        margin-top: 24px;
        margin-bottom: 24px;
        display: flex;
        flex-direction: column;
        /* gap: 16px; */
        max-width: 300px;
        width: -webkit-fill-available;
        width: -moz-available;
        width: -ms-available;
        padding: 5 10;
    }
    .dual-button button {
        width: 100%;
    }
    .dual-button a{
        width: 100%;
        margin-left: 0px;
        margin-top: 16px;
    }
    .button-ghost-m{
        padding: 8px 16px;
        gap: 10px;
        border-radius: 79px;
        font-weight: 500;
        font-size: 16px;
        line-height: 20px;
    }

    .button-m{
        padding: 8px 16px;
        gap: 10px;
        border-radius: 79px;
        font-style: normal;
        font-weight: 500;
        font-size: 16px;
        line-height: 20px;
    }
    .button-ghost-blue{
        padding: 8px 16px;
        gap: 10px;
        border-radius: 79px;
        font-style: normal;
        font-weight: 500;
        font-size: 16px;
        line-height: 20px;
    }


    .content-wrapper__container .plain-text{
        order: 0;
    }
    .content-wrapper__container .dual-button{
        order: 1;
    }
    .content-wrapper__container .sweep-info{
        order: 3;
    }
    .content-wrapper__container .dashboard{
        order: 2;
    }
    .sweep-text{
        font-weight: 400;
        font-size: 14px;
        line-height: 20px;
    }
    .sweep-h2{
        font-weight: 400;
        font-size: 28px;
        line-height: 34px;
        margin-bottom: 8px;
    }
    .sweep-info{
        display: flex;
        flex-direction: column;
        align-items: center;
        /* gap: 20px; */
        background: #FFFFFF;
        border-radius: 12px 12px 0px 0px;
        padding-top: 32px;
        margin-top: -32px;
    }
    .sweep-container{
        /* gap: 8px; */
        width: auto;
        margin-bottom: 20px;
    }
    .sweep-container:last-child{
        margin-bottom: 0px;
    }
    .dashboard{
        margin-top: 0px;
        padding: 0 2;
    }
    .title{
        font-weight: 500;
        font-size: 20px;
        line-height: 26px;  
    }
    .description{
    padding-top: 60px;
    padding-bottom: 60px;
    border-radius: 0px;
    margin-top: 0px;
    }
    .description-inner {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: flex-start;
        /* gap: 24px; */
        max-width: 100%;
    }
    .description-about{
        font-weight: 400;
        font-size: 18px;
        line-height: 24px;
        max-width: 100%;
        padding-left: 0px;
        margin-top: 24px;
    }
    .description-content {
        display: flex;
        flex-direction: column-reverse;
        padding-top: 24px;
        justify-content: space-between;
        align-items: flex-start;
        /* gap: 24px; */
    }
    .description-content p{
        max-width: 100%;
        margin-top: 24px;
    }
    .description-content img{
        max-width: 100%;
        height: auto;
        padding-left: 0px;
    }
    .description-title{
        max-width: 100%;
    }
    .orientation{
        padding-top: 0px;
    padding-bottom: 32px;
    background: #FFFFFF;
    border-radius: 0px 0px 12px 12px;
    }
    .orientation-help{
        padding-top: 32px;
        background: transparent;
    }

    .quiz{
        padding-bottom: 32px;
    }
    .quiz-container {
        padding-top: 55px;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
        min-height: 512px;
    }
    .quiz-right {
        width: 100%;
        min-height: 247px;
        position: relative;
        overflow: hidden;
        max-width: 100%;
    }
    .quiz-form-inner-container{
        align-items: center;
    }
    .quiz-form-inner-container p {
        margin-bottom: 16px;
        text-align: center;
    }
    .quiz-form-container p,
    .quiz-form-container div
    {
        margin-bottom: 24px;
    }
    .quiz-form-container.last-step div{
        margin-bottom: 12px;
    }
    .quiz-form-inner-nb {
        font-size: 28px;
        font-style: normal;
        font-weight: 700;
        line-height: 34px; /* 121.429% */
        letter-spacing: -0.42px;
    }
    #regForm {
        display: inline-flex;
        flex-direction: column;
        align-items: flex-start;
        padding: 0px 10px 56px 10px;
        width: 100%;
        justify-content: flex-start;
    }
    #regForm-succes{
        display: inline-flex;
        flex-direction: column;
        align-items: flex-start;
        padding: 56px 10px 56px 10px;
        width: 100%;
        justify-content: center;
      }
    .quiz-control-container,
    .quiz-control-btns,
    .quiz-control-btns .button-m{
        width: 100%;
    }
    .quiz-control-btns .prev-btn{
        margin-right: 8px;
        padding: 4px;
      }
    .tab {
        width: 100%;
    }
    .quiz-form-title {
        font-size: 18px;
        font-style: normal;
        font-weight: 500;
        line-height: 24px;
    }

    .orientation .container{
        padding-top: 0px;
    }
    .orientation-container{
        padding: 0px;
    }
    .orientation-title{
        font-weight: 500;
        font-size: 20px;
        line-height: 26px;
        padding-bottom: 24px;
    }
    .orientation-block{
        display: flex;
        flex-direction: column;
        flex-wrap: nowrap;
        align-items: center;
    }
    .orientation-block-help{
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        grid-gap: 8px;
        align-items: stretch;
    }
    .orientation-card:nth-child(2) {
        margin-right: 0px;
        margin-bottom: 8px;
    }
    .orientation-card {
        display: flex;
        flex-direction: column;
        align-items: center;
        /* gap: 16px; */
        width: 100%;
        margin-right: 0;
        margin-bottom: 8px;
    }
    .orientation-block-help-card{
        width: 100%;
        height: 100%;
        background: var(--white, #FFF);
        align-items: flex-start;
    }
    .help-card-title{
        font-size: 18px;
        line-height: 26px;
        padding-bottom: 4px;
        color: #101010 !important;
    }
    .orientation-block-help-card p{
        color: var(--grey, #4E4E4E);
    }
    .orientation-card:last-child {
        margin-bottom: 0px;
    }    

    .modules{
        padding-top: 32px;
    }
    .modules-up {
        display: flex;
        flex-direction: column;
        padding: 0px;
        /* gap: 8px; */
        width: 100%;
        padding-left: 0px;
        justify-content: flex-end;
        flex-wrap: nowrap;
        align-items: flex-start;
    }
    .modules-down {
    max-width: 100%;
    width: -webkit-fill-available;
    left: 0;
    top: 0;
    background: #FFFFFF;
    border: 1px solid #F0F0F0;
    border-radius: 20px;
    margin-top: 180px;
    display: flex;
    flex-direction: row;
    padding: 20px;
    position: relative;
    }
    .modules-down p {
    position: absolute;
    top: -170;
    width: -webkit-fill-available;
    }
    .modules-down-icon {
        position: initial;
        width: auto;
        height: 319px;
        padding-right: 0px;
    }
    .modules-container {
        display: flex;
        flex-direction: column;
        align-items: stretch;
    }
    .modules-inner{
        padding-bottom: 24px;
    }
    .modules-cards{
        display: flex;
        flex-direction: column;
        flex-wrap: nowrap;
        align-items: flex-start;
        justify-content: flex-end;
    }
    .modules-card {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 20px;
        /* gap: 16px; */
        max-width: 700px;
        height: auto;
        background: #FFFFFF;
        border: 1px solid #F0F0F0;
        border-radius: 20px;
        width: -webkit-fill-available;
        min-height: 169px;
    }
    .modules-card:nth-child(odd) {
        margin-right: 0px;
    }
    
    .modules-card:nth-last-child(-n+2) {
        margin-bottom: 8px;
    }
    .modules-card:last-child {
        width: -webkit-fill-available;
        display: flex;
        flex-direction: column;
        align-items: center;
        max-width: 700px;
    }

    .modules-down-mob{
        width: 100%;
        height: 350px;
        margin-top: 8px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        position: relative;
        align-items: center;
    }
    .modules-down-main {
        background: #FFFFFF;
        border: 1px solid #F0F0F0;
        border-radius: 20px;
        width: 100%;
        height: 186px;
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-end;
    }
    .modules-down-container p{
        padding-left: 0px;
        position: initial;
    }


    .functional {
        margin-top: 32px;
        margin-bottom: 32px;
    }
    .functional .container{
        background: #FFFFFF;
        border-radius: 12px 12px 12px 12px;
        padding-bottom: 0px;
    }
    .functional-inner {
        
        padding-bottom: 64px;
    }
    .functional-container {
    padding-top: 30px;
}
.swiper{
    border-radius: 0px !important;
}
    .swiper-title {
        
        width: auto;
        height: auto;
        font-weight: 500;
        font-size: 18px;
        line-height: 24px;
        padding: 0;
        padding-top: 5px;
        text-align: left;
    }
    .swiper-text {
        min-height: 110px;
        width: 100%;
        height: 100%;
        padding: 0 0 50 0;
        font-weight: 400;
        font-size: 14px;
        line-height: 20px;
        display: flex;
        align-items: flex-start;
        justify-content: flex-start;
    }
    .swiper-slide {
        background: #FFFFFF !important;
        border-radius: 20px !important; 
        height: 383px !important;
        gap: -10px;
    }
    .swiper-slide img{
        width: 100%;
        object-fit: cover;
        top: 0px;
        left: 0px;
        padding:0 4px;
    }
    .swiper-content {
        display: flex;
        justify-content: space-between;
        align-items: flex-end;
        flex-direction: column;
        width: inherit;
    }
    .functional-inner .slider-btn-container{
        display: none;
    }
    .swiper-pagination {
        left: 10 !important;
    top: 88px;
    /*width: auto !important;*/
    right: auto;
    height: 10px !important;
}
    
    .swiper-wrapper {
        max-width: 1200px !important;
     height: auto !important;
    }
    .swiper-inner{
        padding-bottom: 24px;
    }

    .motivation-block{
        background: #FFFFFF;
    border-radius: 0px 0px 12px 12px;
    }
    .motivation-block .container {
    background: #3D9FFF;
    border-radius: 12px;
}
.motivation-title{
    font-weight: 500;
        font-size: 20px;
        line-height: 26px;
        color: #FFFFFF;
}
    .motivation-inner{
    padding: 32 0 24 0px;
    min-height: auto;
    width: 100%;
    }
    .motivation-content {
    padding: 0 0 32 0px;
    color: #ffff;
    /* gap: 24px; */
    width: 100%;
    }
    .motivation-content button{
        background: #FFFFFF;
        color: #3D9FFF;
        margin-top: 24px;
    }
    .motivation-container {
        display: flex;
        flex-direction: column;
        height: auto;
        min-height: 0px;
        background: #3D9FFF;
    }
    .reviews {
        margin-top: 32px;
        margin-bottom: 32px;
    }
    .reviews .functional-container {
            padding: 0;
    }
    .reviews .functional-inner{
        padding-bottom: 24px;
    }
    .reviews-btns {
       display: none;
    }
    .slider-btn {
        padding: 6px;
        width: 36px;
        height: 36px;
    }
    .itc-slider__item {
        flex: 0 0 100%;
        max-width: 50%;
        max-width: fit-content;
        min-height: initial;
        display: flex;
        justify-content: center;
        align-items: center;
        color: rgba(255, 255, 255, 0.8);
        font-size: 7rem;
    }
    .reviews-card {
        padding: 12px;
        /* gap: 16px; */
        max-width: max-content;
        /* min-height: 466px; */
    }
    .reviews-text {
        margin-bottom: 16px;
    }
    .stars{
        display: flex;
        flex-direction: row;
        /* gap: 12px; */
        width: auto;
        justify-content: center;
        align-self: center;
    }
    .reviews-text p {
        font-weight: 400;
        font-size: 14px;
        line-height: 20px;
    }
    .reviews-client {
        /* gap: 8px; */
        align-items: center;
    }
    .reviews-client-data {
        margin-left: 8px;
    }
    .client-name {
        font-weight: 700;
        font-size: 12px;
        line-height: 18px;
    }
    .client-description {
        font-weight: 400;
        font-size: 10px;
        line-height: 14px;
    }
    .reviews-btn-container{
        display: none !important;
    }
    .reviews-slider .owl-stage{
        padding-left: 0px !important;
    }

    .working-us {
        padding-top: 32px;
        padding-bottom: 32px;
        border-radius: 12px;
    }
    .working-us-container {
        padding: 0px;
        margin-top: 24px;
         row-gap: 0; 
        flex-direction: column;
    }
    .working-us-card {
        padding: 0px;
        /* gap: 8px; */
        min-width: auto;
        width: 100%;
        margin-right: 0px !important;
        margin-bottom: 24px;
    }
    .working-us-card-img {
        margin-bottom: 8px;
    }
    .step {
        font-size: 18px;
        font-weight: 500;
        line-height: 24px; 
    }
    .working-us hr {
        margin: 8px 0px;
    }
    .working-us .button-ghost-m {
        padding: 0;
        font-weight: 500;
        font-size: 20px;
        line-height: 24px;
    }
    .working-us button {
        margin: 0 auto;
        margin-top: 0px;
    }
    .rates {
        padding-top: 32px;
        padding-bottom: 32px;
    }
    .rates-container{
        padding: 10 0;
    }
    .rates-inner {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: flex-start;
        padding-bottom: 24px;
        padding-left: 10px;
        /* gap: 24px; */
    }
    .rates-description {
       margin-top: 24px;
    }
    .rates-card {
        /* gap: 12px; */
        padding: 20px 12px;
        min-width: 270px;
    }
    .rates-information {
        margin-bottom: 12px;
    }
    .users-numbers {
        margin-bottom: 12px;
    }
    .rates-price {
        margin-bottom: 12px;
    }
    .rates-card .button-m {
        margin-bottom: 12px;
    }
    .rate-space {
        margin-bottom: 12px;
    }
    .rate-page-title{
        padding-bottom: 28px;
        padding-top: 40px;
        }
 /*   .rates-card:first-child {
        margin-left: 10px;
    }
    .rates-card:last-child {
        margin-right: 10px;
    }
    */
    .rates-cards .owl-stage{
        padding-left: 10px !important;
    }

    .rate-text {
        font-weight: 400;
        font-size: 14px;
        line-height: 20px;
    }
    
    /* .rate-accor {
        gap: 8px;
    } */
    .panel-item {
        padding-top: 6px;
        padding-bottom: 6px;
    }
    .panel-content-item{
        padding-top: 6px;
        padding-bottom: 6px;   
    }
    .panel-big-numb{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 0px;
        /* gap: 8px; */
        padding-bottom: 8px;
    }
    .panel-big-numb p{
        text-align: center;
    }
    .big-numb{
        font-weight: 700;
        font-size: 28px;
        line-height: 34px;
    }
    .panel-big-last{
        padding-bottom: 16px;
    }
    .accordion {
        font-weight: 400;
        font-size: 18px;
        line-height: 24px;
    }

    .serv-links{
        padding-bottom: 32px;
    }
    .serv-links-container{
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        align-items: flex-start;
        flex-shrink: 0;
        min-height: 396.79px;
        grid-gap: 8px;
    }
    .serv-links-card{
        display: flex;
        padding: 20px;
        flex-direction: column;
        justify-content: space-between;
        align-items: flex-start;
        flex: 1 0 0;
        align-self: stretch;
        border-radius: 20px;
        background: var(--White, #FFF);
        height: 100%;
    }
    .serv-links-card .button-ghost-m{
        width: 100%;
    }

    .serv-docs-container {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
    }
    .serv-docs-right hr {
        margin: 8px 0px;
    }
    .serv-docs-right {
        padding-left: 0px;
        margin-top: 10px;
    }
    .serv-docs-right-title {
        font-size: 18px;
        font-weight: 400;
        line-height: 24px;
    }

    .blog-container{
        padding: 10 0;
    }
    .blog-inner {
        padding-bottom: 24px;
        padding-left: 10px;
    }
    .blog-inner .slider-btn-container{
        display: none;
    }
/*    .blog-slider:first-child {
        margin-left: 10px;
    }
    .blog-slider:last-child {
        margin-right: 10px;
    }
    */
    .blog-card {
        min-height: 142px;
        min-width: 280px;
        padding: 16px;
        /* gap: 16px; */
    }
    .blog-card-title {
        font-weight: 500;
        font-size: 18px;
        line-height: 24px;
        margin-bottom: 16px;
    }
    .blog-slide .owl-stage{
        padding-left: 10px !important;
    }

    .documentation {
        padding-top: 64px;
        padding-bottom: 64px;
    }
    .documentation-title{
        margin-bottom: 0px;
        padding-left: 10px;
    }
    .documentation-container {
        display: flex;
        justify-content: space-between;
        flex-direction: column;
        align-items: flex-start;
        /* gap: 22px; */
    }
    .documentation-inner{
        margin-bottom: 22px;
    }
    .document:first-child {
        margin-bottom: 16px;
    }
    .documentation-content {
        display: flex;
        flex-direction: column;
        /* gap: 16px; */
        align-items: flex-end;
        width: -webkit-fill-available;
    }
    .document {
        display: flex;
        padding: 41 55;
        width: -webkit-fill-available;
        flex-direction: column;
        align-items: center;
    }

    .FAQ-container {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: flex-start;
    }
    .FAQ-inner{
        padding-bottom: 24px;
    }

    .FAQ-accor {
        max-width: -webkit-fill-available;
        /* gap: 16px; */
    }
    .FAQ-accor-item .accordion::after {
        margin-left: 8px;
    }
    .FAQ-accor-item {
        margin-bottom: 16px;
    }
    .FAQ-accor button {
        max-width: -webkit-fill-available;
        height: auto;
        background: #FFFFFF;
        border-radius: 12px;
        color: #101010;
        padding: 12px;
        font-weight: 500;
        font-size: 18px;
        line-height: 24px;
    }
    .FAQ-accor p {
        padding: 0 12px;
    }
    .underline-accor{
        padding: 0 12px;
        }

    .special {
        padding-top: 32px;
        margin-top: 32px;
        margin-bottom: 64px;
        background: #FFFFFF;
        border-radius: 12px;
        position: relative;
        overflow: hidden;
        padding-bottom: 0px;
    }
    .special .container{
        padding-bottom: 0px;
    }
    .special-container {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }
    .special-inner {
        width: 100%;
        display: flex;
        padding-bottom: 30px;
        flex-direction: column;
        /* gap: 30px; */
    }
    .special-inner p {
        font-weight: 400;
        font-size: 18px;
        line-height: 24px;
        margin-top: 30px;
    }
    .special-description {
        display: flex;
        /* gap: 30px; */
        flex-direction: column;
        max-width: 100%;
    }
    .special-description p {
        margin-bottom: 30px;
    }
    .special-content {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        flex-direction: column;
    }
    .special-img {
        padding-top: 35px;
    }
    .special-img img{
    width: 100%;
    max-width: 1190px;
    }


    .vert-line{
        display: none;
    }
    .footer-container {
        display: flex;
        justify-content: flex-start;
        align-items: center;
        flex-direction: column;
        flex-wrap: nowrap;
        /* row-gap: 50px; */
    }
    .footer-section:first-child {
        margin-bottom: 50px;
    }
    .footer-section:first-child {
        margin-bottom: 50px;
    }
    .footer-section:last-child {
        margin-bottom: 0px;
    }
    .footer-container-doc{
        display: flex;
        flex-direction: column-reverse;
        align-items: center;
        /* gap: 16px; */
        width: 100%;
        min-width: auto;
        text-align: center;
        padding-top: 25px;
        flex-wrap: wrap;
        padding-bottom: 64px;
    }
    .footer-container-doc a{
        margin-bottom: 16px;
    }
    .footer-container-doc a:first-child{
        margin-bottom: 0px;
    }
    .footer-section {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 0px 10px;
        /* gap: 16px; */
        width: 100%;
        min-width: auto;
        margin-bottom: 50px;
    }

    .footer-section a {
        font-weight: 400;
        font-size: 14px;
        line-height: 20px;
    }
    .footer-title {
        font-weight: 600 !important;
        font-size: 14px !important;
        line-height: 20px !important;
    }
    .we-support:last-child{
        /* justify-content: center; */
    }

} 


/* страница тарифов */
.rates-tb{
    display: flex;
    flex-direction: column;
    align-items: stretch;
    max-width: 1200px;
    position: relative;
}
.rates-tb div:nth-child(2n+2) {
    background: var(--White, #FFF);
}
.rates-tb-inner {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    justify-items: center;
    align-self: start; /* Изменено на "start" для фиксированного позиционирования вверху */
    width: 100%;
    position: sticky; /* Добавлено для фиксированного позиционирования */
    top: 65px; /* Расположение элемента относительно верхней границы контейнера */
    background-color: white; /* Цвет фона (можете изменить на свой) */
    z-index: 1; /* Поднимаем элемент над скроллом таблицы */
}
.rates-tb-inner.mobile{
    display: none;
}
.rates-tb-inner p{
    max-width: 227px;
    width: 100%;
    margin-left: 16px;
    color: var(--Black, #101010);
    text-align: center;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
}
.rates-tb-title{
    display: flex;
    padding: 4px 8px;
    align-items: flex-start;
    align-self: stretch;
    border-radius: 4px;
    /* background: var(--White, #FFF); */
    width: 100%;
    margin-top: 0;
    margin-bottom: 12px;
    color: var(--Black, #101010);
}
.rates-tb .rates-tb-title:first-child{
    margin-top: 12px;
}
.rates-tb-container{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    align-self: stretch;
}
.rates-tb-item{
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    justify-items: center;
    width: 100%;
    padding: 2px 8px;
    align-self: stretch;
    align-items: center;
    margin-bottom: 12px;
}
.rates-tb-container .rates-tb-item:last-child{
    margin-bottom: 0px;
}

.rates-tb-item p{
    color: var(--Black, #101010);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
    text-align: start;
    width: 100%;
}
.rates-tb-item b{
    color: var(--Black, #101010);
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 22px;
    text-align: center;
    margin-left: 16px;
}


@media(max-width: 1000px){
    .rates-tb-inner p{
        font-size: 12px;
        font-style: normal;
        font-weight: 400;
        line-height: 16px;
        margin-left: 4px;
        max-width: 83%;
    }
    .rates-tb-title{
        padding: 2px 4px;
        margin-top: 0;
        margin-bottom: 12px;
    }
    .rates-tb-item {
        padding: 2px 4px;
        align-self: stretch;
        align-items: center;
    }
    .rates-tb-item p{
        font-size: 12px;
        font-style: normal;
        font-weight: 400;
        line-height: 16px; 
    }
    .rates-tb-item b{
        color: var(--Black, #101010);
        font-size: 12px;
        font-style: normal;
        font-weight: 600;
        line-height: 16px;
        margin-left: 4px;
        width: 100%;
    }
}
@media(max-width: 700px){
    .rates-tb div:nth-child(2n+2) {
        background: var(--White, #FFF);
    }
    .rates-tb-inner{
        display: none;
    }
    .rates-tb-inner.mobile{
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        justify-items: start;
        position: initial;
    }
    .rates-tb-inner.mobile .rates-tb-inner-row{
        display: flex;
        align-items: flex-start;
    }
    .rates-tb-inner.mobile .rates-tb-inner-row:first-child{
       margin-bottom: 20px;
    }
    .rates-tb-inner.mobile .rates-tb-inner-row .rates-tb-inner-color{
        width: 50px;
        height: 19px;
    }
    .rates-tb-inner.mobile .rates-tb-inner-row p{
        font-size: 12px;
        font-style: normal;
        font-weight: 700;
        line-height: 18px; 
        margin-left: 8px;
        max-width: 100%;
        text-align: end;
        width: auto;
    }
    .rates-tb-inner.bottom-fix{
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        justify-items: center;
        margin-top: 40px;
        position: sticky; /* Добавлено для фиксированного позиционирования */
        top: 65px; /* Расположение элемента относительно верхней границы контейнера */
        background-color: transparent; /* Цвет фона (можете изменить на свой) */
        z-index: 1;
    }
    .rates-tb-inner.bottom-fix .rates-tb-inner-color{
        width: 96%;
        max-width: 75px;
        height: 19px;
        flex: 1 0 0;
        margin-left: 4px;
    }
    .rates-tb-title {
        font-weight: 500;
    }
    .rates-tb-item b {
        margin-left: 4px;
        width: 100%;
        font-size: 10px;
        font-style: normal;
        font-weight: 600;
        line-height: 14px;
    }
    .rates-tb-item p {
        font-size: 10px;
        font-style: normal;
        font-weight: 400;
        line-height: 14px;
        word-wrap: break-word;
        max-width: 100px;
        width: 83;
    }
}