@charset "UTF-8";
.btn {
  display: inline-flex;
  gap: 7px;
  border-radius: 4px;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
  cursor: pointer;
  line-height: 1;
  text-decoration: none;
  font-size: clamp(0.875rem, 0.8375rem + 0.1875vw, 1.0625rem);
  padding: 12px 17px;
}
.btn svg {
  width: 14px;
  height: 14px;
}

.btn-ws {
  background: #26D366;
  border: 1px solid #26D366;
  color: #fff;
}
.btn-ws:hover {
  background: rgb(55.4397590361, 219.0602409639, 115.9698795181);
  color: #fff;
}

.btn-blue {
  background: #385CAA;
  border: 1px solid #385CAA;
  color: #fff;
}
.btn-blue:hover {
  background: rgb(62.3185840708, 102.3805309735, 189.1814159292);
  color: #fff;
}

.btn-red {
  background: #D34752;
  border: 1px solid #D34752;
  color: #fff;
}
.btn-red:hover {
  background: rgb(215.9210526316, 91.5789473684, 101.3486842105);
  color: #fff;
}

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

.header {
  padding: 15px 0;
}
.header hr {
  opacity: 0.2;
}
.header__wrapper {
  display: flex;
  gap: 30px;
  justify-content: space-between;
  align-items: center;
}
.header__logo {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-shrink: 0;
}
.header__info {
  flex-grow: 1;
}
.header__descriptor {
  font-size: 14px;
  color: #66727F;
  line-height: 1.3;
  max-width: 239px;
}
.header__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header__contacts {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.header__icon {
  width: 17px;
  height: 17px;
  fill: #D34752;
  flex-shrink: 0;
}
.header__contact {
  display: flex;
  gap: 10px;
  align-items: center;
}
.header__contact span {
  font-size: clamp(0.875rem, 0.8375rem + 0.1875vw, 1.0625rem);
  color: #0B1F33;
}
.header__contact a {
  font-size: clamp(0.875rem, 0.8375rem + 0.1875vw, 1.0625rem);
  color: #0B1F33;
}
.header__contact:hover {
  color: #D34752;
}
.header__online {
  display: flex;
  gap: 7px;
  align-items: center;
}
.header__green {
  border-radius: 100%;
  background: #25d366;
  box-shadow: 0 0 10px 0 #25d366;
  width: 8px;
  height: 8px;
}
.header__mail {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.header__status {
  color: #25d366;
  font-size: clamp(0.875rem, 0.8375rem + 0.1875vw, 1.0625rem);
}
.header__phones {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}
.header__phone-wrp {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: end;
}
.header__phone-wrp span {
  color: #66727F;
  font-size: clamp(0.875rem, 0.85rem + 0.125vw, 1rem);
  line-height: 1.3;
}
.header__phone {
  font-size: clamp(0.875rem, 0.8rem + 0.375vw, 1.25rem);
  font-weight: 700;
  color: #0B1F33;
  white-space: nowrap;
}
.header__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header__btns {
  display: flex;
  gap: 7px;
}
.header__ws-ic {
  flex-shrink: 0;
}
.header__ws {
  white-space: nowrap;
}

@media only screen and (max-width: 1400px) {
  .header__top {
    gap: 20px;
  }
  .header__descriptor {
    display: none;
  }
  .header__contacts {
    gap: 10px;
  }
  .header__phones {
    gap: 20px;
  }
  .header__btn {
    display: none;
  }
}
@media only screen and (max-width: 946px) {
  .header hr {
    display: none;
  }
  .header__info {
    display: flex;
    flex-direction: row;
    justify-content: end;
    gap: 20px;
  }
  .header__contacts {
    display: none;
  }
}
@media only screen and (max-width: 634px) {
  .header__wrapper {
    gap: 10px;
  }
  .header__logo {
    flex-basis: 30%;
  }
  .header__mail {
    display: none;
  }
  .header__phone-wrp {
    gap: 5px;
  }
  .header__phone-wrp span {
    display: none;
  }
}
.header {
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
  margin-right: auto;
  margin-left: auto;
}

.menu-fixed {
  box-shadow: 0 4px 15px -10px rgba(0, 0, 0, 0.6);
  position: fixed;
  animation: slide-down 0.7s;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(15px);
  padding: 5px 0 3px 0;
}
.menu-fixed hr {
  display: none;
}
.menu-fixed .header__logo img {
  max-width: 50%;
}
.menu-fixed .header__contact {
  gap: 6px;
}
.menu-fixed .header__wrapper {
  align-items: center;
}
.menu-fixed .header__nav {
  padding: 0;
  margin: 0;
}
.menu-fixed .nav__item {
  padding: 7px 0;
}
.menu-fixed .open .nav__item {
  padding: 0;
}
.menu-fixed .header__logo-phone {
  display: flex;
}
.menu-fixed .header__nav::before {
  display: none;
}
.menu-fixed .header__btn {
  padding: 12px 17px;
}
.menu-fixed .header__top {
  display: none;
}

@media only screen and (max-width: 1200px) {
  .menu-fixed .header__logo {
    width: auto;
  }
}
@media only screen and (max-width: 945px) {
  .menu-fixed .header__nav {
    display: flex;
  }
  .menu-fixed .header__top {
    display: flex;
  }
  .menu-fixed .header__logo img {
    max-width: 70%;
  }
}
@keyframes slide-down {
  0% {
    opacity: 0;
    transform: translateY(-100%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.nav__list {
  display: flex;
  align-items: center;
  margin: 0;
}

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

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

.nav__link {
  color: #282828;
  font-size: 18px;
}
.nav__link:hover {
  color: #385CAA;
}

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

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

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

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

.dropdown-submenu__list {
  padding: 0;
}

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

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

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

.mobile-back {
  display: none;
}

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

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

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

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

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

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

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

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

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

.lock {
  overflow: hidden;
}

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

@media only screen and (max-width: 946px) {
  .open .close_btn {
    display: block;
  }
}
@media only screen and (max-width: 1200px) {
  .nav__link {
    font-size: 16px;
  }
}
.hblock {
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: space-between;
  padding: 35px 25px;
  width: 100%;
  overflow: hidden;
  border-radius: 20px;
}
.hblock__title {
  font-size: clamp(1.4375rem, 1.3125rem + 0.625vw, 2.0625rem);
  color: #fff;
  font-weight: 700;
  font-family: "Involve", sans-serif;
  line-height: 1.3;
  margin: 10px 0;
}
.hblock img {
  flex-shrink: 0;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 20px;
}
.hblock__red {
  background: #D34752;
}
.hblock__blue {
  background: #385CAA;
  color: #fff !important;
}
.hblock__blue p {
  margin-bottom: 30px;
}
.hblock__blue .hblock__category {
  background: rgba(255, 255, 255, 0.1058823529);
}
.hblock__subtitle {
  font-size: clamp(1.125rem, 1.1rem + 0.125vw, 1.25rem);
  font-weight: 500;
  color: #fff;
  line-height: 1.4;
}
.hblock__text {
  color: #fff;
  line-height: 1.4;
  font-size: clamp(0.875rem, 0.825rem + 0.25vw, 1.125rem);
}
.hblock__text p {
  padding: 7px 0;
}
.hblock ul {
  list-style-type: disc;
  padding-left: 20px;
  opacity: 0.7;
}
.hblock li {
  padding: 4px 0;
  line-height: 1.3;
}
.hblock__docs {
  right: -50px;
  position: relative;
  bottom: -50px;
}
.hblock__person {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 20px;
}

@media only screen and (max-width: 768px) {
  .order-block1 {
    order: 2;
  }
  .order-block2 {
    order: 1;
  }
  .hblock__docs {
    bottom: 0;
  }
}
.cert__wrp {
  padding: 30px;
  background: #fff;
  border-radius: 20px;
}
.cert__info p {
  line-height: 1.7;
  padding: 10px 0;
  font-size: clamp(0.875rem, 0.85rem + 0.125vw, 1rem);
}
.cert__info {
  padding: 30px 0;
}
.cert__qr a {
  display: inline-flex;
  gap: 20px;
  align-items: center;
  color: #66727F;
  font-size: clamp(0.875rem, 0.85rem + 0.125vw, 1rem);
}
.cert__qr img{
    max-width: 100px;
}
.cert__qr a span {
  max-width: 170px;
  line-height: 1.3;
}

#mainCarousel {
  width: 100%;
  --carousel-button-color: #66727F;
  --carousel-button-bg: #fff;
  --carousel-button-shadow: 0 2px 1px -1px rgb(0 0 0 / 20%),
      0 1px 1px 0 rgb(0 0 0 / 14%), 0 1px 3px 0 rgb(0 0 0 / 12%);
  --carousel-button-svg-width: 13px;
  --carousel-button-svg-height: 13px;
  --carousel-button-width: 44px;
  --carousel-button-height: 44px;
  --carousel-button-svg-stroke-width: 2.5;
}

#mainCarousel .carousel__slide {
  width: 100%;
  padding: 0;
  text-align: left;
  max-height: 300px;
  display: flex;
  align-items: start;
  justify-content: center;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}

#mainCarousel .carousel__slide img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  border-style: none;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
  border-radius: 10px;
}

#mainCarousel .carousel__button.is-prev {
  left: -1.5rem;
  /* display: none; */
}

#mainCarousel .carousel__button.is-next {
  right: -1.5rem;
  /* display: none; */
}

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

