@charset "UTF-8";
/* reset */
@import '../fonts/Cuprum/stylesheet.css';

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

a,
h2,
h3 {
  text-decoration: none;
  color: inherit;
}

a:visited,
h2:visited,
h3:visited {
  color: inherit;
}

a:active,
a:focus,
h2:active,
h2:focus,
h3:active,
h3:focus {
  color: inherit;
  outline: none;
}

ol,
li {
  list-style: none;
}

ul {
  padding: 0;
  margin: 0;
}

p {
  margin: 0;
}

img {
  border: none;
  -o-object-fit: contain;
  object-fit: contain;
}

input,
textarea {
  outline: none;
  border: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: inherit;
  margin: 0;
}

html,
body {
  line-height: 1;
}

/*----------------*/
html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Cuprum';
}

.form-layout {
  opacity: 0;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  z-index: -1;
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
}

.form-layout.active {
  opacity: 1;
  z-index: 9999;
}

.form__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  background-color: #fff;
  padding: 5px 44px 50px;
  border-radius: 15px;
}

.form__title {
  text-align: center;
  margin-bottom: 5px;
  font-weight: 400;
  font-size: 21px;
  line-height: 1.1;
  color: #212121;
}

button[type='submit'],
.top__btn a {
  padding: 10px 15px;
  cursor: pointer;
  border-radius: 14px;
  font-size: 18px;
  font-family: 'Cuprum';
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;

  background-color: #FFC201;
  background: -webkit-gradient(linear, left top, right top, from(#FFC201), to(#ff9b30));
  background: linear-gradient(90deg, #FFC201, #ff9b30);
  border: 1px solid #FFC201;

  color: #000;


}

button.sbm:hover,
.top__btn a:hover {
  background-color: #ffe77e;
}

.about__item-img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.about__item-img img {
  width: 60%;
}

.form__close {
  width: 32px;
  height: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 28px;
  margin-left: auto;
  cursor: pointer;
  position: relative;
  right: -30px;
  top: 5px;
}

.form__close span {
  height: 2px;
  width: 100%;
  background-color: #727272;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

.form__close:hover span {
  background-color: #000;
}

.form__close span:first-child {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  position: relative;
  top: 1px;
}

.form__close span:last-child {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.form__item,
.quiz__final-item-input {
  background: #f4f4f4;
  border: 1px solid #dbdbdb;
  border-radius: 4px;
  padding-left: 24px;
  padding-right: 24px;
  padding-top: 10px;
  padding-bottom: 10px;
  font-size: 16px;
  line-height: 1.2;
  color: #000;
  font-family: 'Cuprum';
}

.form__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
  width: 315px;
}

.layout {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(155, 155, 155, 0.631372549);
  cursor: pointer;
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
}

.form-layout.active .layout {
  background-color: rgba(0, 0, 0, 0.631372549);
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
}

.form__policy {
  margin-top: 10px;
}

.form__policy-icon {
  position: relative;
  top: 15px;
}

.form__policy-icon .f_locked {
  background-position: 0 -66px;
  width: 16px;
  height: 20px;
}

.form__policy-icon .icon {
  display: inline-block;
  background-image: url(../imgs/sprite.png);
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  left: 15px;
}

.form__policy-text {
  padding-left: 45px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.form__policy-text-big {
  font-size: 14px;
  margin-bottom: 4px;
}

.form__policy-text-small {
  font-size: 11px;
  line-height: 14px;
}

.form__policy-text-small a {
  text-decoration: underline;
}

.form textarea {
  resize: none;
  height: 100px;
  font-family: 'Cuprum';
}
.header__phone a::before, .footer__phone a::before  {
  display: none;
}
* {
  font-family: sans-serif !important;
}
.header__logo-title {
  color: #fff;
  display: inline-block;
  padding-left: 15px;
  font-family: sans-serif;
font-weight: 700;
font-style: Bold;
font-size: 32px;
leading-trim: NONE;
line-height: 100%;
letter-spacing: 0%;
text-transform: uppercase;

}
.form {
  position: relative;
  z-index: 9999;
}

.header {
  padding: 20px 0;
  position: fixed;
  background-color: #fff;
  width: 100%;
  left: 0;
  top: 0;
  right: 0;
  -webkit-box-shadow: 0 15px 15px #fff;
  box-shadow: 0 15px 15px #fff;
  z-index: 999;
}

main {
  margin-top: 45px;
}

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

.header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

a.header__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 28px;
  font-weight: 600;
  color: #007aae;
  line-height: 0.8;
  letter-spacing: -1px;
}

a.header__logo img {
  max-width: 220px;
  margin-right: 10px;
}

.header__raiting {
  margin-right: auto;
  margin-left: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.header__raiting img {
  max-width: 100px;
}



.header__year {
  font-size: 25px;
  position: relative;
  line-height: 0.9;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.working {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  font-size: 24px;
}

.working__img {
  position: relative;
}

.working__img img {
  width: 100%;

}

.working__img-number {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #ffc800;
  font-size: 28px;
  font-weight: 900;
}


.top__bage {
  background: radial-gradient(60.9% 205.58% at 39.1% 50%, #144C9E 0%, #020B4A 100%);
max-width: 500px;
border-radius: 12px;
padding: 16px 27px;
display: flex; 
align-items: center;
margin-top: 20px;
color: #fff;
}
.top___bage-img {
}
.top__bage-title {
font-weight: 600;
padding-left: 17px;
font-style: SemiBold;
font-size: 18px;
leading-trim: NONE;
line-height: 120%;
letter-spacing: 0%;

}


.header__contact {
  margin-right: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: flex-end;
  padding-top: 6px;
}

.header__phone {
  font-size: 25px;
  margin-bottom: 5px;
}

.header__formbtn,
.iscompetitive__popup-btn {
  padding: 16px 28px;
  font-size: 18px;
  line-height: 1;
  text-decoration: none;

  background-color: #FFC201;
  background: -webkit-gradient(linear, left top, right top, from(#FFC201), to(#ff9b30));
  background: linear-gradient(90deg, #FFC201, #ff9b30);
  border: 1px solid #FFC201;
  border-radius: 10px;
  margin-left: 14px;
  cursor: pointer;
  text-align: center;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

.header__formbtn:hover,
.iscompetitive__popup-btn:hover {
  background-color: #ffe77e;
}

.top,
.septics,
.quiz,
.iscompetitive,
.about,
.gallery,
.reviews {
  padding-top: 60px;
  padding-bottom: 60px;
}

.top {
  /*background-image: url(../imgs/top__fon.jpg);*/
  /*background-size: cover;*/
  /*background-position: center;*/
  padding-bottom: 0px;
  background-color: #EEEEF7;
}
.main-bage {
  position: absolute;
  top: 0;
  left: 0;
}

.top__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  justify-content: space-between;
  display: flex;
  /*background-color: rgba(243, 243, 243, 0.7098039216);*/

  padding: 50px 0px 0px 0px;
}

.top__first {
  width: 52%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  position: relative;
  max-width: 500px;
  z-index: 2;
}

h1.top__title {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.1;
}

span.highlight {
  color: #007bb4;
}

.underline {
  position: relative;
  display: inline-block;
}

.underline::before {
  content: '';
  position: absolute;
  height: 2px;
  width: 98%;
  background-color: #007bb4;
  opacity: 0.7;
  bottom: 3px;
}

.top__list ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  /*-ms-flex-direction: column;*/
  /*flex-direction: column;*/
  margin-bottom: 30px;
  margin-top: 30px;
}

.top__list ul li {
  font-size: 16px;
  width: 100%;
  max-width: 150px;
  text-align: center;
}


.top__list ul li img {
  width: 100px;
  margin-right: 0;
  display: block;
  margin: auto;
}

.top__list ul li div:first-child {
  margin-bottom: 5px;
}

.top__second {
  width: 45%;
  margin-left: 3%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.top__second img {
  width: 120%;
}

.top__btn a {
  max-width: 100%;
  margin-bottom: 20px;
  margin-left: auto;
  margin-right: auto;
  height: 70px;
  font-size: 18px;
  text-align: center;
  color: #fff;
  background: radial-gradient(52.82% 76.21% at 55.1% 50%, #F95726 0%, #FD440C 100%) /* warning: gradient uses a rotation that is not supported by CSS and may not behave as expected */;

  font-weight: 600;
}

.septics__item-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-right: 20px;
}

h2.septics__title,
h2.quiz__title,
h2.iscompetitive__title,
h2.gallery__title,
h2.about__title,
h2.reviews__title {
  font-size: 42px;
  text-align: left;
  font-weight: 600;
  margin-bottom: 30px;
  max-width: 950px;
  margin-left: 0;
  margin-right: auto;
  line-height: 1.2;
}

h2.quiz__title {
  font-size: 42px;
  max-width: 990px;
  max-width: 100%;
  text-align: center;
}

.about__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 60px;
}

.about__item {
  width: calc(25% - 45px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  font-size: 21px;
  line-height: 1.2;
  gap: 15px;
}

.about__item-img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.septics__slider {
  max-height: 150px;
  overflow: hidden;
}

.gallery__item__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-right: 10px;
  margin-left: 10px;
}

.gallery__slider-list {
  cursor: -webkit-grab;
  cursor: grab;
}

.gallery__item__inner img {
  border-radius: 15px;
}

.gallery__slider {
  position: relative;
}

.gallery__slider-prev,
.gallery__slider-next {
  font-size: 0;
  line-height: 0;
  position: absolute;
  top: 50%;
  display: block;
  border-radius: 50%;
  background: transparent;
  width: 70px;
  height: 70px;
  padding: 0;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  cursor: pointer;
  border: none;
  outline: none;
  z-index: 99;
  opacity: 1;
}

.gallery__slider-next {
  right: -80px;
}

.gallery__slider-prev {
  left: -80px;
}

.gallery__slider-prev:before,
.gallery__slider-next:before {
  content: '';
  width: 30px;
  height: 30px;
  border: 3px solid #007bb4;
  position: absolute;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
  cursor: pointer;
  border-right: none;
  border-bottom: none;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  margin-left: 22px;
}

.gallery__slider-prev:before {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.gallery__slider-next,
.gallery__slider-prev {
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

.gallery__slider-next:hover,
.gallery__slider-prev:hover {
  opacity: 0.7;
}

.footer {
  background-color: #ebefec;
}

.footer__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  max-width: 220px;
}

.footer__logo img {
  border-radius: 14px;
}

.footer__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 10px 0;
}

.reviews__item__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.reviews__inner {
  position: relative;
}

.reviews__slider-prev,
.reviews__slider-next {
  position: absolute;
  top: calc(50% - 15px);
  cursor: pointer;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

.reviews__slider-prev:hover,
.reviews__slider-next:hover {
  opacity: 0.7;
}

.reviews__slider-prev::before,
.reviews__slider-next::before {
  content: '';
  width: 40px;
  height: 40px;
  display: inline-block;
  background-size: cover;
}

.reviews__slider-prev::before {
  background-image: url(../imgs/reviews/reviews-prev.png);
}

.reviews__slider-next::before {
  background-image: url(../imgs/reviews/reviews-next.png);
}

.reviews__slider-prev {
  left: -40px;
}

.reviews__slider-next {
  right: -40px;
}

.footer__phone {
  font-size: 25px;
  margin-bottom: 5px;
}

.header__phone a,
.footer__phone a {
  position: relative;
}
.header__phone a, .footer__phone a  {
font-weight: 700;
font-style: Bold;
font-size: 32px;
leading-trim: NONE;
line-height: 120%;
letter-spacing: 0%;
text-align: right;

}
.header__phone a:before,
.footer__phone a:before {
  content: '';
  background-image: url(../imgs/telefon.svg);
  background-position: center;
  background-size: cover;
  width: 35px;
  height: 35px;
  position: absolute;
  left: -40px;
  top: calc(50% - 18px);
}

.septics__list {
  cursor: -webkit-grab;
  cursor: grab;
}

.quiz,
.about {
  background-color: #ebefec;
}

.quiz__inner {
  /*max-width: 1070px;*/
  margin: 0 auto;
}

.quiz__list {
  position: relative;
  width: 100%;
  min-height: 500px;
}

.quiz__item {
  background-color: #fff;
  border-radius: 20px;
  padding: 20px;
  -webkit-box-shadow: 0 0 7px #777;
  box-shadow: 0 0 7px #777;
  position: absolute;
  width: 100%;
  left: 0;
  right: 0;
  top: 0;
  height: 500px;
  overflow: hidden;
  opacity: 0;
  -webkit-transition: all 0.55s ease;
  transition: all 0.55s ease;
  z-index: -1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.quiz__item.active {
  opacity: 1;
  z-index: 9;
}

.quiz__pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: auto;
}

.quiz__pagination>div {
  font-size: 21px;
  padding: 14px 28px;
  border-radius: 5px;
}

.quiz__next-btn,
.quiz__prev-btn,
.quiz__final-submit {
  cursor: pointer;
  background-color: #f8d849;
  border: 1px solid #a99330;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;



  background-color: #FFC201;
  background: -webkit-gradient(linear, left top, right top, from(#FFC201), to(#ff9b30));
  background: linear-gradient(90deg, #FFC201, #ff9b30);
  border: none;
}

.quiz__next-btn:hover,
.quiz__prev-btn:hover,
.quiz__final-submit:hover {
  background-color: #ffe77e;
}

.quiz__step {
  margin-bottom: 20px;
}

h3.quiz__question {
  font-size: 32px;
  margin-bottom: 10px;
}

.quiz__answers {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 10px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: auto;
  margin-bottom: auto;
}

.quiz__answer {
  width: calc(20% - 10px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  min-height: 200px;
  border: 1px solid #cdcdcd;
  border-radius: 15px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  background-color: #fff;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.quiz__answer:hover {
  -webkit-box-shadow: 0 0 7px #777;
  box-shadow: 0 0 7px #777;
  background-color: #cbffc3;
}

.quiz__label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
  width: 100%;
  text-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
  height: 100%;
}

.quiz__label input {
  display: none;
}

.quiz__label img {
  width: 100%;
  margin-bottom: auto;
}

.quiz__input-check {
  height: 150px;
  width: 150px;
  position: absolute;
  background-color: rgba(203, 255, 195, 0.3607843137);
  top: calc(50% - 75px);
  left: calc(50% - 75px);
  border-radius: 50%;
  border: 1px solid rgba(103, 176, 92, 0.5019607843);
  opacity: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  cursor: pointer;
}

.quiz__input-check:before {
  content: '✓';
  font-size: 52px;
  color: rgba(103, 176, 92, 0.7490196078);
}

.quiz input[type='radio']:checked+.quiz__input-check {
  -webkit-transition: all 0.45s ease;
  transition: all 0.45s ease;
  opacity: 1;
}

.quiz input[type='radio']:checked+.quiz__input-check+.quiz__input-text:before {
  background-color: #cbffc3;
}

.quiz__item_3 .quiz__final-label {
  font-size: 22px;
}

.quiz__item_3 label {
  font-size: 22px;
}

.quiz__item_3 input[type="text"] {
  max-width: 230px;
  width: 100%;
}

.quiz__item_3 input[type="checkbox"] {
  margin-right: 15px;
  transform: scale(1.5);
}



.quiz__input-text {
  padding: 20px 15px;
  font-size: 22px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: auto;
}

.quiz__input-text:before {
  content: '';
  width: 10px;
  min-width: 10px;
  height: 10px;
  border: 1px solid #777;
  background-color: #fff;
  border-radius: 50%;
  position: absolute;
  left: 7px;
  top: 8px;
  z-index: 999;
}

._dis {
  background-color: #d7c67b;
  pointer-events: none;
  opacity: 0.6;
}

.noselect {
  -webkit-touch-callout: none;
  /* iOS Safari */
  -webkit-user-select: none;
  /* Safari */
  /* Konqueror HTML */
  -moz-user-select: none;
  /* Old versions of Firefox */
  -ms-user-select: none;
  /* Internet Explorer/Edge */
  user-select: none;
  /* Non-prefixed version, currently supported by Chrome, Edge, Opera and Firefox */
}

.errorMsg p {
  color: #c54545;
  margin-bottom: 4px;
  font-size: 14px;
}

.quiz__question_short {}

.quiz__final {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  gap: 20px;
  margin-top: 20px;
}

.quiz__final-submit {
  padding: 16px 28px;
  font-size: 18px;
  line-height: 1;
  border-radius: 10px;
  margin-bottom: 10px;
  margin-top: 20px;
  width: 100%;
}

.quiz__final-item-input {
  width: 100%;
  margin-top: 7px;
}

.quiz__final-receive {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 50%;
}

.quiz__final-form {
  width: calc(50% - 20px);
}

.form-layout.formSuccess .form__body {
  text-align: center;
  color: #249e24;
  padding: 25px 0 5px;
}

.form-layout.formError .form__body {
  text-align: center;
  color: #9e2424;
  padding: 25px 0 5px;
}

#policy .text-block {
  line-height: 1.2;
}

#policy .text-block p {
  margin-bottom: 7px;
}

#policy h3 {
  margin-bottom: 5px;
}

#policy ul {
  padding-left: 15px;
  margin-bottom: 15px;
}

#policy ul li {
  list-style-type: disc;
}

#policy {
  margin-bottom: 85px;
}

#policy h1.policy__title {
  margin-bottom: 20px;
}

.quiz__final-receive {
  border-radius: 6px;
  border-width: 2px;
  border-style: dashed;
  border-color: #d3d3d3;
  padding: 20px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
}

.quiz__final-receive-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.iscompetitive__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  padding: 20px 10px 40px 40px;
  background-color: #3a88c9;
  border-radius: 14px;
}

.iscompetitive__first {
  width: calc(60% - 20px);
}

.iscompetitive__benefits {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 14px;
}

.iscompetitive__benefits-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: calc(50% - 7px);
}

h2.iscompetitive__title {
  margin-top: 30px;
  color: #fff;
  font-size: 48px;
}

.popup_btn {
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.iscompetitive__second {
  width: 40%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: -50px;
  margin-bottom: -50px;
}

.iscompetitive__popup-btn {
  max-width: 650px;
  margin-top: 25px;
  margin-left: 0;
  height: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 600;
  margin-left: auto;
  margin-right: auto;
}

.footer__policy {
  max-width: 200px;
  text-align: center;
}

.footer__mail {
  font-size: 21px;
}

.footer__mail a,
.footer__policy a {
  position: relative;
}

.header__phone a:after,
.footer__phone a:after,
.footer__mail a:after,
.footer__policy a:after {
  content: '';
  width: 0;
  height: 1px;
  background-color: #000;
  position: absolute;
  left: 0;
  bottom: 0;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

.header__phone a:hover:after,
.footer__phone a:hover:after,
.footer__mail a:hover:after,
.footer__policy a:hover:after {
  content: '';
  width: 100%;
}

h2.about__title,
h2.gallery__title,
h2.gallery__title,
h2.reviews__title {
  margin-left: 0;
}

.gallery_highline {
  color: #007bb4;
  display: block;
  margin-top: 5px;
}

.footer__second {
  font-size: 21px;
}

.footer__second,
.footer__requisite,
.footer__third {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 10px;
}

.footer__third {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.about__item-text {
  margin-bottom: auto;
}

.quiz__item_bigtext {
  font-size: 42px;
  font-weight: 800;
}

.quiz__item_bigtext_2 {
  font-size: 28px;
  font-weight: 800;
}

.quiz__label_question:before {
  content: '?';
  position: absolute;
  font-size: 165px;
  color: rgba(255, 0, 0, 0.1803921569);
  z-index: 1;
}

.advants {
  padding: 60px 0;
}

.advants-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.advants-item {
  width: 23%;
}

.advants-img {
  margin-bottom: 20px;
}

.advants-img img {
  display: block;
  width: 100%;
  margin: auto;
  max-width: 180px;
}

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

.advantages-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 40px;
}

.advantages__item {
  width: calc(33.3333333333% - 28px);
  background-color: #fff;
  color: #000;
  border-radius: 20px;
  position: relative;
}

.advantages__item-img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 70%;
  margin-left: auto;
  margin-right: auto;
}

.advantages__item-img img {
  width: 100%;
}

section.advantages .advantages__item-label {
  padding: 0 30px 10px;
  font-size: 25px;
  font-weight: 600;
  position: relative;
  z-index: 1;
}

.advantages__item-text {
  padding-left: 30px;
  padding-right: 30px;
  padding-bottom: 30px;
  font-size: 18px;
  line-height: 1.4;
}




@media (max-width: 1480px) {
  .gallery__slider-next {
    right: -40px;
  }

  .gallery__slider-prev {
    left: -40px;
  }

  .reviews__slider-next {
    right: -20px;
  }

  .reviews__slider-prev {
    left: -20px;
  }
}

@media (max-width: 1392px) {

  .gallery__slider-next,
  .reviews__slider-next {
    right: 0;
  }

  .gallery__slider-prev,
  .reviews__slider-prev {
    left: 0;
  }
}

@media (max-width: 1320px) {
  .container {
    padding: 0 15px;
  }
}

@media (max-width: 1160px) {
  h1.top__title {
    font-size: 32px;
  }

  .top__list {
    max-width: 435px;
  }

  h2.septics__title,
  h2.quiz__title,
  h2.iscompetitive__title,
  h2.gallery__title,
  h2.about__title,
  h2.reviews__title {
    font-size: 22px;
    margin-bottom: 25px;
  }

  .quiz__final-form {
    width: calc(50% - 20px);
  }

  .quiz__final-receive {
    width: 50%;
  }
}

@media (max-width: 980px) {
  .header__logo img {
    max-width: 60px;
  }

  .header__formbtn,
  .iscompetitive__popup-btn {
    padding: 10px 15px;
    font-size: 16px;
    border-radius: 7px;
    margin-left: 5px;
  }

  .header__phone {
    font-size: 22px;
    margin-bottom: 3px;
  }

  .header__contact {
    margin-right: 10px;
    padding-top: 4px;
  }

  .header__raiting img {
    max-width: 90px;
  }

  .header {
  }

  main {
    margin-top: 66px;
  }

  .top,
  .septics,
  .quiz,
  .iscompetitive,
  .about,
  .gallery,
  .reviews {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .quiz__item,
  .quiz__list {
    height: 470px;
    min-height: 470px;
  }

  .quiz__final {
    margin-top: 10px;
  }

  .quiz__input-check {
    height: 100px;
    width: 100px;
    top: calc(50% - 50px);
    left: calc(50% - 50px);
  }

  .footer__phone {
    font-size: 22px;
    margin-bottom: 3px;
  }

  .footer__third {
    max-width: 200px;
    text-align: center;
  }

  .footer__second {
    font-size: 18px;
  }

  .top__btn a {
    max-width: 330px;
    margin-bottom: 10px;
    height: 50px;
    font-size: 21px;
    font-weight: 600;
  }

  .about__item-text {
    font-size: 16px;
  }

  .top__list ul li img {
    width: 60px;
  }

  .top__list {
    max-width: 385px;
  }

  .top__list ul li {
    gap: 10px;
    font-size: 18px;
  }

  .about__item {
    gap: 5px;
    width: calc(25% - 23px);
  }

  .about__list {
    gap: 30px;
  }

  .top__second img {
    width: 140%;
    margin-bottom: -140px;
  }

  .errorMsg {
    margin-top: 5px;
  }

  .header__raiting {
    margin-left: 15px;
  }

  a.header__logo {
    font-size: 21px;
  }
}

@media (max-width: 810px) {
  .quiz__answer {
    min-height: 150px;
  }

  .quiz__answers {
    gap: 5px;
    border-radius: 8px;
  }

  .quiz__item,
  .quiz__list {
    height: 390px;
    min-height: 390px;
  }

  h3.quiz__question {
    font-size: 21px;
    margin-bottom: 5px;
  }

  .quiz__input-text {
    padding: 7px;
    font-size: 16px;
    line-height: 1.1;
  }

  .quiz__label img {
    margin-bottom: 0;
  }

  .quiz__final-receive-img img {
    width: 75px;
  }

  .quiz__final-form {
    width: calc(60% - 20px);
  }

  .quiz__final-receive {
    width: 40%;
    border-radius: 5px;
    padding: 7px;
    gap: 10px;
    max-height: 120px;
    margin-bottom: auto;
    margin-top: 23px;
  }

  .form__policy {
    max-width: 320px;
  }

  .quiz__final-submit {
    margin-bottom: 0;
  }

  .quiz__step {
    margin-bottom: 10px;
  }

  .reviews__slider {
    padding: 0 44px;
  }

  .top__second {
    display: none;
  }

  .top__first {
    width: 100%;
    gap: 15px;
  }

  h1.top__title {
    font-size: 27px;
  }

  .quiz__pagination>div {
    font-size: 18px;
    padding: 10px 22px;
  }
}

@media (max-width: 750px) {

  h2.about__title,
  h2.gallery__title,
  h2.gallery__title,
  h2.reviews__title {
    text-align: left;
  }

  .header__logo img,
  .footer__logo {
    max-width: 60px;
  }

  .header__raiting {
    margin-left: 10px;
  }

  .header__raiting img {
    max-width: 60px;
  }

  .header__formbtn.popup_btn {
    max-width: 128px;
  }

  .header__formbtn,
  .iscompetitive__popup-btn {
    padding: 7px 12px;
    font-size: 14px;
    border-radius: 5px;
    margin-left: 0;
  }

  .header__phone,
  .footer__phone {
    font-size: 21px;
  }

  .header__phone a:before,
  .footer__phone a:before {
    width: 25px;
    height: 25px;
    left: -30px;
    top: calc(50% - 13px);
  }

  .header {
  }

  main {
    margin-top: 64px;
  }

  .top,
  .septics,
  .quiz,
  .iscompetitive,
  .about,
  .gallery,
  .reviews {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  button.sbm,
  .top__btn a {
    border-radius: 7px;
  }

  .top__btn a {
    max-width: 300px;
    margin-bottom: 0;
    height: 45px;
    font-size: 18px;
  }

  .top__inner {
    border-radius: 15px;
    padding: 15px;
  }

  .quiz__final {
    gap: 10px;
  }

  .quiz__final-form {
    width: calc(50% - 10px);
  }

  .quiz__final-receive {
    width: 50%;
  }

  .quiz__final-submit {
    padding: 12px 10px;
    font-size: 14px;
    border-radius: 7px;
  }

  .form__policy-text {
    padding-left: 40px;
  }

  .form__policy {
    max-width: 210px;
  }

  .quiz__input-check {
    height: 70px;
    width: 70px;
    top: calc(50% - 35px);
    left: calc(50% - 35px);
  }

  h2.septics__title,
  h2.quiz__title,
  h2.iscompetitive__title,
  h2.gallery__title,
  h2.about__title,
  h2.reviews__title {
    font-size: 25px;
    margin-bottom: 15px;
  }

  h2.iscompetitive__title {
    margin-top: 10px;
  }

  .header__raiting,
  .header__formbtn.popup_btn,
  .header__schedule {
    display: none;
  }
}

.header__logo-raiting {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.header__contact {
  -webkit-margin-start: auto;
  margin-inline-start: auto;
}

@media (max-width: 650px) {
  .header__logo-raiting {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 5px;
  }

  .header__raiting img {
    max-width: 70px;
  }

  .header__raiting {
    margin-left: 0;
  }

  .header {
  }

  main {
    margin-top: 90px;
  }

  .quiz__answer {
    width: calc(50% - 5px);
  }

  .quiz__answer {
    min-height: 175px;
  }

  .quiz__item,
  .quiz__list {
    height: 510px;
    min-height: 510px;
  }

  .quiz__final {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 5px;
  }

  .quiz__final-form {
    width: 100%;
  }

  .quiz__final-receive {
    width: 100%;
    margin-top: 5px;
    margin-bottom: 5px;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    padding: 4px;
  }

  .form__policy {
    max-width: 100%;
  }
}

.header__contact-formbtn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media (max-width: 550px) {
  .footer__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 5px;
  }

  .footer__logo {
    max-width: 80px;
  }

  .header__contact-formbtn {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 5px;
  }

  .header__contact {
    margin-right: 0;
  }

  .header {
  }

  main {
    margin-top: 55px;
  }

  .form__inner {
    padding: 5px 35px 30px;
    border-radius: 10px;
  }

  h1.top__title {
    font-size: 35px;
  }

  h3.quiz__question {
    font-size: 18px;
    margin-bottom: 3px;
  }

  .quiz__item {
    border-radius: 10px;
    padding: 15px;
  }

  .quiz__item,
  .quiz__list {
    height: 520px;
    min-height: 520px;
  }

  .quiz__final-receive {
    margin-top: 15px;
  }

  .iscompetitive__second {
    display: none;
  }

  .iscompetitive__first {
    width: 100%;
  }

  .iscompetitive__inner {
    padding: 15px;
    border-radius: 10px;
  }

  .iscompetitive__popup-btn {
    height: 60px;
    margin-top: 15px;
  }

  .about__list {
    gap: 20px 10px;
  }

  .about__item {
    gap: 2px;
    width: calc(50% - 5px);
  }

  .header {
    -webkit-box-shadow: 0 5px 5px #fff;
    box-shadow: 0 5px 5px #fff;
  }

  .reviews__slider {
    padding: 0;
  }

  .reviews__slider-next,
  .reviews__slider-prev {
    display: none !important;
  }
}

.gallery__slider-mob {
  display: none;
}

@media (max-width: 450px) {

  .gallery__slider-prev,
  .gallery__slider-next {
    top: calc(50% - 105px);
  }

  .gallery__slider-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .gallery__item {
    width: 25%;
    aspect-ratio: 1/1;
    overflow: hidden;
    margin-bottom: 5px;
    border-radius: 5px;
  }

  .gallery__item__inner {
    margin-right: 5px;
    margin-left: 5px;
    margin-bottom: 5px;
  }

  .gallery__item__inner img {
    border-radius: 5px;
  }

  .gallery__item a {
    pointer-events: none;
  }

  .gallery__slider-mob {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-bottom: 10px;
    margin-left: 5px;
    margin-right: 5px;
  }

  .gallery__slider-mob img {
    width: 100%;
    border-radius: 10px;
  }
}

img.quiz__img.quiz__img_center {
  margin-top: auto;
}

.quiz__input-text_p0 {
  padding: 0;
}

@media (max-width: 420px) {
  .form__body {
    gap: 8px;
    width: 250px;
  }

  .form__policy {
    margin-top: 5px;
  }

  .form__title {
    margin-bottom: 10px;
  }

  .quiz__input-text {
    font-size: 14px;
    padding: 5px;
  }

  .quiz__item_bigtext {
    font-size: 22px;
  }

  .quiz__item_bigtext_2 {
    font-size: 16px;
  }

  .underline::before {
    bottom: -3px;
  }
}

@media (max-width: 360px) {
  .header__logo img {
    max-width: 60px;
  }

  .quiz__input-text {
    font-size: 12px;
    padding: 2px;
  }

  .quiz__final-submit {
    padding: 10px;
    font-size: 12px;
    border-radius: 5px;
  }
}

section.advantages {
  background-color: #eef2f5;
}


section.advantages .advantages-list {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}


section.advantages .advantages__item {
  width: calc(33.3333333333% - 28px);
  background-color: #fff;
  color: #000;
  border-radius: 20px;
  position: relative;
}

section.advantages .advantages__item-img {
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 70%;
  margin-left: auto;
  margin-right: auto;
  max-height: 220px;
}

section.advantages .advantages__item-img img {
  width: 100%;
}

section.advantages .advantages__item-label {
  padding: 0 30px 10px;
  font-size: 25px;
  font-weight: 600;
  position: relative;
  z-index: 1;
}

section.advantages .advantages__item-text {
  padding-left: 30px;
  padding-right: 30px;
  padding-bottom: 30px;
  font-size: 18px;
  line-height: 1.4;
}

@media (max-width: 360px) {
  .top__list ul {
    flex-direction: column;
  }

  .top__list ul li {
    width: 100%;
  }

  .top__list ul li br {
    display: none;
  }


  .advants-row {
    flex-direction: column;
  }

  .advants-item {
    width: 100%;
    margin-bottom: 20px;
  }

  section.advantages .advantages__item {
    width: 100%;
    margin-bottom: 10px;
  }

  section.advantages .advantages__item-label {
    padding: 0 20px 10px;
    font-size: 18px;
  }

  section.advantages .advantages__item-text {
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 20px;
    font-size: 15px;
  }

  .advants-img img {
    max-width: 120px;
  }

}


@media (max-width: 650px) {
  .quiz__answer {
    min-height: 120px;
  }


  section.advantages .advantages__item {
    width: 100%;
  }

  .advants-item {
    width: 50%;
    margin-bottom: 20px;
  }

  h1.top__title br {
    display: none;
  }

  .top__list ul {
    flex-wrap: wrap;
    justify-content: center;
  }

  .advants-img img {
    max-width: 120px;
  }

  .top__list ul li {
    width: 50%;
    margin-bottom: 10px;
  }

  .top__list ul li img {
    width: 120px;
  }

  .header__year {
    display: none;
  }

  a.header__logo {
    font-size: 20px;
  }

  .header__logo-raiting {
    display: none;
  }

  a.header__logo {}

  .header__inner {
    justify-content: center;
  }


  .header__phone {
    font-size: 27px;
  }

  .header {
  }

  .top {
    padding-top: 50px;
    padding-bottom: 0;
  }

  .advants {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .quiz__item,
  .quiz__list {
    height: 540px;
    min-height: 540px;
  }


  section.advantages .advantages__item-label {
    font-size: 22px;
  }



}






.cases {
  padding: 40px 0;
  background: #f9f9f9;
}

.case-card h3 {
  font-size: 38px;
}

.cases-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.case-card {

  width: 100%;
  flex: 0 1 70%;
  margin: 1%;
  display: inline-block;
  vertical-align: top;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
}

.case-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #222222;
  opacity: 0.4;
  z-index: 1;
}

.case-image {
  overflow: hidden;
  height: 400px;
  position: relative;
  background-size: cover;
  border-radius: 20px;
  background-position: center;
  border-bottom-right-radius: 0px;
  border-bottom-left-radius: 0px;
  background-repeat: no-repeat;
  background-size: revert-layer !important;
  background-position: center !important;
}

.case-content p {
  font-size: 19px;
}

.reviews__slider-prev,
.reviews__slider-next {
  top: 60% !important;
}

.case-content {
  display: flex;
  color: #fff !important;
  z-index: 9999;
  position: relative;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: 100%;
  padding: 15px;
  text-align: center;
}

.case-content h3 {
  font-weight: 700;
  font-size: 42px;
  position: absolute;
  left: 25px;
  top: 25px;
  margin: 0 0 10px;
}

.case-stats {

  font-size: 18px !important;
}

.case-stats strong {

  font-size: 24px !important;
}


.case-stats {
  display: flex;
  justify-content: space-around;
  padding: 35px;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: 0em;
  text-align: center;
}

.case-stats div {
  font-size: 14px;
}

.hidden {
  display: none;
}

.center {
  text-align: center;
  margin-top: 20px;
}

.row {}

.cases-mini {}

.case-mini-card {
  max-width: 290px;
  border-radius: 15px;
  background: #fff;
  padding-bottom: 20px;
  height: 330px;
  text-align: left;
  margin: 0 auto;
}

.case-mini-img {
  width: 100%;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
}

.case-mini-title {
  font-weight: bold;
  font-size: 20px;
  padding: 0 20px;
  margin: 10px 0;
  height: 40px;
}

.case__slider-prev,
.case__slider-next {
  position: absolute;
  top: calc(50% - 15px);
  cursor: pointer;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

.case__slider-prev:hover,
.case__slider-next:hover {
  opacity: 0.7;
}

.case__slider-prev::before,
.case__slider-next::before {
  content: '';
  width: 40px;
  height: 40px;
  display: inline-block;
  background-size: cover;
}

.case__slider-prev::before {
  background-image: url(../imgs/reviews/reviews-prev.png);
}

.case__slider-next::before {
  background-image: url(../imgs/reviews/reviews-next.png);
}

.case__slider-prev {
  left: -40px;
}

.case__slider-next {
  right: -40px;
}

@media (max-width:500px) {
  .case__slider-next {
    right: 0;
  }

  .case-card {
    flex: 0 1 100%;
  }

  .case-stats {
    flex-direction: column;
  }

  .case-stats div {
    margin-bottom: 20px;
  }

  .case__slider-prev {
    left: 0;
  }

  .slick-slide img {
    width: 100%;
  }
}

.case-mini-link {
  display: inline-block;
  margin-top: 5px;
  padding: 0 20px;
  margin-bottom: 10px;
}

.case-mini-price {
  padding: 0 20px;
}

.bold {
  font-weight: bold;
}

.cases-mini {
  position: relative;
  margin-top: 20px;
}

.slick-slide {
  display: flex !important;
  justify-content: center;
}

.slick-prev,
.slick-next {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  transition: 0.3s;
  z-index: 10;
}

.slick-prev:hover,
.slick-next:hover {
  background: #000;
  color: #fff;
}

.slick-prev:before,
.slick-next:before {
  color: #000;
  font-size: 20px;
}

.slick-prev:hover:before,
.slick-next:hover:before {
  color: #fff;
}

@media (max-width: 1024px) {
  .case-mini-title {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .cases-mini {
    padding: 30px 20px;
  }

  .case-mini-title {
    font-size: 16px;
  }
}
.centered-image {
    position: absolute;
    top: 65%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 80%;
    max-height: 80%;
    z-index: 1;
}

.header {
  background: linear-gradient(90deg, #1C509A 0%, #020C54 100%);
color: #fff;

}