@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@200;300;400;500;600;700;800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Exo+2:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
:root {
  --Primary_White: $Primary_White;
  --Primary_Black: #313131;
  --Second_Black: #888;
  --Accent_Blue: #0880f7;
  --Accent_Light_Blue: #eef5fd;
  --Second_Accent: #f5f5f6;
  --Accent_Orange: #de7021;
  --Accent_Green: #29a33d;
  --Accent_Green_Second: #97E49A;
  --Special_Red: #ff0000;
  --Special_Contrast: #4a50e1;
  --Dark_Blue: #0a223d;
  --Second_Blue: #92c6fb;
  --Light_Dark_Blue: #b4c0cd;
  --Primary_Stroke_Black: #e7e6e6;
  --GRAY: #F3F3F3;
}

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

html {
  font-size: 10px;
}

* {
  scrollbar-width: thin;
  scrollbar-color: #b4c0cd #e7e6e6;
}
*::-webkit-scrollbar {
  width: 5px;
}
*::-webkit-scrollbar-track {
  background-color: #e7e6e6;
}
*::-webkit-scrollbar-thumb {
  background-color: #b4c0cd;
}

body {
  font-size: 1.6rem;
  font-family: "Manrope", sans-serif;
  color: #313131;
  overflow-x: hidden;
  counter-reset: counting;
}

.main-page {
  min-height: calc(100vh - 376px);
}

#title {
  font-size: 4.8rem;
  font-weight: 700;
  margin-bottom: 24px;
}

h1,
.text-h1 {
  font-size: 5.2rem;
  line-height: 6.2rem;
  font-weight: 700;
}

h2,
.text-h2 {
  font-size: 4.8rem;
  font-weight: 700;
}

h3,
.text-h3 {
  font-size: 3.2rem;
  font-weight: 700;
}

h4,
.text-h4 {
  font-size: 2.2rem;
  font-weight: 600;
}

.card-price {
  font-size: 2.2rem;
  font-weight: 700;
}

.big-text {
  font-size: 1.8rem;
  font-weight: 600;
}

.body-text-semibold {
  font-size: 1.6rem;
  font-weight: 600;
}

.body-text-regular {
  font-size: 1.6rem;
  font-weight: 400;
}

.body-text-web {
  font-size: 2.2rem;
  font-weight: 700;
}

.body-text-web-reg {
  font-size: 2.2rem;
  font-weight: 400;
}

.small-text {
  font-size: 1.4rem;
  font-weight: 400;
}

.info-small {
  font-size: 1.2rem;
  font-weight: 500;
}

.wrapper {
  max-width: 1410px;
  margin: 0 auto;
  overflow-x: hidden;
}
.wrapper > h3,
.wrapper > .text-h3 {
  margin-bottom: 18px;
}

footer {
  margin-top: 100px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 42px 0 34px 0;
}
.breadcrumb > [id^=bx_incl] {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.breadcrumb > div span:last-child {
  border-bottom: none;
}
.breadcrumb span {
  border-bottom: 1px solid #313131;
}
.breadcrumb span:last-child {
  border-bottom: none;
}

label {
  color: #888;
}
label a,
label a:visited,
label a:link {
  color: #0880f7;
}

select {
  cursor: pointer;
}

input,
select,
textarea {
  background-color: #ffffff;
  border: 1px solid #e7e6e6;
  border-radius: 2px;
  min-height: 32px;
}

textarea {
  min-height: 140px;
  resize: vertical;
}

textarea:focus-visible {
  outline: 1px solid #0880f7;
}

input,
textarea {
  width: 100%;
  padding: 4px 6px;
}

input[type=checkbox] {
  width: 20px;
  height: 20px;
  min-height: inherit;
}

input[type=radio] {
  width: 24px;
  height: 24px;
  min-height: inherit;
}

select {
  padding-left: 6px;
}

input:focus,
select:focus {
  outline: 1px solid #0880f7;
}

.show-content {
  display: inherit !important;
}

.hide-content {
  display: none !important;
}

.active-point {
  font-size: 1.8rem;
  font-weight: 600;
}

.accordion__content a.active-point {
  color: #0880f7;
}

#main-overlay {
  position: fixed;
  height: 150%;
  width: 150%;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.45);
  z-index: 5;
}

.header-nav-mob {
  display: none;
}

.nav-underline {
  position: relative;
}

.nav-underline::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  left: 0;
  bottom: -6px;
  background-color: #0a223d;
}

.header .nav-underline::after {
  background-color: #0a223d;
}

.header-dark .nav-underline::after,
.header-dark-fixed .nav-underline::after {
  background-color: #ffffff;
}

.header-gray .nav-underline::after {
  background-color: #ffffff;
}

.btn {
  background-color: #0880f7;
  border-radius: 8px;
  color: #ffffff;
  padding: 8px 48.5px;
  width: -moz-fit-content;
  width: fit-content;
}

.btn-fit {
  padding: 6px 16px 8px 16px;
}

.btn-orange {
  background-color: #de7021;
}

.btn-light-blue {
  background-color: #eef5fd;
  color: #0880f7;
  border: 1px solid #b4c0cd;
}

.btn-placement {
  padding: 6px 12px 8px 12px;
  background-color: transparent;
  border: 1px solid #0a223d;
  border-radius: 8px;
  width: -moz-max-content;
  width: max-content;
}

.btn-card {
  background-color: #ffffff;
  border: 2px solid #0880f7;
  color: #0880f7;
  padding: 6px 16px 8px 16px;
}

a.btn-card {
  color: #0880f7 !important;
}

.btn-green {
  width: 360px;
  border-radius: 8px;
  font-size: 20px;
  font-weight: 500;
  padding: 14px;
  background-color: #29a33d;
  color: #ffffff;
}

a.btn {
  color: #ffffff;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  word-wrap: anywhere;
  text-align: center;
}

.user-cab {
  position: relative;
  display: flex;
  align-items: center;
  gap: 5px;
}
.user-cab .user-cab__circle {
  position: relative;
  width: 32px;
  height: 32px;
  padding: 16px;
  border-radius: 50%;
  background-color: #ffffff;
  color: #0a223d;
  display: flex;
  align-items: center;
  justify-content: center;
  outline: 1px solid #0a223d;
}
.user-cab .circle-notification {
  width: 12px;
  height: 12px;
  padding: 6px;
  border-radius: 50%;
  background-color: #de7021;
  position: absolute;
  top: 0;
  right: 0;
}
.user-cab.switch-to-white .user-cab-img {
  background-position: 0 32px !important;
}

.search {
  display: flex;
  align-items: center;
  gap: 13.5px;
}
.search.switch-to-white .search-img {
  background-position: -32px 32px !important;
}

.search-img {
  background-image: url("/images/sprite/sprite_menu.svg");
  background-position: -32px 0;
  width: 32px;
  height: 32px;
}

.search-catalog {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 8px;
  background-color: #F3F3F3;
  outline: 1px solid #92C6FB;
  border-radius: 8px;
}
.search-catalog input {
  background-color: transparent;
  border: unset;
  outline: unset;
  color: #313131;
  padding: 0;
}
.search-catalog input::-moz-placeholder {
  color: #888;
}
.search-catalog input::placeholder {
  color: #888;
}
.search-catalog img {
  width: 20px;
  height: 20px;
}

.user-cab-img {
  background-image: url("/images/sprite/sprite_menu.svg");
  background-position: 0 0;
  width: 32px;
  height: 32px;
}

.open-menu {
  top: 0 !important;
}

.open-menu_dark {
  top: 100% !important;
}

summary {
  border-bottom: 1px solid #e7e6e6;
  outline: none;
  display: block;
  color: #313131;
  position: relative;
  cursor: pointer;
}

details {
  max-width: 100%;
  box-sizing: border-box;
  margin-top: 5px;
  background: white;
}

details summary::-webkit-details-marker {
  display: none;
}

details[open] > summary:before {
  transform: rotate(0deg);
}