#thumbCarousel {
  margin-bottom: 20px;
}

#thumbCarousel .carousel__slide {
  opacity: 0.5;
  padding: 10px;
  width: 25%;
  height: 100px;
  overflow: hidden;
  border: 1px solid #ececec;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

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

/* #thumbCarousel {
  display: none;
} */
.carousel__track {
  display: flex;
  align-items: flex-start !important;
}

@media only screen and (max-width: 768px) {
  #mainCarousel .carousel__button.is-prev {
    display: none;
  }
  #mainCarousel .carousel__button.is-next {
    display: none;
  }
}
@media only screen and (max-width: 578px) {
  #mainCarousel .carousel__slide {
    height: 200px;
    justify-content: center;
  }
  #mainCarousel .carousel__slide img {
    -o-object-fit: contain;
    object-fit: contain;
  }
}
@media only screen and (max-width: 768px) {
  #mainCarousel .carousel__button.is-prev {
    display: none;
  }
  #mainCarousel .carousel__button.is-next {
    display: none;
  }
}
@media only screen and (max-width: 578px) {
  #mainCarousel .carousel__slide {
    height: 200px;
    justify-content: center;
  }
  #mainCarousel .carousel__slide img {
    -o-object-fit: contain;
    object-fit: contain;
  }
}
@media only screen and (max-width: 578px) {
  .cert {
    padding: 30px 0;
  }
  .cert__info {
    padding: 0;
  }
}
.services {
  margin: 60px 0 0 0;
}

