@import url(https://fonts.googleapis.com/css?family=Open+Sans:300,regular,500,600,700,800,300italic,italic,500italic,600italic,700italic,800italic);
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
}

* {
  box-sizing: border-box;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

ul {
  list-style: none;
}

body {
  margin: 0;
}

a {
  margin: 0;
  padding: 0;
  text-decoration: none;
  color: inherit;
}

input, textarea, select, button, .slick-slide, .slick-tarck, .slick-list {
  outline: none;
}

input, textarea {
  margin: 0;
  border: none;
  background: transparent;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 0;
  font-size: 16px;
}

button {
  border: none;
  background: transparent;
  border-radius: 0;
  cursor: pointer;
  margin: 0;
  padding: 0;
  display: block;
  font-size: inherit;
  color: inherit;
}

img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

*::before,
*::after {
  position: absolute;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

body {
  font-family: "Open Sans", sans-serif;
  color: #383838;
}
body.modal-open {
  overflow: hidden;
}

html, body {
  height: 100%;
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1 1 auto;
}

.container {
  max-width: 1432px;
  width: 100%;
  margin: 0 auto;
  padding: 0 60px;
}
@media (max-width: 1280px) {
  .container {
    padding: 0 40px;
  }
}
@media (max-width: 700px) {
  .container {
    padding: 0 20px;
  }
}

:root {
  --textGray: #585858;
  --colorBlue: #408FC6;
  --colorRed: #FF8180;
}

.title {
  font-size: 34px;
  font-weight: 400;
}
@media (max-width: 1280px) {
  .title {
    font-size: 32px;
  }
}
@media (max-width: 700px) {
  .title {
    font-size: 28px;
  }
}
@media (max-width: 550px) {
  .title {
    font-size: 26px;
  }
}

section {
  padding: 90px 0;
}
@media (max-width: 1280px) {
  section {
    padding: 50px 0;
  }
}
@media (max-width: 600px) {
  section {
    padding: 30px 0;
  }
}

.tabContent {
  display: none;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  z-index: 10;
  pointer-events: none;
}
@media (max-width: 1000px) {
  .slider-arrow {
    display: none;
  }
}
.slider-arrow .slick-arrow {
  pointer-events: auto;
  font-size: 0;
  border: none;
  display: block;
  width: 27px;
  height: 54px;
  cursor: pointer;
  padding: 0;
  transition: 0.2s ease;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.slider-arrow .slick-prev {
  background-image: url("../images/icons/slick-prev.svg");
}
.slider-arrow .slick-prev.slick-disabled {
  background-image: url("../images/icons/slick-prev-disabled.svg");
}
.slider-arrow .slick-next {
  background-image: url("../images/icons/slick-next.svg");
}
.slider-arrow .slick-next.slick-disabled {
  background-image: url("../images/icons/slick-next-disabled.svg");
}

.triggerBlock {
  background-image: url("../images/triggerBlock_bg.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  color: #FFFFFF;
}
.triggerBlock__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
@media (max-width: 1000px) {
  .triggerBlock__inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
.triggerBlock__title b {
  display: block;
}
.triggerBlock__dscr {
  color: #C1E5F6;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
}
@media (max-width: 1280px) {
  .triggerBlock__dscr {
    font-size: 18px;
  }
}
.triggerBlock__comment {
  padding: 25px;
  background: #097AAF;
  border-radius: 6px;
  display: flex;
  gap: 12px;
  align-items: center;
}
@media (max-width: 600px) {
  .triggerBlock__comment {
    flex-direction: column;
    gap: 20px;
  }
}
.triggerBlock__comment img {
  max-width: 140px;
}
.triggerBlock__comment-dscr {
  line-height: 1.5;
  position: relative;
  padding-left: 30px;
  margin-bottom: 47px;
}
@media (max-width: 400px) {
  .triggerBlock__comment-dscr {
    padding-top: 30px;
    padding-left: 0;
  }
}
.triggerBlock__comment-dscr::before {
  content: "";
  width: 20px;
  height: 20px;
  top: 0;
  left: 0;
  background-image: url("../images/icons/comment.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
@media (max-width: 400px) {
  .triggerBlock__comment-dscr::before {
    left: 50%;
    transform: translate(-50%, 0);
  }
}
.triggerBlock__comment-dscr p + p {
  margin-top: 10px;
}
.triggerBlock__comment-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-left: 30px;
  font-size: 14px;
  color: #C1E5F6;
  font-style: italic;
}
@media (max-width: 400px) {
  .triggerBlock__comment-bottom {
    padding-left: 0;
  }
}
.triggerBlock__comment-bottom b {
  display: block;
  color: #FFFFFF;
}
.triggerBlock__comment-bottom img {
  -o-object-fit: contain;
     object-fit: contain;
}
.triggerBlock__form {
  overflow: hidden;
  max-width: 529px;
  padding: 40px 60px;
  border-radius: 6px;
  background: #FFFFFF;
  box-shadow: 0px 4px 23px 0px rgba(0, 0, 0, 0.1);
  color: #383838;
}
@media (max-width: 1200px) {
  .triggerBlock__form {
    padding: 40px 30px;
  }
}
@media (max-width: 1000px) {
  .triggerBlock__form {
    max-width: 100%;
    width: 100%;
  }
}
@media (max-width: 430px) {
  .triggerBlock__form {
    padding: 30px 20px;
  }
}
.triggerBlock__form-title {
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 30px;
}
.triggerBlock__form .input__wrapper + .input__wrapper {
  margin-top: 10px;
}
.triggerBlock__form .input__wrapper {
  width: 100%;
  position: relative;
}
.triggerBlock__form .input__wrapper::before {
  content: "";
  width: 18px;
  height: 18px;
  top: 24px;
  left: 28px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.triggerBlock__form .input__wrapper.icon input, .triggerBlock__form .input__wrapper.icon textarea {
  padding-left: 57px;
}
.triggerBlock__form .input__wrapper.question::before {
  background-image: url("../images/icons/question_form.svg");
}
.triggerBlock__form .input__wrapper.date::before {
  background-image: url("../images/icons/date.svg");
}
.triggerBlock__form .input__wrapper.user::before {
  background-image: url("../images/icons/user.svg");
}
.triggerBlock__form .input__wrapper.phone::before {
  background-image: url("../images/icons/phone_form.svg");
}
.triggerBlock__form input, .triggerBlock__form textarea {
  width: 100%;
  border-radius: 6px;
  background: #EFEFEF;
  color: #585858;
  padding: 23px 20px;
  font-weight: 400;
  font-family: "Open Sans", sans-serif;
}
.triggerBlock__form input::-moz-placeholder, .triggerBlock__form textarea::-moz-placeholder {
  font-family: "Open Sans", sans-serif;
  color: #585858;
  font-weight: 400;
}
.triggerBlock__form input::placeholder, .triggerBlock__form textarea::placeholder {
  font-family: "Open Sans", sans-serif;
  color: #585858;
  font-weight: 400;
}
.triggerBlock__form button {
  margin-top: 15px;
  background: var(--colorRed);
  text-align: center;
  color: #FFFFFF;
  font-weight: 700;
  border-radius: 6px;
  padding: 23px;
  width: 100%;
  font-weight: 700;
  margin-bottom: 12px;
  overflow: hidden;
  position: relative;
  z-index: 0;
}
.triggerBlock__form button::before {
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #FF5E5E;
  transition: 0.3s ease;
  opacity: 0;
  z-index: -1;
}
.triggerBlock__form button:hover::before {
  opacity: 1;
}
.triggerBlock__form-polis {
  text-align: center;
  max-width: 248px;
  color: var(--textGray);
  font-size: 13px;
  line-height: 1.53;
  margin: 0 auto;
  margin-bottom: 35px;
}
.triggerBlock__form-polis a {
  border-bottom: 1px dashed #585858;
}
.triggerBlock__form-info {
  padding: 0 60px;
  margin: 0 -60px;
  padding-top: 30px;
  border-top: 1px solid rgba(112, 112, 112, 0.15);
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
@media (max-width: 1200px) {
  .triggerBlock__form-info {
    padding: 0 30px;
    margin: 0 -30px;
    padding-top: 30px;
  }
}
@media (max-width: 430px) {
  .triggerBlock__form-info {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 20px;
    margin: 0 -20px;
    padding-top: 20px;
  }
}
.triggerBlock__form-info-phone span, .triggerBlock__form-info-phone a {
  display: block;
}
.triggerBlock__form-info-phone span {
  font-size: 14px;
  line-height: 1.57;
}
.triggerBlock__form-info-phone a {
  margin: 2px 0 4px 0;
  font-size: 24px;
  font-weight: 600;
}
.triggerBlock__form-info-messengers span {
  max-width: 110px;
  display: block;
  font-size: 14px;
  line-height: 1.57;
  margin-bottom: 12px;
}
.triggerBlock__form-info-messengers-items {
  display: flex;
  gap: 10px;
}
@media (max-width: 430px) {
  .triggerBlock__form-info-messengers-items {
    justify-content: center;
  }
}
.triggerBlock__form-info-messengers-items img {
  width: 24px;
  transition: 0.3s ease;
}
.triggerBlock__form-info-messengers-items img:hover {
  opacity: 0.7;
}

.popup {
  background: rgba(13, 50, 77, 0.85);
  position: absolute;
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  pointer-events: none;
  opacity: 0;
  transition: 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  padding: 0 20px;
}
.popup.active {
  opacity: 1;
  pointer-events: auto;
}
.popup__body-wrapper {
  position: relative;
  max-width: 1312px;
  width: 100%;
}
.popup__body-wrapper .popup__close {
  cursor: pointer;
  position: absolute;
  width: 30px;
  height: 30px;
  background-image: url("../images/icons/closePopup.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  top: -40px;
  right: 0px;
}
.popup__body {
  border-radius: 6px;
  max-height: 83vh;
  overflow-y: auto;
}
.popup__body::-webkit-scrollbar {
  display: none;
}
.popup__body .assessQuality {
  padding: 40px 0;
}

.header {
  padding: 20px 0;
}
.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
@media (max-width: 1112px) {
  .header__inner {
    flex-wrap: wrap;
  }
}
@media (max-width: 600px) {
  .header__inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
  }
}
.header__logo {
  max-width: 321px;
}
.header__location {
  max-width: 260px;
  font-size: 15px;
  line-height: 1.46;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 600px) {
  .header__location {
    padding-left: 0;
    padding-top: 20px;
  }
}
.header__location::before {
  content: "";
  width: 12px;
  height: 16px;
  top: 0;
  left: 0;
  background-image: url("../images/icons/location.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
@media (max-width: 600px) {
  .header__location::before {
    left: 50%;
    transform: translate(-50%, 0);
  }
}
.header__location span {
  display: block;
}
.header__writeChats span {
  display: block;
  font-size: 13px;
  margin-bottom: 6px;
}
.header__writeChats-items {
  display: flex;
  gap: 10px;
}
@media (max-width: 600px) {
  .header__writeChats-items {
    justify-content: center;
  }
}
.header__writeChats-items img {
  width: 24px;
  transition: 0.3s ease;
}
.header__writeChats-items img:hover {
  opacity: 0.7;
}
.header__phone-tel {
  display: block;
  margin-bottom: 4px;
  font-size: 24px;
  font-weight: 600;
  position: relative;
  padding-left: 32px;
}
.header__phone-tel::before {
  content: "";
  width: 20px;
  height: 20px;
  top: 50%;
  transform: translate(0, -50%);
  left: 0;
  background-image: url("../images/icons/phone.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.header__phone-linkTo {
  width: -moz-max-content;
  width: max-content;
  margin-left: auto;
  display: block;
  color: var(--colorBlue);
  font-size: 14px;
  position: relative;
  padding-right: 17px;
}
@media (max-width: 600px) {
  .header__phone-linkTo {
    margin: 0 auto;
  }
}
.header__phone-linkTo p {
  position: relative;
}
.header__phone-linkTo p::before {
  content: "";
  width: 100%;
  height: 1px;
  bottom: 0;
  left: 0;
  border-bottom: 1px dashed var(--colorBlue);
  transition: 0.3s ease;
}
.header__phone-linkTo p:hover::before {
  opacity: 0;
}
.header__phone-linkTo::before {
  content: "";
  width: 10px;
  height: 10px;
  top: 50%;
  transform: translate(0, -50%);
  right: 0;
  background-image: url("../images/icons/aarrowLinkTo.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.promo {
  padding: 20px 0 90px 0;
}
@media (max-width: 1112px) {
  .promo {
    padding-bottom: 60px;
  }
}
.promo__inner {
  display: grid;
  grid-template-columns: repeat(2, minmax(auto, 1fr));
  gap: 30px;
  align-items: flex-end;
}
@media (max-width: 1240px) {
  .promo__inner {
    grid-template-columns: repeat(1, minmax(auto, 1fr));
  }
}
.promo__title {
  font-size: 40px;
  font-weight: 400;
  margin-bottom: 20px;
}
@media (max-width: 1366px) {
  .promo__title {
    font-size: 36px;
  }
}
@media (max-width: 700px) {
  .promo__title {
    font-size: 34px;
  }
}
@media (max-width: 500px) {
  .promo__title {
    font-size: 28px;
  }
}
@media (max-width: 410px) {
  .promo__title {
    font-size: 26px;
  }
}
.promo__el {
  width: -moz-max-content;
  width: max-content;
  text-align: center;
  padding: 5px 20px;
  border-radius: 6px;
  background: linear-gradient(90deg, #408FC6 0%, rgba(34, 158, 217, 0.78) 100%);
  color: #FFFFFF;
  margin-bottom: 30px;
  font-size: 22px;
}
@media (max-width: 500px) {
  .promo__el {
    width: auto;
    font-size: 18px;
    text-align: left;
    margin-bottom: 20px;
  }
}
.promo__text {
  max-width: 540px;
  font-size: 18px;
  margin-bottom: 30px;
}
@media (max-width: 600px) {
  .promo__text {
    font-size: 16px;
  }
}
.promo__trigger {
  padding: 30px 25px;
  background: var(--colorBlue);
  color: #FFFFFF;
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 30px;
}
@media (max-width: 1240px) {
  .promo__trigger {
    width: -moz-max-content;
    width: max-content;
  }
}
@media (max-width: 700px) {
  .promo__trigger {
    width: 100%;
  }
}
@media (max-width: 600px) {
  .promo__trigger {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
}
.promo__trigger-main {
  max-width: 390px;
  width: 100%;
}
.promo__trigger-title {
  font-size: 18px;
  margin-bottom: 20px;
}
.promo__trigger-btn {
  width: 100%;
  max-width: 380px;
  display: block;
  text-align: center;
  border-radius: 6px;
  background: linear-gradient(272deg, #FF8181 -0.76%, #FF7171 100%);
  font-weight: 700;
  padding: 23px;
  overflow: hidden;
  position: relative;
  z-index: 0;
}
.promo__trigger-btn::before {
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #FF5E5E;
  transition: 0.3s ease;
  opacity: 0;
  z-index: -1;
}
.promo__trigger-btn:hover::before {
  opacity: 1;
}
.promo__trigger img {
  max-width: 163px;
  border-radius: 50%;
}
@media (max-width: 600px) {
  .promo__trigger img {
    order: -1;
  }
}
@media (max-width: 1240px) {
  .promo__img {
    display: none;
  }
}

.benefits {
  padding: 40px 0;
  background: var(--colorBlue);
  color: #FFFFFF;
}
@media (max-width: 1112px) {
  .benefits {
    padding: 30px 0;
  }
}
.benefits__inner {
  display: grid;
  grid-template-columns: repeat(4, minmax(auto, 1fr));
  gap: 20px;
}
@media (max-width: 1000px) {
  .benefits__inner {
    grid-template-columns: repeat(2, minmax(auto, 1fr));
  }
}
@media (max-width: 440px) {
  .benefits__inner {
    grid-template-columns: repeat(1, minmax(auto, 1fr));
  }
}
.benefits__item img {
  max-width: 78px;
  margin: 0 auto;
  margin-bottom: 17px;
}
@media (max-width: 1112px) {
  .benefits__item img {
    max-width: 68px;
  }
}
.benefits__item-title {
  text-align: center;
}
.benefits__item-title b {
  display: block;
}
@media (max-width: 1365px) {
  .benefits__item-title b {
    display: inline;
  }
}

.salesPitch1__inner {
  display: grid;
  grid-template-columns: repeat(2, minmax(auto, 1fr));
  gap: 70px;
  align-items: center;
}
@media (max-width: 1200px) {
  .salesPitch1__inner {
    gap: 40px;
  }
}
@media (max-width: 1000px) {
  .salesPitch1__inner {
    grid-template-columns: repeat(1, minmax(auto, 1fr));
    gap: 30px;
  }
}
.salesPitch1__img {
  border-radius: 6px;
}
@media (max-width: 1112px) {
  .salesPitch1__img {
    height: 100%;
  }
}
@media (max-width: 1000px) {
  .salesPitch1__img {
    display: none;
  }
}
.salesPitch1__img img {
  height: 100%;
}
.salesPitch1__title {
  margin-bottom: 30px;
}
@media (max-width: 600px) {
  .salesPitch1__title {
    margin-bottom: 20px;
  }
}
.salesPitch1__list-item + .salesPitch1__list-item {
  margin-top: 13px;
}
@media (max-width: 500px) {
  .salesPitch1__list-item + .salesPitch1__list-item {
    margin-top: 20px;
  }
}
.salesPitch1__list-item {
  display: flex;
  align-items: center;
}
@media (max-width: 500px) {
  .salesPitch1__list-item {
    flex-direction: column;
    align-items: flex-start;
  }
}
.salesPitch1__list-item img {
  max-width: 98px;
  border-radius: 50%;
  position: relative;
  z-index: 10;
}
@media (max-width: 500px) {
  .salesPitch1__list-item img {
    margin-left: 20px;
    max-width: 88px;
  }
}
.salesPitch1__list-item-dscr {
  margin-left: -40px;
  padding: 20px 30px 20px 60px;
  border-radius: 6px;
  background: #FFF;
  box-shadow: 0px 4px 23px 0px rgba(0, 0, 0, 0.1);
  font-size: 18px;
  line-height: 1.44;
}
@media (max-width: 500px) {
  .salesPitch1__list-item-dscr {
    padding: 20px;
    padding-top: 55px;
    margin-left: 0;
    margin-top: -35px;
    font-size: 16px;
  }
}

.salesPitch2 {
  background: #EFEFEF;
}
.salesPitch2__title {
  margin-bottom: 40px;
  max-width: 1088px;
}
.salesPitch2__inner {
  position: relative;
  z-index: 0;
}
.salesPitch2__inner::after {
  content: "";
  width: 753px;
  aspect-ratio: 16/11.6;
  top: 0;
  right: 0;
  border-radius: 6px;
  background-image: url("../images/salesPitch2_bg.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
}
@media (max-width: 1100px) {
  .salesPitch2__inner::after {
    display: none;
  }
}
.salesPitch2__inner::before {
  content: "";
  width: 500px;
  aspect-ratio: 4/4;
  top: 50%;
  transform: translate(0, -50%);
  left: -250px;
  background-image: url("../images/salesPitch2_el.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  z-index: -1;
}
@media (max-width: 1100px) {
  .salesPitch2__inner::before {
    display: none;
  }
}
.salesPitch2__items-wrapper {
  max-width: 712px;
  display: flex;
  gap: 20px;
}
@media (max-width: 600px) {
  .salesPitch2__items-wrapper {
    flex-direction: column;
  }
}
.salesPitch2__items {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.salesPitch2__item {
  padding: 30px;
  border-radius: 6px;
  background: #FFF;
}
@media (max-width: 600px) {
  .salesPitch2__item {
    padding: 20px;
  }
}
.salesPitch2__item-title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.33;
  position: relative;
  margin-bottom: 11px;
  padding-left: 26px;
}
.salesPitch2__item-title::before {
  content: "";
  width: 16px;
  height: 16px;
  top: 3px;
  left: 0;
  background-image: url("../images/icons/check.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.salesPitch2__item-dscr {
  color: var(--textGray);
  line-height: 1.5;
}

.salesPitch3 {
  overflow: hidden;
}
.salesPitch3__title {
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
  margin-bottom: 25px;
}
.salesPitch3__dscr {
  text-align: center;
  max-width: 940px;
  margin: 0 auto;
  margin-bottom: 45px;
  color: var(--textGray);
}
@media (max-width: 600px) {
  .salesPitch3__dscr {
    margin-bottom: 25px;
  }
}
.salesPitch3__slider-wrapper {
  max-width: 1088px;
  margin: 0 auto;
  position: relative;
}
.salesPitch3__slider .slick-list {
  margin: -50px;
}
.salesPitch3__slider .slick-dots {
  width: -moz-max-content;
  width: max-content;
  margin: 0 auto;
  display: flex;
  align-items: center;
  margin-top: 40px;
  position: relative;
  z-index: 1;
}
@media (max-width: 600px) {
  .salesPitch3__slider .slick-dots {
    margin-top: 30px;
  }
}
.salesPitch3__slider .slick-dots li {
  list-style: none;
  margin: 0px 5px;
  cursor: pointer;
  height: 10px;
  width: 10px;
  background-color: transparent;
  border: 1px solid #707070;
  border-radius: 50%;
}
.salesPitch3__slider .slick-dots li button {
  display: none;
}
.salesPitch3__slider .slick-dots li.slick-active {
  background-color: #707070;
}
.salesPitch3__slider-item {
  margin: 50px;
  display: flex !important;
  justify-content: space-between;
  gap: 40px;
  padding: 10px;
  border-radius: 6px;
  background: #FFF;
  box-shadow: 0px 6px 45px 0px rgba(0, 0, 0, 0.08);
}
@media (max-width: 1112px) {
  .salesPitch3__slider-item {
    gap: 20px;
  }
}
@media (max-width: 1000px) {
  .salesPitch3__slider-item {
    flex-direction: column;
  }
}
.salesPitch3__slider-item-img {
  max-width: 489px;
  width: 100%;
  position: relative;
  border-radius: 6px;
  overflow: hidden;
}
@media (max-width: 1000px) {
  .salesPitch3__slider-item-img {
    max-width: 100%;
    max-height: 600px;
  }
}
.salesPitch3__slider-item-img .salesPitch3__slider__main__inner {
  height: 100%;
}
.salesPitch3__slider-item-img .salesPitch3__slider__main__inner .slick-list {
  margin: 0;
  height: 100%;
}
.salesPitch3__slider-item-img .salesPitch3__slider__main__inner .slick-track {
  height: 100%;
}
.salesPitch3__slider-item-img .salesPitch3__slider__main__inner img {
  height: 100%;
}
.salesPitch3__slider-item-imgs {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translate(-50%, 0%);
  width: calc(100% - 60px);
}
.salesPitch3__slider-item-imgs .slick-list {
  margin: 0 -5px;
}
.salesPitch3__slider-item-imgs .slick-dots {
  margin: 0 auto;
  margin-top: 15px;
}
.salesPitch3__slider-item-imgs .slick-dots li {
  border-color: #fff;
}
.salesPitch3__slider-item-imgs .slick-dots li button {
  display: none;
}
.salesPitch3__slider-item-imgs .slick-dots li.slick-active {
  border-color: var(--colorRed);
  background: var(--colorRed);
}
.salesPitch3__slider-item-imgs img {
  cursor: pointer;
  border-radius: 6px;
  border: 2px solid #FFF;
  background: #FFF;
  aspect-ratio: 4/3.3;
  margin: 0 5px;
  transition: 0.3s ease;
}
.salesPitch3__slider-item-imgs img.slick-current {
  border-color: var(--colorRed);
}
.salesPitch3__slider-item-content {
  max-width: 598px;
  width: 100%;
}
@media (max-width: 1000px) {
  .salesPitch3__slider-item-content {
    max-width: 100%;
  }
}
.salesPitch3__slider-item-title {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 8px;
}
@media (max-width: 600px) {
  .salesPitch3__slider-item-title {
    font-size: 18px;
  }
}
.salesPitch3__slider-item-location {
  font-size: 18px;
  line-height: 1.55;
  position: relative;
  padding-left: 22px;
  margin-bottom: 25px;
}
.salesPitch3__slider-item-location::before {
  content: "";
  width: 12px;
  height: 16px;
  top: 50%;
  transform: translate(0, -50%);
  left: 0;
  background-image: url("../images/icons/location_blue.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
@media (max-width: 600px) {
  .salesPitch3__slider-item-location {
    font-size: 16px;
  }
}
.salesPitch3__slider-item-body {
  padding: 20px 30px;
  border-radius: 6px;
  background: #EFEFEF;
}
@media (max-width: 600px) {
  .salesPitch3__slider-item-body {
    padding: 20px;
  }
}
.salesPitch3__slider-item-body-item + .salesPitch3__slider-item-body-item {
  margin-top: 17px;
}
.salesPitch3__slider-item-body-item span {
  display: block;
  font-weight: 700;
  line-height: 1.75;
  margin-bottom: 3px;
}
.salesPitch3__slider-item-body-item p {
  color: var(--textGray);
  line-height: 1.5;
}
.salesPitch3__slider-item-info {
  margin-top: 24px;
  display: flex;
  justify-content: space-between;
  gap: 10px;
}
@media (max-width: 600px) {
  .salesPitch3__slider-item-info {
    flex-direction: column;
  }
}
.salesPitch3__slider-item-info-item {
  border-radius: 6px;
  background: #FFF;
  text-align: center;
  padding: 15px;
  color: var(--colorBlue);
}
@media (max-width: 600px) {
  .salesPitch3__slider-item-info-item {
    padding: 10px;
    font-size: 14px;
  }
}
.salesPitch3__slider-item-info-item span {
  line-height: 1.75;
  display: block;
}
.salesPitch3__slider-item-info-item b {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.55;
}

.selectSystem__title {
  max-width: 1017px;
  margin-bottom: 25px;
}
.selectSystem__el {
  width: -moz-max-content;
  width: max-content;
  padding: 5px 20px;
  color: #FFFFFF;
  font-size: 20px;
  line-height: 1.4;
  border-radius: 6px;
  background: linear-gradient(90deg, #408FC6 0%, rgba(34, 158, 217, 0.78) 100%);
  margin-bottom: 40px;
}
@media (max-width: 750px) {
  .selectSystem__el {
    width: auto;
    font-size: 18px;
    margin-bottom: 25px;
  }
}
.selectSystem__dscr {
  width: -moz-max-content;
  width: max-content;
  font-size: 20px;
  color: var(--textGray);
  line-height: 1.4;
  margin-bottom: 50px;
  position: relative;
}
@media (max-width: 750px) {
  .selectSystem__dscr {
    width: auto;
    padding-right: 40px;
    font-size: 18px;
  }
}
@media (max-width: 600px) {
  .selectSystem__dscr {
    margin-bottom: 30px;
  }
}
.selectSystem__dscr::before {
  content: "";
  width: 35px;
  height: 9px;
  top: 17px;
  right: -40px;
  transform: rotate(44.597deg);
  background-image: url("../images/icons/selectSystem_arrow.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
@media (max-width: 750px) {
  .selectSystem__dscr::before {
    right: 0;
  }
}
.selectSystem__tabs {
  display: flex;
  gap: 30px;
}
@media (max-width: 1112px) {
  .selectSystem__tabs {
    gap: 20px;
  }
}
@media (max-width: 700px) {
  .selectSystem__tabs {
    display: grid;
    grid-template-columns: repeat(2, minmax(auto, 1fr));
    gap: 20px;
  }
}
@media (max-width: 450px) {
  .selectSystem__tabs {
    gap: 10px;
  }
}
.selectSystem__tab {
  cursor: pointer;
  width: 305px;
  text-align: center;
  text-transform: uppercase;
  font-weight: 700;
  line-height: 1.75;
  padding: 22px;
  border-radius: 6px 6px 0px 0px;
  border: 2px solid #EFEFEF;
  background: #FFF;
  margin-bottom: -1px;
}
@media (max-width: 1112px) {
  .selectSystem__tab {
    padding: 18px;
  }
}
@media (max-width: 700px) {
  .selectSystem__tab {
    width: auto;
  }
}
@media (max-width: 600px) {
  .selectSystem__tab {
    font-size: 14px;
  }
}
.selectSystem__tab p {
  padding-left: 57px;
  width: -moz-max-content;
  width: max-content;
  margin: 0 auto;
  position: relative;
}
@media (max-width: 500px) {
  .selectSystem__tab p {
    padding-left: 0;
  }
}
.selectSystem__tab.active {
  background: #EFEFEF;
}
.selectSystem__tab.active:first-child p::before {
  background-image: url("../images/icons/selectSystem__tab-1-active.svg");
}
.selectSystem__tab.active:last-child p::before {
  background-image: url("../images/icons/selectSystem__tab-2-active.svg");
}
.selectSystem__tab p::before {
  content: "";
  width: 40px;
  height: 40px;
  top: 50%;
  transform: translate(0, -50%);
  left: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media (max-width: 500px) {
  .selectSystem__tab p::before {
    display: none;
  }
}
.selectSystem__tab:first-child p::before {
  background-image: url("../images/icons/selectSystem__tab-1.svg");
}
.selectSystem__tab:last-child p::before {
  background-image: url("../images/icons/selectSystem__tab-2.svg");
}
.selectSystem__tabContent {
  padding: 50px 60px;
  margin: 0 -60px;
  border-radius: 6px;
  background: #EFEFEF;
  display: flex;
  gap: 30px;
}
@media (max-width: 1450px) {
  .selectSystem__tabContent {
    padding: 50px 30px;
    margin: 0 -30px;
  }
}
@media (max-width: 1112px) {
  .selectSystem__tabContent {
    flex-direction: column;
  }
}
@media (max-width: 700px) {
  .selectSystem__tabContent {
    margin: 0 -20px;
    padding: 30px 20px;
  }
}
.selectSystem__tabContent img {
  max-width: 529px;
  border-radius: 6px;
}
@media (max-width: 1280px) {
  .selectSystem__tabContent img {
    max-width: 450px;
  }
}
@media (max-width: 1200px) {
  .selectSystem__tabContent img {
    max-width: 400px;
  }
}
@media (max-width: 1112px) {
  .selectSystem__tabContent img {
    max-width: 100%;
    aspect-ratio: 16/8;
  }
}
.selectSystem__tabContent-items {
  max-width: 722px;
  display: grid;
  grid-template-columns: repeat(2, minmax(auto, 1fr));
  gap: 20px;
  align-items: flex-start;
}
@media (max-width: 1400px) {
  .selectSystem__tabContent-items {
    align-items: stretch;
  }
}
@media (max-width: 1112px) {
  .selectSystem__tabContent-items {
    max-width: 100%;
  }
}
@media (max-width: 500px) {
  .selectSystem__tabContent-items {
    grid-template-columns: repeat(1, minmax(auto, 1fr));
  }
}

.warranty {
  background-image: url("../images/warranty_bg.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  color: #FFFFFF;
  padding-bottom: 70px;
}
.warranty__title {
  margin-bottom: 40px;
  max-width: 1017px;
}
@media (max-width: 600px) {
  .warranty__title {
    margin-bottom: 25px;
  }
}
.warranty__inner {
  display: flex;
  align-items: start;
  gap: 100px;
  margin-top: -40px;
}
@media (max-width: 1300px) {
  .warranty__inner {
    align-items: center;
    gap: 50px;
    display: grid;
    grid-template-columns: 0.55fr 0.45fr;
  }
}
@media (max-width: 1000px) {
  .warranty__inner {
    grid-template-columns: 1fr;
  }
}
.warranty__content {
  padding-top: 40px;
}
.warranty__list {
  max-width: 540px;
  margin-bottom: 30px;
}
@media (max-width: 1300px) {
  .warranty__list {
    max-width: 100%;
  }
}
.warranty__item + .warranty__item {
  margin-top: 16px;
}
.warranty__item {
  display: flex;
  align-items: flex-start;
}
@media (max-width: 500px) {
  .warranty__item {
    flex-direction: column;
  }
}
.warranty__item img {
  margin-top: 10px;
  max-width: 98px;
  position: relative;
  z-index: 10;
}
@media (max-width: 500px) {
  .warranty__item img {
    margin-top: 0;
    margin-left: 20px;
    max-width: 88px;
  }
}
.warranty__item-body {
  padding: 20px;
  padding-left: 60px;
  border-radius: 6px;
  background: #FFF;
  box-shadow: 0px 4px 23px 0px rgba(0, 0, 0, 0.1);
  margin-left: -40px;
}
@media (max-width: 500px) {
  .warranty__item-body {
    padding-left: 20px;
    margin-left: 0;
    padding-top: 60px;
    margin-top: -50px;
  }
}
.warranty__item-title {
  color: #383838;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.33;
  margin-bottom: 11px;
}
.warranty__item-dscr {
  color: var(--textGray);
  line-height: 1.5;
}
.warranty__btn {
  margin-left: 60px;
  max-width: 417px;
  width: 100%;
  padding: 23px;
  text-align: center;
  border-radius: 6px;
  background: linear-gradient(272deg, #FF8181 -0.76%, #FF7171 100%);
  color: #FFFFFF;
  font-weight: 700;
  overflow: hidden;
  position: relative;
  z-index: 0;
}
@media (max-width: 1300px) {
  .warranty__btn {
    max-width: calc(100% - 60px);
  }
}
@media (max-width: 500px) {
  .warranty__btn {
    max-width: 100%;
    margin-left: 0;
  }
}
.warranty__btn::before {
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #FF5E5E;
  transition: 0.3s ease;
  opacity: 0;
  z-index: -1;
}
.warranty__btn:hover::before {
  opacity: 1;
}
.warranty__img {
  max-width: 680px;
}
@media (max-width: 1300px) {
  .warranty__img {
    max-width: 100%;
  }
}
@media (max-width: 1000px) {
  .warranty__img {
    display: none;
  }
}

.selectSystem2__tabContent {
  display: grid;
  grid-template-columns: repeat(2, minmax(auto, 1fr));
  gap: 30px;
}
@media (max-width: 800px) {
  .selectSystem2__tabContent {
    grid-template-columns: repeat(1, minmax(auto, 1fr));
    gap: 20px;
  }
}
.selectSystem2__item img {
  aspect-ratio: 16/6.3;
  max-width: 100%;
  border-radius: 6px;
  margin-bottom: 25px;
}
.selectSystem2__item-title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.44;
  margin-bottom: 10px;
}
.selectSystem2__item-dscr {
  line-height: 1.5;
  color: var(--textGray);
}

.installation {
  background: #EFEFEF;
}
.installation__title {
  margin-bottom: 50px;
}
@media (max-width: 1280px) {
  .installation__title {
    margin-bottom: 30px;
  }
}
.installation__inner {
  display: flex;
  gap: 60px;
}
@media (max-width: 1280px) {
  .installation__inner {
    gap: 40px;
  }
}
@media (max-width: 1100px) {
  .installation__inner {
    gap: 20px;
  }
}
@media (max-width: 1000px) {
  .installation__inner {
    flex-direction: column;
    gap: 30px;
  }
}
.installation__slider-wrapper {
  position: relative;
  max-width: 670px;
  width: 46.53vw;
}
@media (max-width: 1000px) {
  .installation__slider-wrapper {
    max-width: 100%;
    width: 100%;
    aspect-ratio: 16/12;
  }
  .installation__slider-wrapper .slider-arrow {
    display: flex;
  }
}
.installation__slider-wrapper .slick-dots {
  width: -moz-max-content;
  width: max-content;
  margin: 0 auto;
  display: flex;
  align-items: center;
  margin-top: -30px;
  position: relative;
  z-index: 1;
}
.installation__slider-wrapper .slick-dots li {
  list-style: none;
  margin: 0px 5px;
  cursor: pointer;
  height: 10px;
  width: 10px;
  background-color: transparent;
  border: 1px solid #FFFFFF;
  border-radius: 50%;
}
.installation__slider-wrapper .slick-dots li button {
  display: none;
}
.installation__slider-wrapper .slick-dots li.slick-active {
  background-color: #F5F5F5;
}
.installation__slider {
  height: 100%;
}
.installation__slider .slick-list, .installation__slider .slick-track {
  height: 100%;
}
.installation__slider img {
  border-radius: 6px;
  height: 100%;
}
.installation__item + .installation__item {
  margin-top: 20px;
}
.installation__item {
  display: flex;
  border-radius: 6px;
  overflow: hidden;
}
.installation__item img {
  max-width: 87px;
}
.installation__item-body {
  padding: 20px;
  font-size: 18px;
  line-height: 1.44;
  background: #FFF;
}
@media (max-width: 500px) {
  .installation__item-body {
    font-size: 16px;
  }
}

.assessQuality {
  counter-reset: assessQuality;
}
.assessQuality__title {
  margin-bottom: 20px;
}
.assessQuality__dscr {
  max-width: 580px;
  margin-bottom: 30px;
}
.assessQuality__content {
  max-width: 710px;
}
@media (max-width: 1000px) {
  .assessQuality__content {
    max-width: 100%;
    width: 100%;
  }
}
.assessQuality__list {
  margin-bottom: 40px;
}
.assessQuality__list li + li {
  margin-top: 20px;
}
.assessQuality__list li {
  font-size: 18px;
  line-height: 1.44;
  padding-left: 34px;
  position: relative;
}
@media (max-width: 600px) {
  .assessQuality__list li {
    font-size: 16px;
  }
}
.assessQuality__list li::before {
  counter-increment: assessQuality;
  content: counter(assessQuality);
  width: 24px;
  aspect-ratio: 4/4;
  top: 50%;
  transform: translate(0, -50%);
  left: 0;
  background: var(--colorRed);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
}

.history {
  overflow: hidden;
}
.history__inner {
  display: flex;
  gap: 40px;
  position: relative;
  z-index: 0;
}
.history__inner::before {
  content: "";
  width: 500px;
  aspect-ratio: 4/4;
  top: 70%;
  transform: translate(0, -50%);
  right: -300px;
  background-image: url("../images/history_el.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  z-index: -1;
}
@media (max-width: 1280px) {
  .history__inner::before {
    display: none;
  }
}
@media (max-width: 1000px) {
  .history__inner {
    flex-direction: column;
  }
}
.history__img {
  max-width: 529px;
  width: 36.74vw;
  border-radius: 6px;
  overflow: hidden;
}
@media (max-width: 1200px) {
  .history__img {
    width: 50vw;
  }
}
@media (max-width: 1000px) {
  .history__img {
    display: none;
  }
}
.history__img img {
  height: 100%;
}
.history__content {
  max-width: 712px;
}
@media (max-width: 1000px) {
  .history__content {
    max-width: 100%;
  }
}
.history__title {
  margin-bottom: 16px;
  max-width: 670px;
}
.history__el {
  width: -moz-max-content;
  width: max-content;
  padding: 5px 20px;
  color: #FFFFFF;
  font-size: 20px;
  line-height: 1.4;
  border-radius: 6px;
  background: linear-gradient(90deg, #408FC6 0%, rgba(34, 158, 217, 0.78) 100%);
  margin-bottom: 40px;
}
@media (max-width: 1200px) {
  .history__el {
    width: auto;
    font-size: 18px;
    margin-bottom: 25px;
  }
}
.history__items {
  display: grid;
  grid-template-columns: repeat(2, minmax(auto, 1fr));
  gap: 20px;
}
@media (max-width: 500px) {
  .history__items {
    grid-template-columns: repeat(1, minmax(auto, 1fr));
  }
}
.history__items .salesPitch2__item {
  background: #EFEFEF;
}

.reviews {
  background: #EFEFEF;
}
.reviews__title {
  font-weight: 700;
  text-align: center;
  margin-bottom: 50px;
}
@media (max-width: 1280px) {
  .reviews__title {
    margin-bottom: 30px;
  }
}
.reviews__tabs {
  display: flex;
  justify-content: center;
  gap: 30px;
}
@media (max-width: 1112px) {
  .reviews__tabs {
    gap: 20px;
  }
}
.reviews__tab {
  cursor: pointer;
  width: 305px;
  text-align: center;
  border-radius: 6px 6px 0px 0px;
  border: 2px solid #FFF;
  background: #EFEFEF;
  padding: 22px;
  text-transform: uppercase;
  font-weight: 700;
  line-height: 1.75;
}
@media (max-width: 600px) {
  .reviews__tab {
    font-size: 14px;
  }
}
.reviews__tab.active {
  background: #FFF;
}
.reviews__tab.active:first-child p::before {
  background-image: url("../images/icons/write_active.svg");
}
.reviews__tab.active:last-child p::before {
  background-image: url("../images/icons/play_active.svg");
}
.reviews__tab p {
  width: -moz-max-content;
  width: max-content;
  margin: 0 auto;
  padding-left: 57px;
  position: relative;
}
@media (max-width: 500px) {
  .reviews__tab p {
    padding-left: 0;
  }
}
.reviews__tab p::before {
  content: "";
  width: 40px;
  height: 40px;
  top: 50%;
  transform: translate(0, -50%);
  left: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
@media (max-width: 500px) {
  .reviews__tab p::before {
    display: none;
  }
}
.reviews__tab:first-child p::before {
  background-image: url("../images/icons/write.svg");
}
.reviews__tab:last-child p::before {
  background-image: url("../images/icons/play.svg");
}
@media (max-width: 1112px) {
  .reviews__tab {
    padding: 18px;
  }
}
@media (max-width: 700px) {
  .reviews__tab {
    width: auto;
  }
}
.reviews__content {
  border-radius: 6px;
  background: #FFF;
  padding: 60px;
  margin: 0 -60px;
}
@media (max-width: 1450px) {
  .reviews__content {
    padding: 50px 30px;
    margin: 0 -30px;
  }
}
@media (max-width: 1280px) {
  .reviews__content {
    padding: 40px 30px;
    margin: 0 -40px;
  }
}
@media (max-width: 700px) {
  .reviews__content {
    padding: 30px 20px;
    margin: 0 -20px;
  }
}
.reviews__item + .reviews__item {
  margin-top: 20px;
}
.reviews__item {
  padding: 40px 30px;
  background: #EFEFEF;
  border-radius: 6px;
  justify-content: space-between;
  gap: 20px;
  display: none;
}
.reviews__item.active {
  display: flex;
}
@media (max-width: 600px) {
  .reviews__item {
    padding: 30px 20px;
  }
}
.reviews__item-top {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}
.reviews__item-top img {
  max-width: 100px;
  border-radius: 50%;
}
@media (max-width: 600px) {
  .reviews__item-top img {
    max-width: 80px;
  }
}
.reviews__item-title {
  font-weight: 700;
  line-height: 1.5;
}
.reviews__item-content {
  max-width: 657px;
}
.reviews__item-dscr {
  color: var(--textGray);
  line-height: 1.5;
  position: relative;
}
@media (max-width: 600px) {
  .reviews__item-dscr {
    font-size: 15px;
  }
}
.reviews__item-dscr .lastDscr {
  display: none;
}
.reviews__item-dscr.active::before {
  display: none;
}
.reviews__item-dscr::before {
  content: "";
  width: 100%;
  height: 212px;
  bottom: 0;
  left: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #EFEFEF 100%);
}
.reviews__item-dscr p + p {
  margin-top: 10px;
}
.reviews__item-dscr ul {
  list-style: inside;
}
.reviews__item-dscr ul, .reviews__item-dscr ol {
  margin: 10px 0;
  margin-left: 22px;
}
.reviews__item-dscr ul li + li, .reviews__item-dscr ol li + li {
  margin-top: 10px;
}
.reviews__item-btn {
  cursor: pointer;
  display: inline-block;
  color: var(--colorBlue);
  padding-right: 20px;
  position: relative;
}
@media (max-width: 600px) {
  .reviews__item-btn {
    font-size: 14px;
  }
}
.reviews__item-btn::before {
  content: "";
  width: 10px;
  height: 10px;
  top: 50%;
  transform: translate(0, -50%);
  right: 0;
  background-image: url("../images/icons/reviews_arrow_btn.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: 0.3s ease;
}
.reviews__item-btn.active::before {
  transform: translate(0, -50%) rotate(180deg);
}
.reviews__item-btn p {
  border-bottom: 1px dashed var(--colorBlue);
}
.reviews__item-img {
  max-width: 500px;
  border-radius: 6px;
  overflow: hidden;
}
@media (max-width: 1000px) {
  .reviews__item-img {
    display: none;
  }
}
.reviews__video-wrapper {
  display: grid;
  grid-template-columns: repeat(3, minmax(auto, 1fr));
  gap: 30px;
}
@media (max-width: 1100px) {
  .reviews__video-wrapper {
    grid-template-columns: repeat(2, minmax(auto, 1fr));
    gap: 20px;
  }
}
@media (max-width: 600px) {
  .reviews__video-wrapper {
    grid-template-columns: repeat(1, minmax(auto, 1fr));
  }
}
.reviews__video-item {
  border-radius: 6px;
  overflow: hidden;
  display: none;
}
.reviews__video-item.active {
  display: block;
}
.reviews__video-item-img {
  cursor: pointer;
  position: relative;
}
.reviews__video-item-img img {
  height: 276px;
}
@media (max-width: 450px) {
  .reviews__video-item-img img {
    height: 250px;
  }
}
.reviews__video-item-img .count {
  position: absolute;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.185;
  font-style: italic;
  padding: 2px 10px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.9);
  top: 37px;
  right: 75px;
}
.reviews__video-item-img .count::before {
  content: "";
  width: 60px;
  height: 60px;
  top: 50%;
  transform: translate(0, -50%);
  right: -55px;
  background-image: url("../images/icons/play_reviews.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.reviews__video-item-body {
  padding: 25px;
  background: #EFEFEF;
  padding-left: 55px;
}
.reviews__video-item-title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.44;
  margin-bottom: 10px;
  position: relative;
}
.reviews__video-item-title::before {
  content: "";
  width: 20px;
  height: 20px;
  top: 0;
  left: -30px;
  background-image: url("../images/icons/comment.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.reviews__video-item-dscr {
  color: var(--textGray);
  line-height: 1.5;
  margin-bottom: 10px;
}
@media (max-width: 600px) {
  .reviews__video-item-dscr {
    font-size: 15px;
  }
}
.reviews__video-item-name {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.71;
  font-style: italic;
}
.reviews__btn-add {
  cursor: pointer;
  max-width: 379px;
  padding: 23px;
  text-align: center;
  color: var(--colorBlue);
  font-size: 15px;
  font-weight: 700;
  border-radius: 6px;
  border: 2px solid #408FC6;
  margin: 0 auto;
  margin-top: 40px;
  display: none;
  transition: 0.3s ease;
}
@media (max-width: 600px) {
  .reviews__btn-add {
    margin-top: 30px;
  }
}
.reviews__btn-add p {
  width: -moz-max-content;
  width: max-content;
  margin: 0 auto;
  position: relative;
  padding-right: 24px;
}
.reviews__btn-add p::before {
  content: "";
  width: 16px;
  height: 16px;
  top: 50%;
  transform: translate(0, -50%);
  right: 0;
  background-image: url("../images/icons/add_reviews_btn.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
@media (max-width: 500px) {
  .reviews__btn-add {
    max-width: 100%;
  }
}
.reviews__btn-add:hover {
  background: #2C7AB0;
  color: #FFFFFF;
}
.reviews__btn-add:hover p::before {
  background-image: url("../images/icons/add_reviews_btn_white.svg");
}

.product__title {
  max-width: 960px;
  margin-bottom: 50px;
}
@media (max-width: 1280px) {
  .product__title {
    margin-bottom: 30px;
  }
}
.product__tabs {
  display: flex;
  gap: 30px;
}
@media (max-width: 1280px) {
  .product__tabs {
    gap: 20px;
  }
}
@media (max-width: 1100px) {
  .product__tabs {
    display: grid;
    grid-template-columns: repeat(3, minmax(auto, 1fr));
  }
}
@media (max-width: 400px) {
  .product__tabs {
    grid-template-columns: repeat(1, minmax(auto, 1fr));
    gap: 5px;
  }
}
.product__tab {
  cursor: pointer;
  padding: 22px;
  border-radius: 6px 6px 0px 0px;
  border: 2px solid #EFEFEF;
  background: #FFF;
  text-align: center;
  font-weight: 700;
  line-height: 1.75;
  text-transform: uppercase;
  width: 305px;
}
@media (max-width: 1100px) {
  .product__tab {
    width: auto;
  }
}
@media (max-width: 600px) {
  .product__tab {
    font-size: 14px;
  }
}
.product__tab.active {
  background: #EFEFEF;
}
.product__tabContent {
  padding: 50px 60px;
  border-radius: 6px;
  background: #EFEFEF;
  margin: 0 -60px;
}
@media (max-width: 1450px) {
  .product__tabContent {
    padding: 50px 30px;
    margin: 0 -30px;
  }
}
@media (max-width: 700px) {
  .product__tabContent {
    margin: 0 -20px;
    padding: 30px 20px;
  }
}
.product__items {
  display: grid;
  grid-template-columns: repeat(2, minmax(auto, 1fr));
  gap: 30px;
}
@media (max-width: 1000px) {
  .product__items {
    grid-template-columns: repeat(1, minmax(auto, 1fr));
    gap: 20px;
  }
}
.product__item {
  border-radius: 6px;
  overflow: hidden;
  background: #EFEFEF;
}
.product__item:first-child .product__item-title {
  background: #B2E6FF;
}
.product__item:first-child .product__item-inner {
  border: 2px solid #B2E6FF;
}
.product__item:first-child .product__item-list {
  border-bottom: 1px solid #B2E6FF;
}
.product__item:first-child .product__item-bottom span {
  color: var(--colorBlue);
}
.product__item:last-child .product__item-title {
  background: #FFD0D0;
}
.product__item:last-child .product__item-inner {
  border: 2px solid #FFD0D0;
}
.product__item:last-child .product__item-list {
  border-bottom: 1px solid #FFD0D0;
}
.product__item:last-child .product__item-bottom span {
  color: var(--colorRed);
}
.product__item-title {
  padding: 16px;
  font-size: 20px;
  text-transform: uppercase;
  font-weight: 700;
  border: 0px solid #FFF;
  text-align: center;
}
@media (max-width: 600px) {
  .product__item-title {
    font-size: 18px;
  }
}
.product__item-list {
  padding: 25px 30px;
}
.product__item-list-top {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 17px;
}
.product__item-list-top img {
  width: 56px;
}
.product__item-list-title {
  font-size: 18px;
  font-weight: 700;
}
.product__item-list ul {
  color: var(--textGray);
  line-height: 1.5;
}
.product__item-list ul li + li {
  margin-top: 7px;
}
.product__item-list ul li {
  position: relative;
  padding-left: 16px;
}
.product__item-list ul li::before {
  content: "";
  width: 6px;
  height: 6px;
  top: 8px;
  left: 0;
  border-radius: 50%;
  background: var(--colorBlue);
}
.product__item-inner {
  margin-bottom: 30px;
}
.product__item-bottom {
  padding: 20px;
  background: #FFF;
  display: grid;
  grid-template-columns: repeat(2, minmax(auto, 1fr));
  align-items: center;
  font-size: 18px;
  line-height: 1.33;
  text-align: center;
  position: relative;
}
@media (max-width: 600px) {
  .product__item-bottom {
    grid-template-columns: repeat(1, minmax(auto, 1fr));
    gap: 30px;
  }
}
.product__item-bottom::before {
  content: "";
  width: 1px;
  height: 100%;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
  border-left: 1px dashed #EFEFEF;
}
.product__item-bottom::after {
  content: "";
  width: 28px;
  height: 28px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-image: url("../images/icons/plusKP.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
@media (max-width: 600px) {
  .product__item-bottom::before, .product__item-bottom::after {
    display: none;
  }
}
@media (max-width: 600px) {
  .product__item-bottom .item:first-child {
    padding-bottom: 30px;
    position: relative;
    border-bottom: 1px dashed #EFEFEF;
  }
  .product__item-bottom .item:first-child::before {
    content: "";
    width: 28px;
    height: 28px;
    bottom: -14px;
    left: 50%;
    transform: translate(-50%, 0);
    background-image: url("../images/icons/plusKP.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
  }
}
.product__item-bottom p + p {
  margin-top: 18px;
}
@media (max-width: 600px) {
  .product__item-bottom p + p {
    margin-top: 10px;
  }
}
.product__item-bottom span {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.5;
}
.product__item-btn {
  width: 100%;
  padding: 23px;
  color: #FFFFFF;
  font-weight: 700;
  border-radius: 6px;
  background: linear-gradient(272deg, #FF8181 -0.76%, #FF7171 100%);
  overflow: hidden;
  position: relative;
  z-index: 0;
}
.product__item-btn::before {
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #FF5E5E;
  transition: 0.3s ease;
  opacity: 0;
  z-index: -1;
}
.product__item-btn:hover::before {
  opacity: 1;
}

.help {
  background: #EFEFEF;
}
.help__title {
  max-width: 1000px;
  margin-bottom: 50px;
}
@media (max-width: 1280px) {
  .help__title {
    margin-bottom: 30px;
  }
}
.help__img img {
  border-radius: 6px;
  aspect-ratio: 16/7;
}
@media (max-width: 600px) {
  .help__img {
    display: none;
  }
}
.help__items {
  margin-top: -120px;
  padding: 0 50px;
  display: grid;
  grid-template-columns: repeat(4, minmax(auto, 1fr));
  gap: 20px;
}
@media (max-width: 1200px) {
  .help__items {
    grid-template-columns: repeat(2, minmax(auto, 1fr));
  }
}
@media (max-width: 800px) {
  .help__items {
    grid-template-columns: repeat(1, minmax(auto, 1fr));
    margin-top: -50px;
  }
}
@media (max-width: 600px) {
  .help__items {
    padding: 0;
    margin: 0;
  }
}
.help__item {
  border-radius: 6px;
  background: #FFF;
  overflow: hidden;
}
.help__item img {
  height: 130px;
}
@media (max-width: 1200px) {
  .help__item img {
    height: 200px;
  }
}
@media (max-width: 800px) {
  .help__item img {
    height: 130px;
  }
}
.help__item-body {
  padding: 30px;
  padding-top: 22px;
}
@media (max-width: 1280px) {
  .help__item-body {
    padding: 20px;
  }
}
.help__item-title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.44;
  margin-bottom: 10px;
}
.help__item-dscr {
  color: var(--textGray);
  line-height: 1.5;
}

.questions__title {
  margin-bottom: 40px;
}
@media (max-width: 1280px) {
  .questions__title {
    margin-bottom: 30px;
  }
}
.questions__inner {
  align-items: flex-start;
}
@media (max-width: 1000px) {
  .questions__inner {
    flex-direction: column;
  }
}
.questions__content {
  max-width: 640px;
}
@media (max-width: 1000px) {
  .questions__content {
    max-width: 100%;
    width: 100%;
  }
}
.questions__item + .questions__item {
  margin-top: 20px;
}
.questions__item {
  padding: 20px 30px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  cursor: pointer;
}
@media (max-width: 600px) {
  .questions__item {
    padding: 20px;
  }
}
.questions__item-title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.33;
  padding-right: 25px;
  position: relative;
}
.questions__item-title.accordion-active::before {
  transform: rotate(180deg);
}
.questions__item-title::before {
  content: "";
  width: 14px;
  height: 14px;
  top: 5px;
  right: 0;
  background-image: url("../images/icons/questions_arrow.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: 0.3s ease;
}
.questions__item-dscr {
  max-width: 80%;
  display: none;
  margin-top: 10px;
  line-height: 1.5;
}
.questions__form-top {
  background: #EFEFEF;
  display: flex;
  gap: 30px;
  padding: 30px 20px 40px 60px;
  margin: -40px -60px 40px -60px;
}
@media (max-width: 1200px) {
  .questions__form-top {
    padding: 30px 20px 40px 30px;
    margin: -40px -30px 40px -30px;
  }
}
@media (max-width: 600px) {
  .questions__form-top {
    gap: 20px;
  }
}
.questions__form-about {
  max-width: 140px;
}
.questions__form-about img {
  max-width: 140px;
  margin-bottom: 10px;
}
.questions__form-about p {
  font-style: italic;
  font-size: 14px;
  color: var(--textGray);
}
.questions__form-dscr .icon {
  width: 20px;
  height: 20px;
  background-image: url("../images/icons/comment.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  margin-bottom: 5px;
}
.questions__form-dscr p {
  font-size: 18px;
  max-width: 283px;
  line-height: 1.44;
  margin-bottom: 12px;
}
@media (max-width: 600px) {
  .questions__form-dscr p {
    font-size: 16px;
  }
}
.questions__form-dscr .social {
  display: flex;
  gap: 10px;
  margin-bottom: 28px;
}
@media (max-width: 600px) {
  .questions__form-dscr .social {
    margin-bottom: 20px;
  }
}
.questions__form-dscr .social img {
  width: 24px;
}
.questions__form-dscr span {
  display: block;
  max-width: 195px;
  font-weight: 700;
  line-height: 1.5;
}
.questions__form .triggerBlock__form-polis {
  margin-bottom: 0;
}

.contacts__inner {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}
@media (max-width: 1000px) {
  .contacts__inner {
    flex-direction: column;
    gap: 20px;
  }
}
.contacts__title {
  margin-bottom: 30px;
  font-weight: 700;
}
.contacts__info {
  flex-shrink: 0;
  max-width: 304px;
}
@media (max-width: 600px) {
  .contacts__info {
    max-width: 100%;
  }
}
.contacts__info ul li + li {
  margin-top: 15px;
}
.contacts__info ul li.location, .contacts__info ul li.timeWork {
  font-size: 18px;
  padding-left: 20px;
  position: relative;
  line-height: 1.44;
}
.contacts__info ul li.location::before, .contacts__info ul li.timeWork::before {
  content: "";
  width: 12px;
  height: 16px;
  top: 2px;
  left: 0;
  background-image: url("../images/icons/location.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.contacts__info ul li.location b, .contacts__info ul li.timeWork b {
  display: block;
}
.contacts__info ul li.timeWork::before {
  background-image: url("../images/icons/time.svg");
}
.contacts__info ul li.phone {
  font-size: 24px;
  font-weight: 600;
  padding-left: 30px;
  position: relative;
}
.contacts__info ul li.phone::before {
  content: "";
  width: 20px;
  height: 20px;
  top: 50%;
  transform: translate(0, -50%);
  left: 0;
  background-image: url("../images/icons/phone.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.contacts__info-btn {
  margin-top: 40px;
  text-align: center;
  color: #FFFFFF;
  font-size: 15px;
  font-weight: 700;
  border-radius: 6px;
  background: linear-gradient(272deg, #FF8181 -0.76%, #FF7171 100%);
  padding: 24px;
  width: 100%;
  overflow: hidden;
  position: relative;
  z-index: 0;
}
.contacts__info-btn::before {
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #FF5E5E;
  transition: 0.3s ease;
  opacity: 0;
  z-index: -1;
}
.contacts__info-btn:hover::before {
  opacity: 1;
}
.contacts__map {
  max-width: 640px;
  width: 44.44vw;
}
@media (max-width: 1000px) {
  .contacts__map {
    max-width: 100%;
    width: 100%;
    height: 300px;
  }
}
.contacts__map iframe {
  width: 100%;
  display: block;
  height: 100%;
}
.contacts__note {
  max-width: 305px;
  padding: 24px;
  border-radius: 6px;
  background: #EFEFEF;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 1000px) {
  .contacts__note {
    max-width: 100%;
    width: 100%;
  }
}
.contacts__note .icon {
  width: -moz-max-content;
  width: max-content;
  margin: 0 auto;
  margin-bottom: 10px;
}
.contacts__note-title {
  text-align: center;
  max-width: 170px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  margin: 0 auto;
  margin-bottom: 10px;
}
.contacts__note-dscr {
  text-align: center;
  line-height: 1.5;
  margin-bottom: 15px;
}

.footer {
  background: #EFEFEF;
}
.footer .header__inner {
  padding: 24px 0;
  border-bottom: 1px dashed #FFFFFF;
}
.footer__bottom {
  padding: 30px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
@media (max-width: 600px) {
  .footer__bottom {
    flex-direction: column;
  }
}
.footer__bottom a {
  color: var(--textGray);
  font-size: 14px;
  line-height: 1.42;
  border-bottom: 1px dashed var(--textGray);
}
.footer__dev {
  display: flex;
  align-items: center;
  gap: 20px;
}
.footer__dev p {
  font-size: 14px;
  color: var(--textGray);
  line-height: 1.42;
}
.footer__dev img {
  max-width: 126px;
}

.thanks__inner {
  display: grid;
  grid-template-columns: repeat(2, minmax(auto, 1fr));
  align-items: center;
  gap: 30px;
}
@media (max-width: 1000px) {
  .thanks__inner {
    display: flex;
    flex-direction: column;
    text-align: center;
  }
}
@media (max-width: 600px) {
  .thanks__content {
    width: 100%;
  }
}
.thanks__title {
  margin-bottom: 20px;
  font-size: 40px;
}
@media (max-width: 1366px) {
  .thanks__title {
    font-size: 36px;
  }
}
@media (max-width: 700px) {
  .thanks__title {
    font-size: 34px;
  }
}
@media (max-width: 500px) {
  .thanks__title {
    font-size: 28px;
  }
}
@media (max-width: 410px) {
  .thanks__title {
    font-size: 26px;
  }
}
.thanks__dscr {
  font-size: 20px;
  line-height: 1.5;
  margin-bottom: 40px;
}
@media (max-width: 600px) {
  .thanks__dscr {
    font-size: 18px;
    margin-bottom: 25px;
  }
}
.thanks__dscr b {
  display: block;
}
.thanks__btn {
  display: block;
  max-width: 380px;
  text-align: center;
  color: #FFFFFF;
  font-weight: 700;
  border-radius: 6px;
  background: linear-gradient(272deg, #FF8181 -0.76%, #FF7171 100%);
  padding: 23px;
  overflow: hidden;
  position: relative;
  z-index: 0;
}
@media (max-width: 600px) {
  .thanks__btn {
    max-width: 100%;
    padding: 20px;
  }
}
.thanks__btn::before {
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #FF5E5E;
  transition: 0.3s ease;
  opacity: 0;
  z-index: -1;
}
.thanks__btn:hover::before {
  opacity: 1;
}
.thanks__img {
  border-radius: 6px;
  overflow: hidden;
}



/**/


.cookie_notice {
    display: none;
    position: fixed;
    z-index: 9999999;
    bottom: 0;
    /* left: 0; */
    right: 0;
    text-align: center;
    font-size: 15px;
    font-family: Verdana, sans-serif;
    color: #5a5a5a;
    background: #ffffff;
    padding: 10px 20px;
    border: 2px solid #d3d3d3;
    max-width: 320px;
}
/* Оформление кнопок */
.cookie_btn {
    display: inline-block;
    margin: 10px 6px 4px 6px;
    text-decoration: none;
    position: relative;
    font-size: 13px;
    padding: 4px 12px;
    color: #fff;
    font-weight: bold;
    text-transform: uppercase;
    background: linear-gradient(272deg, #FF8181 -0.76%, #FF7171 100%);
    /* border: 2px solid #BFE2FF; */
}
.cookie_btn:hover {
    color: #000;
}
.cookie_btn:after,
.cookie_btn:before {
    position: absolute;
    height: 2px;
    left: 50%;
    background: #FFF;
    bottom: -6px;
    content: "";
    transition: all 280ms ease-in-out;
    width: 0;
}
.cookie_btn:before {
    top: -6px;
}
.cookie_btn:hover:after,
.cookie_btn:hover:before {
    width: 100%;
    left: 0;
}