summary:before {
  content: "";
  background: url("/images/icons/arrow-down.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 1.5rem;
  height: 1rem;
  position: absolute;
  top: 0.5rem;
  right: 0;
  transform: rotate(180deg);
  transition: 0.25s transform ease;
}

.content {
  border-top: none;
  padding: 12px 0;
  border-top: none;
}

.profile-form-necessary {
  color: red;
}

.btn-burger-menu {
  display: none;
}
.btn-burger-menu .burger {
  display: none;
}
.btn-burger-menu .burger {
  position: relative;
  display: block;
  height: 24px;
  width: 24px;
}
.btn-burger-menu .burger span {
  position: absolute;
  width: 100%;
  height: 2px;
  top: 50%;
  margin-top: -1px;
  left: 0;
  display: block;
  background: #ffffff;
  z-index: 10;
  transition: 0.5s;
}
.btn-burger-menu .burger span:first-child {
  top: 3px;
}
.btn-burger-menu .burger span:last-child {
  top: 21px;
}
.btn-burger-menu .burger.burger-checked span {
  opacity: 0;
  top: 50%;
}
.btn-burger-menu .burger.burger-checked span:first-child {
  opacity: 1;
  transform: rotate(225deg);
}
.btn-burger-menu .burger.burger-checked span:last-child {
  opacity: 1;
  transform: rotate(-225deg);
}

.burger.switch-to-white span {
  background-color: #ffffff !important;
}
.burger.switch-to-white .search-img {
  background-position: -32px 32px !important;
}

.header {
  display: flex;
  align-items: center;
  position: relative;
  min-height: 88px;
}
.header .header-container {
  width: 100%;
  max-width: 1410px;
  margin: 0 auto;
  display: flex;
  align-items: center;
}
.header .header-left {
  position: relative;
  width: 10%;
}
.header .header-left .logo {
  position: absolute;
  top: -50%;
  left: 0;
  transform: translate(0, -50%);
  z-index: 22;
}
.header .header-left .logo img {
  max-width: 105px;
}
.header .header-right {
  display: flex;
  align-items: center;
  width: 90%;
}
.header .header-right .header-nav {
  width: 44%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
}
.header .header-right .header-nav .btn-placement {
  display: none;
}
.header .header-right .header-nav > [id^=bx_incl] {
  display: flex;
  justify-content: center;
  gap: 48px;
  width: 100%;
}
.header .header-right .header-nav .nav-elem.btn-point {
  display: none;
}
.header .header-right .header-other {
  width: 56%;
  display: flex;
  align-items: center;
}
.header .header-right .header-other .header-other__inner {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.header .header-right .header-other button:nth-child(1) {
  margin-right: 38px;
}
.header .header-right .header-other button:nth-child(2), .header .header-right .header-other button:nth-child(3) {
  margin-right: 24px;
}
.header .header-right .header-other .search {
  margin-right: 24px;
}
.header .header-right .header-other .user-cab {
  margin-right: 24px;
}
.header .header-right .header-other .btn-placement {
  background-color: #0880f7;
  border: unset;
  color: #ffffff;
  padding: 6px 12px;
}
.header .header-right .header-other .btn-placement span:first-child {
  display: inherit;
}
.header .header-right .header-other .btn-placement span:last-child {
  display: none;
  background-image: url("/images/sprite/plus.svg");
  background-position: 20px 0;
  width: 20px;
  height: 20px;
}

.header-dark,
.header-dark-fixed {
  background-color: #0a223d;
  color: #ffffff;
}
.header-dark .burger-open,
.header-dark-fixed .burger-open {
  background-position: 58px -82px;
}
.header-dark .search-img,
.header-dark-fixed .search-img {
  background-position: 32px 32px;
}
.header-dark .user-cab-img,
.header-dark-fixed .user-cab-img {
  background-position: 0 32px;
}
.header-dark .header-right .header-other .btn-placement,
.header-dark-fixed .header-right .header-other .btn-placement {
  border-color: #ffffff;
}
.header-dark .header-right .header-other .btn-placement span:last-child,
.header-dark-fixed .header-right .header-other .btn-placement span:last-child {
  background-position: 0;
}
.header-dark .btn-burger-menu .burger + label span,
.header-dark-fixed .btn-burger-menu .burger + label span {
  background: #ffffff;
}

.header {
  transition: all 0.2s linear;
}
.header .logo {
  cursor: pointer;
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
}
.header .logo img {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
}
.header .logo img:first-child {
  visibility: hidden;
  opacity: 0;
  transition: all 0.2s linear;
}
.header .logo img:last-child {
  visibility: visible;
  opacity: 1;
  transition: all 0.2s linear;
}
.header.header-fixed-appear {
  background-color: #0a223d;
}
.header.header-fixed-appear * {
  color: #ffffff;
  border-color: #ffffff;
}
.header.header-fixed-appear .user-cab .user-cab__circle {
  color: #0a223d;
}
.header.header-fixed-appear .header-right .header-other .btn-placement {
  border-color: #ffffff;
}
.header.header-fixed-appear .header-right .header-other .btn-placement span:last-child {
  background-position: 0 0;
}
.header.header-fixed-appear .nav-underline::after {
  background-color: #ffffff;
}
.header.header-fixed-appear .btn-point::before {
  background-position: -38px 0;
}
.header.header-fixed-appear .user-cab-img {
  background-position: 0 32px !important;
}
.header.header-fixed-appear .burger span {
  background-color: #ffffff !important;
}
.header.header-fixed-appear .search-img {
  background-position: -32px 32px !important;
}
.header.header-fixed-appear .logo {
  position: relative;
}
.header.header-fixed-appear .logo img:first-child {
  visibility: visible;
  opacity: 1;
}
.header.header-fixed-appear .logo img:last-child {
  visibility: hidden;
  opacity: 0;
  transition: all 0.2s linear;
}

.burger-white .search-img {
  background-position: -32px 32px;
}
.burger-white .user-cab-img {
  background-position: 0 32px;
}
.burger-white .btn-burger-menu .burger span {
  background-color: #ffffff;
}

.header-dark .logo img:first-child {
  visibility: visible;
  opacity: 1;
}
.header-dark .logo img:last-child {
  visibility: hidden;
  opacity: 0;
}

.header-dark {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 21;
}
.header-dark .btn-point::before {
  background-position: -38px 0;
}

.header-new {
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 30;
}
.header-new .header-container-mob {
  display: none;
}
.header-new .top {
  background-color: #0a223d;
  padding: 11px 0 10px 0;
}
.header-new .top .top-container {
  max-width: 1410px;
  margin: 0 auto;
  display: flex;
  gap: 12px;
  justify-content: space-between;
  color: #ffffff;
}
.header-new .top .top-container .btn-container {
  display: flex;
  align-items: center;
  gap: 26px;
}
.header-new .top .top-container .header-menu {
  color: #ffffff;
}

.header-menu li {
  list-style: none;
  margin: 0;
}

.header-new .bottom {
  background-color: #ffffff;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  padding: 14px 0;
}
.header-new .bottom .bottom-container {
  display: flex;
  max-width: 1410px;
  width: 100%;
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
}
.header-new .bottom .bottom-container .logo {
  min-width: -moz-fit-content;
  min-width: fit-content;
  margin-right: 5.35%;
}
.header-new .bottom .bottom-container .form-search {
  width: 62%;
  margin-right: 7.65%;
}
.header-new .bottom .bottom-container > button {
  padding: 10px 32px;
  min-width: -moz-fit-content;
  min-width: fit-content;
}
.header-new .logo {
  display: flex;
  flex-direction: column;
}
.header-new .logo img {
  max-width: 126px;
}
.header-new .logo div {
  color: #1450C8;
  font-size: 14px;
  line-height: 19px;
  font-weight: 400;
}
.header-new .btn-point::before {
  background-position: -18px 0;
}
.header-new .user-cab-img {
  background-position: 0 -32px;
}

.header-menu {
  display: flex;
  align-items: center;
  gap: 100px;
  padding: 4px 0;
}

.empty-block {
  min-height: 136px;
}

.header-gray .user-cab-text {
  color: #ffffff;
}
.header-gray .nav-elem {
  color: #ffffff;
}
.header-gray .nav-underline::after {
  background-color: #ffffff;
}
.header-gray button span {
  color: #ffffff;
}
.header-gray .search .search-img {
  background-image: url("/images/sprite/sprite_menu.svg");
  background-position: -32px -32px;
}
.header-gray .user-cab-img {
  background-position: 0 -32px;
}
.header-gray .header-right .header-other .btn-placement span:last-child {
  background-position: 0 20px;
}
.header-gray .btn-point::before {
  background-position: -38px 0;
}
.header-gray .logo img:first-child {
  visibility: visible;
  opacity: 1;
}
.header-gray .logo img:last-child {
  display: none;
  visibility: hidde;
  opacity: 0;
}

.header-green {
  color: #ffffff;
}
.header-green .header-right .header-other .btn-placement {
  background-color: #29a33d;
}
.header-green .nav-underline::after {
  background-color: #ffffff;
}
.header-green button span {
  color: #ffffff;
}
.header-green .search .search-img {
  background-image: url("/images/sprite/sprite_menu.svg");
  background-position: -32px -32px;
}
.header-green .user-cab-img {
  background-position: 0 -32px;
}
.header-green .header-right .header-other .btn-placement span:last-child {
  background-position: 0 20px;
}
.header-green .btn-point::before {
  background-position: -38px 0;
}
.header-green .logo img:first-child {
  visibility: visible;
  opacity: 1;
}
.header-green .logo img:last-child {
  visibility: hidden;
  opacity: 0;
}

.header-white * {
  color: #ffffff;
}
.header-white .nav-underline::after {
  background-color: #ffffff;
}
.header-white .search-img {
  background-position: -32px -32px;
}
.header-white .btn-point::before {
  background-position: -18.5px 0;
}
.header-white .btn-burger-menu .burger span {
  background-color: #ffffff;
}
.header-white .header-right .header-other .btn-placement {
  background-color: transparent;
  border: 1px solid #ffffff;
}
.header-white .header-right .header-other .btn-placement span:last-child {
  background-position: 0;
}
.header-white .logo img:first-child {
  visibility: visible;
  opacity: 1;
}
.header-white .logo img:last-child {
  visibility: hidden;
  opacity: 0;
}
.header-white .user-cab-img {
  background-position: 0 32px;
}
.header-white.header-fixed-appear .header-container {
  border-bottom: unset;
  padding-bottom: 0;
}

.btn-point {
  display: flex;
  align-items: center;
  gap: 11px;
}
.btn-point::before {
  content: "";
  background-image: url("/images/sprite/map-pin-sprite.svg");
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: cover;
  width: 21px;
  height: 23px;
}

#ad-title::-moz-placeholder {
  font-size: 1.4rem;
  font-style: italic;
  color: #b4c0cd;
}

#ad-title::placeholder {
  font-size: 1.4rem;
  font-style: italic;
  color: #b4c0cd;
}

.ad-form {
  max-width: 688px;
}
.ad-form input,
.ad-form select,
.ad-form textarea {
  background-color: #ffffff;
  border: unset;
}
.ad-form h2,
.ad-form .text-h2 {
  text-align: center;
}
.ad-form .ad-form__container {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 24px 120px;
  background-color: #f5f5f6;
}
.ad-form .ad-form__container .form-title {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 18px;
}
.ad-form .ad-form__container .form-title .ad-title {
  padding: 12px 8px 8px 6px;
}
.ad-form .ad-form__container .form-group__container {
  display: flex;
  flex-direction: column;
  margin-bottom: 44px;
}
.ad-form .ad-form__container .form-group__container .form-group {
  display: flex;
  width: 100%;
  gap: 32px;
}
.ad-form .ad-form__container .form-group__container .form-group .group-search {
  max-width: 92%;
}
.ad-form .ad-form__container .form-group__container .form-group .form-group__input {
  width: 0;
  display: flex;
  flex-direction: column;
  flex-basis: 0;
  flex-grow: 1;
  gap: 4px;
}
.ad-form .ad-form__container .form-group__container .form-group .form-group__input .group__input-radio {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: flex-end;
}
.ad-form .ad-form__container .form-group__container .form-group .form-group__input .group__input-radio .input-radio__container {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 8px;
}
.ad-form .ad-form__container .form-group__container .form-group .form-group__input .input-search__container {
  display: flex;
  gap: 18px;
}
.ad-form .ad-form__container .form-group__container .form-group .form-group__input .input-search__container .search-input {
  flex-grow: 1;
}
.ad-form .ad-form__container .form-group__container .form-group .form-group__checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
}
.ad-form .ad-form__container .form-group:nth-child(1) {
  margin-bottom: 28px;
}
.ad-form .ad-form__container .form-group:nth-child(2) {
  margin-bottom: 28px;
}
.ad-form .ad-form__container .form-group:nth-child(3) {
  margin-bottom: 18px;
}
.ad-form .ad-form__container .form-group:nth-child(4) {
  margin-bottom: 32px;
}
.ad-form .ad-form__container .form-group:nth-child(5) {
  margin-bottom: 14px;
}
.ad-form .ad-form__container .form-group:nth-child(6) {
  margin-bottom: 34px;
}
.ad-form .ad-form__container .form-group:nth-child(7) {
  margin-bottom: 24px;
}
.ad-form .ad-send {
  max-width: 208px;
  font-size: 1.6rem;
  margin: 0 auto;
}

.modal-overlay .ad-status-modal,
.modal-overlay .ad-delete-modal {
  width: 25%;
  height: auto;
  padding: 25px 20px;
}

.ps__success-form-send {
  display: flex;
  gap: 12px;
}
.ps__success-form-send .left {
  display: none;
}
.ps__success-form-send .left img {
  min-width: 42px;
  height: auto;
}
.ps__success-form-send .right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 8px;
}
.ps__success-form-send .right .big-text {
  font-size: 20px;
  text-align: start;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.ps__success-form-send .right .big-text::before {
  content: "";
  display: block;
  background-image: url("/images/icons/form-check-success.svg");
  min-width: 42px;
  height: 42px;
}
.ps__success-form-send .right p {
  display: block;
  margin-bottom: 15px;
  margin-top: 10px;
  text-align: start;
}
.ps__success-form-send .right p a {
  color: #0880f7;
}
.ps__success-form-send .right .btn {
  align-self: center;
}

.input-search__container {
  display: flex;
  gap: 18px;
}
.input-search__container .search-input {
  flex-grow: 1;
}

.front-wrapper {
  max-width: 1410px;
  margin: 0 auto;
}

.footer {
  background-color: #f5f5f6;
}
.footer .footer-container {
  display: flex;
  flex-direction: column;
  padding: 25px 0 19px 0;
  gap: 17px;
}
.footer .footer-container .footer-top {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px 37px;
}
.footer .footer-container .footer-top .footer-top__wrapper {
  display: flex;
  align-items: center;
}
.footer .footer-container .footer-top .footer-top__wrapper .footer-top__items {
  display: flex;
  align-items: center;
  gap: 18px;
}
.footer .footer-container .footer-top .footer-top__wrapper .logo-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.footer .footer-container .footer-top .footer-top__wrapper .logo-container img {
  width: 95px;
}
.footer .footer-container .footer-top .footer-top__wrapper:first-child {
  gap: 16px;
}
.footer .footer-container .footer-top .footer-top__wrapper:last-child {
  gap: 42px;
}
.footer .footer-container .footer-bottom {
  width: 100%;
  border-top: 1px solid #E7E6E6;
  justify-content: flex-end;
  padding-top: 15px;
}
.footer .footer-container .footer-bottom .profi-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: flex-end;
}
.footer .footer-container .footer-bottom .profi-logo img {
  max-width: 70px;
  vertical-align: middle;
}

.footer .footer-container .footer-bottom .profi-logo a:hover{
  color: #0880f7;
}

.footer a.big-text {
  color: #0880f7;
  font-size: 14px;
  font-weight: 400;
}

.mail-l {
  display: flex;
  align-items: center;
  gap: 5px;
}
.mail-l::before {
  content: "";
  height: 14px;
  width: 17px;
  background-image: url("/images/icons/mail.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.phone-l {
  display: flex;
  align-items: center;
  gap: 5px;
}
.phone-l::before {
  content: "";
  height: 17px;
  width: 17px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url("/images/icons/phone.svg");
}

.search-input {
  position: relative;
  height: 100%;
}
.search-input input {
  height: 100%;
}
.search-input button {
  height: 26px;
  width: 26px;
  position: absolute;
  top: 50%;
  right: 5px;
  transform: translate(0, -50%);
  background: transparent;
  cursor: pointer;
}
.search-input button:before {
  content: url("/images/icons/search.svg");
  color: #F9F0DA;
  font-size: 2rem;
  font-weight: bold;
}

#call-map {
  height: 100%;
  display: flex;
  align-items: center;
  background-color: #0880f7;
  border-radius: 2px;
  padding: 5px 7px;
}

