@charset "UTF-8";
.btn {
  display: inline-flex;
  border-radius: 4px;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  transition: all 0.3s;
  cursor: pointer;
  line-height: 1;
  text-decoration: none;
  font-size: clamp(0.875rem, 0.8375rem + 0.1875vw, 1.0625rem);
  overflow: hidden;
}
.btn__title {
  font-weight: 700;
}
.btn__subtitle {
  font-weight: 300;
}

.btn-orange {
  background: #EA3314;
  border: 1px solid #EA3314;
  color: #fff;
}
.btn-orange:hover {
  background: #f1705a;
  color: #fff;
}

.btn-gray {
  background: rgb(206, 206, 206);
  border: 1px solid rgb(206, 206, 206);
  color: #0B1F33;
}
.btn-gray:hover {
  background: #f4f4f4;
  color: #0B1F33;
}

.btn-green {
  background: #27A7E7;
  border: 1px solid #27A7E7;
  color: #fff;
}
.btn-green:hover {
  background: #2495ce;
  color: #fff;
}

.btn-transparent {
  border: 1px solid #EA3314;
  background: transparent;
  color: #0B1F33;
}
.btn-transparent:hover {
  background: #EA3314;
  color: #fff;
}

@keyframes flareAnimation {
  0% {
    left: -150%;
  }
  100% {
    left: 150%;
  }
}
.btn .flare {
  position: absolute;
  top: 0;
  height: 100%;
  width: 45px;
  transform: skewX(-45deg);
  animation: flareAnimation;
  left: -150%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.4));
  animation: flareAnimation 3s infinite linear;
  border-radius: 4px;
}

