@charset "UTF-8";
html {
  height: 100%;
}

body {
  font-family: "Futura PT";
  color: #03053D;
  font-weight: normal;
  height: 100%;
  display: flex;
  flex-direction: column;
}

body.show-menu {
  overflow: hidden;
}

.wrapper {
  width: 1472px;
  box-sizing: border-box;
  margin: 0 auto;
}

a {
  outline: none;
}

input {
  outline: none;
}

.main {
  flex: 1 0 auto;
}

.section__title {
  color: #03053D;
  font-size: 40px;
  line-height: 60px;
  margin: 0;
}

.section__title_center {
  text-align: center;
}

.section {
  padding-top: 140px;
}

.section_inner {
  padding-top: 0;
}

.title-flex-block {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.title-flex-block a {
  color: #AEAEAE;
  text-decoration: none;
  font-size: 24px;
  line-height: 32px;
}
.title-flex-block a:hover {
  color: #03053D;
}

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

.section__morelink {
  font-size: 24px;
  line-height: 32px;
  text-decoration: none;
  color: #03053D;
  transition: 0.2s;
}

.section__morelink:hover {
  color: #4488AE;
}

.section_pb140 {
  margin-bottom: 140px;
}

.header-wrap {
  border-bottom: 1px solid #EBEBEB;
}

.header {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__logo {
  background-image: url("../images/logo.png");
  background-size: contain;
  width: 113px;
  height: 48px;
  display: block;
}

.header__city {
  font-size: 18px;
  color: #03053D;
  text-decoration: none;
  display: flex;
  gap: 6px;
  align-items: center;
  transition: 0.2s;
}

.header__city:hover {
  color: #62A6CC;
}

.header__city:before {
  content: url("../images/map-pin-line.svg");
  height: 20px;
}

.header__worktime {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 18px;
}

.header__worktime:before {
  content: url("../images/time-line.png");
  height: 20px;
}

.header__flex1 {
  display: flex;
  align-items: center;
  gap: 48px;
}

.header__contacts {
  display: flex;
  align-items: center;
  gap: 26px;
}

.header__phone {
  color: #03053D;
  font-size: 20px;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: 0.2s;
}

.header__phone:hover {
  color: #62A6CC;
}

.header__phone:before {
  content: url("../images/phone-line.svg");
  height: 24px;
}

.header__messengers {
  display: flex;
  gap: 8px;
}

.header__email {
  font-size: 18px;
  color: #03053D;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: 0.2s;
}

.header__email:hover {
  color: #62A6CC;
}

.header__email:before {
  content: url("../images/mail-open-line.svg");
  height: 20px;
}

.m-menu-btn {
  display: none;
}

@media (max-width: 992px) {
  .header .header__call, .header__flex1, .header__email, .header .btn, .header__phone:before {
    display: none;
  }
  .header__contacts {
    gap: 10px;
  }
  .header__messengers {
    gap: 10px;
  }
  .header {
    height: 50px;
  }
  .header__logo {
    background-image: url("../images/logo_m.png");
    width: 41px;
    height: 40px;
  }
  .m-menu-btn {
    display: block;
    border: none;
    background: none;
    cursor: pointer;
    padding: 0;
    width: 24px;
    height: 24px;
    background-image: url("../images/menu-btn.png");
    background-position: center top;
  }
  .m-menu-btn.active {
    background-position: center 100%;
  }
}
.nav {
  height: 42px;
  background: #03053D;
  z-index: 1001;
  position: relative;
}

.nav ul {
  height: 42px;
  display: flex;
  justify-content: space-between;
  margin: 0;
  padding: 0;
}
.nav ul li {
  list-style: none;
}
.nav ul li a {
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #C8CAE6;
  text-decoration: none;
  display: flex;
  align-items: center;
  transition: 0.2s;
  font-size: 20px;
  position: relative;
}
.nav ul li a span {
  visibility: hidden;
}
.nav ul li a:before {
  content: attr(data-title);
  position: absolute;
  left: 0;
  white-space: nowrap;
}
.nav ul li a:hover {
  color: #fff;
}
.nav ul li a:hover:before {
  font-weight: 600;
}
.nav ul li a.active:before {
  font-weight: 600;
}
.nav ul .nav__category {
  position: relative;
}
.nav ul .nav__category ul {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  background: #fff;
  gap: 8px 56px;
  box-sizing: border-box;
  padding: 20px 28px;
  height: auto;
  width: 520px;
  border-radius: 12px;
  top: calc(100% + 10px);
}
.nav ul .nav__category ul li {
  width: calc((100% - 56px) / 2);
}
.nav ul .nav__category ul li a {
  height: auto;
  color: #03053D;
  white-space: nowrap;
  font-size: 16px;
  transition: 0.2s;
}
.nav ul .nav__category ul:after {
  content: "";
  width: 1px;
  height: calc(100% - 52px);
  position: absolute;
  display: block;
  background: #EBEBEB;
  top: 26px;
  left: 50%;
  transform: translate(-50%, 0);
}
.nav ul .nav__category ul.nav__category__main {
  flex-direction: column;
  position: relative;
}
.nav ul .nav__category ul.nav__category__main li {
  width: calc(50% - 28px);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav ul .nav__category ul.nav__category__main li a {
  position: relative;
  z-index: 2;
}
.nav ul .nav__category ul.nav__category__main li svg {
  transition: 0.5s;
  position: relative;
  z-index: 2;
}
.nav ul .nav__category ul.nav__category__main li svg path {
  transition: 0.5s;
}
.nav ul .nav__category ul.nav__category__main ul {
  position: absolute;
  flex-direction: row;
  left: 0;
  top: 0;
  display: none;
  padding-left: 300px;
  box-sizing: border-box;
  width: 577px;
  min-height: 140px;
}
.nav ul .nav__category ul.nav__category__main ul:before {
  content: url("../images/nav_bg.svg");
  position: absolute;
  bottom: 0;
  left: 40px;
  font-size: 0;
}
.nav ul .nav__category ul.nav__category__main ul:after {
  display: none;
}
.nav ul .nav__category ul.nav__category__main li:hover svg {
  transition: 0.2s;
  transform: rotate(180deg);
}
.nav ul .nav__category ul.nav__category__main li:hover svg path {
  fill: #03053D;
}
.nav ul .nav__category ul.nav__category__main li:hover ul {
  display: flex;
  align-items: flex-start;
}
.nav ul .nav__category__inner {
  position: absolute;
  left: 0;
  top: 100%;
  padding-top: 10px;
  display: none;
  box-shadow: 0px 8px 24px rgba(68, 136, 174, 0.2);
  border-radius: 0 0 8px 8px;
}
.nav ul .nav__category.open .nav__category__inner {
  display: block;
}
.nav ul .nav__category.open .nav__category__link button {
  transform: rotate(180deg);
}
.nav ul .nav__category.open .nav__category__link svg path {
  fill: #fff;
}
.nav ul .nav__category__link {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav ul .nav__category__link button {
  border: none;
  background: none;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 21px;
  width: 21px;
  cursor: pointer;
}
.nav ul .nav__category__link svg path {
  transition: 0.2s;
}
.nav ul .nav__category__link button {
  transition: 0.2s;
}

.nav__title {
  display: none;
}

.nav .btn {
  display: none;
}

@media (max-width: 992px) {
  .nav {
    display: none;
    position: fixed;
    top: 50px;
    width: 100%;
    height: calc(100% - 50px);
    box-sizing: border-box;
    padding: 16px 0 0 0;
    overflow-y: auto;
    z-index: 2;
  }
  .nav ul {
    height: auto;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 10px;
  }
  .nav ul li a {
    color: #fff;
    font-size: 18px;
    height: 22px;
    font-weight: bold;
    justify-content: space-between;
  }
  .nav ul .nav__category__inner {
    position: static;
    width: 100%;
    padding-bottom: 14px;
  }
  .nav ul .nav__category__inner ul {
    width: 100%;
    background: none;
    padding: 0;
    gap: 8px 24px;
    flex-direction: row;
  }
  .nav ul .nav__category__inner ul li {
    width: calc((100% - 24px) / 2);
  }
  .nav ul .nav__category__inner ul li a {
    color: #C8CAE6;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    white-space: wrap;
  }
  .nav ul .nav__category__inner ul li a span {
    visibility: visible;
  }
  .nav ul .nav__category__inner ul li a:before {
    display: none;
  }
  .nav ul .nav__category__inner ul:after {
    display: none;
  }
  .nav__title {
    display: block;
    font-size: 36px;
    height: 48px;
    font-weight: bold;
    color: #fff;
    text-align: center;
    margin-bottom: 14px;
  }
  .nav.active {
    display: flex;
  }
  .nav .wrapper {
    min-height: 100%;
    overflow-y: scroll;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .nav .btn {
    display: flex;
    background: none;
    border: 1px solid #fff;
    width: 360px;
    max-width: 100%;
    margin: 30px auto 32px auto;
    min-height: 42px;
  }
  .nav ul .nav__category__inner {
    box-shadow: none;
  }
  .nav__category__main > li svg {
    display: none;
  }
  .nav__category__main > li > a {
    font-size: 18px !important;
    padding-bottom: 10px;
  }
  /*.nav ul .nav__category ul.nav__category__main ul{
      display: flex !important;
      position:static;
      flex-direction: column;
  }
  .nav ul .nav__category ul.nav__category__main li {
      width: auto;
      flex-direction: column;
      align-items: flex-start;
  }
  .nav ul .nav__category ul.nav__category__main ul {
      width: 100%;
      padding-left:20px;
      box-sizing: border-box;
  }
  .nav ul .nav__category ul.nav__category__main ul li{
      width:calc((100% -20px) / 2);
  }
  .nav ul .nav__category ul.nav__category__main li {
      justify-content: flex-start;
  }*/
  .nav ul .nav__category .nav__category__inner {
    padding-bottom: 0;
  }
  .nav ul .nav__category ul.nav__category__main {
    flex-direction: row;
    position: relative;
  }
  .nav ul .nav__category ul.nav__category__main li:hover ul {
    display: none;
  }
}
.btn {
  color: #fff;
  font-size: 20px;
  background: #4488AE;
  text-decoration: none;
  border-radius: 8px;
  height: 42px;
  padding: 0 39px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s;
  box-sizing: border-box;
  cursor: pointer;
  font-family: "Futura PT";
}

.btn:hover {
  background: #62A6CC;
}

#mse2_mfilter .btn_more {
  width: auto !important;
  display: flex;
  margin: 52px auto 0 auto !important;
  border: none;
}

#pdopage .pagination .btn {
  border: none;
}

@media (max-width: 992px) {
  #mse2_mfilter .btn_more {
    margin: 24px auto 0 auto !important;
  }
}
.top {
  height: 572px;
  background-size: cover;
  background-position: left center;
}
.top .wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.top .btn {
  width: 217px;
  background: #fff;
  color: #03053D;
}
.top .btn:hover {
  background: #EBEBEB;
}

.top__title {
  font-size: 44px;
  line-height: 68px;
  color: #fff;
  font-weight: 600;
  margin-bottom: 5px;
}
.top__title br {
  display: none;
}

.top__text {
  font-size: 24px;
  line-height: 32px;
  color: #fff;
  margin-bottom: 60px;
}

.top_service {
  height: 418px;
}
.top_service .wrapper {
  align-items: center;
  position: relative;
}
.top_service .top__text {
  text-align: center;
}
.top_service .breadcrumbs {
  position: absolute;
  top: 0;
  left: 0;
}
.top_service .breadcrumbs li {
  color: #fff;
}
.top_service .breadcrumbs li a {
  color: #EBEBEB;
}
.top_service .breadcrumbs li a:hover {
  color: #AEAEAE;
}
.top_service .breadcrumbs li:after {
  content: url(../images/breadcrumbs_arrow_w.svg);
}

@media (max-width: 1500px) {
  .top_service .wrapper {
    align-items: flex-start;
  }
  .top_service .breadcrumbs {
    left: 15px;
  }
  .top_service .top__text {
    text-align: left;
  }
}
@media (max-width: 992px) {
  .top {
    height: 536px;
  }
  .top__text br {
    display: none;
  }
}
@media (max-width: 768px) {
  .top .btn {
    width: 100%;
  }
  .top__title {
    font-size: 36px;
    line-height: 48px;
    margin-bottom: 16px;
  }
  .top__title br {
    display: block;
  }
  .top__text {
    font-size: 16px;
    line-height: 22px;
    margin-bottom: 178px;
  }
}
.section_advantages {
  background-image: url("../images/advantages_bg.png");
  background-repeat: no-repeat;
  background-position: left bottom;
}
.section_advantages .section__title {
  display: none;
}

.advantages {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 20px;
}
.advantages .advantages__title {
  width: calc(100% - 830px - 40px);
  color: #03053D;
  font-size: 40px;
  line-height: 60px;
  margin: 0;
  font-weight: bold;
}

.advantages__item {
  background: linear-gradient(to bottom, #D4DBE5, #E1EDF3);
  width: 415px;
  border-radius: 12px;
  box-sizing: border-box;
  height: 153px;
  padding: 20px 30px;
  position: relative;
  overflow: hidden;
}

.advantages__item__title {
  font-size: 24px;
  line-height: 32px;
  color: #03053D;
  font-weight: 600;
  margin-bottom: 13px;
}

.advantages__item__text {
  font-size: 16px;
  line-height: 22px;
  color: #03053D;
}

.advantages__item__num {
  font-size: 54px;
  line-height: 54px;
  color: #4488AE;
  font-weight: 600;
  position: absolute;
  right: 20px;
  bottom: -15px;
  opacity: 0.3;
}

.advantages__numbers {
  display: flex;
  justify-content: flex-end;
  gap: 135px;
  margin-top: 32px;
}

.advantages__numbers__item {
  display: flex;
  align-items: center;
  flex-direction: column;
}

.advantages__numbers__item__val {
  font-size: 90px;
  line-height: 90px;
  color: #4488AE;
  font-weight: 600;
  margin-bottom: 18px;
}

.advantages__numbers__item__text {
  font-size: 28px;
  line-height: 40px;
  font-weight: 600;
}

.section_advantages_service {
  background-image: url("../images/advantages_service_bg.png");
  background-position: right bottom;
}
.section_advantages_service .advantages {
  justify-content: flex-start;
}
.section_advantages_service .advantages .advantages__title {
  width: 415px;
}

@media (max-width: 1200px) {
  .advantages__item {
    width: 350px;
    height: 170px;
    padding: 20px;
  }
  .advantages .advantages__title {
    width: calc(100% - 700px - 40px);
  }
}
.advantages__arrows {
  display: none !important;
}

@media (max-width: 992px) {
  .section_advantages {
    background-image: url("../images/advantages_bg_m.png");
    background-position: left 0 top 245px;
    padding-top: 70px;
    box-sizing: border-box;
  }
  .section_advantages .section__title {
    display: block;
    text-align: center;
    margin-bottom: 24px;
  }
  .section_advantages .wrapper {
    display: flex;
    flex-direction: column;
    position: relative;
    align-items: center;
  }
  .section_advantages .advantages__title {
    display: none;
  }
  .section_advantages_service {
    background: none;
  }
  .section_advantages_service .advantages {
    min-height: 0;
    padding: 20px 0;
  }
  .section_advantages_service .advantages:before {
    content: "";
    width: calc(100% + 30px);
    height: 100%;
    background: linear-gradient(to bottom, #D4DBE5, #E1EDF3);
    position: absolute;
    top: 0;
    left: -15px;
  }
  .section_advantages_service .advantages:after {
    content: url("../images/advantages_service_bg_m.png");
    position: absolute;
    top: 50%;
    left: -15px;
    transform: translate(0, -50%);
  }
  .section_advantages_service .arrows {
    margin-top: 10px;
  }
  .advantages {
    order: 2;
    gap: 0;
    min-height: 210px;
    box-sizing: border-box;
    display: flex !important;
    align-items: center;
  }
  .advantages .section__title {
    width: calc(100% - 30px);
    box-sizing: border-box;
    text-align: center;
    position: absolute;
    top: -64px;
    left: 15px;
  }
  .advantages__numbers {
    justify-content: center;
    gap: 50px;
    margin: 0;
    order: 1;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0px 8px 24px rgba(68, 136, 174, 0.2);
    padding: 14px 20px;
  }
  .advantages__numbers__item {
    width: 120px;
    align-items: flex-start;
  }
  .advantages__numbers__item__val {
    font-size: 36px;
    line-height: 48px;
    margin: 0;
    text-align: left;
    white-space: nowrap;
  }
  .advantages__numbers__item__text {
    font-size: 18px;
    line-height: 22px;
  }
  .advantages__item {
    width: 100%;
    height: auto;
    padding: 20px;
    border-radius: 0;
    background: none;
    padding: 0 0 0 50%;
  }
  .advantages__item__num {
    display: none;
  }
  .advantages__item__title {
    font-size: 18px;
    line-height: 22px;
    margin-bottom: 6px;
  }
  .advantages__item__text {
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 0;
  }
  .advantages__arrows {
    display: flex !important;
  }
}
@media (max-width: 440px) {
  .advantages__numbers {
    gap: 10px;
  }
  .section_advantages_service .advantages:after {
    left: -50px;
  }
}
.footer {
  background-color: #03053D;
  background-image: url("../images/footer_bg.png");
  background-position: center;
  background-repeat: no-repeat;
  flex: 0 0 auto;
}
.footer .wrapper {
  display: flex;
  justify-content: space-between;
  padding: 80px 0;
}

.footer__logo {
  margin-bottom: 19px;
  display: block;
  font-size: 0;
}

.footer__rating {
  display: flex;
  gap: 14px;
  text-decoration: none;
  align-items: center;
  margin-bottom: 34px;
}

.footer__rating__info {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__rating__num {
  color: #fff;
  font-size: 36px;
  font-weight: 600;
}

.footer__rating__text {
  color: #C8CAE6;
  font-size: 16px;
  line-height: 22px;
}

.footer__rating__stars {
  display: flex;
  gap: 4px;
}

.footer__copyright {
  color: #C8CAE6;
  font-size: 16px;
  line-height: 22px;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer__links a {
  color: #C8CAE6;
  font-size: 16px;
  line-height: 22px;
  text-decoration: none;
  transition: 0.2s;
}
.footer__links a:hover {
  color: #fff;
}

.footer__nav ul {
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0;
  gap: 8px;
}
.footer__nav ul li {
  list-style: none;
}
.footer__nav ul li a {
  color: #C8CAE6;
  font-size: 16px;
  line-height: 22px;
  text-decoration: none;
  transition: 0.2s;
}
.footer__nav ul li a:hover {
  color: #fff;
}

.footer__nav__title {
  font-size: 24px;
  line-height: 32px;
  color: #fff;
  font-weight: 600;
  margin-bottom: 14px;
  display: block;
  text-decoration: none;
}

.footer__nav__title:last-child {
  margin-bottom: 0;
}

.footer__contacts__title {
  font-size: 24px;
  line-height: 32px;
  color: #fff;
  font-weight: 600;
  margin-bottom: 14px;
  display: block;
  text-decoration: none;
}

.footer__contacts__social {
  display: flex;
  gap: 10px;
  margin-bottom: 14px;
  margin-top: -10px;
}
.footer__contacts__social a {
  font-size: 0;
}

.footer__contacts__address {
  font-size: 16px;
  line-height: 22px;
  color: #C8CAE6;
  margin-bottom: 14px;
}

.footer__contacts__email {
  font-size: 16px;
  line-height: 22px;
  color: #C8CAE6;
  text-decoration: none;
  transition: 0.2s;
}

.footer__contacts__email:hover {
  color: #fff;
}

.footer__links__daimax img {
  display: none;
}

@media (max-width: 1500px) {
  .footer .wrapper {
    padding: 80px 15px;
  }
}
@media (max-width: 1200px) {
  .footer .wrapper {
    padding: 50px 15px;
  }
  .footer__nav__title {
    font-size: 20px;
    line-height: 28px;
    margin-bottom: 10px;
  }
  .footer__contacts__title {
    font-size: 20px;
    line-height: 28px;
    margin-bottom: 10px;
  }
}
@media (max-width: 992px) {
  .footer__nav__title {
    font-size: 18px;
    line-height: 22px;
  }
  .footer__contacts__title {
    font-size: 18px;
    line-height: 22px;
  }
  .footer__nav ul li a {
    font-size: 14px;
    line-height: 20px;
  }
  .footer .wrapper {
    flex-wrap: wrap;
    position: relative;
    padding-bottom: 70px;
  }
  .footer__item {
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    order: 1;
  }
  .footer__item .footer__links {
    position: absolute;
    bottom: 10px;
    width: 100%;
    box-sizing: border-box;
    right: 0;
    padding-left: 15px;
  }
  .footer__item .footer__links a {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    width: calc(100% - 165px);
    flex-direction: column;
    align-items: flex-start;
    box-sizing: border-box;
  }
  .footer__item .footer__links .footer__copyright {
    width: calc(100% - 165px);
  }
  .footer__item .footer__links .footer__links__daimax {
    position: absolute;
    right: 0;
    width: 150px;
  }
  .footer__item .footer__links .footer__links__daimax img {
    display: block;
  }
  .footer .footer__rating {
    position: relative;
    margin: 0;
  }
  .footer .footer__rating__num {
    font-size: 28px;
    line-height: 28px;
    position: absolute;
    top: 6px;
  }
  .footer .footer__rating__text {
    font-size: 14px;
    line-height: 20px;
  }
  .footer .footer__rating__info {
    gap: 4px;
  }
  .footer .footer__rating__stars {
    padding-left: 45px;
  }
  .footer .footer__rating__stars img {
    width: 20px;
  }
  .footer__logo {
    width: 114px;
    margin: 0;
  }
  .footer__logo img {
    max-width: 100%;
  }
  .footer__nav_avtopark {
    order: 2;
  }
  .footer__nav_avtopark {
    order: 2;
  }
  .footer__nav_types {
    order: 3;
  }
  .footer__nav_main {
    order: 4;
  }
  .footer__contacts {
    order: 5;
  }
}
@media (max-width: 768px) {
  .footer .wrapper {
    position: relative;
    gap: 20px 0;
    padding-bottom: 100px;
  }
  .footer__nav_types {
    width: 50%;
  }
  .footer__nav_avtopark {
    width: 50%;
  }
  .footer__item {
    margin-bottom: 0;
  }
  .footer__contacts {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 10px 0;
  }
  .footer__contacts .footer__contacts__title {
    width: 100%;
    margin: 0;
  }
  .footer__contacts a.footer__contacts__title {
    width: 50%;
    display: block;
    margin: 0;
  }
  .footer__contacts .footer__contacts__social {
    margin: 0;
  }
  .footer__contacts .footer__contacts__social img {
    width: 20px;
  }
  .footer__contacts .footer__contacts__address {
    margin: 0;
  }
  .footer__nav_main {
    margin-top: -130px;
  }
}
@media (max-width: 400px) {
  .footer .wrapper {
    padding-bottom: 120px;
  }
}
.section_404 {
  background-size: cover;
  background-position: center;
  padding: 0;
  height: 650px;
}
.section_404 .wrapper {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.nopage__title {
  color: #fff;
  font-size: 54px;
  line-height: 68px;
  margin-bottom: 6px;
  font-weight: 600;
  text-align: center;
}

.nopage__text {
  color: #fff;
  font-size: 24px;
  line-height: 32px;
  font-weight: 600;
  margin-bottom: 60px;
  text-align: center;
}

.nopage__links {
  display: flex;
  align-items: center;
  gap: 34px;
}
.nopage__links .btn {
  background: #fff;
  color: #03053D;
  width: 217px;
}
.nopage__links .btn:hover {
  background: #EBEBEB;
}
.nopage__links .back {
  color: #fff;
  font-size: 16px;
  line-height: 22px;
  text-decoration: none;
}

@media (max-width: 992px) {
  .nopage__text br {
    display: none;
  }
}
@media (max-width: 768px) {
  .nopage__title {
    font-size: 36px;
    line-height: 48px;
    margin-bottom: 14px;
    text-align: left;
    width: 100%;
  }
  .nopage__text {
    font-size: 16px;
    line-height: 22px;
    margin-bottom: 118px;
    text-align: left;
    width: 100%;
  }
  .nopage__text br {
    display: none;
  }
  .nopage__links {
    flex-direction: column;
  }
  .nopage__links {
    max-width: 100%;
    gap: 16px;
  }
  .nopage__links .btn {
    max-width: 100%;
    width: 500px;
  }
}
.breadcrumbs {
  padding: 26px 0 32px 0;
}
.breadcrumbs ul {
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 23px;
}
.breadcrumbs ul li {
  list-style: none;
  color: #03053D;
  font-size: 16px;
  line-height: 22px;
  display: flex;
  align-items: center;
  gap: 23px;
}
.breadcrumbs ul li a {
  color: #AEAEAE;
  text-decoration: none;
  transition: 0.2s;
}
.breadcrumbs ul li a:hover {
  color: #03053D;
}
.breadcrumbs ul li:after {
  content: url("../images/breadcrumbs_arrow.svg");
  display: block;
  height: 6px;
  line-height: 6px;
}
.breadcrumbs ul li:last-child:after {
  content: "";
}

@media (max-width: 992px) {
  .breadcrumbs {
    padding: 16px 0;
  }
}
@media (max-width: 768px) {
  .breadcrumbs ul {
    gap: 2px 16px;
  }
  .breadcrumbs ul li {
    font-size: 13px;
    line-height: 20px;
  }
  .breadcrumbs ul li a {
    font-size: 13px;
    line-height: 20px;
  }
}
.page_h1 {
  font-size: 44px;
  line-height: 68px;
  font-weight: 600;
  margin-bottom: 6px;
  margin-top: 0;
}
.page_h1 span {
  color: #4488AE;
  font-size: 44px;
  line-height: 60px;
}

.page_h1_center {
  text-align: center;
}

.text-page {
  padding: 40px 0 100px 0;
  border-top: 1px solid #EBEBEB;
}
.text-page h3 {
  font-size: 24px;
  line-height: 32px;
  font-weight: 600;
  margin: 0 0 13px 0;
}
.text-page p {
  font-size: 16px;
  line-height: 22px;
  margin: 0 0 13px 0;
}

.text-page__subtitle {
  font-size: 24px;
  line-height: 32px;
  text-align: center;
  margin-bottom: 40px;
}

@media (max-width: 992px) {
  .page_h1 {
    font-size: 28px;
    line-height: 41px;
    margin-bottom: 12px;
  }
  .page_h1 span {
    display: block;
    font-size: 28px;
    line-height: 40px;
  }
  .page_h1_product {
    font-size: 36px;
    line-height: 48px;
  }
  .page_h1_v2 {
    font-size: 36px;
    line-height: 48px;
  }
  .text-page__subtitle {
    font-size: 16px;
    line-height: 22px;
    margin-bottom: 20px;
  }
  .text-page__subtitle br {
    display: none;
  }
  .text-page {
    padding: 20px 0 70px 0;
  }
  .text-page h3 {
    font-size: 16px;
    line-height: 22px;
    margin: 0 0 6px 0;
  }
  .text-page p {
    font-size: 14px;
    line-height: 20px;
    margin: 0 0 10px 0;
  }
}
.blog-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.blog-list__item {
  border: 1px solid #EBEBEB;
  border-radius: 24px;
  box-sizing: border-box;
  padding: 24px 36px;
  display: flex;
  gap: 60px;
}

.blog-list__item:hover {
  box-shadow: 0px 8px 24px rgba(68, 136, 174, 0.2);
}

.blog-list__item__img {
  font-size: 0;
}
.blog-list__item__img img {
  border-radius: 7px;
}

.blog-list__item__info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
}

.blog-list__item__title {
  font-size: 24px;
  line-height: 32px;
  color: #03053D;
  font-weight: 600;
  margin-bottom: 13px;
}

.blog-list__item__intro {
  font-size: 16px;
  line-height: 22px;
}

.blog-list__item__info__bottom {
  display: flex;
  justify-content: space-between;
}

.blog-list__item__info__more {
  color: #AEAEAE;
  text-decoration: none;
  transition: 0.2s;
  font-size: 14px;
  line-height: 20px;
}

.blog-list__item__info__more:hover {
  color: #4488AE;
}

.blog-list__item__info__date {
  font-size: 14px;
  line-height: 20px;
  color: #AEAEAE;
}

.pagination {
  margin-top: 52px;
}
.pagination .btn {
  width: 217px;
  margin: 0 auto;
}

#pdopage .pagination {
  margin-top: 52px !important;
}

@media (max-width: 992px) {
  .blog-list__item {
    gap: 30px;
  }
}
@media (max-width: 768px) {
  .blog-list__item {
    gap: 18px;
    padding: 0;
    border: none;
  }
  .blog-list__item {
    flex-direction: column;
  }
  .blog-list__item__title {
    font-size: 16px;
    line-height: 22px;
    margin-bottom: 6px;
  }
  .blog-list__item__intro {
    font-size: 14px;
    line-height: 20px;
  }
  .blog-list__item__info {
    gap: 10px;
  }
  .blog-list__item__img {
    width: 100%;
    display: flex;
    justify-content: center;
  }
  .blog-list__item__img img {
    max-width: 100%;
  }
  .blog-list__item__info__more {
    color: #4488AE;
  }
}
@media (max-width: 450px) {
  .pagination {
    margin-top: 24px;
  }
  .pagination .btn {
    width: 100%;
  }
  #pdopage .pagination {
    margin-top: 24px !important;
  }
}
.blog-page {
  display: flex;
  gap: 60px;
}
.blog-page h1 {
  margin-top: 0;
  font-size: 24px;
  line-height: 32px;
  color: #000;
  margin-bottom: 13px;
}

.blog-page__img {
  min-width: 690px;
}
.blog-page__img img {
  max-width: 100%;
  border-radius: 12px;
}

.blog-page__text {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.blog-page__bottom {
  display: flex;
  justify-content: space-between;
}

.blog-page__date {
  font-size: 16px;
  line-height: 22px;
  color: #AEAEAE;
}

.back-blog {
  text-decoration: none;
  color: #AEAEAE;
  transition: 0.2s;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  line-height: 22px;
}
.back-blog svg path {
  transition: 0.2s;
}

.back-blog:hover {
  color: #4488AE;
}
.back-blog:hover svg path {
  fill: #4488AE;
}

@media (max-width: 1400px) {
  .blog-page {
    gap: 30px;
  }
  .blog-page__img {
    min-width: 600px;
  }
}
@media (max-width: 1200px) {
  .blog-page__img {
    min-width: 500px;
  }
}
@media (max-width: 992px) {
  .blog-page {
    gap: 18px;
  }
  .blog-page {
    flex-direction: column;
  }
  .blog-page h1 {
    font-size: 16px;
    line-height: 22px;
    margin-bottom: 6px;
  }
  .blog-page__img {
    min-width: 100%;
    display: flex;
    justify-content: center;
  }
  .blog-page__date {
    font-size: 14px;
    line-height: 20px;
  }
  .back-blog {
    font-size: 14px;
    line-height: 20px;
  }
}
.page_h1_avtopark {
  margin-bottom: 16px;
}

.avtopark {
  padding-bottom: 100px;
}

.avtopark__category {
  display: flex;
  justify-content: center;
}
.avtopark__category a {
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #03053D;
  font-size: 20px;
  line-height: 22px;
  padding: 0 24px;
  transition: 0.2s;
  font-weight: 400;
  border-radius: 8px;
  border: 1px solid transparent;
  position: relative;
}
.avtopark__category a span {
  visibility: hidden;
}
.avtopark__category a:before {
  content: attr(data-title);
  position: absolute;
  left: 50%;
  white-space: nowrap;
  transform: translate(-50%, 0);
}
.avtopark__category a:hover:before {
  font-weight: bold;
}
.avtopark__category a.active {
  border: 1px solid #03053D;
}
.avtopark__category a.active:before {
  font-weight: bold;
}

.avtopark__line {
  margin-bottom: 16px;
}

.avtopark__list {
  display: flex;
  gap: 19px;
  flex-wrap: wrap;
}

.avtopark__list__item {
  width: calc((100% - 57px) / 4);
  border-radius: 24px;
  border: 1px solid #EBEBEB;
  box-sizing: border-box;
  padding: 22px 24px;
}
.avtopark__list__item .btn {
  border: 1px solid #03053D;
  background: none;
  color: #03053D;
  margin-bottom: 12px;
  width: 100%;
}
.avtopark__list__item .btn:hover {
  background: #4488AE;
  border: 1px solid #4488AE;
  color: #fff;
}

.avtopark__list__item:hover {
  box-shadow: 0px 8px 24px rgba(68, 136, 174, 0.2);
}

.avtopark__list__item__img {
  font-size: 0;
  margin-bottom: 20px;
  display: block;
}
.avtopark__list__item__img img {
  border-radius: 22px;
  max-width: 100%;
}

.avtopark__list__item__title {
  font-size: 22px;
  line-height: 40px;
  text-decoration: none;
  color: #03053D;
  font-weight: 600;
  margin-bottom: 12px;
  display: block;
}

.avtopark__list__item__params {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

.avtopark__list__item__param {
  display: flex;
  justify-content: space-between;
  position: relative;
}

.avtopark__list__item__param:after {
  content: "";
  display: block;
  border-bottom: 1px dashed #AEAEAE;
  position: absolute;
  bottom: 1px;
  left: 0;
  width: 100%;
}

.avtopark__list__item__key {
  font-size: 16px;
  line-height: 22px;
  box-sizing: border-box;
  padding-right: 2px;
  background: #fff;
  position: relative;
  z-index: 2;
}

.avtopark__list__item__val {
  font-size: 16px;
  line-height: 22px;
  font-weight: bold;
  padding-left: 2px;
  background: #fff;
  position: relative;
  z-index: 2;
}

.avtopark__list__item__price {
  font-size: 24px;
  line-height: 40px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 1px;
}

.avtopark__list__item__time {
  font-size: 14px;
  line-height: 20px;
  color: #AEAEAE;
  text-align: center;
  margin-bottom: 20px;
}

.avtopark__list__item__more {
  text-align: center;
  text-decoration: none;
  transition: 0.2s;
  display: block;
  color: #03053D;
  font-size: 16px;
  line-height: 22px;
  margin: 0 auto;
  width: 80px;
  text-align: center;
}

.avtopark__list__item__more:hover {
  color: #4488AE;
}

.avtopark__fastlinks {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}
.avtopark__fastlinks a {
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #03053D;
  font-size: 14px;
  line-height: 20px;
  height: 40px;
  background: linear-gradient(to bottom, #D4DBE5, #E1EDF3);
  padding: 0 15px;
  border-radius: 8px;
  transition: 0.2s;
}
.avtopark__fastlinks a:hover {
  background: linear-gradient(to bottom, #E1EDF3, #D4DBE5);
}

.avtopark__body {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid #EBEBEB;
}

@media (max-width: 1200px) {
  .avtopark__list__item__title {
    font-size: 16px;
    line-height: 22px;
    margin-bottom: 12px;
  }
  .avtopark__list__item__key {
    font-size: 14px;
    line-height: 20px;
  }
  .avtopark__list__item__val {
    font-size: 14px;
    line-height: 20px;
  }
  .avtopark__list__item__img {
    margin-bottom: 12px;
    text-align: center;
  }
  .avtopark__list__item__img img {
    border-radius: 8px;
  }
  .avtopark__list__item__price {
    font-size: 18px;
    line-height: 22px;
  }
}
@media (max-width: 992px) {
  .avtopark__list {
    gap: 10px;
  }
  .avtopark__list__item {
    width: calc((100% - 20px) / 3);
    border-radius: 8px;
    padding: 10px;
  }
  .avtopark__category {
    max-width: 100%;
    overflow-x: scroll;
    justify-content: flex-start;
  }
  .avtopark__body {
    margin-top: 20px;
    padding-top: 10px;
  }
  .avtopark__fastlinks {
    max-width: 100%;
    overflow-x: scroll;
  }
  .avtopark__fastlinks a {
    white-space: nowrap;
  }
  .avtopark__filters {
    max-width: 100%;
    overflow-x: scroll;
  }
  .avtopark__filters__item__current span {
    white-space: nowrap;
  }
}
@media (max-width: 768px) {
  .avtopark__list {
    gap: 10px;
  }
  .avtopark__list__item {
    width: calc((100% - 10px) / 2);
  }
}
.services__list {
  margin-top: 60px;
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.services__list__item {
  display: flex;
  text-decoration: none;
  box-sizing: border-box;
  padding: 24px 40px;
  border-radius: 24px;
  position: relative;
  height: 300px;
  width: 575px;
  background-size: cover;
  transition: 0.2s;
}

.services__list__item.first {
  height: 620px;
}

.services__list__item:before {
  content: "";
  background: linear-gradient(to bottom, rgba(3, 5, 61, 0.97) 0%, rgba(3, 5, 61, 0.4) 100%);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 24px;
  z-index: 1;
  opacity: 0.6;
  transition: 0.2s;
}

.services__list__item:hover:before {
  opacity: 0;
}

.services__list__item__title {
  display: flex;
  align-items: center;
  color: #fff;
  font-size: 28px;
  line-height: 40px;
  justify-content: center;
  gap: 24px;
  z-index: 2;
  position: relative;
  height: 72px;
  transition: 0.2s;
  border-radius: 12px;
  font-weight: bold;
  margin: 0 auto;
  box-sizing: border-box;
  padding: 1px 24px 1px 0;
  white-space: nowrap;
}

.services__list__item__title__icon {
  border-radius: 50%;
  border: 1px solid #fff;
  width: 72px;
  height: 72px;
  min-width: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.services__list__item__title__icon > div {
  width: 42px;
  height: 42px;
  background-position: center top;
}

.services__list__item:hover .services__list__item__title {
  background: #fff;
  color: #03053D;
}
.services__list__item:hover .services__list__item__title .services__list__item__title__icon {
  border: 1px solid transparent;
}
.services__list__item:hover .services__list__item__title .services__list__item__title__icon > div {
  background-position: center 100%;
}

.services__list__inner {
  width: calc(100% - 597px);
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.services__list__inner .services__list__item {
  width: calc((100% - 20px) / 2);
}
.services__list__inner .services__list__item:first-child {
  width: 100%;
}

.services__list__item.mini .services__list__item__title {
  font-size: 24px;
  line-height: 32px;
}

.services__list__item.long {
  width: 875px;
}

.services__list__item.long-op {
  width: calc(100% - 897px);
}

.services__list__item.line3 {
  width: calc((100% - 44px) / 3);
}

.services__list__item.small {
  width: 428px;
}
.services__list__item.small .services__list__item__title {
  font-size: 24px;
  line-height: 32px;
}

.services__list__item.average {
  width: calc(100% - 900px);
}

.services__list__item.link:hover:before {
  opacity: 0.6;
}

@media (max-width: 1450px) {
  .services__list__item__title {
    font-size: 18px;
    line-height: 22px;
    gap: 10px;
    white-space: wrap;
  }
  .services__list__item.mini .services__list__item__title,
  .services__list__item.average .services__list__item__title,
  .services__list__item.line3 .services__list__item__title,
  .services__list__item.small .services__list__item__title {
    font-size: 18px;
    line-height: 22px;
    gap: 10px;
  }
  .services__list__item {
    padding: 24px 20px;
  }
}
@media (max-width: 1250px) {
  .services__list {
    gap: 12px;
  }
  .services__list__item.first {
    width: 450px;
  }
  .services__list__inner {
    gap: 12px;
  }
  .services__list__inner {
    width: calc(100% - 462px);
  }
  .services__list__item.long {
    width: calc(60% - 12px);
  }
  .services__list__item.long-op {
    width: 40%;
  }
  .services__list__inner .services__list__item {
    width: calc((100% - 12px) / 2);
  }
  .services__list__item.small {
    width: calc((100% - 24px) / 3);
  }
  .services__list__item.line3 {
    width: calc((100% - 24px) / 3);
  }
  .services__list__item.average {
    width: calc((100% - 24px) / 3);
  }
}
@media (max-width: 992px) {
  .services__list__item {
    width: calc((100% - 12px) / 2);
    height: 232px;
  }
  .services__list__item.small {
    width: calc((100% - 12px) / 2);
  }
  .services__list__item.line3 {
    width: calc((100% - 12px) / 2);
  }
  .services__list__item.average {
    width: calc((100% - 12px) / 2);
  }
  .services__list__item.long {
    width: calc((100% - 12px) / 2);
  }
  .services__list__item.long-op {
    width: calc((100% - 12px) / 2);
  }
  .services__list__item.first {
    width: 100%;
    height: 232px;
  }
  .services__list__inner {
    width: 100%;
  }
  .services__list__inner .services__list__item {
    width: calc((100% - 12px) / 2);
  }
  .services__list__item__title__icon {
    border-radius: 0;
    border: none;
    width: auto;
    height: auto;
    min-width: 0;
  }
  .services__list__item__title {
    width: 100%;
  }
  .services__list__item .services__list__item__title {
    background: #fff;
    color: #03053D;
    min-height: 44px;
    box-sizing: border-box;
    gap: 20px;
    padding: 5px 24px;
  }
  .services__list__item .services__list__item__title .services__list__item__title__icon > div {
    background-position: center 100%;
    min-width: 30px;
    width: 30px;
    height: 30px;
    background-size: cover;
  }
  .section.services .section__title {
    text-align: center;
  }
  .services__list_main {
    margin-top: 32px;
  }
}
@media (max-width: 768px) {
  .services__list__item {
    width: 100%;
    height: 232px;
  }
  .services__list__item.small {
    width: 100%;
  }
  .services__list__item.line3 {
    width: 100%;
  }
  .services__list__item.average {
    width: 100%;
  }
  .services__list__item.long {
    width: 100%;
  }
  .services__list__item.long-op {
    width: 100%;
  }
  .services__list__item.first {
    width: 100%;
    height: 232px;
  }
  .services__list__inner {
    width: 100%;
  }
  .services__list__inner .services__list__item {
    width: 100%;
  }
  .services__list__item.link {
    height: 70px;
    padding: 0;
  }
  .services__list__item.link .services__list__item__title {
    background: none;
    color: #fff;
    min-height: 44px;
    box-sizing: border-box;
    gap: 20px;
    padding: 5px 24px;
  }
  .services__list__item.link .services__list__item__title .services__list__item__title__icon > div {
    background-position: center 0;
  }
}
.avtotypes .wrapper {
  position: relative;
}

.avtotypes__list {
  display: flex;
  justify-content: center;
  margin-top: 25px;
}

.avtotypes__list__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 25%;
  padding-top: 267px;
  position: relative;
  text-decoration: none;
  position: relative;
}
.avtotypes__list__item .btn {
  width: 217px;
  position: relative;
  z-index: 2;
}

.avtotypes__list__item:before {
  content: "";
  position: absolute;
  left: 50%;
  display: block;
  top: 190px;
  width: 350px;
  height: 71px;
  background: url("../images/services/avtotype_bg_a.png");
  transform: translate(-50%, 0) scale(0.6);
  transition: 0.2s;
  transform-origin: center;
  filter: grayscale(100%);
}

.avtotypes__list__item:hover:before {
  top: 190px;
  width: 350px;
  height: 71px;
  transform: translate(-50%, 0) scale(1);
  background: url("../images/services/avtotype_bg_a.png");
  filter: none;
  /*animation: rotate 5.5s linear infinite; */
}

/*@keyframes rotate {
    from {
        transform: translate(-50%, 0)  rotateZ(0deg) rotateX(0deg) rotateY(0deg);
    }
    to {
        transform: translate(-50%, 0) rotateZ(50deg) rotateX(0deg) rotateY(360deg);
    }
}*/
.avtotypes__list__item__photo {
  position: absolute;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center top;
  z-index: 2;
  width: 100%;
  top: 0;
  transition: 0.2s transform;
}

.avtotypes__list__item:nth-child(1) {
  top: 0;
}
.avtotypes__list__item:nth-child(1) .avtotypes__list__item__photo {
  top: 25px;
  height: 222px;
}

.avtotypes__list__item:nth-child(2) .avtotypes__list__item__photo {
  top: 69px;
  height: 178px;
}

.avtotypes__list__item:nth-child(3) .avtotypes__list__item__photo {
  top: 81px;
  height: 166px;
}

.avtotypes__list__item:nth-child(4) .avtotypes__list__item__photo {
  top: 100px;
  height: 147px;
}

.avtotypes__list__item__title {
  font-size: 28px;
  line-height: 40px;
  font-weight: bold;
  margin-bottom: 8px;
  color: #03053D;
  position: relative;
  z-index: 2;
}

.avtotypes__list__item__text {
  font-size: 16px;
  line-height: 22px;
  color: #03053D;
  text-align: center;
  position: relative;
  z-index: 2;
}

.avtotypes__list__item__info {
  display: none;
  position: absolute;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  top: 100%;
  left: 0;
}

.avtotypes__list__item:hover .avtotypes__list__item__info {
  display: flex;
}
.avtotypes__list__item:hover .avtotypes__list__item__photo {
  transform: scale(1.2);
}

/*.avtotypes__list__item:nth-child(1):hover {
    .avtotypes__list__item__photo {
        top: 25px;
    }
}
.avtotypes__list__item:nth-child(2):hover {
    .avtotypes__list__item__photo {
        top: 69px;
    }
}
.avtotypes__list__item:nth-child(3):hover {
    .avtotypes__list__item__photo {
        top:81px;
    }
}
.avtotypes__list__item:nth-child(4):hover {
    .avtotypes__list__item__photo {
        top:100px;
    }
}*/
@media (max-width: 992px) {
  .avtotypes__list {
    margin-top: 0;
  }
  .avtotypes__list__item {
    width: 100%;
    padding-top: 230px;
  }
  .avtotypes__list__item .btn {
    width: 217px;
    position: relative;
    z-index: 2;
  }
  .avtotypes__list__item__title {
    font-size: 18px;
    line-height: 22px;
  }
  .avtotypes__list__item__info {
    display: flex;
    position: static;
  }
  .avtotypes__list__item:before {
    top: 130px;
    width: 350px;
    height: 48px;
    background: url("../images/services/avtotype_bg_m.png");
  }
  .avtotypes__list__item .avtotypes__list__item__photo {
    transform: scale(1);
    top: 0;
  }
  .avtotypes__list__item:hover .avtotypes__list__item__photo {
    transform: scale(1);
    top: 0;
  }
}
.docs-block {
  margin-top: 140px;
}

.docs-block:first-child {
  margin-top: 0;
}

.docs-block__title {
  font-size: 40px;
  line-height: 60px;
  color: #03053D;
  margin-bottom: 32px;
  margin-top: 0;
  font-weight: 600;
}

.docs-block__list {
  flex-direction: column;
  display: flex;
  margin-top: 60px;
}

.docs-block__list__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 91px;
  text-decoration: none;
  background: #F2F8FB;
  border-radius: 12px;
  box-sizing: border-box;
  padding: 47px;
  transition: 0.2s;
}

.docs-block__list__item:nth-child(even) {
  background: #fff;
}

.docs-block__list__item:hover {
  background: #EBEBEB;
}

.docs-block__list__item__info {
  display: flex;
  gap: 13px;
}

.docs-block__list__item__info__name {
  font-size: 16px;
  line-height: 22px;
  font-weight: 600;
  color: #03053D;
}

.docs-block__list__item > a:first-child > div {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 1px;
  flex-direction: column;
}

.docs-block__list__item__info__size {
  font-size: 14px;
  line-height: 20px;
  color: #03053D;
}

.docs-block__list__item__right {
  padding-left: 20px;
}

@media (max-width: 992px) {
  .docs-block {
    margin-top: 70px;
  }
  .docs-block__title {
    font-size: 28px;
    line-height: 40px;
  }
  .docs-block__list {
    margin-top: 20px;
  }
  .docs-block__list__item {
    align-items: flex-start;
    padding: 16px 15px;
    height: auto;
    border-radius: 0;
  }
  .docs-block__list__item__info {
    align-items: flex-start;
  }
  .docs-block__list__item__info img {
    width: 20px;
    height: auto;
    margin-top: 5px;
  }
  .docs-block__list__item__right {
    padding-top: 7px;
  }
}
.form-block {
  padding: 100px 0;
}
.form-block .wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 120px;
}
.form-block .wrapper img {
  max-width: 100%;
}
.form-block .form {
  width: 726px;
  min-width: 726px;
}

.form {
  padding: 20px 28px;
  background: linear-gradient(to bottom, #D4DBE5, #E1EDF3);
  border-radius: 12px;
  box-sizing: border-box;
}
.form input[type=text], .form input[type=email], .form input[type=tel], .form textarea {
  border: none;
  border-radius: 8px;
  height: 42px;
  padding: 0 16px;
  box-sizing: border-box;
  border: 1px solid transparent;
  transition: color 0.2s, border 0.2s;
  outline: none;
  font-size: 16x;
  line-height: 22px;
  font-family: "Futura PT";
  color: #03053D;
}
.form input[type=text]::-webkit-input-placeholder, .form input[type=email]::-webkit-input-placeholder, .form input[type=tel]::-webkit-input-placeholder, .form textarea::-webkit-input-placeholder {
  font-family: "Futura PT";
  font-size: 16px;
  line-height: 22px;
  color: #AEAEAE;
}
.form input[type=text]:-moz-placeholder, .form input[type=email]:-moz-placeholder, .form input[type=tel]:-moz-placeholder, .form textarea:-moz-placeholder {
  font-family: "Futura PT";
  font-size: 16px;
  line-height: 22px;
  color: #AEAEAE;
}
.form input[type=text]::-moz-placeholder, .form input[type=email]::-moz-placeholder, .form input[type=tel]::-moz-placeholder, .form textarea::-moz-placeholder {
  font-family: "Futura PT";
  font-size: 16px;
  line-height: 22px;
  color: #AEAEAE;
}
.form input[type=text]:-ms-input-placeholder, .form input[type=email]:-ms-input-placeholder, .form input[type=tel]:-ms-input-placeholder, .form textarea:-ms-input-placeholder {
  font-family: "Futura PT";
  font-size: 16px;
  line-height: 22px;
  color: #AEAEAE;
}
.form input.required::-webkit-input-placeholder, .form textarea.required::-webkit-input-placeholder {
  opacity: 0;
}
.form input.required:-moz-placeholder, .form textarea.required:-moz-placeholder {
  opacity: 0;
}
.form input.required::-moz-placeholder, .form textarea.required::-moz-placeholder {
  opacity: 0;
}
.form input.required:-ms-input-placeholder, .form textarea.required:-ms-input-placeholder {
  opacity: 0;
}
.form textarea {
  height: 92px;
  padding-top: 10px;
}
.form input:hover, .form textarea:hover {
  border: 1px solid #AEAEAE;
}
.form input:focus, .form textarea:focus {
  border: 1px solid #03053D;
}
.form .btn {
  border: none;
  width: 330px;
  padding: 0;
}
.form label {
  position: relative;
}
.form label .label {
  position: absolute;
  top: 50%;
  left: 16px;
  transform: translate(0, -50%);
}
.form label .label span {
  font-size: 16px;
  line-height: 22px;
  color: #AEAEAE;
}
.form label .label span:last-child {
  color: #D46F6F;
}
.form input:not(:-moz-placeholder-shown), .form textarea:not(:-moz-placeholder-shown) {
  border: 1px solid #03053D;
}
.form input:not(:placeholder-shown), .form textarea:not(:placeholder-shown) {
  border: 1px solid #03053D;
}
.form input.required:not(:-moz-placeholder-shown) + div, .form textarea.required:not(:-moz-placeholder-shown) + div {
  opacity: 0;
}
.form input.required:not(:placeholder-shown) + div, .form textarea.required:not(:placeholder-shown) + div {
  opacity: 0;
}
.form input.error, .form textarea.error {
  border: 1px solid #E61111;
}
.form .form__selection input:focus {
  border-radius: 8px 8px 0 0;
  border-bottom: 0;
}

.form__title {
  font-size: 24px;
  line-height: 32px;
  font-weight: 600;
  margin-bottom: 12px;
}

.form__text {
  font-size: 16px;
  line-height: 22px;
  margin-bottom: 20px;
}

.form__fields {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
}
.form__fields input, .form__fields textarea {
  width: 100%;
}

.form__fields__column {
  width: calc((100% - 8px) / 2);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form__selection {
  position: relative;
}

.form__selection__arrow {
  position: absolute;
  top: 18px;
  right: 16px;
  height: 5px;
  line-height: 5px;
}
.form__selection__arrow svg {
  transition: 0.2s;
}
.form__selection__arrow svg path {
  transition: 0.2s;
}

.form__selection.active .form__selection__arrow svg {
  transform: rotate(180deg);
}
.form__selection.active .form__selection__arrow svg path {
  fill: #03053D;
}
.form__selection.active .form__selection__arrow + input {
  border: 1px solid #03053D !important;
  border-bottom: 1px solid transparent !important;
}

.form__selection__list {
  flex-wrap: wrap;
  position: absolute;
  top: 42px;
  background: #fff;
  box-sizing: border-box;
  padding: 0 16px 10px 16px;
  width: 100%;
  border-radius: 0 0 8px 8px;
  border: 1px solid #03053D;
  border-top: none;
  display: none;
  gap: 7px 0;
}
.form__selection__list a {
  color: #03053D;
  text-decoration: none;
  font-size: 14px;
  line-height: 20px;
  width: 50%;
  transition: 0.2s;
}
.form__selection__list a:hover, .form__selection__list a.active {
  font-weight: 600;
}

.form__selection__list.active {
  display: flex;
}

.form__bottom {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.form__bottom a {
  color: #4488AE;
  text-decoration: none;
}

.checkbox {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}
.checkbox input[type=checkbox] {
  display: none;
}
.checkbox input[type=checkbox] + div {
  display: flex;
  width: 17px;
  height: 17px;
  min-width: 17px;
  border: 1px solid #4488AE;
  border-radius: 3px;
  align-items: center;
  justify-content: center;
}
.checkbox input[type=checkbox]:checked + div {
  background: #4488AE;
}
.checkbox input[type=checkbox] + div:after {
  content: url("../images/check_i.svg");
  opacity: 0;
  transition: 0.2s;
}
.checkbox input[type=checkbox]:checked + div:after {
  opacity: 1;
}

.consent {
  padding-left: 4px;
}
.consent span {
  font-size: 13px;
  line-height: 10px;
  color: #03053D;
}
.consent a {
  transition: 0.2s;
}
.consent a:hover {
  color: #AEAEAE;
}

.fancybox-content .form {
  background: #fff;
}
.fancybox-content .form input[type=text], .fancybox-content .form input[type=email], .fancybox-content .form input[type=tel], .fancybox-content .form textarea {
  border: 1px solid #AEAEAE;
}

@media (max-width: 1400px) {
  .form-block .wrapper {
    gap: 30px;
  }
}
@media (max-width: 1200px) {
  .form-block .form {
    width: 600px;
    min-width: 600px;
  }
}
@media (max-width: 992px) {
  .form-block {
    position: relative;
    padding: 70px 0 150px 0;
  }
  .form-block .wrapper {
    flex-direction: column;
  }
  .form-block .form {
    width: 100%;
    min-width: 100%;
    z-index: 2;
    position: relative;
  }
  .form-block__img {
    position: absolute;
    bottom: -30px;
    left: 50%;
    width: 240px;
    transform: translate(-50%, 0);
  }
}
@media (max-width: 768px) {
  .form__title {
    font-size: 18px;
    line-height: 22px;
    margin-bottom: 6px;
  }
  .form__text {
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 12px;
  }
  .form {
    padding: 16px 20px;
  }
  .form__fields {
    flex-direction: column;
    width: 100%;
    margin-bottom: 12px;
  }
  .form__fields__column {
    width: 100%;
  }
  .form__bottom {
    flex-direction: column;
  }
  .form__bottom .btn {
    width: 100%;
    order: 2;
  }
}
.faq__list {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 60px;
}

.faq__list__item {
  width: calc((100% - 20px) / 2);
  background: linear-gradient(to bottom, #D4DBE5, #E1EDF3);
  border-radius: 12px;
  box-sizing: border-box;
  padding: 20px 28px;
  min-height: 72px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: 0.2s;
  position: relative;
}

.faq__list__item__question {
  font-size: 24px;
  line-height: 32px;
  font-weight: 600;
  color: #03053D;
  padding-right: 25px;
}

.faq__list__item__answer {
  font-size: 16px;
  line-height: 22px;
  color: #03053D;
  display: none;
}

.faq__list__item__opener {
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  border: 2px solid #03053D;
  right: 28px;
  top: 26px;
}

.faq__list__item__opener:before {
  content: "";
  display: block;
  width: 8px;
  height: 2px;
  background: #4488AE;
}

.faq__list__item__opener:after {
  content: "";
  display: block;
  width: 2px;
  height: 8px;
  background: #4488AE;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: 0.2s;
}

.faq__list__item.open {
  background: #fff;
  border: 1px solid #03053D;
  transition: 0.2s;
}
.faq__list__item.open .faq__list__item__answer {
  display: block;
}
.faq__list__item.open .faq__list__item__opener:after {
  opacity: 0;
}
.faq__list__item.open .faq__list__item__question {
  margin-bottom: 12px;
}

@media (max-width: 992px) {
  .faq__list {
    gap: 12px;
    margin-top: 32px;
  }
  .faq__list__item {
    width: 100%;
    padding: 16px 20px;
    height: auto;
    min-height: 0;
  }
  .faq__list__item__answer {
    font-size: 14px;
    line-height: 20px;
  }
  .faq__list__item__question {
    font-size: 18px;
    line-height: 22px;
    padding-right: 25px;
  }
  .faq__list__item.open .faq__list__item__question {
    margin-bottom: 10px;
  }
  .faq__list__item__opener {
    right: 20px;
    top: 19px;
  }
}
.popup {
  display: none;
}

.fancybox-content {
  padding: 0;
  border-radius: 12px;
}

.product {
  padding: 40px 0 100px 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  border-top: 1px solid #EBEBEB;
  margin-top: 40px;
  overflow: visible;
  gap: 20px;
}

.product-details {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  gap: 28px;
}

.product-details__item {
  display: flex;
  align-items: center;
  font-size: 16px;
  line-height: 22px;
  font-weight: 600;
  gap: 8px;
}

.product-details__color div {
  display: block;
  min-width: 24px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid #03053D;
}
.product-details__color .cherniy {
  background: #000;
}
.product-details__color .siniy {
  background: blue;
}

.product-details__driver:before {
  content: url("../images/driver_i.svg");
  height: 28px;
}

.product-details__available {
  color: #53AE44;
}

.product-details__available:before {
  content: "";
  background-image: url("../images/available_i.svg");
  background-size: cover;
  height: 28px;
  width: 28px;
}

.product-details__available.not {
  color: #E61111;
}

.product-details__available.not:before {
  content: "";
  background-image: url("../images/close_i.svg");
  background-size: cover;
  height: 28px;
  width: 28px;
}

.product__content {
  width: 477px;
  position: sticky;
  top: 10px;
}

.product__content__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.product__content__top .btn {
  width: 200px;
}

.product__content__top__price {
  font-size: 24px;
  line-height: 40px;
  color: #03053D;
  font-weight: 600;
}

.product__content__top__msg {
  display: flex;
  gap: 10px;
}
.product__content__top__msg a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  box-sizing: border-box;
  padding: 2px;
}
.product__content__top__msg a img {
  width: 100%;
}

.product__params {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.product__params__title {
  font-size: 24px;
  line-height: 32px;
  font-weight: 600;
  margin-bottom: 2px;
}

.product__param {
  display: flex;
  justify-content: space-between;
  position: relative;
}

.product__param:after {
  content: "";
  border-bottom: 1px dashed #AEAEAE;
  position: absolute;
  width: 100%;
  bottom: 1px;
}

.product__param__key {
  font-size: 16px;
  line-height: 22px;
  background: #fff;
  position: relative;
  z-index: 2;
  padding-right: 3px;
}

.product__param__val {
  font-size: 16px;
  line-height: 22px;
  font-weight: 600;
  background: #fff;
  position: relative;
  z-index: 2;
  padding-left: 3px;
}

.product__features {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.product__features__item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  color: #03053D;
  background: linear-gradient(to bottom, #D4DBE5, #E1EDF3);
  padding: 0 15px;
  border-radius: 8px;
  font-size: 14px;
}

.product__texts {
  margin-top: 24px;
}

.product__texts__item__title {
  font-size: 24px;
  line-height: 32px;
  font-weight: 600;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #EBEBEB;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.product__texts__item__text {
  font-size: 16px;
  line-height: 22px;
  display: none;
}

.product__texts__item:last-child .product__texts__item__title {
  border-bottom: none;
}

.product__texts__item__opener {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  border: 2px solid #03053D;
  position: relative;
}

.product__texts__item__opener:before {
  content: "";
  display: block;
  width: 8px;
  height: 2px;
  background: #4488AE;
}

.product__texts__item__opener:after {
  content: "";
  display: block;
  width: 2px;
  height: 8px;
  background: #4488AE;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: 0.2s;
}

.product__texts__item.open {
  margin-bottom: 10px;
}
.product__texts__item.open .product__texts__item__text {
  display: block;
}
.product__texts__item.open .product__texts__item__title {
  padding-bottom: 0;
  border-bottom: none;
}
.product__texts__item.open .product__texts__item__opener:after {
  opacity: 0;
}

.product__gallery {
  display: flex;
  gap: 20px;
}

.product__gallery__list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  width: 773px;
}
.product__gallery__list .product__gallery__list__item {
  width: 100%;
  box-sizing: border-box;
  font-size: 0;
  display: block;
}
.product__gallery__list .product__gallery__list__item img {
  max-width: 100%;
  border-radius: 24px;
}
.product__gallery__list .product__gallery__list__item.half {
  width: calc((100% - 20px) / 2);
}

.product__gallery__thumbs {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.product__gallery__thumbs__block {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.product__gallery__thumbs__block__title {
  font-size: 16px;
  line-height: 22px;
  font-weight: 600;
}

.product__gallery__thumb {
  width: 130px;
  height: 90px;
  display: block;
  border-radius: 12px;
  font-size: 0;
  box-sizing: border-box;
  position: relative;
}
.product__gallery__thumb img {
  width: 130px;
  height: 90px;
  border-radius: 12px;
  -o-object-fit: cover;
     object-fit: cover;
}

.product__gallery__thumb:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  border: 1px solid transparent;
  top: 0;
  left: 0;
  position: absolute;
  border-radius: 12px;
  transition: 0.2s;
}

.product__gallery__thumb:hover:after {
  border: 1px solid #03053D;
}

.product__gallery__thumb:last-child {
  margin-bottom: 0;
}

.product__gallery__more {
  width: 130px;
  height: 90px;
  box-sizing: border-box;
  border: 1px solid #03053D;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 24px;
  line-height: 32px;
}

.product__gallery__thumb_video {
  position: relative;
}

.product__gallery__thumb_video:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  top: 0;
  left: 0;
  position: absolute;
  border-radius: 12px;
  transition: 0.2s;
  background: linear-gradient(to bottom, rgba(3, 5, 61, 0.97), rgba(3, 5, 61, 0.4));
  opacity: 0;
}

.product__gallery__thumb_video:hover:before {
  opacity: 0.6;
}

.product__gallery__thumb_video:after {
  content: "";
  width: 32px;
  height: 32px;
  background: url("../images/video_i.svg");
  top: 50%;
  left: 50%;
  transition: 0.2s;
  opacity: 0;
  transform: translate(-50%, -50%);
  border: none;
}

.product__gallery__thumb_video:hover:after {
  opacity: 1;
  border: none;
}

@media (max-width: 1400px) {
  .product__content__top .btn {
    width: 150px;
  }
  .product__gallery {
    min-width: calc(100% - 410px);
    width: calc(100% - 410px);
  }
  .product__gallery__list {
    width: calc(100% - 150px);
  }
}
@media (max-width: 992px) {
  .product {
    flex-direction: column;
    align-items: center;
    padding-bottom: 70px;
  }
  .product__gallery {
    min-width: 100%;
    width: 100%;
  }
  .product__gallery__list {
    width: 100%;
    justify-content: center;
  }
  .product__gallery__thumbs {
    display: none;
  }
  .product__content {
    width: 500px;
    position: static;
  }
  .product__features__item {
    font-size: 13px;
  }
}
@media (max-width: 768px) {
  .product-details {
    gap: 15px;
  }
  .product-details__item {
    flex-direction: column;
    font-size: 14px;
    line-height: 20px;
    gap: 4px;
  }
  .product__content {
    width: 100%;
  }
  .product__params__title {
    font-size: 16px;
    line-height: 22px;
    margin-bottom: 0;
  }
  .product__param__key {
    font-size: 14px;
    line-height: 20px;
  }
  .product__param__val {
    font-size: 14px;
    line-height: 20px;
  }
  .product__param:after {
    bottom: 3px;
  }
  .product__texts__item__title {
    font-size: 16px;
    line-height: 22px;
  }
  .product__content__top {
    flex-wrap: wrap;
    gap: 20px 18px;
  }
  .product__content__top .product__content__top__price {
    font-size: 24px;
    line-height: 32px;
    width: 100%;
    text-align: center;
  }
  .product__content__top .btn {
    width: calc(100% - 88px);
  }
  .product__content__top .product__content__top__msg {
    display: flex;
    gap: 6px;
  }
}
@media (max-width: 400px) {
  .product-details {
    gap: 10px;
  }
  .product-details__item {
    font-size: 12px;
    line-height: 16px;
  }
}
.contacts {
  margin-top: 40px;
  border-top: 1px solid #EBEBEB;
  display: flex;
  gap: 20px;
  padding: 40px 0 100px 0;
  align-items: stretch;
}

.contacts__info__block {
  background: linear-gradient(to bottom, #D4DBE5, #E1EDF3);
  border-radius: 12px;
  padding: 20px 24px;
}

.contacts__info__block__title {
  font-size: 16px;
  line-height: 22px;
  font-weight: bold;
}

.contacts__info {
  width: 666px;
  display: flex;
  gap: 20px;
  flex-direction: column;
  flex: 1;
}

.contacts__info__block__params {
  margin-top: 13px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

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

.contacts__info__block__param__key {
  font-size: 16px;
  line-height: 22px;
  flex-direction: column;
}

.contacts__info__block__param__val {
  flex-direction: column;
  display: flex;
  font-size: 24px;
  line-height: 32px;
  font-weight: 600;
}
.contacts__info__block__param__val a {
  font-size: 24px;
  line-height: 32px;
  text-decoration: none;
  color: #03053D;
  font-weight: 600;
  transition: 0.2s;
}
.contacts__info__block__param__val a:hover {
  color: #4488AE;
}
.contacts__info__block__param__val img {
  width: 32px;
  height: 32px;
}

.contacts__info__section {
  display: flex;
  gap: 20px;
}
.contacts__info__section > div:first-child {
  width: 380px;
}
.contacts__info__section > div:last-child {
  width: calc(100% - 400px);
}

.contacts__info__block__param__social {
  display: flex;
  gap: 10px;
}
.contacts__info__block__param__social a {
  display: block;
  font-size: 0;
  height: 32px;
  line-height: 32px;
}

.contacts__info__section__col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contacts__map {
  flex: 1;
  width: calc(100% - 686px);
}

#map {
  height: 100%;
  border-radius: 24px;
  overflow: hidden;
}

@media (max-width: 992px) {
  .contacts {
    flex-direction: column;
    align-items: flex-start;
  }
  .contacts__map {
    width: 100%;
    height: 246px;
    flex: auto;
  }
  .contacts__info {
    width: 100%;
    flex: auto;
  }
}
.contacts__info__mobile {
  display: none;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  background: #fff;
  border-radius: 8px;
  margin-top: -65px;
  padding: 14px 0;
  box-shadow: 0px 8px 12px rgba(68, 136, 174, 0.2);
}
.contacts__info__mobile > div:first-child {
  display: flex;
  align-items: center;
  gap: 10px;
}
.contacts__info__mobile > div:first-child .contacts__info__block__param__social a {
  display: block;
  width: 24px;
  height: 24px;
}
.contacts__info__mobile > div:first-child .contacts__info__block__param__social a img {
  max-width: 24px;
}

.contacts__info__mobile__phone {
  font-size: 28px;
  line-height: 40px;
  color: #4488AE;
  font-weight: 600;
  text-decoration: none;
}

.contacts__info__mobile__worktime {
  font-size: 16px;
  line-height: 22px;
  font-weight: 600;
}

@media (max-width: 768px) {
  .contacts__info {
    gap: 20px;
    background: linear-gradient(to bottom, #D4DBE5, #E1EDF3);
    box-sizing: border-box;
    padding: 20px 15px;
    margin-top: 70px;
  }
  .contacts__info__block {
    background: none;
    border-radius: 0;
    padding: 0 0;
  }
  .wrapper_contacts {
    padding: 0 !important;
  }
  .wrapper_contacts .breadcrumbs {
    padding: 16px 15px;
  }
  .contacts {
    margin-top: 20px;
    padding: 0 0 70px 0;
  }
  .contacts__map {
    padding: 0 15px;
    box-sizing: border-box;
  }
  #map {
    border-radius: 14px;
  }
  .contacts__info__block__param__val {
    font-size: 18px;
    line-height: 22px;
  }
  .contacts__info__block__param__val a {
    font-size: 18px;
    line-height: 22px;
  }
  .contacts__info__block__title {
    font-size: 14px;
    line-height: 20px;
  }
  .contacts__info__block__param__key {
    font-size: 14px;
    line-height: 20px;
  }
  .contacts__info__block_social {
    display: none;
  }
  .contacts__info__block__param_mainphone {
    display: none;
  }
  .contacts__info__block__params {
    margin-top: 10px;
    gap: 8px;
  }
  .contacts__info__section {
    flex-direction: column;
  }
  .contacts__info__section > div:first-child {
    width: 100%;
  }
  .contacts__info__section > div:last-child {
    width: 100%;
  }
  .contacts__info__mobile {
    display: flex;
  }
}
@media (max-width: 360px) {
  .contacts__info__mobile__worktime {
    font-size: 14px;
    line-height: 20px;
  }
}
.requisites {
  padding-bottom: 100px;
  background-image: url("../images/requisites_bg.png");
  background-repeat: no-repeat;
  background-position: left 0 bottom 60px;
}
.requisites .wrapper {
  display: flex;
  justify-content: space-between;
}

.requisites__title {
  font-size: 44px;
  line-height: 60px;
  font-weight: 600;
  color: #03053D;
  margin: -15px 0 0 0;
}

.requisites__info {
  width: 850px;
  display: flex;
  flex-direction: column;
  gap: 21px;
}

.requisites__info__block p {
  margin: 0 0 11px 0;
  font-size: 16px;
  line-height: 22px;
}

.requisites__info__block__title {
  font-size: 24px;
  line-height: 32px;
  font-weight: 600;
  color: #03053D;
  margin-bottom: 12px;
}

.requisites__info__block__text {
  -moz-columns: 2;
       columns: 2;
  -moz-column-gap: 50px;
       column-gap: 50px;
}

.requisites__info__block__text_1 {
  -moz-columns: 1;
       columns: 1;
}

@media (max-width: 1500px) {
  .requisites {
    background-position: left -100px bottom 60px;
  }
}
@media (max-width: 1400px) {
  .requisites {
    background-position: left -200px bottom 60px;
  }
}
@media (max-width: 1250px) {
  .requisites__info {
    width: 600px;
  }
  .requisites__info__block__text {
    -moz-column-gap: 20px;
         column-gap: 20px;
  }
}
.requisites__img {
  display: none;
}

@media (max-width: 992px) {
  .requisites {
    background: none;
    padding: 0 0 70px 0;
  }
  .requisites .wrapper {
    flex-direction: column;
  }
  .requisites__info {
    width: 100%;
    gap: 12px;
  }
  .requisites__title {
    font-size: 28px;
    line-height: 40px;
    text-align: center;
    margin: 0;
  }
  .requisites__info__block__title {
    font-size: 18px;
    line-height: 22px;
    margin-bottom: 6px;
  }
  .requisites__info__block p {
    margin: 0 0 6px 0;
    font-size: 14px;
    line-height: 20px;
  }
  .requisites__info__block__text {
    -moz-columns: 1;
         columns: 1;
  }
  .requisites__img {
    display: inline-block;
    width: 330px;
    max-width: 100%;
    margin-left: -15px;
    margin-top: 20px;
  }
}
.salon {
  padding-bottom: 100px;
}

.salon__block {
  height: 702px;
  border-radius: 44px;
  position: relative;
  margin-top: 60px;
}

.salon__block__position {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  width: 72px;
  height: 72px;
  box-sizing: border-box;
  border: 1px solid #fff;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.2s;
}
.salon__block__position svg .white {
  transition: 0.2s;
}

.salon__block__position__content {
  background: #fff;
  width: 415px;
  box-sizing: border-box;
  padding: 20px 28px;
  border-radius: 12px;
  position: absolute;
  left: calc(100% + 20px);
  top: 0;
  display: none;
}

.salon__block__position__content__title {
  font-size: 24px;
  line-height: 32px;
  color: #03053D;
  font-weight: 600;
  margin-bottom: 8px;
}

.salon__block__position__content__text {
  font-size: 16px;
  line-height: 22px;
  color: #03053D;
}

.salon__block__position:hover {
  background: #fff;
  z-index: 2;
}
.salon__block__position:hover svg .white {
  fill: #000;
}
.salon__block__position:hover .salon__block__position__content {
  display: block;
}

.salon__block_horizontal .salon__block__list {
  display: flex;
  position: absolute;
  top: 43px;
  right: 68px;
  gap: 6px;
}
.salon__block_horizontal .salon__block__list .salon__block__position {
  position: relative;
}
.salon__block_horizontal .salon__block__position__content {
  left: 0;
  right: auto;
  top: calc(100% + 20px);
}
.salon__block_horizontal .salon__block__position_edge .salon__block__position__content {
  left: auto;
  right: 0;
}

@media (max-width: 992px) {
  .salon__block {
    height: 300px;
    border-radius: 14px;
    margin-top: 32px;
    background-size: cover;
  }
  .salon .section__title {
    text-align: center;
  }
  .salon__block__position {
    width: 38px;
    height: 38px;
  }
  .salon__block__position svg {
    width: 24px;
    height: 24px;
  }
  .salon__block_horizontal .salon__block__list {
    top: 14px;
    right: 0;
    width: 100%;
    box-sizing: border-box;
    padding: 0 14px;
    justify-content: flex-end;
    flex-wrap: wrap;
  }
  .salon__block_horizontal .salon__block__position {
    position: static !important;
  }
  .salon__block_horizontal .salon__block__position__content {
    width: 100%;
    border-radius: 0;
    top: 304px;
    padding: 0;
  }
  .salon__block__position__content__title {
    font-size: 18px;
    line-height: 22px;
    margin-bottom: 6px;
  }
  .salon__block__position__content__text {
    font-size: 14px;
    line-height: 20px;
  }
}
.avtopark__filters {
  display: flex;
  gap: 10px;
}

.avtopark__filters__item {
  position: relative;
}

.avtopark__filters__item__current {
  height: 38px;
  display: flex;
  align-items: center;
  border-radius: 8px;
  border: 1px solid #EBEBEB;
  gap: 32px;
  transition: 0.2s;
  cursor: pointer;
  box-sizing: border-box;
  padding: 0 20px;
  position: relative;
}
.avtopark__filters__item__current span {
  font-size: 16px;
  line-height: 22px;
  color: #03053D;
}
.avtopark__filters__item__current .avtopark__filters__item__current__arrow {
  height: 5px;
  font-size: 0;
  transition: 0.2s;
}

.avtopark__filters__item__current:after {
  content: "";
  display: block;
  width: calc(100% - 40px);
  height: 1px;
  left: 20px;
  bottom: 0;
  background: #EBEBEB;
  position: absolute;
  opacity: 0;
  transition: 0.2s;
}

.avtopark__filters__item__current:hover {
  border: 1px solid transparent;
  box-shadow: 0px 8px 24px rgba(68, 136, 174, 0.2);
}

.avtopark__filters__item__select {
  display: none;
  position: absolute;
  top: 37px;
  background: #fff;
  min-width: 100%;
  padding: 10px 20px;
  box-sizing: border-box;
}
.avtopark__filters__item__select fieldset {
  border: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.avtopark__filters__item__select label {
  cursor: pointer;
  display: flex;
}
.avtopark__filters__item__select label input[type=checkbox] {
  display: none;
}
.avtopark__filters__item__select label .checkbox__text {
  display: flex;
}
.avtopark__filters__item__select label input:checked + .checkbox__text div {
  border: 2px solid #4488AE;
  background: #4488AE;
}
.avtopark__filters__item__select label input:checked + .checkbox__text div:after {
  opacity: 1;
}
.avtopark__filters__item__select .checkbox__text {
  display: flex;
  align-items: center;
  gap: 10px;
}
.avtopark__filters__item__select .checkbox__text div {
  width: 20px;
  height: 20px;
  border: 2px solid #03053D;
  border-radius: 4px;
  box-sizing: border-box;
  transition: 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.avtopark__filters__item__select .checkbox__text div:after {
  content: url("../images/check_i.svg");
  opacity: 0;
  transition: 0.2s;
}
.avtopark__filters__item__select .checkbox__text span {
  white-space: nowrap;
  font-size: 16px;
  height: 20px;
}
.avtopark__filters__item__select .checkbox__text span sup {
  font-size: 10px;
}

.avtopark__filters__item.active .avtopark__filters__item__current {
  border: 1px solid #DAE7EF;
  border-bottom: 1px solid transparent;
  border-radius: 8px 8px 0 0;
}
.avtopark__filters__item.active .avtopark__filters__item__current:hover {
  border: 1px solid #DAE7EF;
  border-bottom: 1px solid transparent;
  box-shadow: none;
}
.avtopark__filters__item.active .avtopark__filters__item__select {
  display: block;
  border: 1px solid #DAE7EF;
  border-top: 1px solid transparent;
  border-radius: 0 0 8px 8px;
}
.avtopark__filters__item.active .avtopark__filters__item__current:after {
  opacity: 1;
}
.avtopark__filters__item.active .avtopark__filters__item__current__arrow {
  transform: rotate(180deg);
}

#mse2_selected {
  display: none;
  background: #EBEBEB;
  padding: 10px;
  border-radius: 0;
  margin-top: 10px;
}

#mse2_selected strong {
  display: inline-block;
  margin-right: 10px;
}

#mse2_selected .mse2_selected_link em {
  color: #03053D;
  font-style: normal;
}

#mse2_selected .mse2_selected_link {
  text-decoration: none;
}

#mse2_selected_wrapper {
  min-height: 0;
  margin: 0;
}

.mse2_number_inputs {
  display: flex;
  gap: 5px;
}

.mse2_number_inputs label {
  width: calc((100% - 5px) / 2);
}

.mse2_number_inputs label input {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid #AEAEAE;
  border-radius: 4px;
  font-size: 12px;
  height: 24px;
  padding: 0 3px;
  text-align: center;
}

.ui-widget.ui-widget-content {
  border: none;
  height: 1px;
  background: #03053D;
}

#mse2_filters .mse2_number_slider {
  font-size: 0;
  margin: 10px 0;
  background: #AEAEAE;
  border-radius: 0;
}

.ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default, .ui-button, html .ui-button.ui-state-disabled:hover, html .ui-button.ui-state-disabled:active {
  border: none;
  background: #4488AE;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  outline: none;
}

.ui-slider-horizontal .ui-slider-handle {
  top: -5px;
  margin-left: -5px;
}

/*.catalog__sort {
    position: relative;
  }

  .catalog__sort__select {
    display: none;
  }

  .catalog__sort__current {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    width: 181px;
    height: 40px;
    border: 1px solid rgba(32, 32, 32, 0.4);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 0 15px 0 10px;
    font-size: 12px;
    line-height: 15px;
    color: #202020;
    cursor: pointer;
    position: relative;
  }

  .catalog__sort__select {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    position: absolute;
    top: 40px;
    background: #fff;
    border: 1px solid rgba(32, 32, 32, 0.4);
    border-top: none;
    width: 181px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 20px;
    -webkit-transition: 0.2s;
    transition: 0.2s;
    display: none;
  }

  .catalog__sort__select > div {
    font-weight: 400;
    font-size: 12px;
    line-height: 15px;
    color: #202020;
    margin-bottom: 10px;
    cursor: pointer;
  }

  .catalog__sort__select > div:last-child {
    margin-bottom: 0;
  }

  .catalog__sort__current__arrow {
    position: absolute;
    top: 50%;
    right: 15px;
    -webkit-transform: translate(0, -50%);
            transform: translate(0, -50%);
  }

  .catalog__sort:hover .catalog__sort__current {
    border: 1px solid #202020;
  }

  .catalog__sort:hover .catalog__sort__select {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border: 1px solid #202020;
    border-top: none;
  }*/
.prices {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px 40px;
}

.prices__item {
  width: calc((100% - 40px) / 2);
}
.prices__item table {
  width: 100%;
  border-collapse: collapse;
}
.prices__item table th {
  background: linear-gradient(to bottom, #D4DBE5, #E1EDF3);
  font-size: 24px;
  line-height: 32px;
  color: #03053D;
  padding: 20px 0;
}
.prices__item table th:first-child {
  border-radius: 12px 0 0 12px;
}
.prices__item table th:last-child {
  border-radius: 0 12px 12px 0;
}
.prices__item table td {
  padding: 24px 44px;
}
.prices__item table tr:nth-child(odd) td {
  background: #F2F8FB;
  width: 50%;
  font-size: 14px;
  line-height: 20px;
}
.prices__item table td:first-child {
  border-radius: 12px 0 0 12px;
}
.prices__item table td:last-child {
  border-radius: 0 12px 12px 0;
  font-weight: bold;
  text-align: center;
}
.prices__item table tr:last-child td {
  text-align: left;
  font-weight: 400;
}

.prices__item__title {
  font-size: 36px;
  line-height: 48px;
  color: #03053D;
  font-weight: bold;
  text-align: center;
  margin-bottom: 32px;
}

.prices__item__pay {
  border-radius: 12px;
  background: linear-gradient(to bottom, #D4DBE5, #E1EDF3);
  padding: 32px 44px;
  margin-top: 80px;
  box-sizing: border-box;
}
.prices__item__pay ul {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.prices__item__pay ul li {
  font-size: 16px;
  line-height: 22px;
  color: #03053D;
  position: relative;
  padding-left: 13px;
}
.prices__item__pay ul li:before {
  content: "";
  position: absolute;
  background: #03053D;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  top: 8px;
  left: 0;
}

.prices__item__pay__title {
  font-size: 28px;
  line-height: 40px;
  color: #03053D;
  font-weight: bold;
  margin-bottom: 15px;
}

.prices__alert {
  text-align: center;
  font-size: 24px;
  line-height: 32px;
  font-weight: 600;
  width: 71%;
  margin: 0 auto;
}

.prices-content {
  padding-top: 40px;
  padding-bottom: 100px;
}
.prices-content .wrapper {
  display: flex;
  gap: 60px;
}

.prices-content__images__bgtitle {
  font-size: 24px;
  line-height: 32px;
  color: #03053D;
  background: linear-gradient(to bottom, #D4DBE5, #E1EDF3);
  padding: 20px 28px;
  border-radius: 12px;
  font-weight: bold;
}

.prices-content__images__sign {
  font-size: 24px;
  line-height: 32px;
  color: #03053D;
  font-weight: bold;
}

.prices-content__images {
  display: flex;
  flex-direction: column;
  gap: 20px;
  border-radius: 24px;
  font-size: 0;
  min-width: 562px;
}
.prices-content__images img {
  max-width: 100%;
}

.prices-content__text h3 {
  font-size: 24px;
  line-height: 32px;
  margin: 0 0 13px 0;
}
.prices-content__text p {
  margin: 0 0 13px 0;
  font-size: 16px;
  line-height: 22px;
}
.prices-content__text ul {
  padding: 0;
  margin: 0 0 13px 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.prices-content__text ul li {
  font-size: 16px;
  line-height: 22px;
  color: #03053D;
  position: relative;
  padding-left: 13px;
}
.prices-content__text ul li:before {
  content: "";
  position: absolute;
  background: #03053D;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  top: 10px;
  left: 0;
}
.prices-content__text img {
  display: none;
  margin-bottom: 13px;
  max-width: 100%;
  border-radius: 14px;
}

@media (max-width: 1200px) {
  .prices-content .wrapper {
    gap: 30px;
  }
  .prices-content__images {
    min-width: 450px;
  }
}
@media (max-width: 992px) {
  .prices {
    flex-direction: column;
    gap: 11px 0;
  }
  .prices__item {
    width: 100%;
  }
  .prices__item table th {
    font-size: 16px;
    line-height: 22px;
    padding: 26px 15px;
  }
  .prices__item table th:first-child {
    border-radius: 0;
    text-align: left;
  }
  .prices__item table th:last-child {
    border-radius: 0;
  }
  .prices__item table td {
    padding: 17px 15px;
  }
  .prices__item table td:first-child {
    border-radius: 0;
  }
  .prices__item table td:last-child {
    border-radius: 0;
  }
  .prices__item__title {
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 20px;
    padding: 0 15px;
  }
  .prices__item__pay__title {
    font-size: 16px;
    line-height: 22px;
    margin-bottom: 8px;
  }
  .prices__item__pay {
    padding: 14px 16px;
    margin: 0 auto;
    width: calc(100% - 30px);
  }
  .prices__item__pay ul {
    gap: 5px;
  }
  .prices__item__pay ul li {
    font-size: 14px;
    line-height: 20px;
  }
  .prices__alert {
    text-align: left;
    font-size: 14px;
    line-height: 20px;
    width: 100%;
    box-sizing: border-box;
    padding: 0 15px;
  }
  .prices-content {
    padding: 0 0 68px 0;
  }
  .prices-content .wrapper {
    gap: 0;
  }
  .prices-content__images {
    display: none;
  }
  .prices-content__images_about {
    display: flex;
    width: 100%;
    min-width: 100%;
    max-width: 100%;
  }
  .prices-content .wrapper_about {
    flex-direction: column;
    align-items: center;
  }
  .prices-content__images__bgtitle {
    font-size: 16px;
    line-height: 22px;
    padding: 11px 20px;
  }
  .prices-content__images__sign {
    font-size: 16px;
    line-height: 22px;
    margin-bottom: 20px;
  }
  .prices-content__text h3 {
    font-size: 18px;
    line-height: 22px;
    margin: 0 0 6px 0;
  }
  .prices-content__text p {
    margin: 0 0 6px 0;
    font-size: 14px;
    line-height: 20px;
  }
  .prices-content__text ul {
    margin: 0 0 6px 0;
    gap: 5px;
  }
  .prices-content__text ul li {
    font-size: 14px;
    line-height: 20px;
  }
  .prices-content__text img {
    display: block;
  }
}
.arrows {
  order: 3;
  display: flex;
  align-items: center;
  gap: 12px;
}
.arrows button {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #EBEBEB;
  background: #fff;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  transition: 0.2s;
}
.arrows button img {
  width: 14px;
}
.arrows button:hover {
  background: #EBEBEB;
}

.advantages__arrows__num {
  font-size: 18px;
  line-height: 22px;
  color: #03053D;
  font-weight: 600;
}
.advantages__arrows__num .current {
  font-size: 28px;
  line-height: 40px;
  color: #4488AE;
}

.arrows__btn-container {
  position: relative;
  display: inline-block;
  width: 32px;
  height: 32px;
}

.arrows__btn-container:hover .button {
  background: #EBEBEB;
}

.progress-ring {
  position: absolute;
  top: 0;
  left: 0;
  transform: rotate(-90deg); /* Начинаем сверху */
}

.progress-ring:hover + button {
  background: #EBEBEB;
}

.progress-ring__background,
.progress-ring__progress {
  fill: none;
  stroke-width: 1;
  r: 15;
  cx: 16;
  cy: 16;
}

.progress-ring__background {
  stroke: #eeeeee;
}

.progress-ring__progress {
  stroke: #4488AE;
  stroke-dasharray: 94.2; /* Длина окружности: 2πr (r = 15) */
  stroke-dashoffset: 94.2; /* Полностью скрыть */
  transition: stroke-dashoffset 0.3s ease;
}

.avtopark__arrows {
  display: none;
}

@media (max-width: 992px) {
  .avtopark__arrows {
    display: flex;
    width: calc(100% - 30px);
    position: absolute;
    top: 50%;
    left: 15px;
    box-sizing: border-box;
    justify-content: space-between;
    transform: translate(0, -50%);
    z-index: 5;
  }
  .avtopark__arrows .arrows__btn-container {
    width: 32px;
    height: 32px;
    cursor: pointer;
  }
  .avtopark__arrows .progress-ring__background, .avtopark__arrows .progress-ring__progress {
    r: 15;
    cx: 16;
    cy: 16;
  }
  .avtopark__arrows button {
    width: 32px;
    min-width: 32px;
    height: 32px;
    background: #fff;
    transition: 0.2s;
  }
  .avtopark__arrows button:hover {
    background: #EBEBEB;
  }
  .avtopark__arrows .progress-ring {
    width: 32px;
    height: 32px;
  }
}
.transfer .wrapper {
  position: relative;
}

.transfer__image {
  width: 850px;
}
.transfer__image img {
  max-width: 100%;
  border-radius: 24px;
}

.transfer__info__slider {
  margin-top: 120px;
  width: 440px;
}

.transfer__info__slide {
  background: linear-gradient(to bottom, #D4DBE5, #E1EDF3);
  width: 440px;
  box-sizing: border-box;
  border-radius: 12px;
  padding: 20px 28px;
}

.transfer__info__slide__title {
  font-size: 24px;
  line-height: 32px;
  font-weight: 600;
  margin-bottom: 13px;
}

.transfer__info__slide__text {
  font-size: 16px;
  line-height: 22px;
}

.transfer__slider {
  width: 100%;
}

.transfer__arrows {
  margin-top: 36px;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 101;
}
.transfer__arrows .arrows__btn-container {
  width: 48px;
  height: 48px;
  cursor: pointer;
}
.transfer__arrows button {
  width: 48px;
  height: 48px;
  cursor: pointer;
}
.transfer__arrows .progress-ring__background, .transfer__arrows .progress-ring__progress {
  r: 23;
  cx: 24;
  cy: 24;
}
.transfer__arrows .progress-ring {
  width: 48px;
  height: 48px;
}
.transfer__arrows .transfer__arrows__num {
  font-size: 28px;
  line-height: 40px;
  display: flex;
  align-items: center;
}
.transfer__arrows .transfer__arrows__num .current {
  font-size: 90px;
  line-height: 90px;
  color: #4488AE;
  font-weight: 600;
}
.transfer__arrows .transfer__arrows__num .total {
  font-size: 28px;
  line-height: 40px;
}

.transfer__slider {
  margin-top: -60px;
}

.transfer__item {
  display: flex;
  justify-content: space-between;
}

@media (max-width: 1500px) {
  .transfer__image {
    width: calc(100% - 530px);
  }
  .transfer__arrows {
    left: 15px;
    bottom: -55px;
  }
  .transfer__info__slider {
    margin-top: 80px;
  }
  .transfer__arrows .transfer__arrows__num .current {
    font-size: 50px;
    line-height: 50px;
  }
  .transfer__arrows .transfer__arrows__num {
    font-size: 20px;
    line-height: 24px;
  }
}
@media (max-width: 992px) {
  .transfer .wrapper {
    padding: 0;
  }
  .transfer .section__title {
    text-align: center;
  }
  .transfer__item {
    position: relative;
  }
  .transfer__image {
    width: 100%;
    position: absolute;
    border-radius: 0;
    top: 50%;
    left: -200px;
    transform: translate(0, -50%);
    display: none;
  }
  .transfer__info__slider {
    margin-top: 0;
    width: 100%;
  }
  .transfer__info__slide {
    width: 100%;
    border-radius: 0;
    box-sizing: border-box;
    padding: 20px 15px 20px 32%;
  }
  .transfer__slider {
    margin-top: 20px;
  }
  .transfer__info {
    width: 100%;
  }
  .transfer__arrows .progress-ring {
    width: 32px;
    height: 32px;
  }
  .transfer__arrows button {
    width: 32px;
    height: 32px;
  }
  .transfer__arrows .progress-ring__background, .transfer__arrows .progress-ring__progress {
    r: 15;
    cx: 16;
    cy: 16;
  }
  .transfer__arrows .arrows__btn-container {
    width: 32px;
    height: 32px;
  }
  .transfer__arrows {
    left: 50%;
    transform: translate(-50%, 0);
  }
}
.comfort__content {
  display: flex;
  justify-content: center;
  margin-top: 17px;
  position: relative;
}

.comfort__content__items {
  position: absolute;
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  box-sizing: border-box;
  padding-top: 0;
}

.comfort__content__item {
  font-size: 24px;
  line-height: 32px;
  font-weight: 600;
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.comfort__content__item:nth-child(even) {
  text-align: right;
  justify-content: flex-end;
}

.comfort__content__item_padding {
  padding-top: 10px;
}

@media (max-width: 1500px) {
  .comfort__content__item {
    font-size: 20px;
    line-height: 28px;
  }
}
@media (max-width: 1400px) {
  .comfort__content__item {
    font-size: 14px;
    line-height: 20px;
  }
  .comfort__content__item:nth-child(3) {
    margin-top: 10px;
  }
  .comfort__content img {
    width: 900px;
  }
}
@media (max-width: 1220px) {
  .comfort__content img {
    width: 800px;
  }
}
@media (max-width: 1115px) {
  .comfort__content img {
    width: 700px;
  }
}
.comfort__imgm {
  display: none;
}

@media (max-width: 992px) {
  .comfort__content__item {
    font-size: 14px;
    line-height: 20px;
    width: 100%;
    position: relative;
    padding-left: 24px;
  }
  .comfort__content__item br {
    display: none;
  }
  .comfort__content__item:before {
    content: "";
    width: 14px;
    height: 14px;
    border: 1px solid #4488AE;
    position: absolute;
    top: 4px;
    left: 0;
    border-radius: 50%;
    box-sizing: border-box;
  }
  .comfort__content__item:after {
    content: "";
    width: 10px;
    height: 10px;
    background: #4488AE;
    position: absolute;
    top: 6px;
    left: 2px;
    border-radius: 50%;
    box-sizing: border-box;
  }
  .comfort__content__items {
    justify-content: flex-start;
    flex-direction: column;
    gap: 12px;
    position: static;
    padding-right: 140px;
  }
  .comfort__content__item:nth-child(even) {
    text-align: left;
    display: block;
  }
  .comfort__content__item:nth-child(3) {
    margin-top: 0;
  }
  .comfort__content__item_padding {
    padding-top: 0;
  }
  .comfort__content .comfort__imgm {
    display: block;
    width: auto;
    position: absolute;
    top: 50%;
    right: -15px;
    transform: translate(0, -50%);
  }
  .comfort__content .comfort__img {
    display: none;
  }
}
.corporate__content {
  padding: 0;
  background: #fff;
  border: 1px solid #EBEBEB;
  border-radius: 32px;
  padding: 48px 124px;
  box-shadow: 0px 8px 24px rgba(68, 136, 174, 0.2);
  position: relative;
}

.corporate__content__title {
  font-size: 28px;
  line-height: 40px;
  font-weight: 600;
  margin-bottom: 9px;
}

.corporate__content__text {
  font-size: 16px;
  line-height: 22px;
}

.corporate__content__flex {
  display: flex;
  gap: 40px;
  align-items: center;
  margin-top: 35px;
}
.corporate__content__flex .btn {
  width: 217px;
}

.corporate__content__feature {
  display: flex;
  align-items: center;
  gap: 6px;
}

.corporate__content__discount {
  position: absolute;
  top: 35px;
  right: 83px;
}

.corporate__content__car {
  position: absolute;
  right: 189px;
  top: 13px;
}

@media (max-width: 1450px) {
  .corporate__content {
    padding: 48px 50px;
  }
  .corporate__content__discount {
    right: 33px;
  }
  .corporate__content__car {
    right: 139px;
  }
}
@media (max-width: 1350px) {
  .corporate__content__flex {
    gap: 20px;
  }
  .corporate__content__flex .btn {
    width: 150px;
  }
  .corporate__content__text {
    width: 500px;
  }
  .corporate__content__text br {
    display: none;
  }
}
@media (max-width: 1200px) {
  .corporate__content__car {
    top: 40px;
  }
  .corporate__content__car img {
    width: 300px;
  }
  .corporate__content {
    overflow: hidden;
  }
  .corporate__content__discount {
    right: -15px;
  }
  .corporate__content__car {
    right: 100px;
  }
}
@media (max-width: 992px) {
  .corporate__content__title {
    font-size: 24px;
    line-height: 32px;
  }
  .corporate__content__text {
    font-size: 14px;
    line-height: 20px;
  }
  .corporate__content {
    padding: 16px 20px;
  }
  .corporate__content__flex {
    flex-direction: column;
    width: 280px;
    align-items: flex-start;
    gap: 8px;
    margin-top: 12px;
  }
  .corporate__content__flex .btn {
    order: 3;
    width: 100%;
    margin-top: 8px;
  }
}
@media (max-width: 768px) {
  .corporate__content__car {
    display: none;
  }
  .corporate__content__discount {
    top: 50%;
    transform: translate(0, -50%);
  }
  .corporate__content__discount img {
    width: 117px;
  }
  .corporate__content__text {
    width: 100%;
    box-sizing: border-box;
    padding-right: 110px;
  }
}
@media (max-width: 500px) {
  .corporate__content__flex {
    width: 100%;
  }
}
.reviews .footer__rating {
  margin: 16px 0 24px 0;
}
.reviews .footer__rating .footer__rating__num {
  color: #03053D;
}
.reviews .footer__rating .footer__rating__text {
  color: #03053D;
}

.reviews__flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 60px;
}

.reviews__rating {
  background: linear-gradient(to bottom, #D4DBE5, #E1EDF3);
  border-radius: 12px;
  box-sizing: border-box;
  padding: 20px 28px;
}

.reviews__rating__title {
  font-size: 28px;
  line-height: 40px;
  font-weight: 600;
}

.reviews__link a {
  font-size: 24px;
  line-height: 32px;
  color: #03053D;
  text-decoration: none;
  transition: 0.2s;
}
.reviews__link a:hover {
  color: #4488AE;
}

.reviews__list {
  width: 849px;
  position: relative;
}
.reviews__list .reviews__arrows {
  position: absolute;
  right: 36px;
  top: 24px;
  display: flex;
  gap: 12px;
  z-index: 20;
  width: auto;
  height: auto;
}
.reviews__list .reviews__arrows .arrows__btn-container {
  width: 48px;
  height: 48px;
  cursor: pointer;
}
.reviews__list .reviews__arrows .progress-ring {
  width: 48px;
  height: 48px;
}
.reviews__list .reviews__arrows .progress-ring__background, .reviews__list .reviews__arrows .progress-ring__progress {
  fill: none;
  stroke-width: 1;
  r: 23;
  cx: 24;
  cy: 24;
}
.reviews__list .reviews__arrows button {
  background: #ffffff;
  border-radius: 50%;
  border: 1px solid #EBEBEB;
  width: 48px;
  min-width: 48px;
  height: 48px;
  box-sizing: border-box;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.2s;
}
.reviews__list .reviews__arrows button:hover {
  border: 1px solid #EBEBEB;
  background: #EBEBEB;
}

.reviews__list__item {
  box-sizing: border-box;
  padding: 24px 36px;
  border-radius: 24px;
  border: 1px solid #EBEBEB;
  width: 100%;
}

.reviews__list__item__text {
  margin-bottom: 16px;
}
.reviews__list__item__text p {
  margin-top: 0;
}
.reviews__list__item__text p:last-child {
  margin-bottom: 0;
}

.reviews__list__item__more {
  color: #AEAEAE;
  text-decoration: none;
  transition: 0.2s;
  font-size: 14px;
  line-height: 20px;
}

.reviews__list__item__more:hover {
  color: #4488AE;
}

.reviews__list__item__top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.reviews__list__item__photo {
  width: 44px;
  font-size: 0;
}
.reviews__list__item__photo img {
  border-radius: 50%;
  max-width: 100%;
}

.reviews__list__item__name {
  font-weight: 600;
  margin-bottom: 4px;
}

.reviews__list__item__stars {
  background: urL("../images/star-bg.png");
  position: relative;
  font-size: 0;
  width: 90px;
}
.reviews__list__item__stars img {
  position: relative;
  max-width: 100%;
}
.reviews__list__item__stars > div {
  position: absolute;
  top: 0;
  background: #FDCC03;
  width: 100%;
  height: 100%;
}

.reviews__list__item__stars:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #EBEBEB;
}

.reviews__list__item__date {
  font-size: 14px;
  line-height: 20px;
  color: #AEAEAE;
  position: absolute;
  bottom: 24px;
  right: 36px;
}

@media (max-width: 1400px) {
  .reviews__flex {
    gap: 20px;
  }
  .reviews__list {
    width: calc(100% - 40px - 306px - 180px);
  }
  .reviews__rating {
    width: 306px;
  }
}
@media (max-width: 992px) {
  .reviews__flex {
    margin-bottom: 30px;
    flex-direction: column;
    align-items: center;
    margin-top: 32px;
    position: relative;
  }
  .reviews__flex .reviews__rating .reviews__rating__title {
    text-align: center;
  }
  .reviews__flex .reviews__rating .btn {
    width: 215px;
    margin: 0 auto;
  }
  .reviews__flex .reviews__rating__title {
    font-size: 24px;
    line-height: 32px;
  }
  .reviews__flex .footer__rating__num {
    font-size: 28px;
    line-height: 40px;
  }
  .reviews__flex .footer__rating {
    margin: 11px 0 18px 0;
  }
  .reviews__flex .footer__rating__info {
    gap: 4px;
  }
  .reviews__flex .footer__rating {
    gap: 6px;
    justify-content: center;
  }
  .reviews__flex .reviews__link {
    position: absolute;
    right: 0;
    bottom: 0;
  }
  .reviews__flex .reviews__link a {
    font-size: 16px;
    line-height: 22px;
    text-decoration: underline;
  }
  .reviews__list__item__top {
    margin-bottom: 10px;
  }
  .reviews__list__item__date {
    top: 24px;
    bottom: auto;
    right: 5px;
  }
  .reviews__list {
    width: 100%;
  }
  .reviews__list .reviews__arrows .arrows__btn-container {
    width: 32px;
    height: 32px;
    cursor: pointer;
  }
  .reviews__list .reviews__arrows .progress-ring__background, .reviews__list .reviews__arrows .progress-ring__progress {
    r: 15;
    cx: 16;
    cy: 16;
  }
  .reviews__list .reviews__arrows button {
    width: 32px;
    min-width: 32px;
    height: 32px;
  }
  .reviews__list .reviews__arrows .progress-ring {
    width: 32px;
    height: 32px;
  }
  .reviews__rating {
    width: 100%;
  }
  .reviews__list__item {
    padding: 0;
    border: none;
  }
  .reviews__list .reviews__arrows {
    right: auto;
    top: auto;
    bottom: -52px;
    left: 50%;
    transform: translate(-50%, 0);
  }
}
.service-text .wrapper {
  width: calc(100% - (50% - 736px));
  display: flex;
  justify-content: space-between;
  margin: 0;
  gap: 49px;
  align-items: flex-start;
}

.service-text__img {
  margin-top: 45px;
}

.service-text__content h2 {
  font-size: 44px;
  line-height: 60px;
  margin: 0 0 60px 0;
}
.service-text__content h3 {
  font-size: 24px;
  line-height: 32px;
  margin: 0 0 13px 0;
}
.service-text__content h3 strong {
  color: #4488AE;
}
.service-text__content h3:last-child {
  margin-top: 24px;
}
.service-text__content p {
  font-size: 16px;
  line-height: 22px;
}
.service-text__content ul {
  margin: 0;
  padding: 0;
}
.service-text__content ul li {
  list-style-position: inside;
}

.pricing-block .pricing-block__table-wrap {
  width: 100%;
}
.pricing-block p {
  text-align: center;
  font-size: 16px;
  line-height: 22px;
}
.pricing-block table {
  margin-top: 60px;
  width: 100%;
  border-collapse: collapse;
  border: none !important;
}
.pricing-block table tr td {
  padding: 24px 44px;
  line-height: 22px;
  font-size: 16px;
  color: #03053D;
  text-align: center;
  font-weight: bold;
}
.pricing-block table tr td:first-child {
  text-align: left;
  font-weight: normal;
}
.pricing-block table tr:nth-child(odd) td {
  background: #F2F8FB;
}
.pricing-block table tr:nth-child(odd) td:first-child {
  border-radius: 12px 0 0 12px;
}
.pricing-block table tr:nth-child(odd) td:last-child {
  border-radius: 0 12px 12px 0;
}
.pricing-block table tr:first-child td {
  font-size: 24px;
  line-height: 32px;
  background: linear-gradient(to bottom, #D4DBE5, #E1EDF3);
}
.pricing-block table tr:first-child td:first-child {
  font-weight: bold;
}

@media (max-width: 992px) {
  .pricing-block__table-wrap {
    max-width: 100%;
    overflow-x: scroll;
  }
}
.section_thank .wrapper {
  position: relative;
}

.wrapper_thank {
  overflow: hidden;
  width: 1521px;
}

.thank {
  margin-top: 60px;
}
.thank .owl-stage-outer {
  overflow: visible !important;
}
.thank .owl-stage {
  margin: 0 0 19px 19px;
}
.thank a {
  display: block;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #EBEBEB;
  transition: 0.2s;
  width: 353px;
  box-sizing: border-box;
}
.thank a img {
  max-width: 100%;
}
.thank a:hover {
  box-shadow: 0px 8px 19px rgba(68, 136, 174, 0.2);
}

.thank__arrows {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 101;
}
.thank__arrows .arrows__btn-container {
  width: 48px;
  height: 48px;
  cursor: pointer;
}
.thank__arrows button {
  width: 48px;
  height: 48px;
  cursor: pointer;
}
.thank__arrows .progress-ring__background, .thank__arrows .progress-ring__progress {
  r: 23;
  cx: 24;
  cy: 24;
}
.thank__arrows .progress-ring {
  width: 48px;
  height: 48px;
}
.thank__arrows .thank__arrows__num {
  font-size: 28px;
  line-height: 40px;
  display: flex;
  align-items: center;
}
.thank__arrows .thank__arrows__num .current {
  font-size: 90px;
  line-height: 90px;
  color: #4488AE;
  font-weight: 600;
}
.thank__arrows .thank__arrows__num .total {
  font-size: 28px;
  line-height: 40px;
}

@media (max-width: 1550px) {
  .wrapper_thank {
    overflow: hidden;
    width: 100%;
  }
  .thank__arrows .thank__arrows__num .current {
    font-size: 50px;
    line-height: 50px;
  }
  .thank__arrows .thank__arrows__num {
    font-size: 20px;
    line-height: 24px;
  }
  .thank__arrows {
    right: 15px;
  }
}
@media (max-width: 992px) {
  .thank {
    margin-top: 32px;
    padding-bottom: 20px;
  }
  .thank .owl-stage {
    margin: 0;
  }
  .thank a {
    width: 226px;
  }
  .thank__arrows {
    top: auto;
    bottom: -410px;
    right: auto;
    left: 50%;
    transform: translate(-50%, 0);
  }
  .thank__arrows .progress-ring {
    width: 32px;
    height: 32px;
  }
  .thank__arrows button {
    width: 32px;
    height: 32px;
  }
  .thank__arrows .progress-ring__background, .thank__arrows .progress-ring__progress {
    r: 15;
    cx: 16;
    cy: 16;
  }
  .thank__arrows .arrows__btn-container {
    width: 32px;
    height: 32px;
  }
}
.wrapper_personal {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.personal {
  margin-top: 60px;
}
.personal a {
  border-radius: 24px;
  display: block;
  font-size: 0;
  overflow: hidden;
  position: relative;
}
.personal a img {
  max-width: 100%;
}
.personal a:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 24px;
  background: linear-gradient(to bottom, rgb(3, 5, 61) 0%, rgba(3, 5, 61, 0.4) 100%);
  opacity: 0.6;
  transition: 0.2s;
}
.personal a:hover:after {
  opacity: 0;
}

.personal__arrows {
  position: static;
}
.personal__arrows .arrows__btn-container {
  width: 48px;
  height: 48px;
  cursor: pointer;
}
.personal__arrows button {
  width: 48px;
  height: 48px;
  cursor: pointer;
}
.personal__arrows .progress-ring__background, .personal__arrows .progress-ring__progress {
  r: 23;
  cx: 24;
  cy: 24;
}
.personal__arrows .progress-ring {
  width: 48px;
  height: 48px;
}
.personal__arrows .personal__arrows__num {
  font-size: 28px;
  line-height: 40px;
  display: flex;
  align-items: center;
}
.personal__arrows .personal__arrows__num .current {
  font-size: 90px;
  line-height: 90px;
  color: #4488AE;
  font-weight: 600;
}
.personal__arrows .personal__arrows__num .total {
  font-size: 28px;
  line-height: 40px;
}

@media (max-width: 992px) {
  .personal__arrows .personal__arrows__num .current {
    font-size: 50px;
    line-height: 50px;
  }
  .personal__arrows .personal__arrows__num {
    font-size: 20px;
    line-height: 24px;
  }
  .personal {
    margin-top: 32px;
  }
  .personal a {
    width: 330px;
  }
  .personal__arrows .progress-ring {
    width: 32px;
    height: 32px;
  }
  .personal__arrows button {
    width: 32px;
    height: 32px;
  }
  .personal__arrows .progress-ring__background, .personal__arrows .progress-ring__progress {
    r: 15;
    cx: 16;
    cy: 16;
  }
  .personal__arrows .arrows__btn-container {
    width: 32px;
    height: 32px;
  }
}
@media (max-width: 350px) {
  .personal a {
    width: 280px;
  }
}
.section_advantages_about {
  padding-top: 0;
}

.text-page__subtitle_about {
  border-bottom: 1px solid #EBEBEB;
  padding-bottom: 20px;
}

@media (max-width: 1500px) {
  .wrapper {
    width: 100%;
    padding: 0 15px;
  }
}
@media (max-width: 992px) {
  .wrapper_nop {
    padding: 0;
  }
  .section__title {
    font-size: 28px;
    line-height: 40px;
  }
  .section {
    padding-top: 70px;
  }
  .section_pb140 {
    margin-bottom: 70px;
  }
  .section__morelink {
    display: none;
  }
}