.service {
  width: 100%;
  background: #fff;
  display: flex;
  gap: 15px;
  padding: 20px;
  box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.06);
  border-radius: 15px;
}
.service__wrp {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}
.service__img {
  width: 75px;
  height: 75px;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(180deg, #5785e8 0%, #385caa 100%);
  flex-shrink: 0;
}
.service__img img{
  width: 50px;
  height: 50px;
}
.service__title {
  font-weight: 700;
  color: #0B1F33;
  line-height: 1.3;
  font-size: clamp(0.875rem, 0.825rem + 0.25vw, 1.125rem);
}
.service p {
  font-size: clamp(0.875rem, 0.825rem + 0.25vw, 1.125rem);
  color: #66727F;
  line-height: 1.3;
}
.service__link {
  margin-top: auto;
  display: inline-flex;
  padding-bottom: 3px;
  border-bottom: 1px dashed #D34752;
  color: #D34752;
  align-self: flex-start;
  margin-top: auto;
  font-size: clamp(0.875rem, 0.825rem + 0.25vw, 1.125rem);
}
.service__link:hover {
  color: #385CAA;
  border-bottom: 1px dashed #385CAA;
}
.service__info {
  display: flex;
  flex-direction: column;
}
.service__wrapper {
  margin: 30px 0;
  display: block;
}

@media only screen and (max-width: 768px) {
  .service__img {
    width: 55px;
    height: 55px;
    padding: 7px;
    border-radius: 10px;
  }
}
.team {
  background: #FAF9F6;
  position: relative;
  z-index: 60;
  padding: 60px 0;
}
.team__wrp {
  overflow: hidden;
}
.team__left {
  background: #fff;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 20px 0 0 0;
}
.team__btn {
  width: 100%;
  padding: 30px 60px;
  border-radius: 0 0 0 20px;
}
.team__tizers {
  display: flex;
  flex-direction: column;
}
.team__tizer {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 30px 15px;
  border-bottom: 1px solid #ececec;
}
.team__tizer-num {
  color: #385CAA;
  font-weight: 700;
  font-size: clamp(0.875rem, 0.825rem + 0.25vw, 1.125rem);
}
.team__tizer-title {
  font-size: clamp(0.875rem, 0.825rem + 0.25vw, 1.125rem);
  color: #0B1F33;
  line-height: 1.3;
  font-weight: 700;
}
.team__tizer-text {
  font-size: clamp(0.875rem, 0.825rem + 0.25vw, 1.125rem);
  color: #66727F;
  line-height: 1.3;
}
.team__about {
  padding: 20px;
  color: #fff;
  background: #385CAA;
  height: 100%;
}
.team__about h2,
.team__about h3,
.team__about h4 {
  font-size: clamp(1.375rem, 1.325rem + 0.25vw, 1.625rem);
  margin-bottom: 7px;
}
.team__about p {
  line-height: 1.5;
  font-size: clamp(0.875rem, 0.825rem + 0.25vw, 1.125rem);
  opacity: 0.6;
}
.team__img img {
  display: block;
  border-radius: 0 20px 0 0;
}
.team__right {
  height: 100%;
  border-radius: 0 0 20px 0;
  overflow: hidden;
}

@media only screen and (max-width: 768px) {
  .team__left {
    border-radius: 20px 20px 0 0;
  }
  .team__btn {
    border-radius: 0;
  }
  .team__right {
    height: 100%;
    border-radius: 0 0 20px 20px;
    overflow: hidden;
  }
}
@media only screen and (max-width: 578px) {
  .team {
    padding: 30px 0;
  }
}
.accordion__control {
  width: 100%;
  background-color: transparent;
  cursor: pointer;
}

.accordion__content {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  padding: 0 20px;
  will-change: max-height;
  transition: all 0.3s ease-out;
  box-sizing: content-box;
}
.accordion__content p {
  font-size: clamp(0.875rem, 0.825rem + 0.25vw, 1.125rem);
  line-height: 1.4;
  color: #66727F;
  margin: 7px 0;
}
.accordion__content ul {
  list-style-type: disc;
  padding-left: 30px;
}
.accordion__content ul li {
  padding: 4px 0;
  line-height: 1.4;
  font-size: clamp(0.875rem, 0.825rem + 0.25vw, 1.125rem);
  color: #66727F;
}
.accordion__content ol {
  list-style-type: decimal;
  padding-left: 30px;
}
.accordion__content ol li {
  padding: 4px 0;
  line-height: 1.4;
  font-size: clamp(0.875rem, 0.825rem + 0.25vw, 1.125rem);
  color: #66727F;
}

.accordion__title {
  font-weight: 400;
  font-size: clamp(0.875rem, 0.825rem + 0.25vw, 1.125rem);
  color: #0B1F33;
}

.accordion__icon {
  transition: transform 0.3s ease-out;
  border-radius: 8px;
}

.open .accordion__icon {
  background: #D34752;
}

.open .accordion__icon span {
  transform: rotate(45deg);
}

.open .accordion__content {
  opacity: 1;
  padding: 20px;
}

.open .accordion__title {
  color: #0B1F33;
}

.open .accordion__control {
  position: relative;
}
.open .accordion__control::before {
  content: "";
  position: absolute;
  border-radius: 0px 10px 10px 0px;
  background: #385CAA;
  width: 5px;
  height: 37px;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto 0;
  display: block;
}

.visually-hidden {
  position: absolute !important;
  clip: rect(1px 1px 1px 1px);
  /* IE6, IE7 */
  clip: rect(1px, 1px, 1px, 1px);
  padding: 0 !important;
  border: 0 !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden;
}

.accordion {
  width: 100%;
  margin-bottom: 10px;
  padding: 0 !important;
}

.accordion__list {
  list-style-type: none !important;
  padding-left: 0 !important;
}

.accordion__control {
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style: none;
  padding: 10px;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgb(204, 204, 204);
}

.accordion__control::-webkit-details-marker {
  display: none;
}

.accordion__title {
  margin: 0;
  text-align: start;
}

.accordion__icon {
  position: relative;
  display: inline-block;
  width: 72px;
  height: 54px;
  background-color: #385CAA;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 600;
  font-size: 25px;
}

.accordion__content {
  /* 	padding: 20px; */
  border-top: 1px solid transparent;
  font-size: 16px;
  line-height: 1.4;
  color: #66727F;
}

.accordion[open] .accordion__icon {
  background: #262A29;
}

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

@media only screen and (max-width: 578px) {
  .accordion__control {
    padding: 15px;
  }
}
.faq__form-wrapper {
  padding: 30px;
  background: #29498b;
  color: #fff;
  border-radius: 20px;
}
.faq__form-wrapper h4 {
  font-size: clamp(1.25rem, 1.15rem + 0.5vw, 1.75rem);
  font-family: "Involve", sans-serif;
  line-height: 1.3;
  margin-bottom: 20px;
}
.faq__form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.faq .label-info {
  margin: 5px 0;
  font-weight: 600;
  color: #fff;
  display: flex;
  gap: 40px;
  transition: color 0.3s;
  font-size: clamp(0.875rem, 0.85rem + 0.125vw, 1rem);
  line-height: 1.3;
}
.faq__input {
  padding: 20px 30px;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgb(204, 204, 204);
  font-size: clamp(0.875rem, 0.825rem + 0.25vw, 1.125rem);
  width: 100%;
  transition: all 0.3s;
  color: #fff;
}
.faq__input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.4823529412);
}
.faq__input::placeholder {
  color: rgba(255, 255, 255, 0.4823529412);
}
.faq__input:active, .faq__input:focus {
  border-bottom: 1px solid #D34752;
}
.faq label:focus-within .label-info {
  color: #D34752;
}