.header {
  /*  padding: 7px 0 0 0; */
}
.header__wrp {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.header__top {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.header__logo {
  display: flex;
  justify-content: flex-start;
  gap: 15px;
  align-items: center;
}
.header__logo a {
  flex-shrink: 0;
  
}
.header__logo img{
  max-width: 100px;
}
.header__logo-desc {
  max-width: 400px;
  line-height: 1.3;
  color: #66727F;
  padding-right: 10px;
}
.header__logo-desc span {
  color: #fff;
  background: #0566B4;
  padding: 4px 7px;
  border-radius: 4px;
  font-weight: 700;
}
.header__adress {
  display: flex;
  flex-direction: column;
  padding-left: 60px;
  align-items: start;
  gap: 9px;
}
.header__adress-wrp {
  display: flex;
  align-items: center;
}
.header__adress-wrp p {
  line-height: 1;
  font-size: 16px;
}
.header__icon {
  width: 16px;
  height: 20px;
  margin-right: 15px;
  flex-shrink: 0;
  fill: #0566B4;
}
.header__contacts {
  display: flex;
  justify-content: end;
  gap: 30px;
  align-items: center;
}
.header__contact {
  display: flex;
  flex-direction: column;
  align-items: end;
  gap: 9px;
}
.header__nav {
  flex-basis: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header__phone {
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  color: #0B1F33;
}
.header__phone:hover {
  color: #0B1F33;
}
.header__info {
  color: #66727F;
  font-size: 16px;
  padding-bottom: 2px;
  border-bottom: 1px dotted #0B1F33;
  cursor: pointer;
}
.header__info a {
  color: #66727F;
}
.header__info a:hover {
  color: #0566B4;
}
.header .nav__contacts, .header .search-mobile {
  display: none;
}
.header__right {
  display: flex;
  gap: 15px;
  align-items: center;
}
.header__nav {
  position: relative;
  margin-top: 10px;
}
.header__nav::before {
  content: "";
  display: block;
  width: 9999999px;
  height: 1px;
  position: absolute;
  left: -50%;
  top: -13px;
  background: #EAEAEA;
}
.header__btn-ic {
  width: 20px;
  height: 20px;
  fill: #fff;
  margin-right: 10px;
}
.header__btn {
  padding: 12px 20px;
}

@media only screen and (max-width: 1400px) {
  .header__phone {
    font-size: 18px;
  }
}
@media only screen and (max-width: 1200px) {
  .header__adress-wrp p {
    font-size: 14px;
  }
  .header__info {
    font-size: 12px;
  }
  .header__phone {
    font-size: 16px;
  }
  .header__logo-desc {
    font-size: 12px;
  }
}
@media only screen and (max-width: 946px) {
  .header__wrp {
    flex-wrap: nowrap;
  }
  .header__adress {
    display: none;
  }
  .header__contact {
    display: none;
  }
  .header__top {
    flex-basis: 90%;
  }
  .header__nav {
    flex-basis: 10%;
    margin-top: 0;
    justify-content: end;
    gap: 10px;
  }
  .header__nav::before {
    display: none;
  }
  .header__logo-desc {
    display: none;
  }
  .header__mob-contact {
    display: flex;
    grid-area: 3px;
    padding-right: 20px;
  }
}
@media only screen and (max-width: 578px) {
  .header__logo a {
    flex-shrink: unset;
  }
  .header__logo img {
    max-width: none;
    width: 60px;
    height: 60px;
  }
}
.header {
  position: absolute;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

.menu-fixed {
  box-shadow: 0 4px 15px -10px rgba(0, 0, 0, 0.6);
  position: fixed;
  animation: slide-down 0.7s;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.7);
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
}
.menu-fixed .header__adress p {
  font-size: 16px;
}
.menu-fixed .header__info {
  font-size: 13px;
}
.menu-fixed .header__adress,
.menu-fixed .header__contact {
  gap: 6px;
}
.menu-fixed .header__wrp {
  display: flex;
  justify-content: space-between;
  flex-direction: row;
}
.menu-fixed .header__logo img {
  max-width: 75px;
  padding-bottom: 2px;
}
.menu-fixed .header__nav {
  padding: 0;
  margin: 0;
}
.menu-fixed .header__nav::before {
  top: -4px;
}
.menu-fixed .nav__item {
  padding: 7px 0;
}
.menu-fixed .open .nav__item {
  padding: 0;
}
.menu-fixed .nav__link {
  font-size: 15px;
}
.menu-fixed .header__btn {
  margin-bottom: 3px;
  padding: 7px 12px;
}

.page-body .menu-fixed {
  background: rgba(255, 255, 255, 0.7);
}
.page-body .menu-fixed::after {
  display: none;
}
.page-body .header__online {
  color: #282828;
  background: #fff;
  box-shadow: 0 7px 10px rgba(199, 199, 199, 0.1647058824);
}

@media only screen and (max-width: 1200px) {
  .menu-fixed .header__logo {
    width: auto;
  }
}
@media only screen and (max-width: 945px) {
  .menu-fixed .header__nav {
    display: flex;
  }
}
@keyframes slide-down {
  0% {
    opacity: 0;
    transform: translateY(-100%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@media only screen and (max-width: 576px) {
  .header {
    padding-left: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
  }
  .menu-fixed .header__logo img {
    max-width: none;
    padding-bottom: 0px;
  }
}
@media only screen and (max-width: 946px) {
  .header .nav__contacts {
    display: flex;
    flex-direction: column;
    margin-top: 50px;
    padding-left: 15px;
    gap: 10px;
  }
  .header .nav__contact {
    display: flex;
    align-items: center;
  }
  .header .nav__icon {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    fill: #EA3314;
    flex-shrink: 0;
  }
  .header .nav__phone a {
    font-weight: 700;
    font-size: 18px;
    color: #0B1F33;
    line-height: 1.3;
  }
  .header .nav__email a {
    color: #66727F;
    font-size: 14px;
    line-height: 1.3;
  }
  .header .nav__adress p {
    color: #66727F;
    font-size: 12px;
    line-height: 1.3;
  }
  .header__btn {
    display: none;
  }
  .header .nav__contacts .header__btn {
    display: block;
  }
}
.nav__list {
  display: flex;
  align-items: center;
  margin: 0;
}

.nav__item:not(:last-child) {
  margin-right: 40px;
}

.nav__item {
  position: relative;
  padding: 15px 0;
}

.nav__link {
  color: #0B1F33;
  font-size: 17px;
}
.nav__link:hover {
  color: #EA3314;
}

.nav__link--drop::after {
  content: "";
  width: 7px;
  height: 7px;
  background-image: url("../img/download.svg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: inline-block;
  margin-left: 5px;
  transition: transform 0.3s;
}

.nav__list--dropdown {
  position: absolute;
  background-color: #fff;
  left: 0;
  top: 100%;
  display: block;
  box-shadow: 0 10px 15px 0 rgba(0, 0, 0, 0.07);
  transition: all 0.3s;
  opacity: 0;
  visibility: hidden;
  width: 280px;
  z-index: 90;
}

.dropdown-submenu {
  display: flex;
  align-items: initial;
}

.dropdown-submenu__item {
  flex-grow: 1;
  min-width: 200px;
  padding: 0px 30px;
}

.dropdown-submenu__list {
  padding: 0;
}

.dropdown-submenu__item:not(:last-child) {
  border-right: 1px solid #bfbfbf;
}

.dropdown-submenu__item:first-child {
  padding-left: 0;
}

.dropdown-submenu__item:last-child {
  padding-right: 0;
}

.mobile-back {
  display: none;
}

.mobile-back__link {
  color: #282828;
  font-weight: 500;
}

.dropdown-list__item {
  border-bottom: 1px solid #ececec;
}

.dropdown-list__link {
  font-size: 15px;
  color: #282828;
  padding: 13px 20px;
  display: block;
}
.dropdown-list__link:hover {
  color: #0566B4;
}

.dropdown-submenu__list-item {
  margin-bottom: 10px;
}


@media (max-width: 1400px) {
    .nav__item:not(:last-child) {
  margin-right: 20px;
}

}

@media (min-width: 946px) {
  .nav__link--drop:hover::after {
    transform: rotate(180deg);
    transition: all 0.3s;
  }
  .nav__item:hover .nav__list--dropdown {
    visibility: visible;
    opacity: 1;
    transition: all 0.3s;
  }
}
.burger {
  width: 40px;
  height: 20px;
  cursor: pointer;
  background-color: transparent;
  border: none;
  position: relative;
  display: none;
}

.burger::before,
.burger::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 1px;
  background-color: #000;
}

.burger::after {
  top: auto;
  bottom: 0;
}

.burger span {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  height: 1px;
  display: inline-block;
  background-color: #000;
}

.overlay {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
}

.lock {
  overflow: hidden;
}

@media (max-width: 946px) {
  .burger {
    display: block;
  }
  .mobile-back {
    display: block;
  }
  .main-menu {
    position: fixed;
    left: 0;
    top: 0;
    max-width: 400px;
    width: 80%;
    height: 100vh;
    z-index: 100;
    box-shadow: 5px 0 15px -5px rgba(0, 0, 0, 0.8);
    background-color: #fff;
    transform: translateX(-150vw);
    overflow-x: hidden;
    overflow-y: auto;
    display: block;
  }
  .nav__list {
    flex-direction: column;
    align-items: flex-start;
    padding: 0;
    padding-top: 10%;
    position: relative;
    justify-content: flex-start;
  }
  .nav__item {
    margin-left: 0 !important;
    font-size: 20px;
    width: 100%;
    padding: 0;
    position: static;
  }
  .nav__link,
  .dropdown-submenu__list-item a {
    padding: 13px 20px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .dropdown-submenu__list-item {
    padding: 0;
  }
  .nav__link {
    border-bottom: 1px solid #ececec;
  }
  .nav__link::after {
    transform: rotate(-90deg);
  }
  .nav__list--dropdown {
    position: absolute;
    top: 0;
    right: auto;
    left: 100%;
    box-shadow: none;
    width: 100%;
    display: none;
  }
  .dropdown-submenu__item {
    width: 100%;
    padding: 0;
    border: none !important;
  }
  .dropdown-submenu__title {
    padding: 0 30px;
  }
  .dropdown-submenu__banner {
    display: inline-block;
    padding: 20px;
  }
  .nav__list.transformation {
    transform: translateX(-100%);
    transition: all 0.3s;
  }
  .nav__list--dropdown.transformation {
    opacity: 1;
    visibility: visible;
    display: block;
    transform: none;
    background-color: #fff;
    transition: all 0.3s;
  }
  .main-menu.open {
    transform: translateX(0);
    transition: all 0.3s;
  }
  .overlay.open {
    opacity: 1;
    visibility: visible;
    transition: all 0.3s;
  }
  .mobile-back a {
    position: relative;
    border: none;
    display: flex;
    align-items: center;
    justify-content: flex-start;
  }
  .mobile-back a::before {
    content: "";
    width: 10px;
    height: 10px;
    background-image: url("../img/download.svg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: inline-block;
    margin-right: 10px;
    transform: rotate(90deg);
  }
}
.close_btn {
  display: none;
  position: absolute;
  z-index: 60;
  right: 10px;
  top: 17px;
  cursor: pointer;
}
.close_btn .ic_close {
  width: 20px;
  height: 20px;
}

@media only screen and (max-width: 946px) {
  .open .close_btn {
    display: block;
  }
}
@media only screen and (max-width: 1200px) {
  .nav__link {
    font-size: 14px;
  }
}
.homepage {
  background: url("../img/bgmain.webp");
  background-size: cover;
  background-repeat: no-repeat;
  padding: 200px 0 30px 0;
}

.bgmain {
  margin: 60px 0;
}
.bgmain__title {
  font-size: clamp(0.875rem, 0.8rem + 0.375vw, 1.25rem);
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.3;
}
.bgmain__subtitle {
  font-size: clamp(0.875rem, 0.8rem + 0.375vw, 1.25rem);
  font-weight: 300;
  color: #66727F;
  margin-bottom: 10px;
  line-height: 1.3;
}
.bgmain__price {
  color: #fff;
  background: #0B1F33;
  padding: 10px 12px;
  margin: 20px 0;
  display: inline-block;
  border-radius: 4px;
}
.bgmain__text {
  font-size: clamp(0.875rem, 0.8375rem + 0.1875vw, 1.0625rem);
  line-height: 1.4;
  margin-bottom: 30px;
}
.bgmain__btn {
  flex-direction: column;
  align-items: center;
  padding: 20px 30px;
  gap: 10px;
}
.bgmain__video {
  border-radius: 10px;
}
.bgmain__alisa {
  border: 1px solid rgba(199, 190, 190, 0.37);
  border-radius: 10px;
  max-width: 254px;
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  background: rgba(255, 255, 255, 0.48);
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: absolute;
  bottom: 60px;
  right: 30px;
  padding: 20px;
  z-index: 100;
}
.bgmain__alisa img {
  flex-shrink: 0;
  align-self: flex-start;
}
.bgmain__alisa-title {
  font-weight: 700;
  font-size: clamp(0.875rem, 0.8375rem + 0.1875vw, 1.0625rem);
  line-height: 1.3;
  color: #393636;
}
.bgmain__alisa-text {
  color: #393636;
  line-height: 1.3;
  font-size: clamp(0.875rem, 0.8375rem + 0.1875vw, 1.0625rem);
}
.bgmain__alisa-link {
  color: #EA3314;
  border-bottom: 1px dotted #EA3314;
  padding-bottom: 2px;
  align-self: flex-start;
  font-size: clamp(0.875rem, 0.8375rem + 0.1875vw, 1.0625rem);
}
.bgmain__alisa-link:hover {
  color: #8c1f0c;
}

@media only screen and (max-width: 991px) {
  .bgmain__alisa {
    position: relative;
    max-width: 100%;
    width: 100%;
    right: inherit;
    top: 10px;
  }
}
@media only screen and (max-width: 768px) {
  .homepage {
    padding: 100px 0 30px 0;
  }
  .bgmain {
    margin: 0 0 30px;
  }
}
@media only screen and (max-width: 576px) {
  .homepage {
    padding: 80px 0 30px 0;
  }
  .bgmain {
    margin: 0 0 0px;
  }
}
.heading-title {
  font-size: clamp(1.375rem, 1.025rem + 1.75vw, 3.125rem);
  font-weight: 300;
  line-height: 1.3;
  position: relative;
  z-index: 20;
}
.heading-title span {
  font-weight: 700;
}

.heading-title2 {
  font-size: clamp(1.25rem, 1.0625rem + 0.9375vw, 2.1875rem);
  font-weight: 300;
  line-height: 1.3;
  position: relative;
  z-index: 20;
}
.heading-title2 span {
  font-weight: 700;
}

.heading-title3 {
  font-size: clamp(1.125rem, 1.05rem + 0.375vw, 1.5rem);
  font-weight: 300;
  line-height: 1.3;
  position: relative;
  z-index: 20;
}
.heading-title3 span {
  font-weight: 700;
}

.heading-subtitle {
  font-size: clamp(1.125rem, 1.1rem + 0.125vw, 1.25rem);
  font-weight: 400;
  position: relative;
  z-index: 20;
}
.heading-subtitle span {
  font-weight: 700;
}

.heading {
  background: #E6EBEB;
  padding: 30px 0px 60px 0;
}
.heading h1 {
  font-size: 32px;
  color: #0B1F33;
  line-height: 1.3;
  margin-bottom: 20px;
  margin-top: 0;
  font-weight: 600;
}

.breadcrumbs li {
  display: inline-block;
  font-size: 15px;
  color: #66727F;
}
.breadcrumbs li a {
  color: #66727F;
  text-decoration: none;
}
.breadcrumbs li a:hover {
  color: #66727F;
}
.breadcrumbs li + li::before {
  color: #66727F;
  content: "—";
  padding: 0 5px;
}

@media only screen and (max-width: 945px) {
  .heading {
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 546px) {
  .heading {
    padding: 20px 0;
  }
  .heading h1 {
    font-size: 22px;
  }
}
.tizers {
  margin: 30px 0;
}

.tizer {
  display: flex;
  gap: 14px;
}
.tizer__chek {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 5px;
}
.tizer__title {
  color: #0B1F33;
  margin-bottom: 5px;
  font-size: clamp(0.875rem, 0.8rem + 0.375vw, 1.25rem);
  line-height: 1.3;
}
.tizer__subtitle {
  color: #66727F;
  font-size: clamp(0.875rem, 0.8375rem + 0.1875vw, 1.0625rem);
  font-weight: 300;
  line-height: 1.3;
}

@media only screen and (max-width: 576px) {
  .tizers {
    margin: 20px 0 10px 0;
  }
  .tizer {
    margin-bottom: 5px;
  }
  .tizer__title {
    margin-bottom: 0;
  }
}
@keyframes loadingBg {
  0% {
    background-position: 2%;
  }
  100% {
    background-position: 100%;
  }
}
.quiz-progress {
  position: relative;
  margin-bottom: 30px;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media only screen and (max-width: 578px) {
  .quiz-progress {
    margin-bottom: 20px;
  }
}
.quiz-progress__bar {
  width: 100%;
  position: relative;
  overflow: hidden;
  height: 48px;
  border-radius: 0px;
  border: 1px solid #E1E1E1;
}

.quiz-progress__inner {
  position: absolute;
  left: -10px;
  top: 1px;
  transform: translateY(-50%);
  height: 44px;
  border-radius: 0px;
  background-color: #EA3314;
  animation: loadingBg 15s infinite linear;
  background-image: url(../img/loading.svg);
  transform: skew(-20deg);
}

.quiz-progress p {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: #b3b3b3;
}

@media only screen and (max-width: 578px) {
  .quiz-progress p {
    font-size: 12px;
  }
}
.question__label input {
  display: none;
}

.question__label input:checked ~ .question__label-item .label__img {
  border-color: #EA3314;
}

.question__label input:checked ~ .question__label-item .label__dot {
  background: #EA3314;
}

.question__label input:checked ~ .question__label-item .label__dot svg {
  fill: #fff;
}

.question__label-item .label__dot svg {
  fill: #EA3314;
}

/* .question__label input:checked~.question__label-item .label__dot .img-svg path {
    fill: #fff;
} */
.question__label-item {
  text-align: center;
  cursor: pointer;
}

.question__label {
  width: 100%;
  height: 100%;
}

.question__label-item .label__img {
  width: 100%;
  height: 125px;
  background-size: cover;
  background-position: center;
  border-radius: 8px;
  position: relative;
  transition: 320ms;
  border: 2px solid #F5F5F5;
}

.quiz1-images .label__img {
  height: 187px;
}

.question__label-item2 {
  display: flex;
  position: relative;
  width: 100%;
  border-radius: 8px;
  border: 1px solid #C7C7C7;
  align-items: center;
}

.quiz__input .label__title {
  font-size: 15px;
  margin: 0 !important;
  color: #505050;
  line-height: 1.4;
  padding: 27px 20px 27px 80px;
}

.question__label-item2 {
  transition: all 0.5s;
}

.question__label-item2:hover {
  cursor: pointer;
}

.question__label input:checked ~ .question__label-item2 {
  border-color: #EA3314 !important;
  border: 1px solid #EA3314 !important;
}

.question__label input:checked ~ .question__label-item2 .label__dot2 {
  background: #EA3314 !important;
}

@media only screen and (max-width: 578px) {
  .question__label-item .label__img {
    height: 90px;
  }
  .question__label {
    margin-bottom: 10px;
  }
}
.question__label-item .label__dot {
  position: absolute;
  transform: translateX(-50%);
  left: 50%;
  bottom: -15px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #EA3314;
  box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.1);
  border: 2px solid #fff;
}

.label__svg {
  width: 7px;
  height: 7px;
  fill: #fff;
}

.label__dot2 {
  left: 25px;
  transform: none;
  top: 50%;
  bottom: 50%;
  margin: auto 0;
  position: absolute;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ACACAC;
  box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.1);
  border: 2px solid #fff;
}

.quiz {
  padding: 60px 0px;
  border-radius: 15px;
  background: #fff;
}
.quiz__input {
  width: 100%;
}
.quiz__title {
  margin-bottom: 20px;
}
.quiz__subtitle {
  margin-bottom: 20px;
  line-height: 1.3;
}
.quiz__subtitle2 {
  font-size: 16px;
  color: #66727F;
  margin-bottom: 20px;
}
.quiz .label__title {
  font-size: 15px;
  margin-top: 30px;
  color: #0B1F33;
}
.quiz__btns-wrp {
  display: flex;
  gap: 5px;
}
.quiz__btns {
  margin-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.quiz__btn {
  padding: 20px 30px;
}
.quiz__btn:hover {
  opacity: 0.8;
}
.quiz__info {
  max-width: 278px;
  padding: 20px 45px;
  border-radius: 8px;
  border: 1px solid #DEDEDE;
  background: #FFF;
  font-size: 14px;
  font-weight: 300;
  color: #0B1F33;
  line-height: 1.4;
  text-align: center;
}
.quiz__info span {
  font-weight: 600;
}

@media only screen and (max-width: 1380px) {
  .quiz__subtitle {
    font-size: 20px;
  }
}
@media only screen and (max-width: 578px) {
  .quiz {
    padding: 30px 15px;
  }
  .quiz__title {
    margin-bottom: 20px;
  }
  .quiz__subtitle {
    font-size: 16px;
    margin-bottom: 20px;
  }
  .quiz .label__title {
    font-size: 14px;
    margin-top: 15px;
    line-height: 1.3;
  }
  .quiz__btns {
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 0;
  }
  .quiz__info {
    margin: 15px 0;
    font-size: 14px;
    padding: 15px;
  }
}
.form-inputs {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.form-nput-label {
  width: 100%;
  margin-bottom: 29px;
  position: relative;
}

.quiz__input-form {
  border-radius: 8px;
  border: 1px solid #C7C7C7;
  height: 67px;
  padding-left: 60px;
  position: relative;
  width: 100%;
  background: transparent;
  font-size: 18px;
  color: #0B1F33;
}
.quiz__input-form::-moz-placeholder {
  color: #66727F;
}
.quiz__input-form::placeholder {
  color: #66727F;
}

@media only screen and (max-width: 578px) {
  .quiz__input-form {
    font-size: 14px;
  }
}
.form-nput-label img {
  position: absolute;
  left: 22px;
  top: 25px;
}

.form__radios {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 27px 16px 27px 24px;
  border-radius: 8px;
  background: #eee;
  margin-bottom: 15px;
}

.form__radios__modals {
  flex-direction: column;
  padding: 0px;
  align-items: start;
  background: none;
}

.form__radios__btns__modals {
  display: flex;
  gap: 10px;
}

.form__radios__title__modals {
  font-size: 14px !important;
  color: #66727F !important;
  margin-bottom: 10px;
}

.radio-mess input {
  display: none;
}

.radio__img {
  width: 62px;
  height: 40px;
  border-radius: 5px;
  cursor: pointer;
  opacity: 0.8;
}

.radio-mess input:checked ~ .radio__img {
  opacity: 1;
}

.quiz__submit {
  display: flex;
  flex-direction: column;
}
.quiz__submit button {
  align-self: flex-start;
}

.quiz-btn {
  width: 276px;
  padding: 30px 10px;
  margin-bottom: 18px;
}

.form__radios__title {
  color: #0B1F33;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 20.5px;
}

.cresults__agreement .checkbox-text {
  color: #5C5C77;
  font-size: 14px;
}

.cresults__agreement .checkbox-text a {
  color: #EA3314;
  font-size: 14px;
  text-decoration: underline;
}

.quiz__pl20 {
  padding-left: 20px;
}

@media only screen and (max-width: 576px) {
  .cresults__agreement .checkbox-text {
    font-size: 12px;
    line-height: 1.4;
  }
  .cresults__agreement .checkbox-text a {
    font-size: 12px;
  }
  .form__radios__title {
    font-size: 14px;
    margin-bottom: 10px;
  }
  .form__radios {
    flex-wrap: wrap;
  }
}
.custom-checkbox {
  display: flex;
  align-items: center;
  width: 100%;
  margin: 0;
  cursor: pointer;
}

.checkbox-hidden {
  display: none;
}

.checkbox-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  max-width: 20px;
  flex: 0 0 20px;
  height: 20px;
  border-radius: 2px;
  border: 1px solid rgba(96, 6, 6, 0.6);
  background:rgb(201, 197, 197);
  margin-right: 10px;
}

.custom-checkbox input:checked + .checkbox-wrap::after {
  transform: scale(1);
  opacity: 1;
}

.custom-checkbox .checkbox-wrap::after {
  content: "";
  display: block;
  width: 20px;
  height: 18px;
  background: url(https://msktpdom.ru/storage/app/media/check.svg) no-repeat 0 0;
  background-size: 100%;
  will-change: transform;
  transform: scale(0);
  opacity: 0;
  transition: all 0.1s linear;
}

.just-validate-error-label {
  font-size: 12px;
  color: #5C5C77 !important;
}

.person__row {
  display: flex;
  gap: 10px;
}
.person__ellipse {
  width: 104px;
  height: 104px;
  border-radius: 50%;
  overflow: hidden;
}
.person__ellipse img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
  object-fit: cover;
}
.person__decor {
  position: absolute;
  left: -80px;
  top: 0;
}
.person__info {
  margin: 15px 0;
}
.person__wrp {
  background: #fff;
  box-shadow: 0px 20px 20px 0px rgba(0, 0, 0, 0.03);
  padding: 30px;
  border-radius: 20px;
}
.person__top {
  display: flex;
}
.person__page {
  justify-content: end;
  gap: 30px;
}
.person__post {
  color: #66727F;
  font-size: clamp(0.875rem, 0.85rem + 0.125vw, 1rem);
  line-height: 1.4;
  margin-bottom: 5px;
}
.person__name {
  font-weight: 700;
  font-size: clamp(0.875rem, 0.8rem + 0.375vw, 1.25rem);
  line-height: 1.4;
  margin-bottom: 15px;
}
.person__btn {
  color: #fff;
  background: #26D366;
  padding: 10px 20px;
  border-radius: 4px;
  min-width: 137px;
  font-size: 14px;
}
.person__btn:hover {
  color: #fff;
  background: #37db74;
}
.person__after-title {
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.3;
  font-size: clamp(0.875rem, 0.8375rem + 0.1875vw, 1.0625rem);
}
.person__after li {
  position: relative;
  color: #0B1F33;
  padding: 8px 0px 8px 20px;
  font-size: clamp(0.875rem, 0.8375rem + 0.1875vw, 1.0625rem);
}
.person__after li::before {
  content: "";
  background: #EA3314;
  width: 10px;
  height: 10px;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto 0;
  border-radius: 50%;
  box-shadow: 0 0 15px orangered;
}
.person__text p {
  line-height: 1.4;
  color: #66727F;
  padding: 8px 0;
  font-size: clamp(0.875rem, 0.8375rem + 0.1875vw, 1.0625rem);
}
.person__phone {
  font-size: clamp(1rem, 0.95rem + 0.25vw, 1.25rem);
  font-weight: 700;
  color: #0B1F33;
  display: block;
  margin-top: 10px;
}
.person__phone:hover {
  color: #0B1F33;
}
.person__img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}
.person__img img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
  object-fit: cover;
}

.input-ic {
  width: 25px;
  height: 25px;
  fill: rgb(196, 196, 196);
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  margin: auto 0;
}

.btn_ic {
  width: 30px;
  height: 20px;
  fill: #fff;
}

@media only screen and (max-width: 1400px) {
  .person__btn {
    font-size: 12px;
    padding: 10px;
  }
  .person__post {
    font-size: 14px;
  }
  .person__name {
    font-size: 14px;
  }
  .person__after-title {
    font-size: 14px;
  }
  .person__after li {
    font-size: 14px;
  }
  .person__text p {
    font-size: 14px;
  }
}
@media only screen and (max-width: 578px) {
  .person {
    background: #fff;
    padding: 10px;
    margin-top: 20px;
  }
  .person__btn {
    padding: 8px 5px;
    font-size: 12px;
  }
  .person__column {
    display: flex;
    gap: 30px;
  }
}
@media only screen and (max-width: 1400px) {
  .smtext {
    font-size: 14px;
  }
}
.pluses {
  padding: 60px 0;
  background: url(../img/bg2.webp);
  background-size: cover;
  background-repeat: no-repeat;
}
.pluses__about {
  display: flex;
  gap: 15px;
  background: #fff;
  padding: 30px;
  border-radius: 10px;
}
.pluses__about p {
  line-height: 1.3;
  font-size: clamp(0.875rem, 0.8375rem + 0.1875vw, 1.0625rem);
}
.pluses__img {
  position: relative;
  flex-shrink: 0;
}
.pluses__img span {
  position: absolute;
  font-size: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #0B1F33;
  color: #fff;
  right: 0px;
  top: 0px;
  border-radius: 50%;
  width: 20px;
  height: 20px;
}
.pluses__items {
  background: #fff;
  border-radius: 10px;
}
.pluses__items li {
  display: flex;
  gap: 20px;
  align-items: center;
  border-bottom: 1px solid #ececec;
  padding: 10px 10px 10px 15px;
}
.pluses__items li p {
  color: #66727F;
  line-height: 1.5;
  font-size: clamp(0.875rem, 0.8375rem + 0.1875vw, 1.0625rem);
}
.pluses__plus {
  font-size: 14px;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #EA3314;
  color: #fff;
  border-radius: 50%;
  width: 25px;
  height: 25px;
  flex-shrink: 0;
  line-height: 1.3;
}
.pluses__minus {
  font-size: 14px;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #0B1F33;
  color: #fff;
  border-radius: 50%;
  width: 25px;
  height: 25px;
  flex-shrink: 0;
  line-height: 1.3;
}
.pluses__whatsapp {
  padding: 30px;
  background: #fff;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
}
.pluses__title {
  font-size: clamp(1.125rem, 1.1rem + 0.125vw, 1.25rem);
  line-height: 1.3;
  margin-bottom: 20px;
  font-weight: 300;
}
.pluses__title span {
  font-weight: 700;
}
.pluses__wrp {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  flex-wrap: wrap;
}
.pluses__btn {
  padding: 20px 30px;
}
.pluses__phone {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: clamp(1.125rem, 1.1rem + 0.125vw, 1.25rem);
  display: block;
  color: #0B1F33;
}
.pluses__phone:hover {
  color: #0B1F33;
}
.pluses__time {
  color: #66727F;
  font-size: clamp(0.875rem, 0.85rem + 0.125vw, 1rem);
}
.pluses__top {
  margin-bottom: 30px;
}

@media only screen and (max-width: 576px) {
  .pluses {
    padding: 30px 0;
  }
  .pluses__about {
    margin: 5px 0;
  }
  .pluses__bottom {
    margin-top: 20px;
  }
}
.mb-20 {
  margin-bottom: 20px;
}

.smeta {
  margin: 60px 0;
}
.smeta__title {
  margin-bottom: 15px;
}
.smeta__subtitle {
  margin-bottom: 15px;
}
.smeta__imgs {
  margin-bottom: 30px;
}
.smeta__img {
  display: flex;
}
.smeta__chel {
  width: clamp(30px, 50vw, 322px);
  position: relative;
  right: 0;
  bottom: -30px;
}
.smeta__chel img {
  display: block;
    position: relative;
  right: 0;
  bottom: 0px;

}
.smeta__text {
  background: url("../img/bgmain.webp");
  background-size: cover;
  background-repeat: no-repeat;
  padding: 30px;
  border-radius: 10px;
  position: relative;
  margin-bottom: 30px;
}
.smeta__text ul {
  list-style-type: disc;
}
.smeta__text ul li {
  color: #66727F;
  font-size: clamp(0.875rem, 0.8375rem + 0.1875vw, 1.0625rem);
  line-height: 1.3;
  padding: 7px 0;
}
.smeta__text .smeta__ul {
  list-style-type: none;
  color: #0B1F33;
  padding-right: 30px;
}
.smeta__text .smeta__ul li {
  margin-bottom: 20px;
}
.smeta__text h4 {
  font-weight: 700;
  font-size: clamp(0.875rem, 0.8375rem + 0.1875vw, 1.0625rem);
  margin-bottom: 10px;
  color: #0B1F33;
}
.smeta__text p {
  line-height: 1.4;
  color: #66727F;
  font-size: clamp(0.875rem, 0.8375rem + 0.1875vw, 1.0625rem);
  
}
.smeta__tizer1 {
  background: url(../img/tizer1.webp);
}
.smeta__tizer2 {
  background: url(../img/tizer2.webp);
}
.smeta__tizer3 {
  background: url(../img/tizer3.webp);
}
.smeta__tizer4 {
  background: url(../img/tizer4.webp);
}
.smeta__tizer {
  padding: 20px;
  border-radius: 10px;
  overflow: hidden;
  background-repeat: no-repeat;
  background-size: cover;
  color: #fff;
  line-height: 1.4;
  -o-object-fit: cover;
  object-fit: cover;
  min-height: 300px;
  background-position-y: center;
}
  .smeta__text-right ul{
        position: relative;
        z-index: 180;
    }
@media only screen and (max-width: 576px) {
    .smeta__text-right ul{
        max-width: 160px;
    }
}

.prezent {
  background: #0B1F33;
  color: #fff;
  border-radius: 10px;
  padding: 20px 0;
}
.prezent__title {
  padding: 0 20px;
  line-height: 1.3;
  font-size: 18px;
  display: block;
  margin-bottom: 10px;
}
.prezent__info {
  background: #fff;
  border-radius: 10px;
  margin: 0 20px 20px 20px;
  position: relative;
  padding: 15px;
}
.prezent__sticker {
  position: absolute;
  left: 10px;
  top: 20px;
  background: #26D366;
  font-size: 12px;
  text-transform: uppercase;
  padding: 4px 6px;
  border-radius: 4px;
  font-weight: 600;
}
.prezent__img {
  display: block;
  text-align: right;
}
.prezent__text {
  color: #0B1F33;
  line-height: 1.3;
  font-size: clamp(0.875rem, 0.825rem + 0.25vw, 1.125rem);
}
.prezent__form {
  padding: 0 20px;
}
.prezent__form label {
  width: 100%;
}
.prezent__input {
  color: #fff;
  background: rgba(255, 255, 255, 0.2588235294);
  width: 100%;
  box-shadow: none;
  border: none;
  margin-bottom: 10px;
  padding: 20px 10px 20px 15px;
  border-radius: 4px;
}
.prezent__input::-moz-placeholder {
  color: #fff;
}
.prezent__input::placeholder {
  color: #fff;
}

.sticky-top {
  position: sticky;
  top: 100px;
  z-index: 1;
}

.mobile {
  background: url("../img/bg4.webp");
  background-size: cover;
  background-repeat: no-repeat;
  padding: 60px 0;
}
.mobile__subtitle {
  margin-bottom: 30px;
  margin-top: 15px;
  position: relative;
  z-index: 20;
  max-width: 764px;
  line-height: 1.3;
}
.mobile__text {
  line-height: 1.4;
  margin-bottom: 20px;
  font-size: clamp(0.875rem, 0.8375rem + 0.1875vw, 1.0625rem);
  color: #66727F;
}
.mobile__links {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.mobile ul {
  position: relative;
  z-index: 20;
}
.mobile ul li {
  background: #fff;
  padding: 20px 15px 20px 60px;
  position: relative;
  color: #66727F;
  line-height: 1.4;
}
.mobile ul li:not(:last-child) {
  margin-bottom: 20px;
}
.mobile ul li::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto 0;
  left: 15px;
  background: url("../img/bullet.svg");
  width: 32px;
  height: 32px;
  display: block;
  z-index: 999;
}
.mobile__img {
  position: absolute;
  right: 0;
  bottom: -60px;
  z-index: 0;
  width: clamp(30px, 80vw, 700px);
}
.mobile__img img {
  display: block;
}

@media only screen and (max-width: 767px) {
  .mobile__img {
    position: relative;
  }
}
@media only screen and (max-width: 576px) {
  .mobile {
    padding-top: 30px;
  }
  .mobile__subtitle {
    margin-bottom: 0;
  }
}
.partners {
  --partners-gap: 32px;
  --partners-logo-width: 264px;
  --partners-logo-height: 145px;
  padding: 60px 0;
  background: #F7F8F9;
  overflow-x: hidden;
}

.partners-title {
  margin-bottom: 15px;
}

.partners-subtitle {
  margin-bottom: 30px;
  line-height: 1.3;
}

.partners__items {
  justify-items: center;
  align-items: center;
}

.partners__text-before {
  width: 256px;
  padding-right: 32px;
  flex-shrink: 0;
}

.partners__link {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
}

.partners__image {
  transition: all ease-out 0.2s;
  filter: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg'><filter id='grayscale'><feColorMatrix type='matrix' values='0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0'/></filter></svg>#grayscale");
  /* Firefox 10+, Firefox on Android */
  filter: gray;
  /* IE6-9 */
  max-width: 210px;
  max-height: 70px;
}

.partners__link:hover ~ .partners__image-wrap .partners__image {
  filter: none;
  -webkit-filter: grayscale(0%);
}

.partners__image-wrap {
  transition: all ease-out 0.2s;
  filter: progid:DXImageTransform.Microsoft.Alpha(opacity=50);
  -moz-opacity: 0.5;
  -khtml-opacity: 0.5;
  opacity: 0.5;
}

.partners__link:hover ~ .partners__image-wrap {
  filter: progid:DXImageTransform.Microsoft.Alpha(opacity=100);
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
}

.partners__item {
  position: relative;
}

.partners__slider-first {
  margin-bottom: var(--partners-gap);
}

.carousel-wrapper {
  display: grid;
  grid-gap: var(--partners-gap);
  grid-template-rows: var(--partners-logo-height);
  grid-template-columns: repeat(var(--partners-columns-count), var(--partners-logo-width));
}

.partners__item {
  background: #fff;
}

.carousel-container.partners__slider-first {
  animation: var(--partners-animation-time) linear 0s infinite normal none running carousel;
}

.carousel-container.partners__slider-second {
  animation: var(--partners-animation-time) linear 0s infinite normal none running carousel-reverse;
}

.carousel-container {
  display: grid;
  grid-gap: var(--partners-gap);
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr;
  width: calc(var(--partners-logo-width) * var(--partners-columns-count) + var(--partners-gap) * (var(--partners-columns-count) - 1));
}

@keyframes carousel {
  0% {
    transform: translateX(0px);
  }
  100% {
    transform: translateX(calc(-1 * (100% + var(--partners-gap))));
  }
}
@keyframes carousel-reverse {
  0% {
    transform: translateX(calc(-1 * (100% + var(--partners-gap))));
  }
  100% {
    transform: translateX(0px);
  }
}
.partners__topic {
  justify-content: space-between;
  cursor: default;
  padding: 0px 0px 68px;
}

.partners__topic-left,
.partners__topic-right {
  max-width: 50%;
}

.partners__topic-left {
  padding-right: 32px;
  font-size: 3.3333em;
  font-size: clamp(1.4rem, 1.009rem + 1.84vw, 3.3333rem);
  line-height: 1.2;
}

.partners__topic-right {
  padding-left: 20px;
  padding-top: 5px;
}

.partners__subtitle {
  font-size: clamp(1.1333rem, 1.0847rem + 0.2027vw, 1.3333rem);
  line-height: 1.5;
  padding-bottom: 20px;
}

.partners__link-all .svg-arrow-right-xxs {
  display: inline-block;
  margin-left: 14px;
}

.partners__link-all:hover .svg-arrow-right-xxs use {
  stroke: var(--dark);
}

@media (max-width: 991px) {
  .partners {
    flex-direction: column;
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .partners__text-before {
    width: 100%;
    padding-bottom: 32px;
  }
  .partners .partners__items {
    --gr-4: 3;
    gap: 30px 20px;
  }
  .partners-topic__inner {
    flex-direction: column;
  }
  .partners__topic-left,
  .partners__topic-right {
    max-width: 100%;
  }
  .partners__topic-right {
    padding-left: 0;
    padding-top: 15px;
  }
  .partners__topic {
    /* padding-top: 60px; */
    padding-bottom: 32px;
  }
}
@media (max-width: 767px) {
  .carousel-container {
    --partners-gap: 16px;
  }
}
.d-flex {
  display: flex;
}

.justify-content-center {
  justify-content: center;
}

.align-items-center {
  align-items: center;
}

.partners-wrp {
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
}
.partners-wrp p {
  line-height: 1.7;
  color: #000;
  padding-left: 40px;
}

.partners__title {
  font-size: 28px;
  color: #000;
  line-height: 1.4;
  max-width: 50%;
  font-weight: 400;
  margin-bottom: 20px;
  margin-top: 0;
}

@media only screen and (max-width: 768px) {
  .partners-wrp {
    flex-wrap: wrap;
  }
  .partners-wrp p {
    padding-left: 0;
  }
  .partners__title {
    font-size: 20px;
  }
}
@media only screen and (max-width: 576px) {
  .partners {
    padding-bottom: 30px;
    padding-top: 30px;
  }
}
#mainCarousel {
  width: 100%;
  margin: 0 auto 1rem auto;
  --carousel-button-color: #66727F;
  --carousel-button-bg: #fff;
  --carousel-button-shadow: 0 2px 1px -1px rgb(0 0 0 / 20%),
      0 1px 1px 0 rgb(0 0 0 / 14%), 0 1px 3px 0 rgb(0 0 0 / 12%);
  --carousel-button-svg-width: 13px;
  --carousel-button-svg-height: 13px;
  --carousel-button-width: 44px;
  --carousel-button-height: 44px;
  --carousel-button-svg-stroke-width: 2.5;
}

#mainCarousel .carousel__slide {
  width: 100%;
  padding: 0;
  text-align: center;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}
#mainCarousel .carousel__slide img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  border-style: none;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
  border-radius: 10px;
}

.carousel__slide-text {
  position: absolute;
  left: 0;
  bottom: 30px;
  background: #EA3314;
  color: #fff;
  font-size: 16px;
  padding: 7px 16px;
}

#mainCarousel .carousel__button.is-prev {
  left: -1.5rem;
}

#mainCarousel .carousel__button.is-next {
  right: -1.5rem;
}

#mainCarousel .carousel__button:focus {
  outline: none;
  box-shadow: none;
}

#thumbCarousel {
  margin-bottom: 20px;
}

#thumbCarousel .carousel__slide {
  opacity: 0.5;
  padding: 0;
  margin: 0.25rem;
  width: 96px;
  height: 64px;
  overflow: hidden;
}

