body {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #282828;
  overflow-x: hidden;
}

.navbar-collapse.justify-content-end.show {
    display: none;
}
.navbar-collapse.justify-content-end.active {
    display: block;
}

h3 {
  font-size: 1.5rem;
}

a:hover {
  color: #983EE1;
}
.tab-block img {
    width: 100%;
    height: 100%;
}
.header-form-block {
  background: white;
  padding: 30px 40px;
  border-radius: 10px;
  text-align: center;
}

.header-form-title {
  margin-bottom: 10px;
  line-height: 1.5;
  text-transform: uppercase;
  text-align: left;
  font-weight: 600;
}

a#navbarDropdown:hover+ul.dropdown-menu,
ul.dropdown-menu:hover {
  display: block;
}

.header-form-descr {
  margin-bottom: 25px;
  font-size: 17px;
  text-align: left;
}

.header-form-block .form-group input {
  border: 1px solid #bdbbbb;
  font-size: 16px;
  height: 60px;
  border-radius: 7px;
}

.header-form-block button.my-button {
  margin: 0;
  width: 100%;
}

a.popup-youtube {
  position: relative;
}

.header-form-block .form-group {
  margin-bottom: 15px;
}

.header-form-block .checkbox-block {
  color: #282828;
  font-size: 14px;
}

.header-form-block .checkbox-block a {
  color: #282828;
}

.header-form-block .form-control::placeholder {
  color: #bdbbbb;
  font-weight: 400;
}

.main-menu {
  background: black;
}

.nav-link {
  color: white;
  font-size: 16px;
  font-weight: 500;
  padding: 1.5rem 0.7rem;
}

.nav-link:hover {
  background: #5a6fc7;
  color: white;
}

.navbar {
  padding: 0px;
}

.navbar-toggler i {
  color: white;
}