.group__ad-photo {
  min-height: 140px;
  border: 1px solid #0880f7;
  border-radius: 2px;
  padding: 8px 8px 14px 8px;
}
.group__ad-photo .group__ad-notice {
  display: flex;
  flex-direction: column;
  margin-bottom: -16px;
}
.group__ad-photo .group__ad-notice span:last-child {
  color: #0880f7;
}
.group__ad-photo label > div {
  flex-basis: 0;
  flex-grow: 1;
}

#drop-area {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid #0880f7;
  border-radius: 2px;
}
#drop-area label {
  height: 100%;
  width: 100%;
  display: flex;
  gap: 10px;
  max-width: -moz-fit-content;
  max-width: fit-content;
  margin: 0 auto;
  padding: 8px 16px;
  border: 1px solid #0880f7;
  border-radius: 8px;
  color: #0880f7;
}

#fileElem {
  display: none;
}

.img-from {
  padding: 50px;
  background-size: cover;
  background-repeat: no-repeat;
}

.drop-area__images {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.drop-area__images .ad-container-img {
  position: relative;
}

.remove-filter {
  background-image: url("/images/icons/close.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  visibility: hidden;
  opacity: 0;
  width: 0;
  height: 0;
  transition: all 0.2s linear;
}

.filter-available-action:active .remove-filter,
.filter-available-action:hover .remove-filter {
  visibility: visible;
  opacity: 1;
  width: 22px;
  height: 15px;
  z-index: 2;
  margin-left: -6px;
  margin-right: 6px;
}

.sort-filter {
  display: flex;
  gap: 24px;
}
.sort-filter select {
  border: unset;
  border-bottom: 1px solid #0880f7;
  padding-left: 0;
  padding-right: 24px;
}
.sort-filter select:focus {
  outline: none;
}

.view-in-map,
a.link-to-adv {
  display: flex;
  align-items: center;
  color: #0880f7;
  gap: 7px;
}
.view-in-map > span,
a.link-to-adv > span {
  display: flex;
  align-items: center;
  gap: 8px;
}
.view-in-map > span::after,
a.link-to-adv > span::after {
  content: "";
  display: inline-block;
  background-image: url("/images/icons/arrow-right.svg");
  background-position: center;
  background-size: contain;
  width: 20px;
  height: 20px;
}

.remove-elem {
  background-image: url("/images/icons/close.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
  top: 0;
  right: 0;
  font-size: 1.6rem;
  width: 22px;
  height: 22px;
  border-radius: 2px;
  background-color: #0880f7;
  color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  text-align: center;
  cursor: pointer;
}

.close-form {
  background-image: url("/images/icons/close-form.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
  top: 24px;
  right: 24px;
  width: 32px;
  height: 32px;
  cursor: pointer;
}

.add-outline {
  outline: 1px solid #0880f7;
}

.catalog .catalog-wrapper {
  display: flex;
  gap: 32px;
  margin-top: 18px;
  margin-bottom: 117px;
}
.catalog .catalog-wrapper .left-block {
  width: 15%;
}
.catalog .catalog-wrapper > [id^=bx_incl] {
  width: 85%;
  display: flex;
  flex-wrap: wrap;
  gap: 38px 32px;
}
.catalog .catalog-wrapper > [id^=bx_incl] .right-block {
  width: 100%;
}
.catalog .catalog-wrapper .right-block {
  width: 85%;
  display: flex;
  flex-wrap: wrap;
  gap: 38px 32px;
}
.catalog.catalog-empty-init .catalog-wrapper .left-block {
  width: 23.5%;
}
.catalog.catalog-empty-init .catalog-wrapper > [id^=bx_incl] {
  width: 76.5%;
}
.catalog.catalog-empty-init .catalog-wrapper .right-block {
  width: 76.5%;
}

.catalog-wrapper-mob {
  display: none;
}

.active-category {
  color: #313131;
}

.category-menu {
  width: 100%;
  height: -moz-max-content;
  height: max-content;
  padding: 16px;
  background-color: #f5f5f6;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: sticky;
  z-index: 20;
  top: 165px;
}
.category-menu li {
  transition: all 0.2s linear;
}
.category-menu li:hover {
  color: #0880f7;
}

.category-card {
  width: 568px;
  display: flex;
  gap: 16px;
}
.category-card .category-card__left {
  width: 250px;
  height: 150px;
  overflow: hidden;
}
.category-card .category-card__left a {
  display: block;
  overflow: hidden;
  border-radius: 8px;
}
.category-card .category-card__left img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  max-height: 150px;
  max-width: inherit;
  width: 100%;
}
.category-card .category-card__right {
  position: relative;
  height: -moz-fit-content;
  height: fit-content;
  width: 60%;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.category-card .category-card__right .filters__container {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.category-card .category-card__right .filters__container .filter-available {
  padding: 2px 12px;
}
.category-card .category-card__right .filter-more {
  background-color: #eef5fd;
  color: #0880f7;
  border-radius: 12px;
  padding: 2px 12px;
  font-size: 1.6rem;
  line-height: 2.2rem;
  font-weight: 400;
  text-align: center;
  max-width: -moz-max-content;
  max-width: max-content;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  transition: all 0.2s linear;
  border: 1px solid #e7e6e6;
}

aside.left-block {
  position: sticky;
  top: 20px;
  z-index: 5;
}

.sticky-block {
  position: sticky;
  top: 20px;
  z-index: 5;
}

.slider-area {
  display: flex;
  align-items: center;
  align-self: center;
  width: 95%;
}
.slider-area .slider {
  width: 100%;
  height: 100%;
  border: none;
}
.slider-area .noUi-handle {
  cursor: pointer;
}
.slider-area .noUi-connects {
  background-color: #e7e6e6;
  height: 5px;
}
.slider-area .noUi-connect {
  background-color: #0880f7;
}
.slider-area .noUi-origin .noUi-handle::before, .slider-area .noUi-origin .noUi-handle::after {
  content: unset;
}
.slider-area .slider-title {
  font-size: 16px;
  font-weight: bold;
}
.slider-area-wrapper {
  display: flex;
  align-items: center;
  width: 100%;
}
.slider-area #skip-value-lower,
.slider-area #skip-value-upper {
  font-size: 16px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
}
.slider-area .noUi-target {
  flex: 1;
  position: relative;
}
.slider-area .noUi-target.noUi-horizontal {
  height: 5px;
}
.slider-area .noUi-target .noUi-base,
.slider-area .noUi-target .noUi-connects {
  top: 3px;
  position: relative;
  z-index: 1;
}
.slider-area .noUi-target .noUi-connects {
  border-radius: 3px;
  overflow: hidden;
  z-index: 0;
}
.slider-area .noUi-target .noUi-connects .noUi-connect {
  height: 100%;
  width: 100%;
  transform-style: preserve-3d;
  transform-origin: 0 0;
  transform-style: flat;
  background-color: #3ea8ff;
}
.slider-area .noUi-target .noUi-origin {
  will-change: transform;
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  height: 0;
  width: 100%;
}
.slider-area .noUi-target .noUi-origin .noUi-handle {
  border-radius: 50px;
  position: absolute;
  width: 18px;
  height: 18px;
  right: -8px;
  top: -4px;
}
.slider-area .noUi-target .noUi-origin .noUi-handle .noUi-touch-area {
  height: 100%;
  width: 100%;
}
.slider-area .noUi-draggable {
  cursor: ew-resize;
}

/*-------------------------------------------*/
.popular-compilation {
  display: flex;
  flex-direction: column;
  max-width: 100%;
  gap: 12px;
}
.popular-compilation .popular-compilation__items {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}
.popular-compilation .popular-compilation__items .popular-compilation__items-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.popular-compilation .popular-compilation__items .btn-compilation {
  display: none;
  color: #0880f7;
}
.popular-compilation .popular-compilation__items .btn-compilation img {
  width: 20px;
  height: 20px;
  transform: rotate(90deg);
}
.popular-compilation .popular-compilation__inner-title {
  color: #888;
}

.card-elem {
  flex-direction: column;
  display: flex;
  justify-content: space-between;
  height: 100%;
  max-width: 360px;
  padding: 16px 0 24px 16px;
  transition: all 0.2s linear;
}
.card-elem:hover {
  box-shadow: -6px -6px 20px rgba(0, 0, 0, 0.08), 6px 6px 20px rgba(0, 0, 0, 0.08);
  border-radius: 8px;
}
.card-elem .card-elem__inner {
  padding-right: 16px;
  display: flex;
  flex-direction: column;
}
.card-elem .card-elem__inner .card-elem__image {
  height: 250px;
  width: 100%;
  overflow: hidden;
  border-radius: 4px;
  margin-bottom: 8px;
}
.card-elem .card-elem__inner .card-elem__image img {
  width: inherit;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.card-elem .card-elem__inner .card-elem__filters {
  margin-bottom: 6px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.card-elem .card-elem__inner .card-elem__title {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 8px;
}
.card-elem .card-elem__inner .card-elem__title .small-text {
  color: #0880f7;
}
.card-elem .card-elem__inner .card-elem__city {
  margin-bottom: 12px;
}
.card-elem .card-elem__inner .card-elem__measure {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.card-elem .card-elem__inner .card-elem__measure .card-elem__measure-value {
  flex-grow: 1;
  flex-basis: 0;
  display: block;
}
.card-elem .btn-card {
  margin-top: 18px;
  transition: all 0.2s linear;
  opacity: 0;
  visibility: hidden;
}
.card-elem:hover .btn-card {
  opacity: 1;
  visibility: visible;
}

.filter-catalog-button .ad-search {
  position: absolute;
  width: 300px;
  right: 0;
  top: 100%;
}

.catalog-section {
  width: 100%;
}
.catalog-section .catalog-wrapper {
  display: flex;
  gap: 32px;
}
.catalog-section .catalog-wrapper .left-block {
  width: 23%;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.catalog-section .catalog-wrapper > [id^=bx_incl] {
  width: 77%;
}
.catalog-section .catalog-wrapper > [id^=bx_incl] .right-block {
  width: 100%;
}
.catalog-section .catalog-wrapper .right-block {
  width: 77%;
}
.catalog-section .catalog-wrapper .right-block .catalog-section__popular-compilation {
  margin-bottom: 24px;
}
.catalog-section .catalog-wrapper .right-block .catalog-section__popular-compilation .popular-compilation__inner {
  display: flex;
  justify-content: space-between;
  width: 100%;
  position: relative;
}
.catalog-section .catalog-wrapper .right-block .catalog-section__popular-compilation .popular-compilation__inner .filter-catalog-button {
  display: none;
}
.catalog-section .catalog-wrapper .right-block .catalog-section__popular-compilation .popular-compilation__inner .filter-catalog-mobile .ad-search {
  position: absolute;
  left: 0;
  width: 100%;
  top: 25px;
  z-index: 9;
}
.catalog-section .catalog-wrapper .right-block .catalog-section__container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  margin-right: -16px;
  margin-left: -16px;
}
.catalog-section .catalog-wrapper .right-block .catalog-section__container .card-elem {
  max-width: 100%;
}
.catalog-section .catalog-wrapper .right-block .catalog-section__container .catalog-section__card:nth-child(3n) .card-elem__inner {
  border-right: unset;
}
.catalog-section .catalog-wrapper .right-block .catalog-section__container .catalog-section__card:last-child .card-elem__inner {
  border-right: unset;
}
.catalog-section .catalog-wrapper .right-block .catalog-section__view {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
  margin-bottom: 12px;
}
.catalog-section .catalog-wrapper .right-block .catalog-section__banner-form {
  margin-top: 62px;
}
.catalog-section .catalog-wrapper .right-block .catalog-section__pagination {
  margin-top: 18px;
}

.pagination {
  display: flex;
  gap: 20px;
}
.pagination .pages {
  display: flex;
}
.pagination .pages li {
  color: #888;
}
.pagination .pages li a {
  padding: 8px;
}
.pagination .pages .active-page {
  color: #313131;
  border-bottom: 2px solid #0880f7;
}
.pagination .pagination-left,
.pagination .pagination-right {
  display: flex;
  align-items: center;
  gap: 12px;
}
.pagination .pagination-left button,
.pagination .pagination-right button {
  display: flex;
  align-items: center;
}
.pagination .pagination-left .pagination__one-arrow img,
.pagination .pagination-right .pagination__one-arrow img {
  width: 8px;
}
.pagination .pagination-left .pagination__two-arrow img,
.pagination .pagination-right .pagination__two-arrow img {
  width: 13px;
}

.banner-form {
  padding: 24px;
  border-radius: 12px;
  background-color: #f5f5f6;
  display: flex;
  flex-direction: column;
}
.banner-form button {
  width: -moz-max-content;
  width: max-content;
}
.banner-form h4,
.banner-form .text-h4 {
  margin-bottom: 8px;
}
.banner-form p {
  margin-bottom: 24px;
}

.section-empty__block-items .banner-form {
  background-color: transparent;
  padding: 0;
  border-radius: 0;
}
.section-empty__block-items .catalog-section__banner-form {
  margin-top: 0 !important;
}

.arrow-top {
  transform: rotate(-90deg) !important;
}

.ad-search {
  width: 100%;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  text-align: start;
  background-color: #f5f5f6;
  color: #313131;
  border-radius: 12px;
}
.ad-search__filter-title {
  padding-bottom: 5px;
  border-bottom: 1px solid #e7e6e6;
  margin-bottom: -12px;
}
.ad-search__placement {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.ad-search__placement:first-child {
  margin-top: -6px;
}
.ad-search__placement .search-input input {
  border: 1px solid #0880f7;
}
.ad-search__choose {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.ad-search__choose-checkbox {
  width: 100%;
  display: flex;
  gap: 24px;
}
.ad-search__choose-checkbox .checkbox-container {
  display: flex;
  align-items: center;
  gap: 8px;
}
.ad-search__range {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.ad-search__range .range-container__inputs {
  display: flex;
  align-items: center;
  gap: 14px;
}
.ad-search__delivery {
  display: flex;
  gap: 8px;
}
.ad-search__buttons {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.ad-search__buttons .btn {
  width: 100%;
}

.necessary-notice {
  display: flex;
  align-items: center;
  gap: 5px;
}

.form-group__input {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 100%;
}
.form-group__input .form-group__input-inner {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 5px;
  align-items: center;
}
.form-group__input .form-group__input-inner input {
  max-width: 95%;
}
.form-group__input .form-group__input-inner > span {
  max-width: 5%;
}
.form-group__input .form-group__input-inner .view-in-map {
  position: absolute;
  width: 100%;
  left: 100%;
}

.form-group {
  display: flex;
  width: 100%;
  gap: 24px;
}

.modal-what-you-search {
  display: flex;
  flex-direction: column;
  box-shadow: -6px -6px 20px rgba(0, 0, 0, 0.08), 6px 6px 20px rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  max-width: 568px;
  padding: 32px 44px;
}
.modal-what-you-search .modal-what-you-search__inner {
  display: flex;
  flex-direction: column;
}
.modal-what-you-search .modal-what-you-search__inner .form-group {
  display: flex;
  width: 100%;
  gap: 24px;
}
.modal-what-you-search .modal-what-you-search__inner .form-group:first-child {
  margin-bottom: 16px;
}
.modal-what-you-search .modal-what-you-search__inner .form-group:nth-child(2) {
  margin-bottom: 16px;
}
.modal-what-you-search .modal-what-you-search__inner .form-group:nth-child(3) {
  margin-bottom: 24px;
}
.modal-what-you-search .modal-what-you-search__inner .form-group:nth-child(4) {
  margin-bottom: 32px;
}
.modal-what-you-search .modal-what-you-search__inner .form-group:last-child {
  margin-bottom: 28px;
}
.modal-what-you-search .modal-what-you-search__inner textarea {
  max-height: 145px;
  min-height: inherit;
}
.modal-what-you-search button {
  align-self: center;
}

.catalog-detail {
  display: flex;
  gap: 32px;
}
.catalog-detail .gallery {
  max-width: 48%;
}
.catalog-detail .right-block {
  width: 100%;
  max-width: 448px;
  margin-top: 27px;
}
.catalog-detail .right-block .catalog-detail__title {
  margin-bottom: 18px;
}
.catalog-detail .right-block .catalog-detail__info {
  display: flex;
  flex-direction: column;
  margin-bottom: 28px;
}
.catalog-detail .right-block .catalog-detail__info > button {
  align-self: baseline;
  color: #0880f7;
}
.catalog-detail .right-block .catalog-detail__info .catalog-detail__info-section {
  display: flex;
}
.catalog-detail .right-block .catalog-detail__info .catalog-detail__info-section > * {
  flex-basis: 0;
  flex-grow: 1;
}
.catalog-detail .right-block .catalog-detail__info .catalog-detail__place {
  flex-direction: column;
}
.catalog-detail .right-block .catalog-detail__info .catalog-detail__place > * {
  flex-basis: unset;
  flex-grow: unset;
}
.catalog-detail .right-block .catalog-detail__info .catalog-detail__price {
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.catalog-detail .right-block .catalog-detail__info .catalog-detail__price > * {
  flex-basis: unset;
  flex-grow: unset;
}
.catalog-detail .right-block .catalog-detail__info .catalog-detail__price button {
  height: -moz-fit-content;
  height: fit-content;
  padding: 8px 16px;
}
.catalog-detail .right-block .catalog-detail__info .catalog-detail__info-section:nth-child(1) {
  margin-bottom: 12px;
}
.catalog-detail .right-block .catalog-detail__info .catalog-detail__info-section:nth-child(2) {
  margin-bottom: 12px;
}
.catalog-detail .right-block .catalog-detail__info .catalog-detail__info-section:nth-child(3) {
  margin-bottom: 6px;
}
.catalog-detail .right-block .catalog-detail__info > button {
  margin-bottom: 7px;
}

.card-company {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 18px;
  background-color: #f5f5f6;
  border-radius: 8px;
}
.card-company .card-company__left {
  max-width: 86px;
  max-height: 86px;
  min-width: 86px;
  border-radius: 50%;
  overflow: hidden;
}
.card-company .card-company__left img {
  max-width: inherit;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.card-company .card-company__right {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.card-company .card-company__right .card-company__name {
  color: #0880f7;
}

.card-company-rating {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.card-company-rating .card-company__name {
  color: #0880f7;
}

.card-rating {
  display: flex;
  gap: 10px;
}

.card-rating-stars {
  position: relative;
  height: -moz-fit-content;
  height: fit-content;
}
.card-rating-stars .rating-container {
  position: relative;
  width: 91px;
  height: 13px;
  font-size: 48px;
  color: orange;
  display: inline-block;
  overflow: hidden;
}
.card-rating-stars .rating-container .rating {
  position: absolute;
  z-index: 2;
  width: 91px;
  height: 100%;
  gap: 6.5px;
  display: flex;
}
.card-rating-stars .rating-container .rating .star-container {
  width: 13px;
}
.card-rating-stars .rating-container .rating .star-container .star-container__inner {
  width: 13px;
  height: 100%;
  overflow: hidden;
}
.card-rating-stars .rating-container .rating .star-container .star-container__inner .star {
  width: 13px;
  height: 100%;
  display: block;
  content: "";
  background-image: url("/images/icons/star.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.card-rating-stars .rating-empty {
  display: flex;
  gap: 6.5px;
  position: absolute;
  top: 0;
  width: 91px;
  height: 100%;
  z-index: 1;
}
.card-rating-stars .rating-empty .star {
  width: 13px;
  height: 100%;
  display: block;
  content: "";
  background-image: url("/images/icons/star-empty.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  z-index: 2;
}

.block-interest {
  display: flex;
  flex-direction: column;
  margin-top: 88px;
}
.block-interest .card-elem {
  max-width: 360px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.block-interest .card-elem:last-child .card-elem__inner {
  border: unset;
}
.wrapper .swiper-slide {
  height: auto;
}

.gallery,
.personal {
  width: 100%;
  max-width: 688px;
}
.gallery .swiper-container,
.personal .swiper-container {
  position: relative;
}
.gallery-info,
.personal-info {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  color: #313131;
}
.gallery-slider,
.personal-slider {
  max-height: 352px;
  overflow: hidden;
  width: 100%;
  height: auto;
  margin: 0 0 10px 0;
}
.gallery-slider .swiper-slide,
.personal-slider .swiper-slide {
  width: auto;
  max-height: 352px;
}
.gallery-slider .swiper-slide img,
.personal-slider .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.gallery-thumbs,
.personal-thumbs {
  width: 100%;
  padding: 0;
  overflow: hidden;
}
.gallery-thumbs .swiper-slide,
.personal-thumbs .swiper-slide {
  width: 100px;
  height: 100px;
  text-align: center;
  overflow: hidden;
}
.gallery-thumbs .swiper-slide-active,
.personal-thumbs .swiper-slide-active {
  opacity: 1;
}
.gallery-thumbs .swiper-slide img,
.personal-thumbs .swiper-slide img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
}

.personal-slider {
  position: relative;
}
.personal-slider .swiper-settings-block {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translate(-50%, 0);
  z-index: 20;
}

.swiper-container__wrapper {
  max-width: 88%;
  margin: 0 auto;
  position: relative;
}
.swiper-container__wrapper .swiper-button-prev {
  left: -35px;
}
.swiper-container__wrapper .swiper-button-next {
  right: -35px;
}

.swiper-container__ad-wrapper {
  max-width: 100%;
  margin: 0 auto;
  position: relative;
}

.swiper-button-prev::after,
.ps-swiper-button-prev::after,
.swiper-button-next::after,
.ps-swiper-button-next::after {
  color: #888;
  font-size: 22px;
  font-weight: bold;
}

.ps-swiper-button-prev {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%234c71ae'%2F%3E%3C%2Fsvg%3E");
  width: 13px;
  height: 20px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: absolute;
  top: 50%;
  left: -20px;
  cursor: pointer;
}

.ps-swiper-button-prev.swiper-button-disabled,
.ps-swiper-button-next.swiper-button-disabled {
  opacity: 0;
  visibility: 0;
  pointer-events: none;
}

.ps-swiper-button-next {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%234c71ae'%2F%3E%3C%2Fsvg%3E");
  width: 13px;
  height: 20px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: absolute;
  top: 50%;
  right: -20px;
  cursor: pointer;
}

.registration-open {
  color: #313131 !important;
  border-bottom: 2px solid #0880f7 !important;
}

.registration-necessary {
  color: #ff0000;
  font-size: 22px;
  font-weight: 600;
}

.registration {
  max-width: 472px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.registration .registration-titles {
  display: flex;
  gap: 32px;
}
.registration .registration-titles h4,
.registration .registration-titles .text-h4 {
  color: #888;
  padding-bottom: 4px;
  border-bottom: 1px solid #888;
  cursor: pointer;
}
.registration form.registration-form {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.registration form.registration-form .registration__form-group h4,
.registration form.registration-form .registration__form-group .text-h4 {
  margin-bottom: 18px;
}
.registration form.registration-form .registration__form-group .form-group__input {
  margin-bottom: 16px;
}
.registration form.registration-form .registration__form-group .form-group__input:last-child {
  margin-bottom: 0;
}
.registration form.registration-form .registration__checkbox {
  max-width: inherit;
  display: flex;
  gap: 8px;
  align-items: center;
}
.registration form.registration-form .registration__checkbox label {
  color: #313131;
}

.auth-modal {
  max-width: 568px;
  padding: 32px 53px 32px 44px;
  border-radius: 12px;
  background-color: #ffffff;
  box-shadow: -6px -6px 20px rgba(0, 0, 0, 0.08), 6px 6px 20px rgba(0, 0, 0, 0.08);
}
.auth-modal h3,
.auth-modal .text-h3 {
  margin-bottom: 24px;
}
.auth-modal .auth-modal__container {
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.auth-modal .auth-modal__buttons {
  max-width: 240px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  margin: 0 auto;
}
.auth-modal .auth-modal__buttons > div {
  color: #888;
}
.auth-modal .auth-modal__buttons button,
.auth-modal .auth-modal__buttons a {
  width: 100%;
  text-align: center;
}

.personal-cabinet {
  display: flex;
  gap: 32px;
}
.personal-cabinet .left-block {
  width: 22.5%;
}
.personal-cabinet .right-block {
  width: 77.5%;
}
.personal-cabinet .personal-menu {
  background-color: #f5f5f6;
  padding: 18px;
  border-radius: 8px;
}
.personal-cabinet .personal-menu .personal-navigation {
  margin-top: 24px;
}
.personal-cabinet .personal-menu .personal-navigation ul.personal-navigation__container {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.personal-cabinet .personal-menu .personal-navigation ul.personal-navigation__container li {
  list-style: none;
}
.personal-cabinet .personal-menu .personal-navigation ul.personal-navigation__container li a.personal-navigation__messages {
  display: flex;
  justify-content: space-between;
  max-width: 75%;
  align-items: center;
}
.personal-cabinet .personal-menu .personal-navigation ul.personal-navigation__container li a,
.personal-cabinet .personal-menu .personal-navigation ul.personal-navigation__container li button {
  color: #313131;
  font-weight: inherit;
}
.personal-cabinet .personal-menu .personal-menu__info {
  display: flex;
  padding-bottom: 18px;
  border-bottom: 1px solid #b4c0cd;
}
.personal-cabinet .personal-menu .personal-menu__info .personal-menu__info-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  align-self: flex-start;
}
.personal-cabinet .personal-menu .personal-menu__info .personal-menu__info-wrapper .personal-menu__info-right {
  display: flex;
  flex-direction: column;
  gap: 8px;
  word-wrap: anywhere;
}
.personal-cabinet .personal-menu .personal-menu__info .personal-menu__info-wrapper .personal-menu__info-right .card-company__name {
  color: #0880f7;
}
.personal-cabinet .personal-menu .personal-menu__info .personal-menu__info-wrapper .personal-menu__info-right .personal-menu__rating {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.personal-cabinet .personal-menu .personal-menu__info .personal-menu__info-wrapper .personal-menu__info-right .personal-menu__rating a {
  color: #0880f7;
}
.personal-cabinet .personal-containers {
  max-width: 85%;
  display: flex;
  flex-direction: column;
  gap: 64px;
}
.personal-cabinet .personal-containers .personal-container__cards {
  display: flex;
  gap: 32px;
}
.personal-cabinet .personal-containers .personal-container__cards .personal-card {
  max-width: 448px;
  width: 100%;
  background-color: transparent;
  padding: 24px 44px 36px 44px;
  outline: 1px solid #b4c0cd;
  border-radius: 8px;
  transition: all 0.2s linear;
}
.personal-cabinet .personal-containers .personal-container__cards .personal-card:hover {
  outline: unset;
  background-color: #ffffff;
  box-shadow: 0px -6px 20px rgba(5, 64, 120, 0.1), 0px 6px 20px rgba(5, 64, 120, 0.1);
}
.personal-cabinet .personal-containers .personal-container__cards .personal-card .personal-card__title {
  padding-bottom: 8px;
  border-bottom: 1px solid #b4c0cd;
}
.personal-cabinet .personal-containers .personal-container__cards .personal-card .personal-card__info {
  display: flex;
  gap: 17px;
  flex-direction: column;
  max-width: 75%;
  margin-top: 19px;
}
.personal-cabinet .personal-containers .personal-container__cards .personal-card .personal-card__info .personal-card__info-desc {
  display: flex;
  width: 100%;
  justify-content: space-between;
}
.personal-cabinet .personal-containers .personal-container__cards .personal-card .personal-card__info .personal-card__info-desc > div:first-child {
  width: 75%;
  word-wrap: anywhere;
}

.color-orange {
  color: #de7021;
}

.color-blue {
  color: #0880f7;
}

input#upload-image {
  display: none !important;
  opacity: 0;
  visibility: hidden;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.upload-image {
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  position: relative;
}
.upload-image .personal-menu__info-image {
  border-radius: 50%;
  overflow: hidden;
  width: 88px;
  height: 88px;
}
.upload-image .personal-menu__upload {
  position: absolute;
  bottom: 0;
  right: 0;
}
.upload-image .personal-menu__upload img {
  width: 24px;
  height: 24px;
}
.upload-image img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.form-support {
  display: flex;
  flex-direction: column;
}
.form-support h4,
.form-support .text-h4 {
  margin-bottom: 12px;
}
.form-support > div {
  margin-bottom: 6px;
}
.form-support textarea {
  border: 1px solid #92c6fb;
  max-height: 122px;
  margin-bottom: 12px;
}
.form-support button {
  align-self: flex-end;
  padding: 6px 40px;
}

.open-tab {
  color: #313131 !important;
  border-bottom: 2px solid #0880f7 !important;
}

.personal-adv {
  display: flex;
  flex-direction: column;
}
.personal-adv h3,
.personal-adv .text-h3 {
  margin-bottom: 24px;
}
.personal-adv .adv-tabs {
  margin-bottom: 24px;
}
.personal-adv .sort-filter {
  margin-bottom: 32px;
}
.personal-adv .pagination {
  margin-top: 37px;
}

.adv-tabs {
  display: flex;
  gap: 16px 32px;
  flex-wrap: wrap;
}
.adv-tabs button {
  color: #888;
  padding-bottom: 4px;
  border-bottom: 1px solid #888;
}

.personal-adv {
  margin-top: 88px;
}

.personal-cabinet .personal-advert__container {
  grid-template-columns: 1fr 1fr 1fr;
}
.personal-cabinet .personal-adv {
  margin-top: 0;
}

.personal-slider-adv {
  padding: 10px;
  overflow: hidden;
}

.personal-advert__container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 72px 32px;
}

.card-elem-simple {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 328px;
  transition: all 0.2s linear;
}
.card-elem-simple .card-elem__inner {
  display: flex;
  flex-direction: column;
}
.card-elem-simple .card-elem__inner .card-elem__image {
  width: 100%;
  overflow: hidden;
  border-radius: 4px;
  margin-bottom: 8px;
}
.card-elem-simple .card-elem__inner .card-elem__image img {
  width: inherit;
  height: 258px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.card-elem-simple .card-elem__inner .card-elem__filters {
  margin-bottom: 6px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.card-elem-simple .card-elem__inner .card-elem__title {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 8px;
}
.card-elem-simple .card-elem__inner .card-elem__title .small-text {
  color: #0880f7;
}
.card-elem-simple .card-elem__inner .card-elem__city {
  margin-bottom: 12px;
}
.card-elem-simple .card-elem__inner .card-elem__measure {
  display: flex;
  justify-content: space-between;
}
.card-elem-simple .card-elem__inner .card-elem__measure span {
  flex-grow: 1;
  flex-basis: 0;
  display: block;
}
.card-elem-simple .btn-card {
  margin-top: 18px;
}

.btn-not-active {
  background-color: #e7e6e6;
  color: #0a223d;
}

.personal-advert-detail {
  display: flex;
  align-items: flex-start;
  gap: 32px;
}
.personal-advert-detail .gallery {
  max-width: 568px;
}
.personal-advert-detail .personal-advert-title {
  margin-bottom: 18px;
  word-break: break-word;
}
.personal-advert-detail .advert-describe__inner {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}
.personal-advert-detail .advert-describe__inner .advert-desc {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.personal-advert-detail .personal-advert__buttons {
  max-width: 220px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.personal-advert-detail .personal-advert__buttons .btn {
  width: 100%;
}

.back-to-adv {
  display: flex;
  align-items: center;
  margin-bottom: 24px;
  gap: 32px;
}
.back-to-adv #title {
  margin-bottom: 0;
}
.back-to-adv a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #0880f7;
}
.back-to-adv a::before {
  content: "";
  display: inline-block;
  background-image: url("/images/icons/arrow-right.svg");
  background-position: center;
  background-size: contain;
  width: 20px;
  height: 20px;
  rotate: 180deg;
}

a.back-to-page {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #0880f7;
}
a.back-to-page::before {
  content: "";
  display: inline-block;
  background-image: url("/images/icons/arrow-right.svg");
  background-position: center;
  background-size: contain;
  width: 20px;
  height: 20px;
  rotate: 180deg;
}

a.link-to {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #0880f7;
}
a.link-to::after {
  content: "";
  display: inline-block;
  background-image: url("/images/icons/arrow-right.svg");
  background-position: center;
  background-size: contain;
  width: 16px;
  height: 16px;
}

button.show-more {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #0880f7;
}
button.show-more::after {
  content: "";
  display: inline-block;
  background-image: url("/images/icons/arrow-right.svg");
  background-position: center;
  background-size: contain;
  width: 16px;
  height: 16px;
  rotate: 90deg;
}

.personal-messages h3,
.personal-messages .text-h3 {
  margin-bottom: 14px;
}
.personal-messages .personal-messages__tabs-container {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}
.personal-messages .personal-messages__tabs-container .personal-messages__tabs {
  display: flex;
  align-items: center;
  gap: 28px;
}
.personal-messages .personal-messages__tabs-container input {
  width: 328px;
}
.personal-messages .sort-filter {
  margin-bottom: 24px;
}
.personal-messages .personal-messages__container {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.personal-messages .personal-messages__container .personal-messages__section {
  padding: 18px 24px 12px 24px;
  border: 1px solid #e7e6e6;
  border-radius: 12px;
}
.personal-messages .personal-messages__container .personal-messages__section .section-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}
.personal-messages .personal-messages__container .personal-messages__section .section-card .section-card__filters {
  display: flex;
  gap: 12px;
  align-items: center;
}
.personal-messages .personal-messages__container .personal-messages__section .section-title {
  margin-bottom: 12px;
}
.personal-messages .personal-messages__container .personal-messages__section .section-title h4,
.personal-messages .personal-messages__container .personal-messages__section .section-title .text-h4 {
  color: #0880f7;
}
.personal-messages .personal-messages__container .personal-messages__section .section-messages {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.personal-messages .personal-messages__container .personal-messages__section .section-messages button.show-more {
  align-self: center;
}
.personal-messages .personal-messages__container .personal-messages__section .section-messages .section-messages__wrapper {
  display: flex;
  flex-direction: column;
  gap: 26px;
}
.personal-messages .personal-messages__container .personal-messages__section .section-messages .section-messages__wrapper .section-message {
  display: flex;
  gap: 16px;
  padding: 16px;
  border-radius: 12px;
}
.personal-messages .personal-messages__container .personal-messages__section .section-messages .section-messages__wrapper .section-message .section-message__left {
  min-width: 62px;
  height: 62px;
  overflow: hidden;
  border-radius: 50%;
}
.personal-messages .personal-messages__container .personal-messages__section .section-messages .section-messages__wrapper .section-message .section-message__left img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.personal-messages .personal-messages__container .personal-messages__section .section-messages .section-messages__wrapper .section-message .section-message__right {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.personal-messages .personal-messages__container .personal-messages__section .section-messages .section-messages__wrapper .section-message .section-message__right .section-message__info {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.personal-messages .personal-messages__container .personal-messages__section .section-messages .section-messages__wrapper .section-message .section-message__right .section-message__info .section-message__info-left {
  display: flex;
  align-items: flex-end;
  gap: 18px;
}
.personal-messages .personal-messages__container .personal-messages__section .section-messages .section-messages__wrapper .section-message .section-message__right .personal-message__describe {
  display: flex;
  flex-direction: column;
}
.personal-messages .personal-messages__container .personal-messages__section .section-messages .section-messages__wrapper .section-message .section-message__right .personal-message__describe a {
  margin-top: 6px;
  align-self: flex-end;
}

.personal-messages .my-response .section-message {
  background-color: #f5f5f6 !important;
}

.personal-messages .personal-messages__section .section-message {
  background-color: #eef5fd;
}

.personal-message {
  max-width: 81%;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.personal-message .personal-message__container {
  padding: 24px;
  background-color: transparent;
  border-radius: 8px;
  border: 1px solid #b4c0cd;
}
.personal-message .personal-message__container .personal-message__tips {
  display: flex;
  gap: 12px;
  margin-bottom: 8px;
}
.personal-message .personal-message__container h4,
.personal-message .personal-message__container .text-h4 {
  margin-bottom: 16px;
  color: #0880f7;
}
.personal-message .personal-message__write {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.personal-message .personal-message__write button {
  align-self: flex-end;
  padding: 8px 40.5px;
}
.personal-message .personal-message__write textarea {
  min-height: unset;
  height: 78px;
  border-color: #92c6fb;
  resize: unset;
}
.personal-message .back-to-page {
  width: -moz-fit-content;
  width: fit-content;
  margin-top: -45px;
}

.message-area {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.message-area > div {
  display: flex;
  flex-direction: column;
  gap: 6px;
  max-width: 88.7%;
}
.message-area .message-interlocutor {
  display: flex;
  flex-direction: column;
}
.message-area .message-area__data {
  display: flex;
  align-items: center;
  gap: 12px;
}
.message-area .message-area__data a {
  color: #0880f7;
}
.message-area .message-area__data div {
  color: #888;
}
.message-area .message-area__text {
  padding: 12px;
  border-radius: 4px;
}
.message-area .message-area__text p {
  word-wrap: break-word;
}
.message-area .message-interlocutor .message-area__text {
  background-color: #eef5fd;
}
.message-area .message-mine {
  align-self: flex-end;
  width: 100%;
}
.message-area .message-mine .message-area__data {
  align-self: flex-end;
}
.message-area .message-mine .message-area__text {
  background-color: #F3F3F3;
}

.profile-form {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 472px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.profile-form .profile-form-titles {
  display: flex;
  gap: 32px;
}
.profile-form .profile-form-titles h4,
.profile-form .profile-form-titles .text-h4 {
  color: #888;
  padding-bottom: 4px;
  border-bottom: 1px solid #888;
  cursor: pointer;
}
.profile-form .profile-form__group h4,
.profile-form .profile-form__group .text-h4 {
  margin-bottom: 18px;
}
.profile-form .profile-form__group .form-group__input {
  margin-bottom: 16px;
}
.profile-form .profile-form__group .form-group__input:last-child {
  margin-bottom: 0;
}
.profile-form .profile-form__group .necessary-notice {
  margin-bottom: 16px;
}
.profile-form .profile-form__checkbox {
  max-width: inherit;
  display: flex;
  gap: 8px;
  align-items: center;
}
.profile-form .profile-form__checkbox label {
  color: #313131;
}

.about-project {
  heigth: 100%;
  display: flex;
  flex-direction: column;
  margin-top: 62px;
  gap: 62px;
}
.about-project .about-project__inner {
  position: relative;
  display: flex;
  height: 100%;
  gap: 80px;
  margin-left: 44px;
}
.about-project .line-long {
  padding: 1px;
  background-color: #e7e6e6;
}
.about-project .about-project__container {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.about-project .about-project__container .about-project__container-section {
  display: flex;
  flex-direction: column;
  gap: 70px;
}
.about-project .about-project__container .about-project__container-section img {
  border-radius: 8px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.about-project .about-project__container .about-project__container-section::before {
  position: absolute;
  content: counter(counting);
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #0880f7;
  color: #ffffff;
  border-radius: 50%;
  font-size: 48px;
  width: 88px;
  height: 86px;
  right: 100%;
  transform: translate(50%, 0);
  counter-increment: counting;
}
.about-project .about-project__container .about-project__container-section .container-inner {
  display: flex;
  gap: 32px;
}
.about-project .about-project__container .about-project__container-section .container-inner > div {
  width: 50%;
}
.about-project .about-project__container .about-project__container-section .container-inner .container-inner__shadow {
  box-shadow: -6px -6px 20px rgba(0, 0, 0, 0.08), 6px 6px 20px rgba(0, 0, 0, 0.08);
  border-radius: 8px;
}
.about-project .about-project__container .about-project__container-section .container-inner a {
  color: #0880f7;
}
.about-project .about-project__container .about-project__container-section .divider {
  position: relative;
}
.about-project .about-project__container .about-project__container-section .divider::after {
  content: "Или";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%, 0);
  width: -moz-fit-content;
  width: fit-content;
  padding: 6px 24px;
  background-color: #eef5fd;
  border: 1px solid #0880f7;
  border-radius: 8px;
  font-weight: bold;
  font-size: 18px;
  margin-top: 16px;
}

.section-empty {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 25px 40px;
  background-color: #f2f2f2;
  margin: 40px 0;
}
.section-empty .section-empty-title {
  margin-bottom: 20px;
  font-size: 22px;
  font-weight: 700;
}
.section-empty .section-empty__point {
  display: flex;
  flex-direction: column;
  margin-bottom: 35px;
}
.section-empty .section-empty__point:last-child {
  margin-bottom: 0;
}
.section-empty .section-empty__point div {
  margin-bottom: 30px;
}
.section-empty .btn {
  padding: 8px 10px;
  min-width: 220px;
}

.swiper-wrapper .swiper-slide:last-child .card-elem .card-elem__inner {
  border-right: unset;
}

.same-adv .same-adv__title {
  font-size: 22px;
}
.same-adv .personal-slider-adv {
  padding: 15px;
}

.personal-info {
  flex-direction: column;
}
.personal-info > div {
  width: 100%;
}
.personal-info .personal-menu__info .leave-review,
.personal-info .personal-menu__info .notice {
  display: none;
}

.personal-info-desc .personal-info-desc__main {
  display: flex;
  flex-direction: column;
  gap: 17px;
  margin-top: 20px;
  margin-bottom: 38px;
}
.personal-info-desc .personal-info-desc__main .personal-info-desc__item {
  display: flex;
  gap: 12px;
}
.personal-info-desc .personal-info-desc__main .personal-info-desc__item > div {
  flex-grow: 1;
  flex-basis: 0;
}
.personal-info-desc .personal-info-desc__main .personal-info-desc__item .body-text-regular {
  color: #888;
}
.personal-info-desc .personal-info-desc__main .personal-info-desc__item .big-text,
.personal-info-desc .personal-info-desc__main .personal-info-desc__item .body-text-semibold {
  color: #313131;
}
.personal-info-desc .personal-info-desc__main .personal-info-desc__item a.big-text {
  color: #0880f7;
}
.personal-info-desc .personal-info-desc__main .direction {
  flex-direction: column;
  gap: 4px;
}
.personal-info-desc .personal-info-desc__main .direction > div {
  flex-grow: unset;
  flex-basis: unset;
}

.leave-review {
  display: flex;
  margin: 0 auto;
  color: #de7021;
  border: 2px solid #de7021;
  background-color: transparent;
  padding: 6px 33px;
  margin-bottom: 12px;
}

.notice {
  display: flex;
  align-items: flex-start;
  color: #888;
}
.notice::before {
  content: "*";
  font-size: 20px;
  margin-right: 4px;
}

.form-review,
.form-subscribe {
  position: relative;
  max-width: 688px;
  padding: 44px;
  background: #ffffff;
  box-shadow: -6px -6px 20px rgba(0, 0, 0, 0.08), 6px 6px 20px rgba(0, 0, 0, 0.08);
  border-radius: 12px;
}
.form-review h3,
.form-review .text-h3,
.form-subscribe h3,
.form-subscribe .text-h3 {
  margin-bottom: 24px;
}
.form-review .form-review__wrapper,
.form-review .form-subscribe-wrapper,
.form-subscribe .form-review__wrapper,
.form-subscribe .form-subscribe-wrapper {
  display: flex;
  flex-direction: column;
}
.form-review .form-review__wrapper .body-text-regular,
.form-review .form-subscribe-wrapper .body-text-regular,
.form-subscribe .form-review__wrapper .body-text-regular,
.form-subscribe .form-subscribe-wrapper .body-text-regular {
  color: #888;
  margin-bottom: 8px;
}
.form-review .form-review__wrapper .btn,
.form-review .form-subscribe-wrapper .btn,
.form-subscribe .form-review__wrapper .btn,
.form-subscribe .form-subscribe-wrapper .btn {
  align-self: center;
  margin-top: 28px;
  padding: 8px 50.5px;
}

.form-subscribe .form-subscribe__wrapper {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.form-subscribe .form-subscribe__wrapper h3,
.form-subscribe .form-subscribe__wrapper .text-h3 {
  margin-bottom: 16px;
}
.form-subscribe .form-subscribe__wrapper .form-subscribe__item label {
  display: block;
  margin-bottom: 16px;
}

.reviews-mark__stars {
  display: flex;
}
.reviews-mark__stars span {
  display: block;
  margin-right: 10px;
}
.reviews-mark__stars span:last-child {
  margin-right: 0;
}

.ps-star {
  display: inline-block;
  width: 36px;
  height: 34px;
  background-image: url("/images/icons/star_o.svg");
  background-repeat: no-repeat;
  background-size: contain;
  cursor: pointer;
}

.ps-star-open {
  background-image: url("/images/icons/rev-star.svg");
}

.search-filter-field {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 15px;
  margin-bottom: 16px;
}
.search-filter-field input {
  max-width: 330px;
  min-width: 224px;
  border: 1px solid #0880f7;
}

.rating-stars {
  display: flex;
  gap: 10px;
  align-items: center;
}
.rating-stars .rating-stars-wrapper {
  display: flex;
  gap: 5.3px;
}
.rating-stars svg {
  width: 14px;
  height: 12px;
}

.articles-detail-page {
  display: flex;
  flex-direction: column;
}

article {
  display: flex;
  flex-direction: column;
}
article .article-date {
  margin-bottom: 2px;
}
article h3,
article .text-h3 {
  margin-bottom: 18px;
  color: #0a223d;
}
article .article-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
article .article-wrapper img {
  width: 64.5%;
  max-height: 425px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border-radius: 16px;
}
article .article-wrapper .article-description {
  display: flex;
  flex-direction: column;
  width: 100%;
}
article .article-wrapper .article-description p {
  display: block;
  margin-bottom: 12px;
  color: #0a223d;
}
article .article-wrapper .article-description div.body-text-semibold {
  color: #313131;
}

.articles-detail-page .articles-interest {
  margin-top: 120px;
}

.articles-interest {
  display: flex;
  flex-direction: column;
}
.articles-interest h2,
.articles-interest .text-h2 {
  margin-bottom: 52px;
}
.articles-interest .article-interest__container {
  gap: 32px;
}
.articles-interest .article-interest__container .article-interest__description .big-text {
  margin-bottom: 9px;
}
.articles-interest .article-interest__container .article-interest__description .body-text-regular {
  margin-bottom: 10px;
}

.article-interest {
  display: flex;
  gap: 15px;
}

.articles-main {
  display: flex;
  flex-direction: column;
}
.articles-main h2,
.articles-main .text-h2 {
  margin-bottom: 32px;
}
.articles-main .article h3,
.articles-main .article .text-h3 {
  margin-bottom: 7px;
}
.articles-main .article .article-wrapper {
  flex-direction: row;
}
.articles-main .article .article-wrapper .article-description {
  align-self: flex-start;
}
.articles-main .article .article-wrapper .article-description p {
  margin-bottom: 8px;
}
.articles-main .link-to-adv {
  margin-top: 12px;
}
.articles-container {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.margin-bottom {
  margin-bottom: 120px;
}

.background-display {
  position: fixed;
  background-color: rgba(0, 0, 0, 0.4);
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 150%;
  width: 150%;
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s linear;
  z-index: 99;
}
.background-display.fixed {
  opacity: 1;
  visibility: visible;
}

.overflow-hidden {
  overflow: hidden;
}

.search-main {
  width: 100%;
  background: #ffffff;
  position: fixed;
  padding: 44px 0;
  top: -168px;
  z-index: 100;
  transition: all 0.35s linear;
}
.search-main.fixed {
  transition: all 0.35s linear;
  top: 0;
}
.search-main .form {
  display: flex;
  align-items: center;
  gap: 36px;
}
.search-main .form input {
  padding: 20px 8px;
  font-size: 28px;
  border: unset;
  outline: unset;
}
.search-main .search-btn-wrapper {
  display: flex;
  align-items: center;
  gap: 24px;
}

.close {
  width: 25px;
  height: 25px;
  display: flex;
  position: relative;
  cursor: pointer;
}
.close span {
  position: absolute;
  pointer-events: none;
  top: 50%;
  width: 25px;
  height: 3px;
  background-color: #000;
  border-radius: 3px;
  rotate: 45deg;
}
.close span:last-child {
  rotate: -45deg;
}

.found-items {
  display: flex;
  flex-direction: column;
}
.found-items .found-items__wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.found-items .found-items__container {
  display: flex;
  flex-direction: column;
  max-height: 400px;
  overflow-y: auto;
}
.found-items .found-items__container .found-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 24px 24px;
  border: 1px solid #eef5fd;
  border-top: unset;
  transition: all 0.2s linear;
}
.found-items .found-items__container .found-item:hover {
  background-color: #eef5fd;
}
.found-items .found-items__container .found-item img {
  width: 100px;
  height: 100px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.found-items .btn-card {
  max-width: -moz-fit-content;
  max-width: fit-content;
  margin: 0 24px;
  margin-bottom: 16px;
}

.cities-form {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  overflow-y: auto;
  z-index: 200;
  padding: 32px 0 60px 0;
  background-color: #ffffff;
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s linear;
  scrollbar-width: none;
}
.cities-form::-webkit-scrollbar {
  width: 0;
}
.cities-form.fixed {
  opacity: 1;
  visibility: visible;
}
.cities-form .wrapper {
  display: flex;
  flex-direction: column;
  position: relative;
}
.cities-form .wrapper .close {
  position: absolute;
  top: 0;
  right: 0;
}
.cities-form .wrapper img {
  max-width: 135px;
  margin-bottom: 38px;
}
.cities-form .wrapper h3,
.cities-form .wrapper .text-h3 {
  margin-bottom: 16px;
}
.cities-form .wrapper input::-moz-placeholder {
  color: #313131;
}
.cities-form .wrapper .text-h3, .cities-form .wrapper h3, .cities-form .wrapper a, .cities-form .wrapper input::placeholder {
  color: #313131;
}
.cities-form .wrapper form {
  margin-bottom: 24px;
}
.cities-form .wrapper form input {
  max-width: 448px;
  border-color: #0880f7;
  border-radius: 2px;
}
.cities-form .wrapper form input::-moz-placeholder {
  color: #888;
}
.cities-form .wrapper form input::placeholder {
  color: #888;
}
.cities-form .wrapper .cities-container {
  max-height: 500px;
  overflow-y: auto;
}
.cities-form .wrapper .cities-container ul {
  display: grid;
  grid-template-rows: 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-auto-flow: column;
  max-width: 100%;
  overflow: hidden;
  gap: 16px 32px;
}
.cities-form .wrapper .cities-container ul li {
  width: 210px;
}

.header-layer {
  width: 100%;
}

.background-layer {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-top: 88px;
  padding-bottom: 100px;
  height: -moz-max-content;
  height: max-content;
  color: #ffffff;
}
.background-layer .breadcrumb {
  margin-top: 20px;
  margin-bottom: 90px;
}
.background-layer .breadcrumb span {
  border-color: #ffffff;
}
.background-layer .background-layer__title {
  max-width: 728px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 90px;
}
.background-layer .btn {
  padding: 10px 18px 12px 18px;
  font-size: 22px;
  font-weight: 600;
}
.background-layer .btn-container {
  display: flex;
  gap: 32px;
  align-items: center;
}
.background-layer .btn-container .btn {
  min-width: 208px;
}

.about-project-background {
  background-image: url("/images/about-project.png");
}

.main-background {
  color: #ffffff;
  margin-bottom: 88px;
  position: relative;
}
.main-background .background-layer__title {
  margin-top: 120px;
}
.main-background .wrapper {
  position: relative;
  z-index: 3;
}
.main-background video {
  position: absolute;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
  margin: auto;
  -o-object-fit: cover;
     object-fit: cover;
  filter: brightness(0.6);
}
.main-background video::-webkit-media-controls {
  display: none !important;
}

.services-background {
  background-image: url("/images/eco-service.jpg");
}
.services-background .btn {
  width: 328px;
  background-color: #29a33d;
}
.services-background h1,
.services-background .text-h1 {
  font-size: 88px;
  font-weight: 800;
  line-height: 88px;
  margin-bottom: 29px;
}
.services-background .about-project-background__title {
  max-width: 808px;
  margin-bottom: 74px;
}

.header-layout {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 23;
}

.header-fixed {
  position: fixed;
  width: 100%;
  top: -100px;
  z-index: 21;
  transition: all 0.4s linear;
}

.header-appear {
  top: 0;
}

.eco-service .eco-block__for-whom {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 22px;
}
.eco-service .eco-block__for-whom .left {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.eco-service .eco-block__for-whom .left img {
  display: none;
  max-width: 100%;
  border-radius: 21px;
}
.eco-service .eco-block__for-whom .right {
  width: 50%;
}
.eco-service .eco-block__for-whom .right img {
  width: 100%;
  max-width: 688px;
  border-radius: 21px;
}

.point-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.point-container h2,
.point-container .text-h2 {
  display: flex;
  align-items: center;
}
.point-container h2::before,
.point-container .text-h2::before {
  content: "";
  background-image: url("/images/icons/check.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 48px;
  height: 48px;
  margin-right: 16px;
}
.point-container ul li {
  list-style-type: none;
}
.point-container ul li::before {
  content: "-";
  margin-right: 5px;
}

.full-service {
  display: flex;
  flex-direction: column;
  padding: 42px 56px;
  background: #F5FFFA;
  border-radius: 38px;
}
.full-service h2,
.full-service .text-h2 {
  margin-bottom: 32px;
}
.full-service .full-service__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 72px;
}
.full-service ul h4,
.full-service ul .text-h4 {
  margin-bottom: 24px;
}
.full-service ul li {
  display: flex;
  align-items: center;
  list-style-type: none;
  margin-bottom: 18px;
}
.full-service ul li:last-child {
  margin-bottom: 0;
}
.full-service ul li::before {
  content: "";
  display: block;
  background-image: url("/images/icons/check.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 19px;
  height: 17px;
  padding: 8.5px 9.5px;
  margin-right: 13px;
}
.full-service button {
  align-self: center;
}
.full-service .full-service-mob {
  display: none;
}

.advantages .advantages-container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 32px;
}

.advantages-card {
  display: flex;
  flex-direction: column;
  gap: 64px;
  padding: 38px 28px;
  background: #F5FFFA;
  box-shadow: 0px 8px 30px rgba(24, 118, 39, 0.16);
  border-radius: 18px;
}
.advantages-card img {
  max-width: 80px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
.advantages-card .advantages-card__text {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.advantages-card .advantages-card__text .big-text {
  font-size: 1.4rem;
  font-weight: 400;
}

.steps {
  display: flex;
  flex-direction: column;
}
.steps .steps-container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  margin-bottom: 72px;
}
.steps .step {
  border-right: 1px solid #97E49A;
  padding-left: 36px;
}
.steps .step:first-child {
  padding-left: 16px;
}
.steps .step:last-child {
  border-right: unset;
}
.steps button {
  align-self: center;
}

.step {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 42px 16px;
}
.step .step-number {
  font-family: "Exo 2", sans-serif;
  font-size: 12rem;
  font-weight: 800;
  color: #97E49A;
}

.form-service h2,
.form-service .text-h2 {
  margin-bottom: 32px;
}
.form-service .container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 22px;
  padding: 42px 86px;
  background-color: #F5FFFA;
  border-radius: 38px;
}
.form-service .container .left {
  width: 50%;
}
.form-service .container .left h4,
.form-service .container .left .text-h4 {
  margin-bottom: 23px;
}
.form-service .container .left form {
  display: flex;
  flex-direction: column;
  gap: 21px;
}
.form-service .container .left form button {
  margin-top: 12px;
}
.form-service .container .left form input,
.form-service .container .left form textarea {
  padding: 12px;
  border-radius: 6px;
  border-color: #97E49A;
}
.form-service .container .right {
  width: 50%;
}
.form-service .container .right img {
  border-radius: 24px;
}

.section-title {
  margin-bottom: 64px;
}

.popular-category .section-title {
  margin-bottom: 28px;
  display: flex;
  justify-content: space-between;
  gap: 12px 32px;
  flex-wrap: wrap;
}
.popular-category .popular-category__slider .swiper-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 42px;
}

.popular-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 4px;
}
.popular-card .img-wrap {
  padding: 18px;
  border-radius: 50%;
  background-color: #f5f5f6;
  width: 120px;
  height: 120px;
}
.popular-card .img-wrap img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  width: 84px;
  height: 84px;
}

.new-adv .section-title {
  margin-bottom: 38px;
}

.catalog-cards__grid .swiper-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  margin-right: -16px;
  margin-left: -16px;
}
.catalog-cards__grid .swiper-wrapper .card-elem {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-width: 360px;
  max-width: 100%;
}
.catalog-cards__grid .swiper-wrapper .swiper-slide:nth-child(4n) .catalog-section__card .card-elem__inner {
  border-right: unset;
}
.catalog-cards__grid .swiper-wrapper .swiper-slide:nth-child(4n) .catalog-section__card:last-child .card-elem__inner {
  border-right: unset;
}

.consultation-form .container {
  background-color: #f5f5f6;
}
.consultation-form .container .left form input,
.consultation-form .container .left form textarea {
  border-color: #f5f5f6;
}

.grant-eco {
  display: flex;
  justify-content: flex-end;
  background-image: url("/images/grant-eco-service.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
  border-radius: 38px;
  height: -moz-max-content;
  height: max-content;
  padding: 42px 62px;
}
.grant-eco .container {
  width: 50%;
}
.grant-eco .container h2,
.grant-eco .container .text-h2 {
  margin-bottom: 16px;
}
.grant-eco .container .big-text {
  margin-bottom: 12px;
}
.grant-eco .container ul {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.grant-eco .container .btn {
  background-color: #29a33d;
  color: #ffffff;
  min-width: 328px;
  margin-top: 32px;
  padding-top: 14px;
  padding-bottom: 14px;
}

.articles-section {
  display: flex;
  flex-direction: column;
}
.articles-section .section-title {
  margin-bottom: 38px;
}
.articles-section .articles-section__wrapper {
  display: grid;
  gap: 48px 32px;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
}
.articles-section .articles-section__wrapper .article-interest img {
  -o-object-position: center;
     object-position: center;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 12px;
}
.articles-section .articles-section__wrapper .article-interest:nth-child(1) {
  display: flex;
  flex-direction: column;
  grid-area: 1/1/3/2;
}
.articles-section .articles-section__wrapper .article-interest:nth-child(1) img {
  max-height: 380px;
}
.articles-section .articles-section__wrapper .article-interest:nth-child(2) {
  grid-area: 1/2/2/3;
}
.articles-section .articles-section__wrapper .article-interest:nth-child(3) {
  grid-area: 2/2/3/3;
}
.articles-section .articles-section__wrapper .article-interest:nth-child(2), .articles-section .articles-section__wrapper .article-interest:nth-child(3) {
  display: flex;
  width: 100%;
  max-height: -moz-max-content;
  max-height: max-content;
}
.articles-section .articles-section__wrapper .article-interest:nth-child(2) > img, .articles-section .articles-section__wrapper .article-interest:nth-child(3) > img {
  width: 50%;
  max-height: 220px;
}
.articles-section .articles-section__wrapper .article-interest:nth-child(2) > .article-interest__description, .articles-section .articles-section__wrapper .article-interest:nth-child(3) > .article-interest__description {
  width: 50%;
}
.articles-section .articles-section__wrapper .article-interest .article-interest__description > a.big-text {
  margin-bottom: 4px;
}
.articles-section .articles-section__wrapper .article-interest .article-interest__description > div {
  margin-bottom: 8px;
}

.terms-use,
.privacy-policy {
  display: flex;
  flex-direction: column;
  padding-top: 30px;
  padding-bottom: 30px;
}
.terms-use .terms-use-section,
.terms-use .privacy-policy-section,
.privacy-policy .terms-use-section,
.privacy-policy .privacy-policy-section {
  display: flex;
  flex-direction: column;
  margin-bottom: 10px;
}
.terms-use .terms-use-section:last-child,
.terms-use .privacy-policy-section:last-child,
.privacy-policy .terms-use-section:last-child,
.privacy-policy .privacy-policy-section:last-child {
  margin-bottom: 0;
}
.terms-use .terms-use-section h1,
.terms-use .terms-use-section .text-h1,
.terms-use .privacy-policy-section h1,
.terms-use .privacy-policy-section .text-h1,
.privacy-policy .terms-use-section h1,
.privacy-policy .terms-use-section .text-h1,
.privacy-policy .privacy-policy-section h1,
.privacy-policy .privacy-policy-section .text-h1 {
  font-size: 36px;
  margin-bottom: 28px;
}
.terms-use .terms-use-section h3,
.terms-use .terms-use-section .text-h3,
.terms-use .privacy-policy-section h3,
.terms-use .privacy-policy-section .text-h3,
.privacy-policy .terms-use-section h3,
.privacy-policy .terms-use-section .text-h3,
.privacy-policy .privacy-policy-section h3,
.privacy-policy .privacy-policy-section .text-h3 {
  font-size: 24px;
  margin-bottom: 28px;
}
.terms-use .terms-use-section p,
.terms-use .privacy-policy-section p,
.privacy-policy .terms-use-section p,
.privacy-policy .privacy-policy-section p {
  font-size: 18px;
  line-height: 1.33;
  margin-bottom: 16px;
  text-align: justify;
}
.terms-use .terms-use-section a,
.terms-use .privacy-policy-section a,
.privacy-policy .terms-use-section a,
.privacy-policy .privacy-policy-section a {
  color: #0880f7;
}
.terms-use .terms-use-section ul li,
.terms-use .privacy-policy-section ul li,
.privacy-policy .terms-use-section ul li,
.privacy-policy .privacy-policy-section ul li {
  margin-bottom: 12px;
  font-size: 18px;
  text-align: justify;
}
.terms-use .terms-use-section ul li:last-child,
.terms-use .privacy-policy-section ul li:last-child,
.privacy-policy .terms-use-section ul li:last-child,
.privacy-policy .privacy-policy-section ul li:last-child {
  margin-bottom: 0;
}
.terms-use .terms-use-section ul li::before,
.terms-use .privacy-policy-section ul li::before,
.privacy-policy .terms-use-section ul li::before,
.privacy-policy .privacy-policy-section ul li::before {
  content: "— ";
}
.terms-use table.iksweb,
.privacy-policy table.iksweb {
  width: 100%;
  border-spacing: 0;
  height: auto;
  margin-bottom: 30px;
}
.terms-use table.iksweb,
.terms-use table.iksweb td,
.terms-use table.iksweb th,
.privacy-policy table.iksweb,
.privacy-policy table.iksweb td,
.privacy-policy table.iksweb th {
  border: 0.5px solid #e4e4e4;
  font-size: 18px;
  line-height: 24px;
}
.terms-use table.iksweb td,
.privacy-policy table.iksweb td {
  padding: 32px 40px 34px 40px;
  vertical-align: baseline;
}

.register-success {
  display: flex;
  align-items: baseline;
  gap: 18px 35px;
}
.register-success .right .register-success__title {
  margin-bottom: 18px;
  font-size: 32px;
  line-height: 44px;
}
.register-success .right .register-success__title span {
  font-weight: bold;
}
.register-success .right p {
  display: block;
  margin-bottom: 28px;
}
.register-success .right p a {
  color: #0880f7;
}

.section-empty-notice {
  display: flex;
  flex-direction: column;
  gap: 48px;
  padding: 42px 32px 40px 44px;
  background-color: #f5f5f6;
  box-shadow: 0px 4px 30px rgba(0, 0, 0, 0.14);
  border-radius: 14px;
  border: 1px solid #e7e6e6;
  margin-bottom: 66px;
}
.section-empty-notice .section-empty-notice__wrapper {
  display: flex;
  gap: 44px;
}
.section-empty-notice .section-empty-notice__wrapper .left {
  width: 55%;
}
.section-empty-notice .section-empty-notice__wrapper .left .text-h3 {
  margin-bottom: 18px;
}
.section-empty-notice .section-empty-notice__wrapper .left .body-text-regular {
  margin-bottom: 52px;
}
.section-empty-notice .section-empty-notice__wrapper .left .btn-container {
  display: flex;
  width: 100%;
  gap: 16px;
}
.section-empty-notice .section-empty-notice__wrapper .left .btn-container .btn {
  width: 100%;
  padding: 12px;
}
.section-empty-notice .section-empty-notice__wrapper .left img {
  display: none;
}
.section-empty-notice .section-empty-notice__wrapper .right {
  width: 45%;
  display: flex;
  justify-content: flex-end;
}
.section-empty-notice .section-empty-notice__wrapper .right img {
  max-height: 313px;
  -o-object-fit: cover;
     object-fit: cover;
}
.section-empty-notice .section-empty-notice__wrapper .img-wrapper {
  width: 100%;
  border-radius: 14px;
  overflow: hidden;
}
.section-empty-notice .section-empty-notice__wrapper .img-wrapper img {
  width: 100%;
}
.section-empty-notice .section-empty-notice__info {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.simple-cards {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 44px;
}

.simple-card {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.simple-card img {
  max-width: 64px;
}
.simple-card span {
  color: #313131;
  font-size: 20px;
  font-weight: 600;
  line-height: 27px;
}
.simple-card p {
  font-size: 16px;
  line-height: 22px;
}
.simple-card .bottom {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.catalog-empty__info {
  display: flex;
  flex-direction: column;
  margin-bottom: 32px;
}
.catalog-empty__info .catalog-empty__info-card {
  padding: 10px 24px 10px 36px;
}
.catalog-empty__info .catalog-empty__info-card a {
  color: #0880f7;
}
.catalog-empty__info .catalog-empty__card {
  padding: 24px;
  background-color: #eef5fd;
  border-radius: 14px;
}
.catalog-empty__info .catalog-empty__card span {
  display: flex;
  align-items: center;
  padding: 10px 0 10px 12px;
  position: relative;
}
.catalog-empty__info .catalog-empty__card span::before {
  content: "";
  position: absolute;
  left: 0;
  display: block;
  height: 100%;
  width: 2px;
  background-color: #0880f7;
}

.section-empty-more {
  display: flex;
  flex-direction: column;
  gap: 34px;
  position: relative;
}
.section-empty-more::before {
  content: "";
  position: absolute;
  top: 3%;
  left: -2%;
  background-image: url("/images/map.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 100%;
  height: 500px;
}
.section-empty-more .text-h3 {
  position: relative;
  z-index: 2;
}
.section-empty-more .container {
  display: flex;
  gap: 32px;
}
.section-empty-more .container .empty-card {
  flex-basis: 0;
  flex-grow: 1;
  position: relative;
  z-index: 2;
}

.empty-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  padding: 32px 24px;
  background: rgba(255, 255, 255, 0.4);
  box-shadow: 0px -6px 20px rgba(5, 64, 120, 0.1), 0px 6px 20px rgba(5, 64, 120, 0.1);
  border-radius: 14px;
}
.empty-card .top {
  margin-bottom: 32px;
}
.empty-card img {
  height: 77.65px;
  margin-bottom: 54px;
}
.empty-card div {
  margin-bottom: 8px;
}
.empty-card span {
  color: #0880f7;
}
.empty-card .btn {
  width: 100%;
  padding: 8px 10.5px;
}

.form-simple {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
  max-width: 312px;
}
.form-simple input,
.form-simple textarea {
  border: none;
  outline: 1px solid #92C6FB;
  border-radius: 8px;
  padding: 12px 18px 10px 8px;
}
.form-simple input::-moz-placeholder, .form-simple textarea::-moz-placeholder {
  color: #888888;
}
.form-simple input::placeholder,
.form-simple textarea::placeholder {
  color: #888888;
}
.form-simple textarea {
  min-height: 100px;
}
.form-simple button {
  padding: 12px;
}

a.back-to-catalog {
  display: none;
  color: #0880f7;
}

span.accent-color {
  color: #0880f7;
}

.ps-404 {
  display: flex;
  gap: 32px;
  margin-top: 88px;
}
.ps-404 .left {
  max-width: 568px;
}
.ps-404 .left .ps-404__container {
  display: flex;
  flex-direction: column;
}
.ps-404 .left .ps-404__container > h2 {
  margin-bottom: 12px;
}
.ps-404 .left .ps-404__container .ps-404__inner {
  display: flex;
  flex-direction: column;
  margin-top: 24px;
}
.ps-404 .left .ps-404__container .ps-404__inner img {
  display: none;
}
.ps-404 .left .ps-404__container .ps-404__inner .ps-404-menu {
  margin-bottom: 24px;
}
.ps-404 .left .ps-404__container .ps-404__item {
  display: flex;
  flex-direction: column;
}

ul.ps-404-menu {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
ul.ps-404-menu li a {
  padding-bottom: 2px;
  color: #0880f7;
  border-bottom: 1px solid #0880f7;
}

.about-us-page > h2 {
  margin-bottom: 42px;
}
.about-us-page .site-info {
  margin-bottom: 120px;
}
.about-us-page .about-us {
  margin-bottom: 103px;
}
.about-us-page .section-empty-notice {
  padding: 56px;
}
.about-us-page .section-empty-notice .section-empty-notice__wrapper .img-wrapper {
  border-radius: 14px;
  overflow: hidden;
}
.about-us-page .section-empty-notice .section-empty-notice__wrapper .img-wrapper img {
  max-height: 475px;
}
.about-us-page .section-empty-notice .section-empty-notice__wrapper .left {
  width: 47%;
}
.about-us-page .section-empty-notice .section-empty-notice__wrapper .left > * {
  max-width: 573px;
}
.about-us-page .section-empty-notice .section-empty-notice__wrapper .left .btn-container {
  max-width: 564px;
  flex-direction: column;
  gap: 33px;
}
.about-us-page .section-empty-notice .section-empty-notice__wrapper .left .text-h3 {
  margin-bottom: 24px;
}
.about-us-page .section-empty-notice .section-empty-notice__wrapper .left .body-text-regular {
  margin-bottom: 62px;
}
.about-us-page .section-empty-notice .section-empty-notice__wrapper .right {
  width: 53%;
}
.about-us-page .section-empty-more {
  max-width: 1046px;
  margin-bottom: 120px;
}

.site-info-card {
  display: flex;
  align-items: center;
  background-color: #eef5fd;
  padding: 32px 18px 32px 18px;
  border-radius: 14px;
  gap: 18px;
}
.site-info-card .left {
  max-width: 378px;
  min-width: -moz-fit-content;
  min-width: fit-content;
  padding: 32px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 38%;
}
.site-info-card .left span {
  color: #0a223d;
}
.site-info-card .left span:first-child {
  font-size: 110px;
  line-height: 150px;
  font-weight: 700;
  letter-spacing: -0.055em;
}
.site-info-card .left span:last-child {
  font-size: 28px;
  line-height: 38px;
  font-weight: 400;
}
.site-info-card .right {
  width: 62%;
  font-size: 24px;
  line-height: 34px;
  font-weight: 400;
}

.card-item {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 32px 18px;
  background-color: #ffffff;
  border-radius: 14px;
  box-shadow: 0px -6px 20px rgba(5, 64, 120, 0.1), 0px 6px 20px rgba(5, 64, 120, 0.1);
}
.card-item img {
  max-width: 92px;
  margin-bottom: 42px;
}
.card-item > div {
  margin-bottom: 8px;
}
.card-item.center {
  justify-content: center;
  padding: 32px 18px 32px 42px;
}

.site-info > .text-h2 {
  margin-bottom: 62px;
}
.site-info .site-info__container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.site-info .site-info__container .item:nth-child(1) {
  grid-area: 1/1/2/4;
}
.site-info .site-info__container .item:nth-child(2) {
  grid-area: 2/1/3/2;
}
.site-info .site-info__container .item:nth-child(3) {
  grid-area: 2/2/3/3;
}
.site-info .site-info__container .item:nth-child(4) {
  grid-area: 2/3/3/4;
}
.site-info .site-info__container .item:nth-child(5) {
  grid-area: 1/4/3/5;
}

.about-us .about-us__container {
  display: flex;
  gap: 36px;
}
.about-us .describe {
  margin-bottom: 68px;
}
.about-us .describe span {
  color: #0880f7;
}
.about-us .container {
  padding: 16px 16px 31px 16px;
  background-color: #eef5fd;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 31px;
}
.about-us > .container {
  display: none;
}
.about-us .left {
  width: 41.3%;
}
.about-us .right {
  width: 58.7%;
}
.about-us .text-h3 {
  display: none;
  margin-bottom: 6px;
}/*# sourceMappingURL=style.css.map */