#thumbCarousel .carousel__slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 4px;
}

#thumbCarousel .carousel__slide.is-nav-selected {
  opacity: 1;
}

@media only screen and (max-width: 768px) {
  #mainCarousel .carousel__button.is-prev {
    display: none;
  }
  #mainCarousel .carousel__button.is-next {
    display: none;
  }
}
@media only screen and (max-width: 578px) {
  #mainCarousel .carousel__slide {
    height: 300px;
  }
  #mainCarousel .carousel__slide img {
    -o-object-fit: contain;
    object-fit: contain;
  }
}
.product {
  padding: 30px 0 30px 0;
  background: #fff;
  margin-top: -4px;
}
.product__wrp {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
}
.product__ic {
  width: 20px;
  height: 20px;
}
.product__price {
  font-size: 22px;
}
.product p {
  font-size: 16px;
  line-height: 1.4;
  color: #66727F;
  padding: 7px 0;
}
.product strong,
.product b {
  color: #0B1F33;
}
.product .categories__tags {
  margin-top: 0;
}
.product__tizers {
  display: flex;
  gap: 5px;
  margin: 20px 0;
  width: 100%;
}
.product__tizer {
  display: flex;
  gap: 10px;
  padding: 15px;
  background: #fff;
  border-radius: 4px;
  width: 33%;
}
.product__tizer-img {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
}
.product__tizer-wrp {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-shrink: 1;
}
.product__tizer-title {
  font-size: 16px;
  color: #66727F;
}
.product__tizer-info {
  font-size: 22px;
}