@media only screen and (max-width: 768px) {
  .faq .label-info {
    gap: 15px;
  }
  .faq .nav-link {
    color: #0B1F33;
    padding: 10px 20px;
  }
  .accordion__icon {
    width: 50px;
    height: 30px;
    font-size: 18px;
  }
}
@media only screen and (max-width: 578px) {
  .faq {
    padding: 0;
    margin: 30px 0;
  }
}
.steps img {
  display: block;
  border-radius: 20px;
  -o-object-fit: cover;
  object-fit: cover;
}
.steps .heading-title {
  margin-bottom: 0;
}

.step {
  width: 100%;
  box-shadow: 0 15px 20px 0 rgba(0, 0, 0, 0.04);
  background: #fff;
  border-radius: 20px;
  padding: 30px 20px;
}
.step__top {
  display: flex;
  align-items: center;
  gap: 20px;
}
.step__number {
  color: #fff;
  background: #385CAA;
  padding: 5px 10px;
  border-radius: 4px;
  display: inline-flex;
  font-size: clamp(0.875rem, 0.825rem + 0.25vw, 1.125rem);
  flex-shrink: 0;
}
.step__title {
  font-weight: 500;
  line-height: 1.4;
  color: #0B1F33;
  font-size: clamp(0.875rem, 0.825rem + 0.25vw, 1.125rem);
  margin-bottom: 15px;
}
.step__info {
  font-size: clamp(0.875rem, 0.825rem + 0.25vw, 1.125rem);
  color: #66727F;
  line-height: 1.4;
  margin-bottom: 15px;
}