.header-bg {
  width: 100%;
  background: linear-gradient(to right, white, #e2f2f6 50%, #e2f2f6 50%, white);
  margin-top: 70px;
  position: relative;
  padding-bottom: 120px;
  height: 652px;
}

.header-img img {
  width: 370px;
  height: auto;
}

.plus-item-icon {
  font-size: 100px;
  color: #0fc7c1;
}

.plus-item-text h2 {
  font-size: 20px;
  font-weight: 600;
}

.plus-item {
  text-align: center;
}

.plus-block {
  padding: 70px 0;
}

.header-phone-block {
  text-align: right;
  margin-top: 20px;
  margin-bottom: 40px;
}

.header-phone {
  color: #282828;
  font-weight: 700;
  font-size: 24px;
}

.my-button {
  font-size: 18px;
  color: white;
  background: #0fc7c1;
  border-radius: 24px;
  padding: 13px 25px;
  cursor: pointer;
  font-weight: 600;
}

a.my-button:not([href]):not([tabindex]) {
  color: white;
}

.my-button:hover {
  background: #983EE1;
  transition: 0.9s;
  text-decoration: none;
}

.header-button-block {
  margin-top: 15px;
}

.header-phone-block p {
  font-size: 12px;
  font-weight: 400;
  color: #282828;
  margin-top: 15px;
  margin-bottom: 0px;
}

.header-title-block {
  font-size: 47px;
  color: #282828;
  font-weight: 600;
  text-transform: uppercase;
}

.header-title-block span {
  display: block;
  font-weight: 700;
  font-size: 26px;
  margin-top: 10px;
}

.header-sign {
  background: #0fc7c1;
  font-size: 30px;
  color: white;
  border-radius: 7px;
  font-weight: 800;
  padding: 0px 20px;
  text-transform: uppercase;
  display: inline-block;
  margin-top: 10px;
}

.header-sign-2 {
  font-size: 26px;
  font-weight: 400;
  margin-top: 15px;
}

.header-sign-3 {
  font-size: 20px;
  font-weight: 400;
  margin-top: 40px;
}

.header-sign-3 b {
  display: block;
}

.scroll-down-button {
  display: block;
  position: relative;
  width: 23px;
  height: 43px;
  border-radius: 9px;
  border: 2px solid #282828;
  position: absolute;
  bottom: 4rem;
  left: 50%;
  margin-left: -12px;
  background-position: center center;
  -webkit-transition-property: border;
  transition-property: border;
}

.scroll-down-button span {
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
  -webkit-transition-delay: 0;
  transition-delay: 0;
  -webkit-transition-property: all;
  -webkit-transition-duration: 0.2s;
  -webkit-transition-timing-function: ease-in-out;
  transition-property: all;
  transition-duration: 0.2s;
  transition-timing-function: ease-in-out;
  position: absolute;
  top: 7px;
  left: 8px;
  width: 3px;
  height: 8px;
  background: #282828;
  border-radius: 3px;
  -webkit-animation: scrollDown 2.5s ease-in-out infinite;
  -o-animation: scrollDown 2.5s ease-in-out infinite;
  animation: scrollDown 2.5s ease-in-out infinite;
}

@-webkit-keyframes scrollDown {
  0% {
    opacity: 0;
  }

  25% {
    opacity: 0;
    top: 17px;
  }

  35% {
    opacity: 1;
  }

  65% {
    opacity: 1;
  }

  75% {
    top: 7px;
    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}

@keyframes scrollDown {
  0% {
    opacity: 0;
  }

  25% {
    opacity: 0;
    top: 17px;
  }

  35% {
    opacity: 1;
  }

  65% {
    opacity: 1;
  }

  75% {
    top: 7px;
    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}

.header-button {
  margin-top: 20px;
}

.header-button .my-button {
  background: linear-gradient(135deg, #934ee9 -5%, #0acbc0 100%);
}

.header-button .my-button:hover {
  background: linear-gradient(135deg, #934ee9 -5%, #0acbc0 100%);
}

.header-right-block {
  background: white;
  border-radius: 7px;
  padding: 25px;
}

.header-right-block p {
  font-size: 18px;
  margin-bottom: 20px;
  font-weight: 400;
}

.header-right-block p:last-child {
  margin-bottom: 0px;
}

.header-right-block p b {
  font-weight: 500;
  font-size: 22px;
}

.about-block {
  background: #f0f0f0;
  padding: 70px 0;
}

.add-title-block {
  text-align: center;
  color: #757575;
  font-weight: 400;
  font-size: 16px;
  margin-bottom: 45px;
}

h2 span {
  color: #0fc7c1;
}

.about-text-block {
  background: white;
  padding: 15px 10px;
  font-size: 18px;
  height: 340px;
}

.about-text-block h3 {
  margin-bottom: 25px;
  font-weight: 600;
  text-align: center;
  margin-top: 20px;
}

.about-text-block ul {
  color: #0fc7c1;
}

.about-text-block ul li {
  margin-bottom: 20px;
}

.about-text-block ul span {
  color: #282828;
}

.video-block {
  height: 340px;
}

.video-block iframe {
  width: 100%;
  height: 100%;
  margin: 0px;
  padding: 0px;
}

.video img {
  width: 100%;
  height: auto;
}

.plus-item-icon i,
.benefits-item-icon i,
.free-block-item-icon i {
  font-size: 70px !important;
}

.garant-item-icon i {
  font-size: 40px !important;
}

.green-col-left {
  display: inline-block;
  overflow: visible !important;
  width: 40px;
  height: 100px;
  border-radius: 40px 0 0/9px 0 0;
  background-color: #50c013;
  background-image: linear-gradient(to right, rgba(0, 0, 0, .11), rgba(255, 255, 255, .11));
  position: relative;
}

.green-col-right {
  width: 26px;
  height: 100px;
  border-radius: 0 26px 26px 0/0 2px 3px 0;
  background-color: #3da106;
  position: relative;
  right: -40px;
}

.green-col-left span::before {
  content: "";
  position: absolute;
  top: 7px;
  left: -8px;
  width: 8px;
  height: 1px;
  background: #3da106;
}

.green-col-left span {
  position: absolute;
  top: -6px;
  right: -70px;
  color: #3da106;
  border: 1px solid #3da106;
  display: inline-block;
  padding: 0 2px;
  line-height: 17px;
  font-size: 12px;
  height: 17px;
  min-width: 35px;
  text-align: center;
  background: white;
}

.red-col-left {
  display: inline-block;
  overflow: visible !important;
  width: 40px;
  height: 50px;
  border-radius: 40px 0 0 40px/9px 0 0 3px;
  background-color: #f03867;
  background-image: linear-gradient(to right, rgba(0, 0, 0, .11), rgba(255, 255, 255, .11));
  position: relative;
  left: -28px;
}

.red-col-right {
  width: 26px;
  height: 50px;
  border-radius: 0 26px 26px 0/0 2px 3px 0;
  background-color: #be0333;
  position: relative;
  right: -40px;
}

.red-col {
  position: absolute;
  left: 50%;
  right: 50%;
  bottom: 10px;
  z-index: 1;
}

.green-col {
  position: absolute;
  left: 50%;
  right: 50%;
  bottom: 12px;
}

.red-col-left span::before {
  content: "";
  position: absolute;
  top: 7px;
  right: -8px;
  width: 8px;
  height: 1px;
  background: #be0333;
}

.red-col-left span {
  position: absolute;
  top: 0;
  left: -44px;
  color: #be0333;
  border: 1px solid #be0333;
  display: inline-block;
  padding: 0 2px;
  line-height: 17px;
  font-size: 12px;
  height: 17px;
  min-width: 35px;
  text-align: center;
  background: white;
}

.reviews-item-title {
  font-size: 20px;
  background: white;
  padding: 20px 10px;
  text-align: center;
}

.reviews-item-title p {
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 0px;
  margin-top: 10px;
}

.reviews-item-title span {
  font-size: 18px;
  font-weight: bold;
  color: #0fc7c1;
}

.reviews-item-title a {
  color: #0fc7c1;
  text-decoration: underline;
}

.reviews-item-title a:hover {
  color: #0fc7c1;
  text-decoration: none;
}

.reviews-col-block {
  position: relative;
  height: 250px;

}

.reviews-col-block-mr {
  height: 100%;
  position: relative;
  padding-left: 0px;
  padding-right: 0px;
  max-width: 170px;
}

.reviews-item {
  position: relative;
  background: #f7f7f7;
}

span.hr-block {
  color: #0fc7c1;
  display: inline-block;
  font-weight: normal;
}

.hr-block i {
  margin-left: 30px;
}

.reviews-sign-block {
  background: #f7f7f7;
  padding-top: 20px;
}

.reviews-sign-item {
  text-align: center;
  color: #404040;
}

.round-red {
  background-color: #f03867;
  background-image: linear-gradient(to right, rgba(0, 0, 0, .11), rgba(255, 255, 255, .11));
  height: 20px;
  width: 20px;
  border-radius: 50%;
  display: inline-block;
  vertical-align: middle;
}

.round-green {
  background-color: #50c013;
  background-image: linear-gradient(to right, rgba(0, 0, 0, .11), rgba(255, 255, 255, .11));
  height: 20px;
  width: 20px;
  border-radius: 50%;
  display: inline-block;
  vertical-align: middle;
  margin-left: 20px;
}

.reviews-legend-block {
  position: relative;
  line-height: 20px;
  text-align: center;
  background: #f7f7f7;
  padding: 20px 0px;
}


.owl-nav .owl-prev {
  position: absolute;
  left: 0;
}

.owl-nav .owl-next {
  position: absolute;
  right: 0;
  text-align: right;
}

.owl-nav .owl-prev span,
.owl-nav .owl-next span {
  vertical-align: middle;
  line-height: 34px;
}

.owl-nav .owl-prev i,
.owl-nav .owl-next i {
  font-size: 34px;
  vertical-align: middle;
  color: white;
}

.owl-nav .owl-prev i {
  margin-right: 15px;
}

.owl-nav .owl-next i {
  margin-left: 15px;
}

.owl-theme .owl-nav [class*="owl-"]:hover {
  background: none;
  color: white;
}

.owl-nav {
  position: relative;
  background: white;
}

.reviews-item .row {
  margin: 0px;
}

.reviews-block {
  padding: 70px 0;
  margin-bottom: 60px;
}

.owl-theme .owl-nav [class*="owl-"] {
  font-size: 18px;
  color: white;
  background: #0fc7c1;
  border-radius: 24px;
  padding: 8px 25px;
  cursor: pointer;
  width: 160px;
}

.owl-theme .owl-nav [class*="owl-"]:hover {
  background: #983EE1;
  transition: 0.9s;
}

.owl-stage-outer {
  border: 1px solid #e3e2e2;
}

.reviews-block h2 {
  margin-bottom: 35px;
}

.application-block {
  background: linear-gradient(135deg, #934ee9 -5%, #0acbc0 100%);
  width: 100%;
  padding: 60px 0;
}

.application-google-title {
  font-size: 26px;
  color: white;
  font-weight: 700;
}

.application-google-title p {
  font-size: 22px;
  font-weight: 400;
}

.form-group input {
  background: transparent;
  color: white;
  height: 50px;
  font-size: 18px;
}

.checkbox-block {
  font-size: 12px;
  margin-top: 15px;
}

.checkbox-block a {
  color: #333;
  text-decoration: underline;
}

.checkbox-block a:hover {
  color: #983EE1;
  text-decoration: none;
  transition: 0.3s;
}

.form-group {
  margin-bottom: 0.4rem;
}

button.my-button {
  border: 0px;
  margin-top: 15px;
}

.advantages-block {
  padding: 60px 0px;
}

.benefits-item {
  position: relative;
  color: white;
  padding: 40px;
  cursor: pointer;
}

.c1 {
  background: #44cacb;
}

.c2 {
  background: #5abb4a;
}

.c3 {
  background: #f7b40e;
}

.c4 {
  background: #f44c49;
}

.c5 {
  background: #b33a8a;
}

.c6 {
  background: #5f7dd9;
}

.benefits-item-block {
  padding-right: 8px;
  padding-left: 8px;
  margin-bottom: 16px;
}

.benefits-item-text {
  display: none;
}

.benefits-item-title {
  text-align: center;
}

.benefits-item-icon {
  font-size: 80px;
}

.benefits-item:hover .benefits-item-title {
  display: none;
}

.benefits-item:hover .benefits-item-text {
  display: block;
  position: absolute;
  padding: 20px;
  top: 0;
  left: 0;
}

.advantages-block h2 {
  margin-bottom: 35px;
}

.step-block {
  background: #f0f0f0;
  padding: 70px;
}

.atap_number {
  border-radius: 50%;
  background: #0fc7c1;
  display: inline-block;
  height: 30px;
  width: 30px;
  line-height: 30px;
  text-align: center;
  color: white;
  font-weight: 600;
}

.atap_text {
  background: white;
  padding: 10px;
  margin-bottom: 20px;
}

.atap_text h3 {
  border-bottom: 2px solid #0fc7c1;
  padding-bottom: 10px;
}

.step-block h2 {
  margin-bottom: 40px;
}

.application2-block {
  background: #f3fbff url("../images/application-bg2.jpg")no-repeat;
  background-position: 100% 0;
  width: 100%;
  padding: 70px 0;
}

.application2-form .form-control::placeholder {
  color: #282828;
}

.application2-form .form-group input {
  color: #282828;
  border: 1px solid #727272;
}

.application2-form h2 {
  font-size: 28px;
  font-weight: 700;
  text-align: left;
}

.application2-form h2 p {
  font-size: 24px;
  font-weight: 500;
  text-align: left;
  color: #0fc7c1;
}

.application2-form-text {
  font-size: 18px;
  color: #727272;
  margin-top: 30px;
}

.application2-form .checkbox-block,
.application2-form .checkbox-block a {
  color: #727272;
}

.application2-form form {
  width: 60%;
  margin-top: 70px;
}

.tarif-block {
  background: #32353d url("../images/tarif-bg.webp")no-repeat;
  width: 100%;
  padding: 70px 0 40px 0;
  background-position: 50% 100%;
}

.tarif-block h2 {
  color: white;
}

.tarif-item {
  text-align: center;
  background: rgba(255, 255, 255, 0.3);
  padding-bottom: 35px;
}

.tarif-item-title {
  background: linear-gradient(135deg, #934ee9 -5%, #0acbc0 100%);
  font-size: 18px;
  color: white;
  font-weight: 600;
  padding: 20px 10px;
  text-transform: uppercase;
  padding-top: 50px;
  height: 110px;
}

#tarif>div>div.row.justify-content-center>div:nth-child(1)>div.tarif-item>div.tarif-item-text>p:nth-child(2) {
  height: 352px;
}

.tarif-item-cost {
  font-size: 30px;
  padding: 10px 10px;
  color: #0fc7c1;
}

.tarif-item-text {
  padding: 10px 20px;
}

.tarif-item {
  background: linear-gradient(135deg, #934ee9 -5%, #0acbc0 100%);
}

.tarif-item .tarif-item-cost {
  color: white;
}

.tarif-item ul {
  list-style: none;
  padding: 0;
  color: #fff;
}

.tarif-item-text p {
  font-weight: 400;
  background: #e4e5ea;
  margin-left: -20px;
  margin-right: -20px;
  padding: 20px;
}

.tarif-block h2 {
  padding-bottom: 140px;
}

.footer-block {
  margin-top: 90px;
}

.footer-logo a {
  display: block;
  color: white;
  margin-top: 5px;
  font-size: 14px;
  text-decoration: underline;
}

.footer-logo a:hover {
  color: #0fc7c1;
  transition: 0.3s;
  text-decoration: underline;
}

.footer-logo ul {
  list-style: none;
  padding-left: 0;
}

.footer-block h3 {
  font-size: 22px;
  font-weight: 600;
  padding-bottom: 20px;
}

.footer-block {
  color: white;
  font-size: 15px;
}

.footer-kontacts a {
  color: #0fc7c1;
  font-weight: 600;
}

.footer-logo p {
  color: white;
  margin-top: 15px;
}

.result-block {
  background: #f3fbff url("../images/result-bg.webp")no-repeat;
  width: 100%;
  padding: 70px 0;
}

.dropdown-toggle::after {
  display: none;
}

.result-block h2 {
  margin-bottom: 40px;
}

#button-up {
  bottom: 50px;
  color: #023a6b;
  cursor: pointer;
  font-size: 35px;
  position: fixed;
  right: 0px;
  display: none;
  background: linear-gradient(135deg, #934ee9 -5%, #0acbc0 100%);
  height: 50px;
  width: 50px;
  text-align: center;
  border-radius: 5px 0 0 5px;
}

#button-up:hover {
  color: black;
}

.modal-header {
  border: 0px;
}

.modal-header h3 {
  text-align: center;
  width: 100%;
  font-weight: 700;
}

.modal-body {
  text-align: center;
  color: #727272;
  padding-top: 0px;
}

.modal-body .form-group input {
  border: 1px solid #0fc7c1;
  margin-bottom: 15px;
  color: #727272;
}

.descr-modal {
  margin-bottom: 15px;
}

.modal-body .checkbox-block {
  color: #727272;
}

.modal-body .checkbox-block a {
  color: #727272;
}

.modal-body .form-group .form-control::placeholder {
  color: #727272;
}

.help {
  position: absolute;
  top: 15px;
  right: 10px;
  color: #fa2828;
  font-size: 13px;
}

.help i {
  font-size: 16px;
  vertical-align: middle;
}

.form-group {
  position: relative;
}

input.not-valid {
  border-color: red;
  box-shadow: 0 0 0 0.2rem rgba(248, 31, 46, 0.25);
}

.modal-button-block:hover::after {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  border-style: solid;
  border-width: 10px;
  border-color: #f7f7f7 transparent transparent transparent;
}

.modal-button-block:hover::before {
  display: block;
  content: "Подтвердите своё согласие на обработку персональных данных";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, calc(-100% - 10px));
  border-radius: 3px;
  padding: 5px 10px;
  background: #f7f7f7;
  box-shadow: 0 0 2px;
  font-size: 14px;
  width: 250px;
  text-align: center;
}

.modal-button-block button {
  opacity: 0.5;
  pointer-events: none;
  cursor: default;
}

.modal-button-block {
  position: relative;
}

.modal-button-block {
  display: inline-block;
}

.politica-block {
  padding: 70px 0px;
  background: #f0f0f0;
}

.politica-block h2 {
  margin-bottom: 40px;
}

.form-text-list {
  text-align: left;
}

.form-text-list-item {
  border-radius: 7px;
  padding: 10px 20px;
  margin-bottom: 10px;
}

.form-text-list-item b {
  display: block;
  text-transform: uppercase;
  font-size: 18px;
  margin-bottom: 5px;
  color: white;
}

.form-text-list-item.one {
  background: #f1fbff;
}

.form-text-list-item.two {
  background: #0fc7c1;
  color: white;
}

.form-text-list-item.three {
  background: #6e73dd;
  color: white;
}

.form-text-list-item.one b {
  color: #6e73dd;
}

.header-phone-block p:last-child {
  margin: 0px;
  padding: 0px;
}

.question-block {
  background: #f0f0f0;
  width: 100%;
  padding: 70px 0;
}

.block9_question_block {
  text-align: left;
  padding: 30px;
  background: white;
  border-radius: 3px;
}

.question-block-border {
  background: linear-gradient(135deg, #934ee9 -5%, #0acbc0 100%);
  width: 100%;
  padding: 5px;
  border-radius: 3px;
  margin-top: 15px;
}

.block9_question_block h2 {
  padding-top: 0px;
  padding-bottom: 0px;
  margin-top: -15px;
  font-size: 16px;
  padding-left: 50px;
  margin-bottom: 7px;
}

.block9_question_block h2,
.block9_question_block h3 {
  text-align: left;
  color: #983EE1;
}

.block9_question_block h3 {
  padding-top: 0px;
  padding-left: 50px;
}

.question-block-title {
  text-align: left;
  background: white url(../images/question_img.png) 0px 0px no-repeat;
  padding-left: 30px;
}

#twoColumnsList,
#twoColumnsList2 {
  display: none;
}

.link-more {
  display: inline-block;
  color: #0fc7c1;
  cursor: pointer;
  margin-top: 15px;
  border-bottom: 1px dashed #0fc7c1;
}

a.link-more:hover {
  color: #983EE1;
  border-bottom: 1px dashed #983EE1;
  text-decoration: none;
}

.compare-block .fa-times {
  color: red;
}

.compare-block .fa-check {
  color: #3de004;
}

.compare-block thead th {
  text-align: center;
}

.compare-block tr>td {
  text-align: center;
}

.compare-block {
  padding: 70px 0;
  border-top: 3px solid #ebebeb;
}

.compare-table {
  margin-top: 30px;
}

.compare-block tbody tr>th {
  font-weight: 400;
}

.severities-item-left {
  text-align: right;
  padding-bottom: 15px;
  padding-top: 15px
}

.severities-item-right {
  text-align: left;
  padding-bottom: 15px;
  padding-top: 15px
}

.severities-item-left i {
  color: #f9d429;
}

.severities-item-right i {
  color: #3de004;
}

.severities-block {
  padding: 70px 0;
  font-size: 18px;
}

.severities-item {
  border-bottom: 1px solid #f1f1f1;
}

.application-form-block.two {
  width: 50%;
  margin: 0 auto;
  text-align: center;
}

.application-block.two {
  text-align: center;
}

.application-block.two .application-google-title {
  margin-bottom: 25px;
}

.application-form-block.two textarea {
  width: 100%;
  overflow: hidden;
  resize: none;
  padding: 10px;
  border-radius: 5px;
  border: 1px solid white;
}

.tarif-item-icon {
  width: 100%;
  text-align: center;
  position: absolute;
  top: -110px;
  margin-left: -15px;
}

.tarif-item-icon img {
  max-width: 140px;
  display: block;
  margin: 0 auto;
}

.header-form-block .form-group input {
  color: #282828;
}

h2>p.add-title-block {
  color: white;
  margin-top: 15px;
}

.advance-for-interest-block {
  background: #92ccd8;
  width: 100%;
}

.advance-for-interest-block h2 {
  color: white;
  padding-top: 55px;
  padding-bottom: 30px;
}

.advance-for-interest-img img {
  width: 100%;
  margin-top: 20px;
}

.advance-for-interest-text ul {
  margin-top: 20px;
}

.advance-for-interest-text li {
  list-style-type: none;
  font-size: 22px;
  color: white;
  line-height: 38px;
}

.advance-for-interest-text li:before {
  content: '\f197';
  font-family: 'FontAwesome';
  margin-right: 10px;
  color: #5f7dd9;
  font-size: 30px;
}

.block-center {
  text-align: center;
}

.advance-for-interest-text .block-center {
  margin-top: 40px;
  padding-bottom: 40px;
}

.our-command-people {
  text-align: center;
  margin-top: 30px;
}

.our-command-people-img img {
  border-radius: 50%;
  width: 60%;
}

.our-command-people-name {
  font-weight: 600;
  font-size: 18px;
  line-height: 60px;
}

.garant-item-title {
  font-size: 20px;
}

.garant-item {
  background: #303030;
  border-radius: 10px;
  text-align: center;
  padding: 10px;
  color: white;
  margin-bottom: 15px;
}

.garant-item-icon {
  font-size: 60px;
}

.garant-bock h2 {
  padding-top: 40px;
  padding-bottom: 30px;
}

.garant-bock {
  padding-bottom: 30px;
}

.free-block {
  padding: 70px 0;
  border-top: 3px solid #ebebeb;
}

.free-block-item {
  padding: 20px;
  text-align: center;
  background: #ebebeb;
  border-radius: 3px;
}

.free-block-item-title {
  font-size: 22px;
  font-weight: 600;
}

.free-block-item-icon {
  font-size: 90px;
}

.free-block .block-center {
  margin-top: 30px;
  height: 50px;
  margin-bottom: 20px;
}

.free-block h2 {
  margin-bottom: 40px;
}

.header-phone-block .header-phone a {
  font-size: 30px;
  font-weight: 700;
  color: black;
  padding: 0;
  margin: 0;
  border: 0;
  text-decoration: none;
}

.header-phone i {
  font-size: 25px !important;
  margin-left: 10px;
}

.block-1 h2 {
  text-transform: uppercase;
  margin-bottom: 25px;
}

.block-1 {
  padding: 60px 0 60px 0;
  position: relative;
}

.table-we-header-bblock {
  color: white;
  background: linear-gradient(135deg, #934ee9 -5%, #0acbc0 100%);
  height: 70px;
  font-size: 18px;
  text-transform: uppercase;
  border-radius: 3px 3px 0 0;
}

.table-img-block img {
  width: 100%;
}

.table-we-body-block {
  text-transform: uppercase;
  background: white;
  box-shadow: 0 2px 4px rgba(0, 0, 0, .2);
}

.td [class^=col],
.table-we-header-bblock [class^=col] {
  text-align: center;
}

.td [class^=col]:first-child,
.table-we-header-bblock [class^=col]:first-child {
  text-align: left;
}

.table-we-tr {
  padding: 20px 0;
  border-bottom: 1px solid #f1f1f1;
}

.wave-block {
  background: #ebf6f8;
}

.wave-block:before {
  width: 100%;
  height: 135px;
  content: '';
  background: url('../images/wave-top.jpg') no-repeat;
  display: block;
}

.wave-block:after {
  width: 100%;
  height: 135px;
  content: '';
  background: url('../images/wave-bottom.jpg') no-repeat;
  display: block;
}

.serv-anal-item {
  border: 3px solid #d3f4ff;
  border-radius: 10px;
  padding: 15px;
  height: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.serv-anal-block .row {
  margin-right: -10px;
  margin-left: -10px;
}

.serv-anal-block [class^=col] {
  margin-bottom: 20px;
  padding-left: 10px;
  padding-right: 10px;
}

.serv-anal-item-text {
  text-transform: uppercase;
  font-size: 18px;
}

.serv-anal-item-img {
  width: 200px;
  height: 200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-block {
  background: linear-gradient(135deg, #934ee9 -5%, #0acbc0 100%);
  padding: 60px 0 0 0;
  height: 500px;
  margin: 50px 0 100px 0;
}

.cta-text {
  color: white;
}

.sign-block {
  background: #4c60b2;
  border-radius: 10px;
  padding: 10px 20px;
  font-size: 19px;
  display: inline-block;
  margin-bottom: 30px;
}

.cta-list-item {
  display: flex;
  align-items: center;
  margin-top: 30px;
}

.cta-list-item-img {
  margin-right: 10px;
}

.cta-list-item-text {
  font-size: 18px;
  font-weight: 400;
}

.questions-cl {
  cursor: pointer;
  font-weight: 600;
  font-size: 20px;
  color: #6e6fde;
  text-transform: uppercase;
  background: #ebf6f8;
  border-radius: 8px;
  padding: 15px 55px 15px 32px;
  position: relative;
  display: flex;
  align-items: center;
}


.card {
  border: none;
  box-shadow: 0 2px 4px rgba(0, 0, 0, .2);
  border-radius: 0 0 8px 8px;
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 20px;
}

.card-header {
  padding: 0;
  border: none;
}

.cta-block h2 {
  margin-bottom: 20px;
}

table.table-plus-minus thead th {
  color: #4c60b2;
  font-weight: 600;
  font-size: 19px;
  text-transform: uppercase;
  line-height: 19px;
}

.table-plus-minus.table {
  border-spacing: 20px 1px;
}

table.table-plus-minus {
  border-collapse: separate;
}

.table-plus-minus.table td,
.table-plus-minus.table th {
  border: none;
}

table.table-plus-minus td,
table.table-plus-minus th {
  vertical-align: middle;
  text-align: center;
  background: white;
}

table.table-plus-minus th:first-child {
  text-align: left;
}

table.table-plus-minus tr td:first-child {
  text-align: left;
}

.table-plus-minus.table td {
  font-size: 18px;
  font-weight: 400;
}

.border-radius-l-t {
  border-top-left-radius: 10px;
}

.border-radius-r-t {
  border-top-right-radius: 10px;
}

.border-radius-r-b {
  border-bottom-right-radius: 10px;
}

.border-radius-l-b {
  border-bottom-left-radius: 10px;
}

.table-plus-minus.table td.plus {
  color: #0fc7c1;
  font-size: 22px;
}

.five-spec-item {
  display: flex;
  align-items: center;
  margin: 20px 0;
}

.five-spec-item-text {
  font-size: 20px;
  font-weight: 400;
  margin-left: 15px;
  color: #6379db;
}

.five-spec-block {
  padding: 40px 0;
  border-bottom: 1px solid #cfd4ea;
}


.manual-block i {
    font-size: 25px !important;
    color: #6379db;
}
.tab-block .nav-tabs .nav-item .nav-link {
  background: transparent;
  border: 2px solid #6379db;
  border-radius: 10px;
  color: #6379db;
  text-transform: uppercase;
  text-align: left;
  font-size: 15px;
  font-weight: 600;
}
.tab-block .nav-tabs .nav-item .nav-link span {
    font-size: 16px;
    display: block;
    text-transform: none;
    line-height: normal;
    font-weight: 500;
    color: #333;
}
.tab-block .nav-tabs .nav-item {
  margin-right: 20px;
  margin-bottom: 20px;
}

.tab-block .nav-tabs .nav-link.active {
  background: #6379db;
  color: white;
}

.nav-tabs {
  border: none;
}

.tab-block h3 {
  margin: 40px 0px 25px 0;
  text-transform: uppercase;
}

.tab-block .tab-content {
  width: 100%;
  min-height: 250px;
}

.tab-block .btn-block-2 {
  margin-top: 50px;
}

.btn-block-2 .my-button {
  height: 70px;
  line-height: 70px;
  background: #21e0da;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 600;
  display: inline-block;
  padding: 0 30px;
  text-align: center;
  border-radius: 50px;
}

.btn-block-2 .my-button:hover {
  background: #983EE1;
  transition: 0.9s;
}



.sfer-item-img img {
  width: 100%;
  border-radius: 10px;
}

.sfer-item-img {
  border-radius: 10px;
  border: 2px solid #0fc7c1;
}

.sfer-item-title {
  font-size: 17px;
  color: #3e3e3e;
  text-align: center;
  text-transform: uppercase;
  font-weight: 600;
  line-height: 20px;
  margin-top: 10px;
}

.sfer-item-title span {
  display: block;
  text-align: center;
  color: #0fc7c1;
}

.sfer-item {
  margin-bottom: 20px;
}

.cta-block .btn-block-2 {
  margin-top: 40px;

}

.workers-block h2 {
  text-align: left;
}

.workers-item {
  text-align: center;
}

.workers-item-img img {
  width: 85%;
  border-radius: 50%;
}

.workers-item-text {
  font-size: 19px;
  font-weight: 600;
  margin-top: 15px;
}

.workers-item-text span {
  display: block;
  font-size: 17px;
  color: white;
  background: #637ada;
  border-radius: 7px;
  padding: 5px 0;
  margin-top: 10px;
}

.title-sign {
  font-size: 19px;
  color: white;
}

.cta-footer-block {
  background: linear-gradient(135deg, #934ee9 -5%, #0acbc0 100%);
  padding: 50px 0;
  text-align: center;
  color: white;
}

.cta-footer-block h2 {
  margin-bottom: 5px;
}

.workers-block {
  padding-bottom: 30px;
}

.title-sign {
  margin-bottom: 40px;
}

.cta-footer-form {
  text-align: center;
}

.cta-footer-form .form-group {
  max-width: 280px;
  margin: auto;
}

.cta-footer-form .form-group input {
  border: 1px solid #fefefe;
  height: 60px;
  font-weight: 400;
  margin-bottom: 15px;
}

.cta-footer-form .form-control::placeholder {
  color: #fefefe;
}

.cta-footer-form .my-button {
  width: 280px;
}

.my-button {
  height: 70px;
  line-height: 70px;
  background: #21e0da;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 600;
  display: inline-block;
  padding: 0 30px;
  text-align: center;
  border-radius: 50px;
}

.my-button:hover {
  background: #983EE1;
  transition: 0.9s;
}

.header-img {
  position: absolute;
  bottom: 0;
  right: 28px;
}

.name-block b {
  display: block;
  font-weight: 600;
  font-size: 18px;
}

.name-block {
  border-radius: 7px;
  border: 1px solid #d7dee1;
  background: white;
  padding: 20px;
  position: absolute;
  right: -150px;
  bottom: -50px;
  min-width: 400px;
}

.cta-main-block {
  background: linear-gradient(to right, white, #e2f2f6 50%, #e2f2f6 50%, white);
  padding: 70px 0;
}

.table-poz span {
  display: none;
}

.table-img-block img {
  box-shadow: 0 2px 4px rgba(0, 0, 0, .2);
}

.act-spol {
  display: none;
}

.video-title {
  background: linear-gradient(90deg, #922DEC 0%, #00CCC4 100%);
  display: inline-block;
  color: #fff;
  font-family: Montserrat;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 29px;
  letter-spacing: 0em;
  text-align: left;
  border-radius: 5px;
  padding: 4px 15px;
}

a.readmore-js-toggle {
  color: rgba(0, 0, 0, 0.5);
  margin-top: 15px;
  font-size: 24px;
}

.video-block-seo iframe {
  width: 100%;
  height: 560px;
}

.positions-block .header-sign-3 h2 {
  text-align: left;
  margin-bottom: 0;
}

.positions-block .header-sign-3 span {
  color: #29a09d;
  font-weight: normal;
}

.positions-title img {
  width: 126px;
}

.table-positions {
  margin-top: 30px;
}

.table-positions thead div {
  background: #29A09D;
  color: #fff;
  padding: 20px;
}

.table-positions .table td {
  padding: 10px 0 10px 0;
}

.table-positions td>div {
  width: 100%;
  padding: 20px;
}

.table-positions .brl {
  border-radius: 12px 0 0 12px;
}

.table-positions .brr {
  border-radius: 0 12px 12px 0;
}

.table-positions thead th:nth-child(1)>div {
  border-radius: 12px 0 0 12px;
}

.table-positions thead th:nth-child(1) {
  text-align: left;
}

.table-positions thead th:nth-child(4)>div {
  border-radius: 0 12px 12px 0;
}

.table-positions .table td,
.table-positions .table th {
  border: 0;
}

.table-positions .table thead th {
  vertical-align: bottom;
  border: 0;
  padding: 0;
}

.positions-title span {
  background: #5D7FD9;
  display: block;
  padding: 10px;
  color: #fff;
  border-radius: 20px;
  width: 240px;
  margin-right: 50px;
  text-align: center;
}

.positions-block .swiper-button-next:after,
.positions-block .swiper-button-prev:after {
  font-size: 30px;
}

.positions-block .swiper-button-next {
  right: inherit;
  left: 206px;
}

.positions-block .swiper-button-next,
.positions-block .swiper-button-prev {
  top: 55px;
  color: #fff;
}

.positions-title {
  margin-top: 30px;
}

.position-icon>div {
  background: url(/assets/seo/images/top.png);
  width: 20px;
  height: 20px;
  background-size: cover;
  margin-left: 7px;
}

.position-icon>span {
  background: url(/assets/seo/images/bottom.png);
  width: 20px;
  height: 20px;
  background-size: cover;
  margin-left: 7px;
  display: block;
}

span.position-icon {
  font-size: 0;
}

.special-offer {
  background: linear-gradient(100.13deg, #8C54E6 11%, #0ACBC0 85.53%);
  padding: 100px 0;
}

.special-offer h2 {
  text-align: left;
}

.spec-subtitle {
  font-size: 22px;
}

.special-offer .cta-img img {
  margin-left: -100px;
}

@media (max-width: 1600px) {
  .application2-block {
    background-position-x: 150%;
  }

  .video-block-seo iframe {
    width: 100%;
    height: 400px;
  }

}

@media (max-width: 1200px) {
  .advance-for-interest-text li {
    font-size: 20px;
    line-height: 38px;
  }

  .video-block-seo iframe {
    width: 100%;
    height: 400px;
  }

  .advance-for-interest-text ul {
    padding: 0px;
  }

  .advance-for-interest-text li:before {
    font-size: 25px;
  }

  .header-advantages-block p {
    font-size: 20px;
  }

  .nav-link {
    padding: 1.5rem 0.5rem;
  }

  .header-title-block {
    font-size: 47px;
  }

  .header-title-block span {
    font-size: 30px;
  }

  .header-sign-2 {
    font-size: 24px;
  }

  .about-text-block ul span {
    font-size: 16px;
  }

  .about-text-block ul li {
    margin-bottom: 10px;
  }

  .about-text-block h3 {
    font-size: 1.2rem;
  }

  .reviews-col-block-mr {
    max-width: none;
  }

  .application2-block {
    background-position-x: 220%;
  }

  .tarif-item-title {
    padding-top: 40px;
  }

  .nav-link {
    font-size: 16px;
  }

  .header-img img {
    width: 370px;
  }

  .cta-list-item {
    margin-top: 20px;
  }

  .header-img {
    right: -190px;
  }

  .cta-main-block {
    padding-top: 0px;
  }

  .serv-anal-item-img {
    width: 150px;
    height: 150px;
  }

  .serv-anal-item-text {
    font-size: 16px;
  }
}

@media (max-width: 992px) {
  .our-command-people-img img {
    width: 80%;
  }

  .video-block-seo iframe {
    height: 300px;
  }

  .header-bg {
    margin-top: 60px;
  }

  .navbar {
    padding: .5rem 1rem;
  }

  .header-advantages-block p {
    font-size: 20px;
  }

  .header-title-block {
    margin-bottom: 20px;
  }

  .about-block {
    padding: 40px 0;
  }

  .about-text-block h3 {
    margin-bottom: 15px;
    font-weight: 500;
    font-size: 1.2rem;
  }

  .about-text-block ul li {
    margin-bottom: 0px;
  }

  .about-text-block {
    padding: 15px 5px;
  }

  .about-block .col-md-6 {
    padding-right: 5px;
    padding-left: 5px;
  }

  .about-block .row {
    margin-right: -5px;
    margin-left: -5px;
  }

  .application-google-title {
    font-size: 24px;
  }

  .application-google-title p {
    font-size: 18px;
  }

  .benefits-item-icon {
    font-size: 60px;
  }

  .benefits-item-title h3 {
    font-size: 22px;
  }

  .benefits-item:hover .benefits-item-text,
  .benefits-item .benefits-item-text {
    font-size: 12px;
    padding: 10px;
  }

  .benefits-item .benefits-item-text {
    padding: 0px;
  }

  .application2-block {
    background: #f3fbff;
  }

  .application2-form form {
    width: 100%;
    margin-top: 0px;
  }

  .dud-block {
    margin-top: 30px;
  }

  .header-img img {
    width: 250px;
  }

  .name-block {
    bottom: 0;
    right: -180px;
    min-width: 200px;
  }

  .form-text-list {
    margin-top: 20px;
  }

  .cta-img {
    display: none;
  }

  .cta-text {
    text-align: center;
  }

  .cta-list-block {
    text-align: left;
  }

  .workers-item-text span {
    font-size: 14px;
    font-weight: 500;
    margin-top: 5px;
    margin-bottom: 10px;
  }

  .workers-item-text {
    font-size: 14px;
    margin-top: 10px;
  }
}

@media (max-width: 768px) {
  .navbar-brand img {
    width: 80%;
  }

  #tarif>div>div.row.justify-content-center>div:nth-child(1)>div.tarif-item>div.tarif-item-text>p:nth-child(2) {
    height: auto;
  }

  .video-block-seo iframe {
    width: 100%;
    height: 300px;
  }

  .navbar-brand {
    margin-right: 0px;
  }

  .nav-item {
    width: 100%;
  }

  .special-offer .cta-img img {
    margin-left: 0px;
    width: 100%;
  }

  .nav-link {
    font-size: 14px;
    padding: .8rem 1rem;
    text-align: center;
  }

  .nav .nav-item {
    border-top: 1px solid #5a6fc7;
  }

  .nav .nav-item:first-child {
    border-top: 0px;
  }

  .header-bg {
    margin-top: 50px;
  }

  .header-phone-block {
    text-align: center;
  }

  .header-advantages-block p {
    font-size: 16px;
    margin-bottom: 0.2rem;
  }

  .header-title-block {
    font-size: 28px;
  }

  .header-title-block span {
    font-size: 24px;
  }

  .header-sign {
    margin-top: 0;
    font-size: 24px;
  }

  .header-form-block .checkbox-block {
    margin-top: 10px;
  }

  .video-block {
    height: 280px;
  }

  .about-text-block {
    height: auto;
  }

  .about-text-block h3 {
    font-weight: 600;
  }

  .application-form-block .modal-button-cent {
    text-align: center;
  }

  .benefits-item {
    padding: 10px;
  }

  .tarif-item {
    margin-bottom: 20px;
  }

  .tarif-item-text {
    height: auto !important;
  }

  .footer-logo,
  .footer-kontacts {
    text-align: center;
  }

  .footer-kontacts {
    margin-top: 20px;
  }

  .footer-block {
    margin-top: 10px;
  }

  .tarif-block {
    padding: 30px 0 10px 0;
    background-position: center bottom;
  }

  .reviews-col-block {
    height: auto;
  }

  .reviews-col-block-mr {
    height: 200px;
  }

  .owl-theme .owl-nav [class*="owl-"] {
    width: 85px;
    padding: 0;
    text-align: center;
    font-size: 14px;
  }

  .owl-prev {
    text-align: center;
  }

  .owl-nav .owl-prev i,
  .owl-nav .owl-next i {
    margin: 0;
    line-height: 34px;
    font-size: 24px;
  }

  .reviews-item-title span {
    font-size: 14px;
  }

  .reviews-item-title {
    padding: 5px 10px;
  }

  .reviews-block {
    margin-bottom: 0px;
  }

  .descr-modal {
    font-size: 14px;
  }

  .modal-title {
    font-size: 22px;
  }

  .atap_text {
    height: auto !important;
  }

  .benefits-item:hover .benefits-item-text {
    display: none;
  }

  .benefits-item:hover .benefits-item-title {
    display: block;
  }

  .question-block-title {
    background: white;
    padding-left: 0px;
  }

  .block9_question_block h2 {
    padding-left: 0px;
    margin-top: 0px;
  }

  .block9_question_block h3 {
    padding-left: 0px;
  }

  .block9_question_block {
    padding: 10px;
  }

  .question_block_text ul {
    padding-left: 15px;
  }

  .tarif-item-icon {
    display: none;
  }

  .header-phone-block {
    margin-bottom: 0px;
  }

  .tarif-block h2 {
    padding-bottom: 0px;
  }

  .header-img,
  .name-block {
    right: -50px;
  }

  .serv-anal-item-img {
    width: 100px;
    height: 100px;
  }

  .serv-anal-item-text {
    font-size: 14px;
  }

  .cta-block {
    height: auto;
    padding: 30px 0;
  }

  .five-spec-item-text {
    font-size: 16px;
  }

  .tab-block .nav-item {
    width: auto;
    border-top: 0;
  }

  .tab-block .nav-tabs .nav-item .nav-link {
    width: auto;
    height: auto;
    font-size: 13px;
    padding: 5px 10px;
    line-height: normal;
  }

  .tab-block h3 {
    font-size: 18px;
    margin-top: 10px;
  }

  .tab-block {
    background: transparent;
  }

  .tab-block .tab-content {
    width: 100%;
  }

  .sfer-item-title {
    font-size: 14px;
  }
}

@media (max-width: 576px) {

  .header-advantages-block>p>img {
    width: 8%;
  }

  .header-button .my-button {
    width: 100%;
    font-size: 16px;
    padding-left: 0px;
    padding-right: 0px;
    text-align: center;
    display: block;
  }

  .header-button {
    margin-top: 30px;
  }

  .about-text-block ul span {
    font-weight: 14px;
  }

  .about-text-block h3 {
    font-size: 1rem;
  }

  .about-text-block ul {
    padding-left: 30px;
  }

  .video-block {
    height: 180px;
  }

  h2 {
    font-size: 1.6rem;
  }

  .add-title-block {
    font-size: 14px;
    margin-bottom: 20px;
  }

  .application-google-title {
    font-size: 20px;
    text-align: center;
  }

  .application-google-title p {
    font-size: 16px;
    text-align: center;
  }

  .application-block {
    padding: 30px 0;
  }

  .benefits-item-title h3 {
    font-size: 18px;
  }

  .advantages-block,
  .result-block,
  .step-block,
  .application2-block,
  .politica-block,
  .question-block,
  .compare-block,
  .plus-block,
  .severities-block {
    padding: 40px 0;
  }

  .result-block p {
    font-size: 14px;
    text-align: center;
  }

  .atap_text h3 {
    font-size: 18px;
  }

  .atap_text {
    font-size: 14px;
  }

  .application2-form h2 {
    font-size: 20px;
    font-weight: 700;
    text-align: center;
  }

  .application2-form h2 p {
    font-size: 16px;
    text-align: center;
  }

  .application2-form-text {
    font-size: 14px;
    text-align: center;
  }

  .checkbox-block {
    font-size: 14px;
  }

  .application2-form .modal-button-cent {
    text-align: center;
  }

  #button-up {
    font-size: 25px;
    height: 40px;
  }

  .plus-item-text h2 {
    font-size: 18px;
  }

  .plus-item-text {
    font-size: 14px;
  }

  .severities-item-left,
  .severities-item-right {
    text-align: left;
    font-size: 14px;
    padding-top: 5px;
    padding-bottom: 5px;
  }

  .application-form-block.two {
    width: 100%;
  }

  .advance-for-interest-text li {
    font-size: 16px;
    line-height: 30px;
  }

  .advance-for-interest-text li:before {
    font-size: 24px;
    margin-right: 5px;
  }

  .advance-for-interest-img img {
    margin-top: 0px;
  }

  .header-phone-block .header-phone a {
    pointer-events: auto;
    cursor: pointer;
  }

  .header-phone-block .header-phone a:hover {
    text-decoration: none;
  }

  .header-sign {
    display: block;
    margin: auto;
    width: 200px;
  }

  .header-sign-2 {
    font-size: 20px;
    text-align: center;
  }

  .header-sign-3 {
    text-align: center;
  }

  .header-img,
  .name-block {
    display: none;
  }

  .header-form-title {
    line-height: normal;
    text-align: center;
    font-size: 20px;
  }

  .header-form-block {
    padding: 30px 0px;
  }

  .form-text-list-item {
    line-height: normal;
  }

  .table-we-header-bblock {
    display: none;
  }

  .table-we-body-block {
    background: transparent;
  }

  .table-we-body-block-main {
    background: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, .2);
    border-radius: 7px;
  }

  .table-we-tr {
    padding: 20px 15px;
  }

  .table-we-body-block {
    box-shadow: none;
  }

  .table-keyword {
    font-size: 13px;
    font-weight: 600;
  }

  .table-poz {
    font-size: 14px;
    margin: 5px 0;
  }

  .table-poz span {
    display: inline;
    font-size: 14px;
    text-transform: none;
  }

  .td [class^="col"],
  .table-we-header-bblock [class^="col"] {
    text-align: left;
  }

  .table-date {
    color: #0fc7c1;
  }

  h2 {
    font-size: 16px;
    margin-bottom: 40px;
  }

  .wave-block::before {
    display: none;
  }

  .wave-block {
    padding-top: 20px;
  }

  .block-1 {
    padding-bottom: 20px;
  }

  .serv-anal-item-text {
    font-size: 12px;
  }

  .hide-spol {
    display: none;
  }

  .act-spol {
    display: block;
    text-align: center;
    text-decoration: underline;
    font-size: 14px;
    color: #acacac;
    cursor: pointer;
  }

  .sign-block {
    font-size: 16px;
  }

  .card,
  .questions-cl {
    font-size: 14px;
  }

  .questions-cl {
    padding: 10px 30px 10px 10px;
  }

  .questions-cl::after {
    right: 10px;
    height: 23px;
    width: 23px;
    line-height: 23px;
  }

  .questions-cl.collapsed::after {
    right: 10px;
    height: 23px;
    width: 23px;
    line-height: 23px;
  }

  .card-body {
    padding: 10px;
  }

  table.table-plus-minus thead th {
    font-size: 14px;
  }

  .table-plus-minus.table td {
    font-size: 14px;
  }

  table.table-plus-minus {
    border-collapse: collapse;
  }

  .border-radius-l-t,
  .border-radius-r-t,
  .border-radius-r-b,
  .border-radius-l-b {
    border-radius: 0;
  }

  .plus-minus-block .table-responsive {
    box-shadow: 0 2px 4px rgba(0, 0, 0, .2);
    border-radius: 7px;
  }

  .table {
    margin-bottom: 0;
  }

  .five-spec-item {
    margin: 5px 0;
  }

  .tab-block .tab-content {
    font-size: 14px;
  }

  .tab-block .btn-block-2 {
    margin-top: 30px;
  }

  .tab-block {
    padding-bottom: 20px;
  }

  .sfer-block {
    display: none;
  }
}

.mfp-fade.mfp-bg {
  opacity: 0;
  -webkit-transition: all 0.15s ease-out;
  -moz-transition: all 0.15s ease-out;
  transition: all 0.15s ease-out;
}

.mfp-fade.mfp-bg.mfp-ready {
  opacity: 0.8;
}

.mfp-fade.mfp-bg.mfp-removing {
  opacity: 0;
}

.mfp-fade.mfp-wrap .mfp-content {
  opacity: 0;
  -webkit-transition: all 0.15s ease-out;
  -moz-transition: all 0.15s ease-out;
  transition: all 0.15s ease-out;
}

.mfp-fade.mfp-wrap.mfp-ready .mfp-content {
  opacity: 1;
}

.mfp-fade.mfp-wrap.mfp-removing .mfp-content {
  opacity: 0;
}

.mySwiperAuldite img {
  width: 100%;
}

.mySwiperAuldite a.popup-youtube {
  position: relative;
  display: block;
}

a.popup-youtube i {
  margin-right: auto;
  left: 50%;
  text-align: center;
  top: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
  font-size: 55px !important;
  color: red;
}

div#video-block .video i {
  font-size: 100px !important;
}

.swiper-container {
  position: relative;
}

.mySwiperAuldite {
  position: static;
}

.mySwiperAuldite .swiper-button-next {
  right: -42px;
}

.mySwiperAuldite .swiper-button-prev {
  left: -42px;
}

.footer-phone a {
  font-size: 23px;
  color: #fff;
}

.footer-phone a i {
  font-size: 25px !important;
  margin: 0 10px;
}

.container {
  max-width: 1180px !important;
}

.row-flex,
.row-flex>div[class*='col-'] {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}

.row-flex-wrap {
  -webkit-flex-flow: row wrap;
  align-content: flex-start;
  flex: 0
}

.page-kontacts .contact-phone a {
  color: #333;
}

.page-kontacts .contact-phone i {
  font-size: 30px !important;
  margin-right: 10px;
}

.block-abouts a {
  text-decoration: none;
  color: #333;
}

.block-abouts a {
  text-decoration: none;
  color: #333;
}

.block-abouts i {
  font-size: 30px;
  margin-right: 10px;
}

.contact-form .form-group input {
  color: #333;
  border: 1px solid #333;
}

.contact-form input::placeholder {
  color: #333;
}

.video {
  position: relative;
}

ul.subjects_seo {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}

ul.subjects_seo li {
  margin-right: 10px;
  margin-bottom: 5px;
}

ul.subjects_seo a {
  text-decoration: none;
  color: #333;
}

.logo-title {
  margin-top: -15px;
  color: #fff;
  font-size: 12px;
  left: 70px;
  position: relative;
}

.header-block-investment h1.header-title-block {
  background: #934EE9;
  background: linear-gradient(to right, #934EE9 0%, #0ACBC0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 54px;
}

.name-heeder-investment {
  font-size: 35px;
  margin-bottom: 20px;
  font-weight: bold;
}

.dohod-number {
  width: 100%;
}

.dohod-title,
.dohod-title2 {
  font-size: 54px;
  font-weight: bold;
  line-height: normal;
  background: #4E457A;
  background: linear-gradient(to right, #4E457A 0%, #2F5964 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.dohod-title span,
.dohod-title2 span {
  font-size: 20px;
  line-height: normal;
}

.dohod-title2.ms-4 {
  margin-top: 57px;
}

.cases-item table {
  width: 100%;
  margin-top: 10px;
}

.cases-item table td:nth-child(2n) {
  text-align: right;
}

.cases-dohod {
  border-top: 1px solid;
  border-bottom: 1px solid;
  margin: 10px 0;
  padding: 5px 0;
}

.cases-item {
  border-radius: 15px;
  padding: 20px;
  font-size: 18px;
  color: #fff;
  background: #4E457A;
  background: linear-gradient(to right, #4E457A 0%, #2F5964 100%);
}

.cases-title {
  font-size: 22px;
  line-height: normal;
  font-weight: bold;
  margin-bottom: 15px;
}

.dohod-number {
  font-size: 60px;
  font-weight: bold;
  background: #934EE9;
  background: linear-gradient(to right, #934EE9 0%, #0ACBC0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: normal;
}

.dohod-number span {
  font-size: 22px;
}

.cases-title-section {
  font-size: 48px;
  font-weight: bold;
  line-height: normal;

  margin-bottom: 5px;
}

.title-gradient {
  background: #4E457A;
  background: linear-gradient(to right, #4E457A 0%, #2F5964 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.cases-bottom.text-center p {
  font-size: 30px;
  font-weight: bold;
}

span.number-cases {
  background: #fff;
  color: #404261;
  width: 36px;
  height: 36px;
  text-align: center;
  line-height: 38px;
  border-radius: 100px;
  margin-right: 10px;
  font-weight: bold;
}

.procedure-item {
  width: 90%;
}

.qrcod-img {
  display: inline-block;
  border: 1px solid #8c54e6;
  padding: 10px;
  border-radius: 7px;
}

.tab-total-cost table>tbody>tr:nth-child(1)>td:nth-child(1) {
  width: 50px;
}

strong.total-cost {
  font-size: 30px;
  color: #4b4074;
}

.tab-total-cost table>tbody>tr:nth-child(1)>td:nth-child(2) {
  width: 70px;
}

.tab-total-cost table>tbody>tr:nth-child(1)>td:nth-child(2),
.tab-total-cost table>tbody>tr:nth-child(2)>td:nth-child(2),
.tab-total-cost table>tbody>tr:nth-child(3)>td:nth-child(2),
.tab-total-cost table>tbody>tr:nth-child(4)>td:nth-child(2),
.tab-total-cost table>tbody>tr:nth-child(5)>td:nth-child(2),
.tab-total-cost table>tbody>tr:nth-child(6)>td:nth-child(2),
.tab-total-cost table>tbody>tr:nth-child(8)>td:nth-child(1),
.tab-total-cost table>tbody>tr:nth-child(7)>td:nth-child(1),
.tab-total-cost table>thead>tr:nth-child(2)>th:nth-child(1),
.tab-total-cost table>thead>tr:nth-child(1)>th:nth-child(1) {
  width: 162px;
  border-right: 1px solid #dee2e6;
}

.tab-total-cost table>tbody>tr:nth-child(1)>td:nth-child(2),
.tab-total-cost table>tbody>tr:nth-child(2)>td:nth-child(2),
.tab-total-cost table>tbody>tr:nth-child(3)>td:nth-child(2),
.tab-total-cost table>tbody>tr:nth-child(4)>td:nth-child(2),
.tab-total-cost table>tbody>tr:nth-child(5)>td:nth-child(2),
.tab-total-cost table>tbody>tr:nth-child(6)>td:nth-child(2) {
  background: #6379db;
  color: #fff;
}

.tab-total-cost thead th {
  padding: 14px !important;
}

.tab-total-cost thead {
  background: #6379db;
  color: #ffffff;
}

.tab-total-cost table>thead>tr:nth-child(1)>th {
  text-align: center;
}

.tab-total-cost table>thead>tr:nth-child(1)>th {
  text-align: center;
  border-bottom: 0;
}

body>section.cases-about.mt-5.pt-md-5.pb-5>div>div>div.col-md-5.text-end.ps-md-5>img {
  width: 100%;
}

.header-right-block .my-button {
  height: 50px;
  line-height: 53px;
  background: #21e0da;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 600;
  display: inline-block;
  padding: 0 30px;
  text-align: center;
  border-radius: 15px;
  width: 100%;
}

.when-required-audit-icon {
  background: linear-gradient(0deg, rgba(146, 204, 216, 0.1), rgba(146, 204, 216, 0.1)), radial-gradient(100% 100% at 100% 100%, rgba(15, 199, 193, 0.3) 0%, rgba(15, 199, 193, 0) 100%);
  border-radius: 20px;
  width: 80px;
  height: 80px;
  text-align: center;
  line-height: 80px;
}

.when-required-audit-icon img {
  width: 50px;
}

.padding-block {
  padding: 80px 0;
}

.block-title h2 {
  font-size: 26px;
  text-transform: uppercase;
  font-weight: 700;
  text-align: center;
  margin-bottom: 50px;
  font-family: PT Sans;

}

.stages-work {
  background-image: url(/assets/seo/images/stages-work.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #F2F2F2;
}

.stages-work-number {
  text-align: center;
  position: relative;
}

.stages-work-number:before {
  content: '';
  background: rgba(31, 184, 198, 1);
  width: 2px;
  height: 100%;
  position: absolute;
}

.stages-work-number-item span {
  background: linear-gradient(99.27deg, #0FC7C1 42.98%, #6379DB 119.2%);
  width: 60px;
  height: 60px;
  display: inline-block;
  line-height: 60px;
  font-size: 26px;
  font-weight: 700;
  color: #fff;
  font-family: PT Sans;
  border-radius: 50px;
  position: relative;
}

.stages-work-blocks b {
  display: block;
}

.stages-work-number-item {
  margin-bottom: 57px;
}

.stages-work-blocks>div {
  max-width: 500px;
  background: #fff;
  padding: 24px 50px;
  border-radius: 10px;
  position: relative;
}

.stages-work-blocks {
  position: absolute;
  top: 130px;
}

.stages-work-block2 {
  right: -680px;
}

.stages-work-block3 {
  top: 6px;
}

.stages-work-block4 {
  right: -680px;
  top: -40px;
}

.stages-work-block5 {
  top: -25px;
}

.stages-work-block:before,
.stages-work-block3:before,
.stages-work-block5:before {
  content: '';
  width: 0;
  height: 0;
  border-top: 20px solid transparent;
  border-bottom: 20px solid transparent;
  border-left: 23px solid #ffffff;
  position: absolute;
  right: -23px;
  top: 24px;
}

.stages-work-block2:before,
.stages-work-block4:before {
  content: '';
  width: 0;
  height: 0;
  border-top: 20px solid transparent;
  border-bottom: 20px solid transparent;
  border-right: 23px solid #ffffff;
  position: absolute;
  left: -23px;
  top: 24px;
}

.form-audit {
  background: #484b5a;
  max-width: 866px;
  border-radius: 20px;
  padding: 40px 50px;
  color: #fff;
}

.form-audit .checkbox {
  margin-top: 10px;
}

.form-audit .my-button {
  background: linear-gradient(95.87deg, #0FC7C1 0%, #6379DB 54.66%);
  border-radius: 5px;
  box-shadow: 0px 2px 0px 0px rgba(255, 255, 255, 0.5) inset;
  height: 68px;
  width: 100%;
}

.form-audit .form-group input {
  background: #eee;
  color: white;
  height: 68px;
  font-size: 18px;
}

.form-audit a {
  color: #fff;
}

.form-audit .form-group {
  margin-top: 15px;
}

.form-audit .form-input {
  width: 100%;
  max-width: 300px;
}

.section-form-audit {
  background: rgb(51, 54, 65);
  background: linear-gradient(126deg, rgba(51, 54, 65, 1) 39%, rgba(64, 118, 125, 1) 88%);
}

.section-form-audit .container:before {
  content: '';
  background: url(/assets/seo/images/before-form.png);
  width: 580px;
  height: 479px;
  position: absolute;
  right: -185px;
  background-size: cover;
  top: 20px;
}

.undeniable-advantages-center {
  max-width: 510px;
  margin-top: -60px;
}

.undeniable-advantages-center img {
  width: 100%;
}

.undeniable-advantages-left,
.undeniable-advantages-right {
  max-width: 315px;
}

.who-needs-audit-number {
  font-family: PT Sans;
  font-size: 50px;
  line-height: 40px;
  position: relative;
}

.who-needs-audit-item:nth-child(1) .who-needs-audit-number {
  color: rgba(15, 199, 193, 1);
}

.who-needs-audit-item:nth-child(2) .who-needs-audit-number {
  color: rgb(35, 180, 199)
}

.who-needs-audit-item:nth-child(3) .who-needs-audit-number {
  color: rgba(55, 162, 205);
}

.who-needs-audit-item:nth-child(4) .who-needs-audit-number {
  color: rgb(75, 143, 211)
}

.who-needs-audit-item:nth-child(5) .who-needs-audit-number {
  color: rgba(95, 125, 217);
}

.who-needs-audit-number:before {
  content: '';
  width: 60px;
  height: 2px;
  position: absolute;
  left: -73px;
  top: 20px;
}

.who-needs-audit-item:nth-child(1) .who-needs-audit-number:before {
  background: rgba(15, 199, 193, 1);
}

.who-needs-audit-item:nth-child(2) .who-needs-audit-number:before {
  background: rgb(35, 180, 199)
}

.who-needs-audit-item:nth-child(3) .who-needs-audit-number:before {
  background: rgba(55, 162, 205);
}

.who-needs-audit-item:nth-child(4) .who-needs-audit-number:before {
  background: rgb(75, 143, 211)
}

.who-needs-audit-item:nth-child(5) .who-needs-audit-number:before {
  background: rgba(95, 125, 217);
}

.tip-audita-icon img {
  height: 80px;
}

.section-audit-audit.padding-block {
  background-image: url(/assets/seo/images/stages-work.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-color: rgb(140, 161, 225);
}

.slider-wrap {
  background: #fff;
  padding: 30px 15px 30px 30px;
  border-radius: 10px;
}

.tip-audita-text ul {
  padding-left: 17px;
}

.tip-audita-text {
  height: 254px;
  overflow: hidden;
}

.tip-audita-text.scroll {
  height: 255px;
  overflow-y: scroll !important;
  scrollbar-color: var(--scrollbar) transparent;
  padding-right: 7px;
}

.tip-audita-text::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(51, 51, 51, 1);
  background-color: #F5F5F5;
}

.tip-audita-text::-webkit-scrollbar {
  width: 6px;
  background-color: #F5F5F5;
}

.tip-audita-text::-webkit-scrollbar-thumb {
  background-color: #333;
  border: 2px solid #333;
}

.price-audit.padding-block>div>div.table-responsive>table>thead>tr>th:nth-child(2) {
  width: 160px;
}

.price-audit.padding-block>div>div.table-responsive>table>thead>tr>th:nth-child(3) {
  width: 140px;
}

.price-audit thead tr:nth-of-type(odd)>* {
  background: rgba(95, 125, 217, 1);
  color: #fff;
}

.price-audit tr:nth-of-type(odd)>* {
  background: rgba(239, 242, 251, 1);
}

.price-audit td {
  padding: 15px;
}

.row-flex,
.row-flex>div[class*='col-'] {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex
}

.row-flex-wrap {
  -webkit-flex-flow: row wrap;
  align-content: flex-start;
  flex: 0
}

.row-flex>div[class*='col-'] {
  margin: -.2px
}

.header-bg .row.justify-content-end {
  position: relative;
  z-index: 999;
}

.tip-audita-title a {
  text-decoration: none;
  color: #333;
}


@media (max-width: 767px) {
  .logo-title {
    left: 55px;
    top: 5px;
  }



  .cases-title-section {
    font-size: 38px;
  }

  .video-block img {
    width: 100%;
    height: auto;
  }

  button.navbar-toggler i {
    font-size: 30px !important;
  }

  .header-block-investment h1.header-title-block {
    background: #934EE9;
    background: linear-gradient(to right, #934EE9 0%, #0ACBC0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 30px;
  }

  .header-bg {

    padding-top: 50px;
  }

  .dohod-title,
  .dohod-title2,
  .dohod-number {
    font-size: 40px;
  }

  .cases-bottom h2 {
    font-size: 40px;
  }

  .dohod-title2.ms-4 {
    margin-top: 25px;
  }

  .name-heeder-investment {
    font-size: 26px;
    margin-top: 20px;
  }

  div#video-block .video i {
    font-size: 50px !important;
  }

  .reviews-item.swiper-slide.swiper-slide-active {
    width: 100% !important;
  }

  .when-required-audit-item {
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }

  .block-title h2 {
    font-size: 20px;
  }

  body {
    font-size: 14px;
  }

  .padding-block {
    padding: 40px 0;
  }

  .stages-work-number {
    text-align: left;
    padding-left: 15px;
  }

  .stages-work-blocks>div {
    left: 100px;
    padding: 10px;
    max-width: 66%;
  }

  .stages-work-block:before,
  .stages-work-block3:before,
  .stages-work-block5:before {
    content: '';
    width: 0;
    height: 0;
    border-top: 20px solid transparent;
    border-bottom: 20px solid transparent;
    border-right: 23px solid #ffffff;
    position: absolute;
    border-left: 0;
    left: -23px;
    top: 24px;
  }

  .stages-work-number-item {
    margin-bottom: 70px;
  }

  .stages-work-block2 {
    top: -10px;
  }

  .stages-work-block3 {
    top: 30px;
  }

  .stages-work-block4 {
    top: 35px;
  }

  .stages-work-block5 {
    top: 80px;
  }

  .stages-work {
    padding-bottom: 40px;
  }

  .stages-work-block4:before {
    top: 8px;
  }

  .stages-work-number:before {
    left: 40px;
  }

  .form-audit {
    padding: 20px 14px;
  }

  .form-audit .form-group input {
    height: 37px;
    font-size: 14px;
  }

  .form-audit .checkbox {
    display: flex;
    align-items: flex-start;
  }

  .form-audit .checkbox input {
    margin-top: 3px;
    margin-right: 5px;
  }

  .section-form-audit .container:before {
    display: none;
  }

  .undeniable-advantages-center {
    order: 3;
    margin-top: 20px;
  }

  .who-needs-audit-items .who-needs-audit-number {
    font-size: 34px;
    margin-right: 10px !important;
  }

  .stages-work-blocks>div .mb-3 {
    margin-bottom: 0px !important;
    line-height: normal;
  }

  .stages-work-block {
    top: -40px;
  }

  .garant-item {
    width: 100%;
  }

  button.navbar-toggler {
    position: absolute;
    top: 15px;
    right: 15px;
  }

  .header-phone-block .header-phone a {
    font-size: 25px;
  }

  .stages-work-number-item span {
    width: 50px;
    height: 50px;
    display: inline-block;
    line-height: 50px;
    text-align: center;
  }
}