@media only screen and (max-width: 1400px) {
  .product__tizer-info {
    font-size: 16px;
  }
  .product__tizer-img {
    flex-shrink: 0;
    width: 38px;
    height: 38px;
  }
}
@media only screen and (max-width: 1200px) {
  .product__tizers {
    flex-wrap: wrap;
  }
  .product__tizer {
    flex-basis: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .product__tizer {
    flex-basis: 49%;
  }
}
@media only screen and (max-width: 578px) {
  .product {
    padding: 15px 0;
  }
  .product__wrp {
    flex-wrap: wrap;
  }
  .product p {
    font-size: 14px;
  }
}
.derev {
  background: url("../img/bg5.webp");
  background-size: cover;
  background-repeat: no-repeat;
  padding: 60px 0;
}
.derev__title {
  margin-bottom: 30px;
}
.derev__info {
  border: 1px solid rgba(255, 255, 255, 0.37);
  border-radius: 10px;
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  background: rgba(255, 255, 255, 0.48);
  padding: 30px;
}
.derev__top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}
.derev__heading {
  font-size: clamp(1.125rem, 1.05rem + 0.375vw, 1.5rem);
  max-width: 200px;
}
.derev__btn {
  padding: 20px 30px;
  flex-shrink: 0;
}
.derev__text {
  color: #66727F;
}
.derev__text p {
  padding: 7px 0;
  line-height: 1.4;
  font-size: clamp(0.875rem, 0.8375rem + 0.1875vw, 1.0625rem);
}
.derev__text li {
  padding: 7px 0;
  line-height: 1.4;
  font-size: clamp(0.875rem, 0.8375rem + 0.1875vw, 1.0625rem);
}
.derev__text ul {
    padding-left: 30px;
    list-style-type: disc;
}
.derev__text strong {
  color: #0B1F33;
  line-height: 1.3;
}
.derev__text li:not(:last-child){
  margin-bottom: 7px;
}