@media only screen and (max-width: 578px) {
  .steps {
    padding: 30px 0;
  }
  .steps img {
    margin-bottom: 20px;
    max-height: 200px;
  }
}
body.modal-open {
  padding-right: 0px !important;
}

body {
  overflow-y: scroll !important;
}

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

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

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

.graypart {
  background-color: #f6f9fc;
}

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

.modal-content {
  position: relative;
}

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

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

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

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

.files {
  font-size: 10px;
}

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

.form_input__modal {
  padding: 13px 0px;
  border: none;
  border-bottom: 1px solid lightgray;
  margin-bottom: 20px;
  border-radius: 0px;
  width: 100%;
  background: transparent;
}
.form_input__modal .modal-file {
  color: #66727F;
  margin-bottom: 10px;
  display: block;
}
.form_input__modal:focus {
  border-bottom: 2px solid #D34752;
}

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

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

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

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

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

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

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

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

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

.reg_tabs {
  margin: 0 40px;
}

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

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

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

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

.span-hidden {
  display: none;
}

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

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

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

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

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

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

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

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

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

.span-hidden {
  display: none;
}

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

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

.button__modal {
  padding: 20px 40px;
}

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

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

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

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

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

.radio-mess input {
  display: none;
}

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

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

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

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

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

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

.checkbox-hidden {
  display: none;
}