@media only screen and (max-width: 576px) {
  .derev {
    padding: 30px 0;
  }
  .derev__top {
    flex-wrap: wrap;
    gap: 15px;
  }
}
.swiper-horizontal > .swiper-scrollbar,
.swiper-scrollbar.swiper-scrollbar-horizontal {
  height: 2px;
  position: relative;
  margin-bottom: 10px;
}

.swiper-horizontal > .swiper-scrollbar2,
.swiper-scrollbar2.swiper-scrollbar-horizontal {
  height: 2px;
  position: relative;
  margin-bottom: 10px;
}

.swiper-scrollbar-drag {
  background: #EA3314;
}

.swiper-scrollbar2 {
  border-radius: 10px;
  position: relative;
  background: rgba(0, 0, 0, 0.1);
}

.groups_nav {
  display: flex;
  justify-content: start;
}

.groups_ic {
  width: 10px;
  height: 16px;
  fill: #EA3314;
}

.slider-btn {
  width: 48px;
  height: 48px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
  box-shadow: 0px 20px 20px 0px rgba(0, 0, 0, 0.1);
}
.slider-btn:hover {
  background: #EA3314;
  box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.1);
}
.slider-btn:hover .groups_ic {
  fill: #fff;
}

.doctors__slider {
  margin: 20px 0 30px 0;
  padding-bottom: 30px;
}

.doctor {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.doctor__img {
  height: 358px;
  width: 100%;
  object-fit: contain;
  margin-bottom: 20px;
  border-radius: 10px;
  display: block;
}
.doctor__post {
  color: #66727F;
  font-size: 17px;
  margin-bottom: 15px;
}
.doctor__name {
  font-weight: 700;
  font-size: 17px;
  margin-bottom: 17px;
  line-height: 1.3;
}
.doctor__stage {
  font-size: 17px;
  margin-bottom: 20px;
}
.doctor__btn {
  margin-top: auto;
  padding: 20px 30px;
  align-self: flex-start;
}

.staff {
  padding: 60px 0;
  background: url("../img/bg3.webp");
  background-repeat: no-repeat;
  background-size: cover;
}
.staff__title {
  font-size: clamp(1.25rem, 1.15rem + 0.5vw, 1.75rem);
  margin-bottom: 10px;
}
.staff__subtitle {
  font-size: clamp(0.875rem, 0.8375rem + 0.1875vw, 1.0625rem);
  line-height: 1.3;
  color: #66727F;
}
.staff__slider {
  margin: 20px 0 30px 0;
  padding-bottom: 30px;
}
.staff__img {
  max-height: 486px;
  border-radius: 10px;
  overflow: hidden;
}
.staff__img img {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  max-height: 486px;
  display: block;
}

@media only screen and (max-width: 576px) {
  .staff {
    padding: 30px 0;
  }
  .staff__slider {
    margin: 30px 0 30px 0;
    padding-bottom: 10px;
  }
  .staff__img {
    max-height: 386px;
  }
  .staff__img img {
    max-height: 386px;
  }
  .doctors__slider {
    margin: 30px 0 30px 0;
    padding-bottom: 10px;
  }
}
.projects {
  padding: 60px 0;
}
.projects__title {
  margin-bottom: 30px;
}
.projects__vidos {
  position: relative;
  display: block;
}
.projects__tube {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 94px;
  opacity: 0.8;
  cursor: pointer;
  transition: all 0.3s;
}
.projects__tube:hover {
  opacity: 1;
}
.projects__gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 15px;
}
.projects__photo {
  width: 113px;
  height: 151px;
  border-radius: 10px;
  overflow: hidden;
  opacity: 0.9;
}
.projects__photo:hover {
  opacity: 1;
}
.projects__photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.project {
  display: block;
  width: 100%;
  overflow: hidden;
  transition: all 0.5s;
}
.project:hover .project__title {
  color: #EA3314;
}
.project__img {
  width: 100%;
  height: 230px;
  position: relative;
}
.project__img img {
  border-radius: 10px;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
}
.project__icon {
  width: 20px;
  height: 20px;
  fill: #fff;
}
.project__sticker {
  position: absolute;
  bottom: 15px;
  left: 15px;
  background: #EA3314;
  padding: 7px;
  border-radius: 4px;
  font-size: 13px;
  color: #fff;
  display: flex;
  align-items: center;
}
.project__title {
  display: block;
  line-height: 1.3;
  font-size: clamp(0.875rem, 0.8375rem + 0.1875vw, 1.0625rem);
  color: #0B1F33;
  margin-top: 10px;
  transition: all 0.5s;
}
.project__title:hover {
  color: #EA3314;
}

@media only screen and (max-width: 768px) {
  .projects__gallery {
    margin-bottom: 20px;
  }
  .project__img {
    height: 200px;
  }
  .project__img img {
    width: auto;
  }
  .project__sticker {
    left: 5px;
  }
}
body.modal-open {
  padding-right: 0px !important;
}

body {
  overflow-y: scroll !important;
}

.compensate-for-scrollbar {
  padding-right: 0px !important;
}

textarea:focus {
  border: none;
  outline: none !important;
}

.modal-header {
  justify-content: center;
  position: relative;
}

.graypart {
  background-color: #f6f9fc;
}

.mc-wrp {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-content {
  position: relative;
}

.btn-close {
  position: absolute;
  right: 15px;
  top: 15px;
  z-index: 50;
}

#watchme {
  border: none;
  background: transparent;
  box-shadow: none;
}
#watchme .btn-close {
  right: -30px;
}
#watchme .modal-content {
  border: none;
  background: transparent;
  box-shadow: none;
}