.checkbox-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  flex: 0 0 20px;
  height: 20px;
  border-radius: 1px;
  background: #D34752;
  margin-right: 10px;
  flex-shrink: 0;
}

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

.custom-checkbox .checkbox-wrap::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto 0;
  width: 13px;
  height: 13px;
  background: url(../img/check.svg) no-repeat 0 0;
  background-size: 100%;
  will-change: transform;
  transform: scale(0);
  opacity: 0;
  transition: all 0.1s linear;
}

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

.modal__wrapper {
  padding-top: 0 !important;
}
.modal__wrapper li {
  padding: 0 !important;
}

.privat-info-black {
  color: #0B1F33;
}

.btn.disabled,
.btn:disabled,
fieldset:disabled .btn {
  color: #fff;
  background-color: #D34752;
  border-color: #D34752;
  opacity: 0.5;
}

.cookie__modal {
  display: flex;
  gap: 20px;
 
}
.cookie__modal p {
  font-size: clamp(0.875rem, 0.85rem + 0.125vw, 1rem);
  line-height: 1.5;
}
.cookie__modal__btn {
  align-self: center;
}

@media only screen and (max-width: 578px) {
  .cookie__modal {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .cookie__modal p {
    text-align: center;
  }
}
.panel {
  position: fixed;
  right: 10px;
  bottom: 10px;
  display: inline-flex;
  flex-direction: column;
  right: 10px !important;
  border-radius: 80px;
  background: #E5D7C4;
  padding: 4px;
  z-index: 100;
}
.panel__ic {
  width: 60px;
  height: 60px;
}
.panel__ic:not(:last-child) {
  margin-bottom: 15px;
}
.panel__ic:hover {
  opacity: 0.7;
}

@media only screen and (max-width: 578px) {
  .panel__ic {
    width: 50px;
    height: 50px;
  }
}
.heading {
  background: #E3E6E8;
  padding: 30px 0px 90px 0;
}
.heading h1 {
  font-size: clamp(1.25rem, 1.1rem + 0.75vw, 2rem);
  color: #0B1F33;
  line-height: 1.3;
  margin-bottom: 20px;
  margin-top: 0;
  font-weight: 600;
}

.breadcrumbs li {
  display: inline-block;
  font-size: clamp(0.875rem, 0.825rem + 0.25vw, 1.125rem);
  color: #66727F;
}
.breadcrumbs li a {
  color: #66727F;
  text-decoration: none;
}
.breadcrumbs li a:hover {
  color: #66727F;
}
.breadcrumbs li + li::before {
  color: #66727F;
  content: "—";
  padding: 0 5px;
}

@media only screen and (max-width: 945px) {
  .heading {
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 546px) {
  .heading {
    padding: 20px 0;
  }
}
.sticky-top {
  top: 120px;
  z-index: 0;
}

.sidebar {
  margin-top: 20px;
}
.sidebar__btns {
  display: flex;
  gap: 10px;
  flex-direction: column;
}
.sidebar__btn {
  width: 100%;
}
.sidebar__card {
  margin-top: 20px;
  background: #fff;
  border-radius: 15px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.sidebar__card img {
  align-self: flex-start;
}
.sidebar__text {
  color: #66727F;
  line-height: 1.3;
  font-size: clamp(0.875rem, 0.825rem + 0.25vw, 1.125rem);
}
.sidebar__contacts {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.sidebar__phone {
  color: #0B1F33;
  font-weight: 700;
  font-size: clamp(0.875rem, 0.825rem + 0.25vw, 1.125rem);
}
.sidebar__email {
  margin-top: 10px;
  color: #D34752;
  font-size: clamp(0.875rem, 0.825rem + 0.25vw, 1.125rem);
}
.sidebar__menu {
  margin: 30px 0;
  display: flex;
  flex-direction: column;
}
.sidebar__menu a {
  display: block;
  font-size: clamp(0.875rem, 0.825rem + 0.25vw, 1.125rem);
  color: #0B1F33;
  padding: 17px 0;
}
.sidebar__menu .active a {
  color: #D34752;
}
.sidebar__menu li {
  border-bottom: 1px solid #d3d3d3;
}
.sidebar__socials {
  display: flex;
  gap: 7px;
  margin-top: 20px;
}
.sidebar__social {
  width: 40px;
  height: 40px;
  border-radius: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.sidebar__ws {
  background: #26D366;
}
.sidebar__tg {
  background: #26A0D4;
}
.sidebar__icon {
  width: 20px;
  height: 20px;
  fill: #fff;
}

.content {
  background: #fff;
  margin-top: -30px;
  padding: 30px;
  border-radius: 15px;
  margin-bottom: 30px;
}
.content h1,
.content h2,
.content h3,
.content h4,
.content h5 {
  font-family: "Involve", sans-serif;
  line-height: 1.4;
  margin: 10px 0 0 0;
  font-size: clamp(1.25rem, 1.125rem + 0.625vw, 1.875rem);
  color: #0B1F33;
}
.content p {
  font-size: clamp(0.875rem, 0.825rem + 0.25vw, 1.125rem);
  line-height: 1.4;
  color: #66727F;
  margin: 7px 0;
}
.content ul {
  list-style-type: disc;
  padding-left: 30px;
}
.content ul li {
  padding: 4px 0;
  line-height: 1.4;
  font-size: clamp(0.875rem, 0.825rem + 0.25vw, 1.125rem);
  color: #66727F;
}
.content ol {
  list-style-type: decimal;
  padding-left: 30px;
}
.content ol li {
  padding: 4px 0;
  line-height: 1.4;
  font-size: clamp(0.875rem, 0.825rem + 0.25vw, 1.125rem);
  color: #66727F;
}
.content .main-text {
  background: rgb(237, 240, 242);
  margin: 15px 0;
  padding: 20px 15px 20px 40px;
  border-left: 3px solid #D34752;
  color: #0B1F33;
  font-size: clamp(0.875rem, 0.825rem + 0.25vw, 1.125rem);
  line-height: 1.4;
  border-radius: 0 10px 10px 0;
}

.swiper-horizontal > .swiper-scrollbar,
.swiper-scrollbar.swiper-scrollbar-horizontal {
  height: 2px;
  position: relative;
  margin-bottom: 10px;
  width: 100%;
  margin: 0 30px;
  padding-right: 90px;
}

@media only screen and (max-width: 578px) {
  .swiper-scrollbar {
    display: none;
  }
}
.swiper-slide {
  height: auto;
}

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

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

.swiper__btn {
  flex-shrink: 0;
}

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

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

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

.gallery {
  margin: 40px 0;
}

.serv__slider {
  margin: 30px 0;
  padding: 0 5px 0 0;
}
.serv__item {
  display: flex;
  flex-direction: column;
  gap: 20px;
  height: 100%;
  width: 100%;
}
.serv__item:hover .serv__desc {
  color: #D34752;
}
.serv__item img {
  width: 100%;
  height: 290px;
  border-radius: 15px;
  border: 3px solid #fff;
  -o-object-fit: cover;
  object-fit: cover;
}
.serv__desc {
  font-size: clamp(0.875rem, 0.825rem + 0.25vw, 1.125rem);
  color: #0B1F33;
  line-height: 1.3;
  margin-top: 20px;
  transition: all 0.3s;
}
.serv__btn {
  margin-top: auto;
}

.prices table {
  width: 100%;
  margin: 30px 0;
}

.prices table td {
  padding: 20px 15px;
  border: 2px solid #F9F7F5;
  background: rgba(203, 212, 228, 0.4392156863);
  font-size: clamp(0.875rem, 0.85rem + 0.125vw, 1rem);
  line-height: 1.3;
}

.prices thead td {
  background: #0B1F33;
  color: #fff;
  font-weight: 700;
}

.prices__btn {
  margin-left: 10px;
  padding: 10px 15px;
}

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

@media only screen and (max-width: 740px) {
  .prices__wrp {
    flex-wrap: wrap;
  }
}
@media only screen and (max-width: 578px) {
  .prices__btn {
    margin-left: 0;
    margin-top: 10px;
  }
}
.contacts {
  margin: 30px 0;
}
.contacts__rows {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contacts-card {
  border: 1px solid #dfdbdb;
  padding: 20px;
}
.contacts-card__top {
  width: 100%;
  height: 300px;
  position: relative;
  margin-bottom: 20px;
}
.contacts-card__top img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.contacts-card__info {
  position: absolute;
  bottom: 0;
  left: 0px;
  background: linear-gradient(rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.9) 100%);
  padding-top: 30px;
  padding-left: 20px;
  padding-right: 10px;
  width: 100%;
}
.contacts-card__subtitle {
  font-size: clamp(0.875rem, 0.85rem + 0.125vw, 1rem);
  color: #fff;
  margin-bottom: 10px;
}
.contacts-card__title {
  font-size: clamp(0.875rem, 0.825rem + 0.25vw, 1.125rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.3;
}
.contacts-card__group {
  margin: 20px 0;
}
.contacts-card__label {
  font-size: clamp(0.875rem, 0.85rem + 0.125vw, 1rem);
  color: #66727F;
  margin-bottom: 10px;
}
.contacts-card__input {
  margin-bottom: 10px;
}
.contacts-card__input a {
  color: #0B1F33;
  font-size: clamp(0.875rem, 0.825rem + 0.25vw, 1.125rem);
  text-decoration: none;
  display: block;
  margin-bottom: 10px;
  font-weight: 600;
}
.contacts-card__time {
  display: block;
  margin-bottom: 7px;
  color: #0B1F33;
  font-size: clamp(0.875rem, 0.825rem + 0.25vw, 1.125rem);
}
.contacts-card__btn {
  padding: 20px 30px;
  text-decoration: none !important;
  color: #fff !important;
}

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

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

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

.footer {
  margin-top: auto;
  margin-bottom: 30px;
}
.footer a {
  color: #fff;
}
.footer a:hover {
  color: #fff;
}
.footer__title {
  font-size: clamp(1.625rem, 1.45rem + 0.875vw, 2.5rem);
  font-family: "Involve", sans-serif;
  line-height: 1.3;
  font-weight: 600;
  color: #fff;
  margin-bottom: 20px;
  max-width: 800px;
}
.footer {
  background: #29498b;
  padding: 60px 0;
}
.footer__item {
  display: flex;
  flex-direction: column;
  gap: 15px;
  color: #fff;
}
.footer__label {
  opacity: 0.6;
  font-size: clamp(0.875rem, 0.825rem + 0.25vw, 1.125rem);
  color: #fff;
}
.footer__phone {
  font-size: clamp(1.125rem, 1.1rem + 0.125vw, 1.25rem);
  font-weight: 700;
}
.footer__email, .footer__form {
  font-size: clamp(0.875rem, 0.825rem + 0.25vw, 1.125rem);
  font-weight: 700;
  cursor: pointer;
  line-height: 1.3;
}
.footer__contact {
  display: flex;
  gap: 10px;
  align-items: center;
}
.footer__icon {
  width: 20px;
  height: 20px;
  fill: #D34752;
}
.footer__marker {
  width: 25px;
  height: 25px;
}
.footer__adress {
  align-items: flex-start;
}
.footer__adress svg{
  flex-shrink: 0;
}
.footer__adresses {
  display: flex;
  gap: 15px;
  flex-direction: column;
}

@media only screen and (max-width: 578px) {
  .footer__item {
    margin: 10px 0;
  }
}
.bottom__wrp {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 30px;
}
.bottom a {
  color: #0B1F33;
  text-decoration: underline;
  line-height: 1.3;
  display: inline;
}
.bottom a:hover {
  color: #D34752;
}
.bottom li {
  padding: 4px 0;
}
.bottom__heart {
  fill: #FF1037;
  width: 15px;
  height: 15px;
  margin: 0 3px;
  font-size: clamp(0.75rem, 0.725rem + 0.125vw, 0.875rem);
  color: rgba(255, 255, 255, 0.3098039216);
  margin-top: 4px;
}
.bottom__heart a {
  color: #fff;
  opacity: 0.4;
}
.bottom__heart a:hover {
  opacity: 1;
}



@media only screen and (max-width: 578px) {
  .bottom__wrp {
    flex-direction: column;
    gap: 20px;
  }

  .order1{
    order: 2;
  }
  .order2{
    order: 1;
  }
}