.modal-title {
  font-weight: 600;
  font-size: 22px;
  line-height: 1.2;
  color: #282828;
}

.modal-contacts {
  padding: 20px 40px;
}
.modal-contacts__heading {
  font-weight: 300;
  font-size: 16px;
  line-height: 1.4;
  margin-bottom: 20px;
  color: #282828;
}
.modal-contacts__contacts a {
  display: block;
  font-size: 18px;
  line-height: 1.5;
  font-weight: 700;
  color: #282828;
  margin-bottom: 5px;
}
.modal-contacts__bottom {
  margin-top: 40px;
  font-size: 14px;
  display: inline-flex;
  color: #282828;
  align-items: center;
  padding: 10px 17px;
  border: 1px solid #ececec;
  -moz-column-break-after: 4px;
  break-after: 4px;
}
.modal-contacts__bottom span {
  margin-left: 10px;
}
.modal-contacts__bottom .ic_modal {
  width: 20px;
  height: 20px;
  fill: #EA3314;
}

.files {
  font-size: 10px;
}

.form-group_modal {
  padding: 33px;
}
.form-group_modal label {
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 10px;
  width: 100%;
}

.form_input__modal {
  padding: 13px 0px;
  border: none;
  border-bottom: 1px solid lightgray;
  margin-bottom: 20px;
  border-radius: 0px;
  width: 100%;
  background: transparent;
}
.form_input__modal:focus {
  border-bottom: 2px solid #EA3314;
}

.form_group__bottom-modal {
  padding: 0px 40px;
  flex-direction: column;
  margin-bottom: 20px;
}

.form_btn__modal {
  padding: 17px 40px;
  background: #EA3314;
  color: #fff;
  border: 1px solid #EA3314;
  transition: all 0.3s;
  display: block;
  margin-bottom: 30px;
  border-radius: 4px;
}
.form_btn__modal:hover {
  background: #fff;
  color: #244d72;
  border: 1px solid #EA3314;
}

.politika_modal {
  font-size: 12px;
  line-height: 1.4;
  margin-bottom: 20px;
}

.close-menu__modal {
  position: absolute;
  right: 15px;
  top: 30px;
  cursor: pointer;
  width: 25px;
  height: 25px;
  z-index: 900;
}

.close-menu__modal span {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background: #282828;
  border-radius: 9px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
}

.close-menu__modal span:nth-child(1) {
  top: 12px;
  width: 0%;
  left: 50%;
}

.close-menu__modal span:nth-child(2) {
  transform: rotate(45deg);
}

.close-menu__modal span:nth-child(3) {
  transform: rotate(-45deg);
}

.close-menu__modal span:nth-child(4) {
  top: 12px;
  width: 0%;
  left: 50%;
}

.reg_tabs {
  margin: 0 40px;
}

.modal-header_reg {
  border-bottom: 1px solid transparent;
  flex-direction: column;
  padding: 30px 0;
}

.modal-header {
  padding: 40px 20px 20px 40px;
  display: flex;
  flex-direction: column;
}
.modal-header h5 {
  font-weight: 700;
  font-size: 22px;
  line-height: 1.2;
}
.modal-header h5 span {
  font-weight: 300;
  font-size: 18px;
}
.modal-header a {
  display: block;
  font-size: 22px;
  text-decoration: none;
  font-weight: 700;
}

.modal-body {
  position: relative;
  z-index: 700;
  padding: 0;
}

#success {
  margin: auto auto;
  max-width: 460px;
  height: 400px;
  background-color: #fff;
  background-image: none;
  text-align: center;
  padding: 40px;
  display: none;
  z-index: 9999;
  position: fixed;
  top: 50%;
  left: 0;
  right: 0;
  box-shadow: 1px 10px 20px rgba(30, 30, 30, 0.3019607843);
  bottom: 50%;
}

.span-hidden {
  display: none;
}

.text_success {
  font-size: 34px;
  line-height: 1.5;
}

.radio_title {
  font-size: 12px;
  font-weight: 600;
}

.radio_mtitle {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 15px;
}

.radio_block {
  display: flex;
  font-size: 12px;
  align-items: center;
  margin-bottom: 7px;
}
.radio_block input,
.radio_block .radio_title,
.radio_block .radio_old-price {
  margin-right: 10px;
}

.radio_old-price {
  text-decoration: line-through;
  opacity: 0.5;
}

.radio_new-price {
  font-family: "Arial";
  font-weight: 700;
}

.form_group__bottom-modal p {
  font-size: 11px;
  margin-left: 10px;
}

.modal-content .custom_chek {
  display: flex;
  align-items: center;
  padding: 15px 0px;
}
.modal-content .custom_chek p {
  font-size: 11px;
  margin-left: 10px;
  line-height: 1.3;
}

@media only screen and (max-width: 568px) {
  .modal-title {
    font-size: 22px;
    margin-top: 20px;
  }
  .form-group_modal,
  .form_group__bottom-modal {
    padding: 20px 20px;
  }
  .modal-header {
    padding-top: 60px;
  }
  .modal_heading {
    padding: 0px 0px;
    margin-bottom: 20px;
  }
  .text_success {
    font-size: 24px;
    line-height: 1.5;
  }
}
.modal-content {
  height: auto !important;
  overflow: hidden !important;
}

.span-hidden {
  display: none;
}

.checkbox-text {
  margin-left: 10px;
  line-height: 1.3;
  margin-top: -5px;
}

.just-validate-error-label {
  background: #fff !important;
  font-size: 12px !important;
  padding: 4px !important;
  border-radius: 5px !important;
}

.button__modal {
  padding: 20px 40px;
}

.cresults__checkbox {
  margin-top: 20px;
}
.cresults__checkbox .checkbox-text {
  margin-left: 0;
  display: block;
}

.panel {
  position: fixed;
  right: 10px;
  bottom: 10px;
  display: inline-flex;
  flex-direction: column;
  right: 10px !important;
  border-radius: 80px;
  background: #E5D7C4;
  padding: 4px;
  z-index: 100;
}
.panel__ic {
  width: 60px;
  height: 60px;
}
.panel__ic:not(:last-child) {
  margin-bottom: 15px;
}
.panel__ic:hover {
  opacity: 0.7;
}

@media only screen and (max-width: 578px) {
  .panel__ic {
    width: 40px;
    height: 40px;
  }
}
.toast {
  padding: 12px;
  margin: 10px;
  position: relative;
  background-color: #fff;
}
.toast__header {
  display: flex;
  justify-content: end;
}
.toast__wrp {
  display: flex;
}
.toast__img {
  flex-shrink: 0;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid rgb(190, 200, 210);
  margin-right: 15px;
}
.toast__title {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 7px;
  color: #0B1F33;
  line-height: 1.3;
  max-width: 200px;
}
.toast__text {
  color: #66727F;
  font-size: 14px;
  line-height: 1.3;
  margin-bottom: 15px;
}
.toast .btn-close {
  position: absolute;
  right: 7px;
  top: 7px;
}
.toast__link {
  color: #EA3314;
  text-decoration: underline;
}

@media only screen and (max-width: 578px) {
  .toast__img {
    width: 60px;
    height: 60px;
  }
}
.contacts {
  border: 1px solid #ececec;
  padding: 20px;
}
.contacts__top {
  width: 100%;
  height: 300px;
  position: relative;
  margin-bottom: 20px;
}
.contacts__top img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.contacts__info {
  position: absolute;
  bottom: 0;
  left: 0px;
  background: linear-gradient(rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.9) 100%);
  padding-top: 30px;
  padding-left: 20px;
  padding-right: 10px;
  width: 100%;
}
.contacts__subtitle {
  font-size: 14px;
  color: #fff;
  margin-bottom: 20px;
}
.contacts__title {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 20px;
}
.contacts__group {
  margin: 20px 0;
}
.contacts__label {
  font-size: 16px;
  color: #66727F;
  margin-bottom: 10px;
}
.contacts__input {
  margin-bottom: 10px;
}
.contacts__input a {
  color: #0B1F33;
  font-size: 18px;
  text-decoration: none;
  display: block;
  margin-bottom: 10px;
  font-weight: 600;
}
.contacts__time {
  display: block;
  margin-bottom: 7px;
  color: #0B1F33;
}
.contacts__btn {
  width: 100%;
  background: #fff;
  border: 1px solid #EA3314;
  color: #EA3314;
  font-weight: 600;
  padding: 15px 5px;
  cursor: pointer;
  transition: all 0.3s;
  display: block;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
}
.contacts__btn:hover {
  border: 1px solid #EA3314;
  color: #fff;
  background: #EA3314;
}

.content-contacts {
  margin: 20px 0;
}

.rekv-btn {
  display: inline-block;
  width: auto;
}

.content {
  color: #0B1F33;
  background: #fff;
  padding: 20px;
  margin-top: -40px;
  box-shadow: 0px 10px 20px rgba(182, 192, 206, 0.17);
}
.content table {
  font-size: 16px;
  line-height: 1.3;
  color: #0B1F33;
}
.content h2 {
  font-size: 22px;
  font-weight: 600;
  margin: 7px 0;
  line-height: 1.3;
}
.content h3 {
  font-size: 20px;
  font-weight: 500;
  margin: 7px 0;
  line-height: 1.3;
}
.content p {
  line-height: 1.5;
  padding: 7px 0;
  color: #66727F;
}
.content ol {
  color: #66727F;
  list-style-type: none;
  padding: 15px 0 15px 30px;
}
.content ol li {
  line-height: 1.7;
}
.content ul {
  color: #66727F;
  list-style-type: disc;
  padding: 15px 0 15px 30px;
}
.content ul li {
  line-height: 1.7;
}
.content__img img {
  margin-bottom: 20px;
  display: block;
}
.content .table-responsive {
  margin-bottom: 40px;
}

@media only screen and (max-width: 578px) {
  .content {
    padding: 0px;
    margin-top: 0px;
    box-shadow: none;
  }
  .content table {
    font-size: 12px;
    line-height: 1.3;
    color: #0B1F33;
    margin-bottom: 30px;
  }
  .content h2 {
    font-size: 20px;
    font-weight: 600;
    margin: 7px 0;
    line-height: 1.3;
  }
  .content h3 {
    font-size: 18px;
    font-weight: 500;
    margin: 7px 0;
    line-height: 1.3;
  }
  .content p {
    font-size: 14px;
  }
  .content ol {
    font-size: 14px;
    list-style-type: none;
    padding: 10px 10px 20px;
  }
  .content ol li {
    line-height: 1.7;
  }
  .content ul {
    font-size: 14px;
    list-style-type: disc;
    padding: 10px 0 10px 20px;
  }
}
.main-text {
  background: #ececec;
  padding: 20px 20px 20px 40px !important;
  border-left: 2px solid #EA3314;
  margin: 20px 0;
  line-height: 1.4;
}

@media only screen and (max-width: 578px) {
  .main-text {
    padding: 20px 10px 20px 30px !important;
    margin: 20px 0;
    line-height: 1.4;
    font-size: 14px;
  }
}
.sidebar {
  margin: 15px 0;
}

.category_item {
  display: flex;
  flex-direction: column;
  background: #fff;
  padding: 10px 10px 20px 10px;
  border-radius: 20px;
  width: 100%;
  box-shadow: 0 20px 20px rgba(117, 117, 117, 0.1607843137);
}

.category_item:hover {
  box-shadow: 0 5px 5px rgba(117, 117, 117, 0.1607843137);
}

.category_item:hover .category__title {
  color: #0477c5;
}

.category__image {
  border-radius: 20px;
  height: 220px;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.category__title {
  font-size: clamp(0.875rem, 0.8375rem + 0.1875vw, 1.0625rem);
  color: #0B1F33;
  margin-top: 20px;
  line-height: 1.3;
  font-weight: 500;
}

@media only screen and (max-width: 578px) {
  .category__image {
    height: 120px;
  }
}
.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.footer {
  margin-top: auto;
  padding: 60px 0;
  background: #172A3A;
  color: #fff;
}
.footer__logo {
  display: flex;
  align-items: center;
  flex-basis: 30%;
  padding-right: 40px;
  margin-bottom: 30px;
}
.footer__logo img {
  border-radius: 8px;
  max-width: 100px;
}
.footer__phones {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}
.footer__phone {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  display: block;
}
.footer__phone:hover {
  color: #fff;
}
.footer__desc {
  opacity: 0.7;
  line-height: 1.3;
  font-size: clamp(0.875rem, 0.8375rem + 0.1875vw, 1.0625rem);
}
.footer__text {
  display: flex;
  gap: 4px;
  margin-bottom: 30px;
}
.footer__text a {
  color: #fff;
  opacity: 0.6;
}
.footer__text a:hover {
  opacity: 1;
}
.footer__icon {
  width: 19px;
  height: 19px;
  fill: #EA3314;
  margin-right: 10px;
}
.footer__payment {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 10px;
  margin: 20px 0;
}
.footer__title {
  text-transform: uppercase;
  font-size: 16px;
  margin-bottom: 20px;
  font-weight: 700;
}
.footer__contacts {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.footer__contacts a {
  color: #fff;
}
.footer__li {
  padding: 12px 0;
}
.footer__a {
  color: #fff;
  opacity: 0.6;
}
.footer__a:hover {
  color: #fff;
  opacity: 1;
}
.footer__info {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
}
.footer__privacy {
  font-size: 14px;
  line-height: 1.4;
  opacity: 0.6;
}
.footer__delosait {
  font-size: 14px;
}
.footer__delosait a {
  color: #6d6f74;
}
.footer__ic {
  width: 15px;
  height: 15px;
  fill: rgb(180, 18, 18);
}

@media only screen and (max-width: 578px) {
  .footer__btns {
    margin-bottom: 20px;
  }
  .footer__privacy {
    margin-bottom: 20px;
  }
  .footer__title {
    margin-bottom: 10px;
  }
  .footer__block {
    margin: 20px 0;
  }
}

.square__icon{
  width: 30px;
  height: 30px;
 fill: #ccc;
  left: 10px;
  top: 0;
  bottom: 0;
  margin: auto 0;
  position: absolute;
  z-index: 200;
}
.square__input{
padding-left: 50px;
}
.order2{
    order: 2;
}
.order1{
    order: 1;
}

.page-product .responces {
  padding: 0 0 60px 0;
}

.responces__wrp {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  align-items: center;
  justify-content: space-between;
}

.responces__wrapper {
  position: relative;
}

.responces__title {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.responces__banners {
  display: flex;
  gap: 10px;
}

.responces__btn {
  padding: 20px 30px;
}

.responces__slider {
  position: relative;
}

.responce {
  background: #fff;
  box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  border-radius: 4px;
  width: 100%;
  height: auto;
}

.responce__wrp {
  display: flex;
  padding: 20px;
  flex-wrap: wrap;
  gap: 20px;
}

.responce__img {
  width: 80px;
  height: 80px;
  border-radius: 4px;
  overflow: hidden;
}

.responce__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.responce__info {
  display: flex;
  flex-direction: column;
}

.responce__name {
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 15px;
}

.responce__stars {
  display: flex;
  gap: 3px;
}

.responce__star {
  width: 16px;
  height: 16px;
}

.responce__text {
  line-height: 1.4;
  color: #66727F;
  font-size: 16px;
  padding: 0 20px 20px 20px;
}

@media only screen and (max-width: 578px) {
  .responces {
    padding: 30px 0;
  }

  .page-product .responces {
    padding: 0 0 30px 0;
  }

  .responces__slider {
    margin-top: 20px;
  }

  .responce__text {
    font-size: 14px;
  }

  .responce__name {
    font-size: 14px;
  }
}

.paykeeperr{
    width: 100px ;
}



.gallery__slider-wrp {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
}
.gallery__swiper {
  height: 100%;
}
.gallery__img {
  height: 100%;
}
.gallery__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.gallery__arrows {
  position: absolute;
  left: 15px;
  bottom: 55px;
  z-index: 20;
  display: flex;
  gap: 10px;
}
.gallery__arrow {
  height: 50px;
  width: 50px;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s;
  background: rgba(255, 255, 255, 0.2);
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
}
.gallery .gallery__ic {
  fill: #fff;
}
.gallery__arrow:hover {
  cursor: pointer;
  background: #EA3314;
}
.gallery__arrow:hover .gallery__ic {
  fill: #fff;
}
.gallery__ic {
  width: 8px;
  height: 16px;
  fill: #fff;
}

@media only screen and (max-width: 578px) {
  .gallery__arrows {
    display: none;
  }
}
.prepods-pagination {
  position: relative;
  bottom: 0px !important;
  margin-top: 20px;
}

.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  transition: all 0.3s;
}

.swiper-pagination-bullet-active {
  background: #EA3314;
  width: 66px;
  border-radius: 20px;
  transition: all 0.3s;
}


.video__item {
  width: 100%;
  display: flex;
  flex-direction: column;
  background: #fff;

}

.video__title {
  font-size: 16px;
  line-height: 1.4;
  color: #0B1F33;
}

.video__wrp {
  position: relative;
  height: 250px;
  margin-bottom: 10px;
}

.video__wrp img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 4px;
}

.video__wrp .play-icon {
  width: 70px;
  height: 70px;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  margin: auto;
  background: rgba(128, 128, 128, 0.248);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.video__wrp .play-icon img {
  width: 50px;
  height: 50px;
  transition: all 0.3s;
  margin-bottom: 0!important;
}

.play-icon:hover {
  transition: all 0.3s;
  animation: vanish-out 3000ms linear 0ms infinite normal both;
}

@media only screen and (max-width: 1400px) {
  .video__wrp {
    height: 170px;
  }
}

@media only screen and (max-width: 578px) {
  .video {
    padding: 0 0 0 0;
  }

  .video__wrp {
    height: 100px;
  }

  .video__title {
    font-size: 14px;
  }
}
