@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Bold.woff2") format("woff2"), url("../fonts/Montserrat-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Regular.woff2") format("woff2"), url("../fonts/Montserrat-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Medium.woff2") format("woff2"), url("../fonts/Montserrat-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-SemiBold.woff2") format("woff2"), url("../fonts/Montserrat-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@import url('https://fonts.googleapis.com/css2?family=Geologica:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

button,
input,
textarea {
  -moz-appearance: none;
  appearance: none;
  -webkit-appearance: none;
  font-family: inherit;
}

button:focus {
  box-shadow: none !important;
}

*:focus {
  outline: none;
}

body {
  font: 500 18px "Montserrat", sans-serif;
  position: relative;
  color: #182333;
}

a {
  display: inline-block;
  font: inherit;
  color: inherit;
  transition: 300ms;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

img {
  max-width: 100%;
  max-height: 100%;
}

a img {
  border: none;
  outline: none;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
}

@media only screen and (max-width: 1300px) {
  .container {
    max-width: 944px;
  }
}

@media only screen and (max-width: 991px) {
  .container {
    padding: 0 20px;
  }
}

.field {
  display: block;
  width: 100%;
  margin-bottom: 15px;
}

.field__error--text {
  font-weight: 500;
  font-size: 11px;
  line-height: 13px;
  color: #cd5b5b;
  display: none;
  padding-left: 10px;
}

.field input {
  width: 100%;
  height: 50px;
  border: 1px solid #c7cfdb;
  border-radius: 10px;
  font-weight: 500;
  font-size: 16px;
  padding-left: 17px;
}

.field input.field--error {
  border: 1px solid #cd5b5b;
}

.field input:focus {
  border: 1px solid rgb(110, 168, 255);
}

.field input::-webkit-input-placeholder {
  color: #878f9b;
}

.field input:-moz-placeholder {
  color: #878f9b;
}

.field input::-moz-placeholder {
  color: #878f9b;
}

.field input:-ms-input-placeholder {
  color: #878f9b;
}

.checkbox {
  display: flex;
  align-items: center;
  cursor: pointer;
  position: relative;
}

.checkbox__inner {
  flex-shrink: 0;
  margin-right: 16px;
  width: 24px;
  height: 24px;
  background: #fff;
}

.checkbox__inner>span {
  width: 100%;
  height: 100%;
  border: 1px solid #c7cfdb;
  border-radius: 3px;
  display: block;
}

.checkbox__inner>span.error {
  border: 1px solid #cd5b5b;
}

.checkbox__error {
  position: absolute;
  font-weight: 500;
  font-size: 11px;
  color: #cd5b5b;
  bottom: -17px;
  left: 39px;
  display: none;
}

.checkbox__error.error {
  display: block;
}

.checkbox input {
  display: none;
}

.checkbox input:checked+span {
  background-image: url(../images/analytic-true.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 16px;
}

.checkbox__text {
  font-weight: 500;
  font-size: 14px;
}

@media only screen and (max-width: 991px) {
  .checkbox__text {
    font-size: 12px;
  }
}

.checkbox__text.error {
  color: #cd5b5b;
}

.checkbox__text a {
  color: rgb(110, 168, 255);
}

.title {
  font-weight: 700;
  font-size: 32px;
}

@media only screen and (max-width: 1300px) {
  .title {
    font-size: 28px;
  }
}

@media only screen and (max-width: 991px) {
  .title {
    font-size: 24px;
  }
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  width: 100%;
  background: linear-gradient(180deg, #6ea8ff 0%, #2b5dd1 100%);
  border-radius: 90px;
  color: #fff;
  position: relative;
  transition: 400ms;
  cursor: pointer;
  font-weight: 600;
  font-size: 20px;
}

.btn:hover:before {
  opacity: 1;
}

.btn span {
  display: block;
  position: relative;
  z-index: 10;
}

.btn:before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 90px;
  background: linear-gradient(180deg, #f6cf6e 0%, #f2692d 100%);
  opacity: 0;
  transition: 400ms;
}

.btn-orange {
  background: linear-gradient(180deg, #f6cf6e 0%, #f2692d 100%);
}

.btn-orange:before {
  background: linear-gradient(180deg, #6ea8ff 0%, #2b5dd1 100%);
}

.header {
  height: 90px;
  display: flex;
  align-items: center;
  position: -webkit-sticky;
  position: sticky;
  background: #fff;
  top: 0;
  left: 0;
  z-index: 1;
}

@media only screen and (max-width: 991px) {
  .header {
    height: 50px;
  }
}

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

.header__logo {
  display: flex;
  align-items: center;
}

@media only screen and (max-width: 1300px) {
  .header__logo {
    height: 44px;
  }
}

@media only screen and (max-width: 991px) {
  .header__logo {
    height: 32px;
  }
}

.header__info {
  display: flex;
  align-items: center;
}

.header__mobile {
  display: flex;
  align-items: center;
}

@media only screen and (max-width: 991px) {
  .header__mobile {
    position: fixed;
    width: 100%;
    max-width: 353px;
    height: 100vh;
    min-height: 100vh;
    right: 0;
    top: 0;
    background: #eff5ff;
    flex-direction: column-reverse;
    justify-content: flex-end;
    padding-top: 66px;
    display: none;
    z-index: 100;
  }

  .header__mobile.active {
    display: flex;
  }
}

.header__close {
  display: none;
}

@media only screen and (max-width: 991px) {
  .header__close {
    display: flex;
    align-items: center;
    position: absolute;
    right: 20px;
    top: 20px;
  }
}

.header__nav {
  display: flex;
  align-items: center;
}

@media only screen and (max-width: 991px) {
  .header__nav {
    flex-direction: column;
  }
}

.header__nav li {
  margin-right: 25px;
}

@media only screen and (max-width: 1300px) {
  .header__nav li {
    margin-right: 15px;
  }
}

@media only screen and (max-width: 991px) {
  .header__nav li {
    margin-right: 0;
    margin-bottom: 45px;
  }
}

.header__nav li:last-child {
  margin-right: 0;
}

.header__nav li a {
  font-weight: 600;
  font-size: 15px;
  color: #182333;
}

@media only screen and (max-width: 1300px) {
  .header__nav li a {
    font-size: 14px;
  }
}

.header__btn {
  height: 44px;
  width: 159px;
  font-size: 14px;
  margin-right: 26px;
  margin-left: 20px;
}

@media only screen and (max-width: 1300px) {
  .header__btn {
    margin-left: 41px;
  }
}

@media only screen and (max-width: 991px) {
  .header__btn {
    margin-right: 0;
    margin-left: 0;
    margin-bottom: 46px;
  }
}

.header__social {
  display: flex;
  align-items: center;
}

.header__social li {
  margin-right: 7px;
}

.header__social li:last-child {
  margin-right: 0;
}

.header__social li a {
  display: flex;
  align-items: center;
}

@media only screen and (max-width: 991px) {
  .header__social li a {
    width: 31px;
    height: 31px;
  }
}

.header__burger {
  display: none;
}

@media only screen and (max-width: 991px) {
  .header__burger {
    display: flex;
    align-items: flex-start;
    margin-left: 21px;
  }
}

.showcase {
  background: url("../images/showcase-bg.png") 50% 50%;
  background-size: cover;
  background-repeat: no-repeat;
  max-height: 400px;
  overflow: hidden;
}

@media only screen and (max-width: 1300px) {
  .showcase {
    height: 330px;
  }
}

@media only screen and (max-width: 991px) {
  .showcase {
    max-height: 100%;
    height: 100%;
    background-position: 93% 82%;
  }
}

.showcase__inner {
  display: flex;
  align-items: center;
}

@media only screen and (max-width: 991px) {
  .showcase__inner {
    flex-direction: column;
    padding-top: 40px;
  }
}

.showcase__info {
  max-width: 660px;
}

@media only screen and (max-width: 991px) {
  .showcase__info {
    max-width: 100%;
  }
}

.showcase__title {
  font-weight: 700;
  font-size: 32px;
  margin-bottom: 22px;
}

@media only screen and (max-width: 1300px) {
  .showcase__title {
    font-size: 28px;
  }
}

@media only screen and (max-width: 991px) {
  .showcase__title {
    text-align: center;
    font-size: 24px;
    margin-bottom: 33px;
  }
}

.showcase__text {
  font-size: 20px;
  margin-bottom: 45px;
}

@media only screen and (max-width: 1300px) {
  .showcase__text {
    font-size: 18px;
  }
}

@media only screen and (max-width: 991px) {
  .showcase__text {
    margin-bottom: 25px;
    text-align: center;
  }
}

.showcase__btn {
  max-width: 233px;
}

@media only screen and (max-width: 991px) {
  .showcase__btn {
    margin: 0 auto;
  }
}

.showcase__img {
  flex-shrink: 0;
  display: flex;
  align-items: flex-start;
}

@media only screen and (max-width: 1300px) {
  .showcase__img {
    height: 300px;
    margin-left: -50px;
    margin-top: 20px;
  }
}

@media only screen and (max-width: 991px) {
  .showcase__img {
    margin-left: 0;
    margin-top: 11px;
    height: 100%;
    min-width: 414px;
  }
}

.showcase-banner {
  margin-top: -19px;
  position: relative;
  z-index: 3;
}

.showcase-banner__inner {
  background: linear-gradient(270deg, #f6cf6e 0%, #f2692d 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  height: 90px;
  padding-left: 29px;
  padding-right: 11px;
}

@media only screen and (max-width: 991px) {
  .showcase-banner__inner {
    height: 100%;
    padding: 24px 27px 21px 29px;
  }
}

.showcase-banner__icon {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  margin-right: 44px;
}

@media only screen and (max-width: 991px) {
  .showcase-banner__icon {
    margin-right: 20px;
  }
}

.showcase-banner__text {
  font-weight: 700;
  font-size: 20px;
  color: #fff;
  max-width: 80%;
}

@media only screen and (max-width: 1300px) {
  .showcase-banner__text {
    font-size: 18px;
    max-width: 100%;
  }
}

@media only screen and (max-width: 991px) {
  .showcase-banner__text {
    font-size: 14px;
  }
}

.carousel {
  margin-top: 60px;
}

.carousel__tabs {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 2px solid #c7cfdb;
  margin-bottom: 35px;
}

@media only screen and (max-width: 991px) {
  .carousel__tabs {
    overflow-x: scroll;
    margin-right: -20px;
    padding-right: 20px;
    border-bottom: 0;
    margin-left: -20px;
    padding-left: 20px;
    padding-bottom: 4px;
    justify-content: flex-start;
  }

  .carousel__tabs::-webkit-scrollbar {
    display: none;
  }
}

.carousel__tab {
  text-align: center;
  font-size: 18px;
  color: #182333;
  position: relative;
  padding: 0 67px;
  height: 100%;
  padding-bottom: 15px;
  cursor: pointer;
}

@media only screen and (max-width: 1300px) {
  .carousel__tab {
    font-size: 14px;
    padding: 0 49px;
    white-space: nowrap;
    padding-bottom: 15px;
  }
}

@media only screen and (max-width: 991px) {
  .carousel__tab {
    font-size: 12px;
    padding: 0 10px;
    padding-bottom: 15px;
    border-bottom: 2px solid #c7cfdb;
    font-weight: 500;
  }
}

.carousel__tab.active {
  background: linear-gradient(180deg, #6ea8ff 0%, #2b5dd1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.carousel__tab.active::before {
  opacity: 1;
}

.carousel__tab:before {
  content: "";
  display: block;
  position: absolute;
  background: linear-gradient(180deg, #6ea8ff 0%, #2b5dd1 100%);
  width: 100%;
  height: 6px;
  bottom: -3px;
  left: 0;
  opacity: 0;
}

.carousel__content {
  display: none;
  position: relative;
}

@media only screen and (max-width: 991px) {
  .carousel__content {
    margin: 0 -20px;
  }
}

.carousel__content:first-child {
  display: block;
}

.carousel__left,
.carousel__right {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  cursor: pointer;
}

@media only screen and (max-width: 991px) {

  .carousel__left,
  .carousel__right {
    display: none;
  }
}

.carousel__left--first,
.carousel__left--second,
.carousel__right--first,
.carousel__right--second {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  cursor: pointer;
}

@media only screen and (max-width: 991px) {

  .carousel__left--first,
  .carousel__left--second,
  .carousel__right--first,
  .carousel__right--second {
    display: none;
  }
}

.carousel__left--second,
.carousel__right--second {
  opacity: 0.5;
  cursor: inherit;
}

.carousel__left {
  left: 0;
}

.carousel__left img {
  transform: rotate(180deg);
}

.carousel__left--first,
.carousel__left--second {
  left: 0;
}

.carousel__left--first img,
.carousel__left--second img {
  transform: rotate(180deg);
}

.carousel__container {
  max-width: 95%;
  padding: 20px 11px;
}

@media only screen and (max-width: 991px) {
  .carousel__container {
    max-width: 100%;
    padding: 20px;
  }
}

.carousel__container--first,
.carousel__container--second {
  max-width: 95%;
  padding: 20px 11px;
}

@media only screen and (max-width: 991px) {

  .carousel__container--first,
  .carousel__container--second {
    max-width: 100%;
    padding: 20px;
  }
}

.carousel__item {
  background: #ffffff;
  box-shadow: 0px 4px 13px rgba(24, 35, 51, 0.15);
  border-radius: 24px;
  overflow: hidden;
}

@media only screen and (max-width: 991px) {
  .carousel__item {
    width: 215px;
  }
}

.carousel__img {
  display: flex;
  align-items: center;
}

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

@media only screen and (max-width: 1300px) {
  .carousel__img {
    height: 146px;
  }
}

@media only screen and (max-width: 991px) {
  .carousel__img {
    height: 155px;
  }
}

.carousel__text {
  font-weight: 500;
  height: 92px;
  display: flex;
  align-items: center;
  padding: 10px 15px 10px 27px;
}

@media only screen and (max-width: 1300px) {
  .carousel__text {
    font-size: 14px;
  }
}

.board {
  margin-top: 87px;
  margin-bottom: 87px;
}

@media only screen and (max-width: 991px) {
  .board {
    margin-top: 40px;
    margin-bottom: 43px;
  }
}

.board__title {
  font-weight: 700;
  font-size: 32px;
  text-align: center;
  margin-bottom: 45px;
}

@media only screen and (max-width: 1300px) {
  .board__title {
    font-size: 28px;
  }
}

@media only screen and (max-width: 991px) {
  .board__title {
    font-size: 24px;
    margin-bottom: 40px;
  }
}

.board__items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 30px;
}

@media only screen and (max-width: 991px) {
  .board__items {
    grid-template-columns: 1fr;
    grid-gap: 20px;
  }
}

.board__item {
  display: flex;
  align-items: center;
  background: #ffffff;
  box-shadow: 0px 4px 13px rgba(24, 35, 51, 0.15);
  border-radius: 24px;
  overflow: hidden;
}

.board__img {
  display: flex;
  align-items: center;
  margin-right: 28px;
	max-width:212px;
}

@media only screen and (max-width: 1300px) {
  .board__img {
    margin-right: 25px;
    width: 180px;
    height: 245px;
  }
}

@media only screen and (max-width: 991px) {
  .board__img {
    height: 200px;
    width: 145px;
    margin-right: 20px;
  }
}

@media only screen and (max-width: 400px) {
  .board__img {
    width: 120px;
    flex-shrink: 0;
    margin-right: 15px;
  }
}

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

.board__name {
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 5px;
}

@media only screen and (max-width: 1300px) {
  .board__name {
    font-size: 17px;
  }
}

@media only screen and (max-width: 991px) {
  .board__name {
    font-size: 14px;
  }
}

.board__address {
  margin-bottom: 26px;
  font-weight: 500;
  font-size: 14px;
}

@media only screen and (max-width: 1300px) {
  .board__address {
    font-size: 12px;
  }
}

@media only screen and (max-width: 991px) {
  .board__address {
    margin-bottom: 22px;
  }
}

.board__time {
  font-weight: 500;
  font-size: 16px;
  color: #878f9b;
  margin-bottom: 6px;
}

@media only screen and (max-width: 991px) {
  .board__time {
    font-size: 13px;
  }
}

.board__tel {
  font-weight: 500;
  font-size: 16px;
  background: linear-gradient(180deg, #6ea8ff 0%, #2b5dd1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 26px;
}

@media only screen and (max-width: 991px) {
  .board__tel {
    font-size: 13px;
    margin-bottom: 21px;
  }
}

.board__price {
  background: linear-gradient(180deg, #6ea8ff 0%, #2b5dd1 100%);
  border-radius: 10px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 204px;
  color: #fff;
  font-weight: 700;
  font-size: 20px;
}

@media only screen and (max-width: 991px) {
  .board__price {
    height: 41px;
    width: 166px;
    font-size: 16px;
  }
}

.board-aside {
  margin-top: 100px;
  display: flex;
  align-items: center;
}

@media only screen and (max-width: 991px) {
  .board-aside {
    flex-direction: column-reverse;
    margin-top: 48px;
  }
}

.board-aside__gallery {
  width: 635px;
  flex-shrink: 0;
  margin-left: 50px;
  display: grid;
  grid-template-columns: 1fr 330px;
  grid-gap: 14px;
}

@media only screen and (max-width: 1300px) {
  .board-aside__gallery {
    width: 461px;
    grid-template-columns: 1fr 1fr;
    grid-gap: 19px;
    margin-left: 5px;
    grid-template-rows: 150px 150px 170px;
  }
}

@media only screen and (max-width: 991px) {
  .board-aside__gallery {
    width: 100%;
    grid-template-rows: initial;
    grid-gap: 14px;
    margin-bottom: 40px;
  }
}

.board-aside__gallery--item {
  display: flex;
  align-items: center;
  border-radius: 10px;
  overflow: hidden;
}

.board-aside__gallery--item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.board-aside__gallery--item.row {
  grid-row: span 2;
}

.board-aside__title {
  font-weight: 700;
  font-size: 24px;
  margin-bottom: 40px;
}

@media only screen and (max-width: 1300px) {
  .board-aside__title {
    font-size: 28px;
  }
}

.board-aside__title.mobile {
  display: none;
}

@media only screen and (max-width: 991px) {
  .board-aside__title {
    font-size: 22px;
  }

}

.board-aside__text {
  margin-bottom: 60px;
}

@media only screen and (max-width: 991px) {
  .board-aside__text {
    margin-bottom: 40px;
  }
}

.board-aside__text p {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 20px;
}

@media only screen and (max-width: 991px) {
  .board-aside__text p {
    font-size: 14px;
    margin-bottom: 15px;
  }
}

.board-aside__text p:last-child {
  margin-bottom: 0;
}

.board-aside__btn {
  width: 309px;
}

.board-aside__btn img {
  margin-left: 10px;
  position: relative;
  z-index: 3;
}

.adva {
  margin-bottom: 100px;
}

@media only screen and (max-width: 991px) {
  .adva {
    margin-bottom: 60px;
  }
}

.adva__title {
  text-align: center;
  font-weight: 700;
  font-size: 32px;
  margin-bottom: 44px;
}

@media only screen and (max-width: 1300px) {
  .adva__title {
    font-size: 28px;
  }
}

@media only screen and (max-width: 991px) {
  .adva__title {
    font-size: 24px;
    margin-bottom: 40px;
  }
}

.adva__items {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-gap: 12px;
}

@media only screen and (max-width: 1300px) {
  .adva__items {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}

@media only screen and (max-width: 991px) {
  .adva__items {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

@media only screen and (max-width: 767px) {
  .adva__items {
    grid-template-columns: 1fr 1fr;
  }
}

.adva__item {
  background: #ffffff;
  box-shadow: 0px 4px 13px rgba(24, 35, 51, 0.15);
  border-radius: 24px;
  position: relative;
  min-height: 220px;
  overflow: hidden;
}

@media only screen and (max-width: 767px) {
  .adva__item {
    min-height: auto;
    padding-bottom: 16px;
  }
}

.adva__img {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

@media only screen and (max-width: 767px) {
  .adva__img img {
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
  }
}

.adva__text {
  padding: 0px 28px;
  height: 60px;
  display: flex;
  align-items: center;
  font-weight: 500;
  font-size: 16px;
}

@media only screen and (max-width: 1300px) {
  .adva__text {
    padding: 0 7px 0 25px;
  }
}

@media only screen and (max-width: 767px) {
  .adva__text {
    font-size: 12px;
    padding-left: 16px;
    height: 50px;
  }
}

.gallery-photo {
  margin-bottom: 100px;
}

@media only screen and (max-width: 991px) {
  .gallery-photo {
    margin-bottom: 40px;
  }
}

.gallery-photo__title {
  text-align: center;
  font-weight: 700;
  font-size: 32px;
  margin-bottom: 46px;
}

@media only screen and (max-width: 1300px) {
  .gallery-photo__title {
    font-size: 28px;
  }
}

.gallery-photo__tabs {
  display: flex;
  align-items: center;
  padding-bottom: 3px;
  margin-bottom: 50px;
}

@media only screen and (max-width: 991px) {
  .gallery-photo__tabs {
    overflow: scroll;
    margin-right: -20px;
    margin-left: -20px;
    padding-right: 20px;
    padding-left: 20px;
    margin-bottom: 23px;
  }

  .gallery-photo__tabs::-webkit-scrollbar {
    display: none;
  }
}

.gallery-photo__tab {
  width: 20%;
  text-align: center;
  border-bottom: 2px solid #c7cfdb;
  padding-bottom: 10px;
  font-weight: 500;
  position: relative;
  font-size: 16px;
  cursor: pointer;
}

@media only screen and (max-width: 1300px) {
  .gallery-photo__tab {
    font-size: 14px;
  }
}

@media only screen and (max-width: 991px) {
  .gallery-photo__tab {
    font-size: 12px;
  }
}

@media only screen and (max-width: 767px) {
  .gallery-photo__tab {
    white-space: nowrap;
    flex-shrink: 0;
    font-size: 12px;
    width: auto;
    padding: 0 15px;
    padding-bottom: 10px;
  }
}

.gallery-photo__tab:before {
  content: "";
  display: block;
  position: absolute;
  height: 6px;
  background: linear-gradient(180deg, #6ea8ff 0%, #2b5dd1 100%);
  width: 100%;
  bottom: -3px;
  opacity: 0;
  left: 0;
}

.gallery-photo__tab.active {
  background: linear-gradient(180deg, #6ea8ff 0%, #2b5dd1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.gallery-photo__tab.active:before {
  opacity: 1;
}

.gallery-photo__content {
  display: none;
}

.gallery-photo__content:first-child {
  display: block;
}

.gallery-photo__items {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-gap: 6px;
  margin-bottom: 40px;
}

@media only screen and (max-width: 991px) {
  .gallery-photo__items {
    grid-template-columns: 1fr 1fr;
    grid-gap: 5px;
  }
}

.gallery-photo__item {
  display: flex;
  align-items: flex-start;
  height: 303px;
  cursor: pointer;
}

@media only screen and (max-width: 1300px) {
  .gallery-photo__item {
    height: 231px;
  }
}

@media only screen and (max-width: 991px) {
  .gallery-photo__item {
    height: 184px;
  }
}

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

@media only screen and (max-width: 991px) {
  .gallery-photo__item.mobile {
    display: none;
  }
}

.gallery-photo__btn {
  width: 202px;
  margin: 0 auto;
}

.feedback {
  background: #eff5ff;
}

.feedback__inner {
  display: flex;
  align-items: center;
  padding: 85px 0;
}

@media only screen and (max-width: 1300px) {
  .feedback__inner {
    padding: 45px 0;
  }
}

@media only screen and (max-width: 991px) {
  .feedback__inner {
    flex-direction: column;
    padding: 36px 0;
  }
}

.feedback__img {
  flex-shrink: 0;
  margin-right: 106px;
}

@media only screen and (max-width: 1300px) {
  .feedback__img {
    width: 426px;
    margin-right: 45px;
  }
}

@media only screen and (max-width: 991px) {
  .feedback__img {
    width: 100%;
    margin-right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
  }
}

.feedback__form {
  width: 100%;
}

.feedback__title {
  margin-bottom: 23px;
}

.feedback__text {
  font-weight: 500;
  font-size: 16px;
  margin-bottom: 50px;
}

@media only screen and (max-width: 991px) {
  .feedback__text {
    font-size: 14px;
    margin-bottom: 21px;
  }
}

.feedback__polytical {
  margin-bottom: 46px;
  display: block;
  margin-top: 31px;
}

@media only screen and (max-width: 991px) {
  .feedback__polytical {
    margin-top: 22px;
    margin-bottom: 30px;
  }
}

.feedback__btn {
  border: none;
  width: 175px;
}

.contacts {
  margin-top: 90px;
  margin-bottom: 65px;
}

@media only screen and (max-width: 991px) {
  .contacts {
    margin-top: 66px;
    margin-bottom: 15px;
  }
}

.contacts__tabs {
  max-width: 711px;
  display: flex;
  align-items: center;
  margin-bottom: -71px;
}

@media only screen and (max-width: 1300px) {
  .contacts__tabs {
    max-width: 540px;
  }
}

@media only screen and (max-width: 991px) {
  .contacts__tabs {
    max-width: 100%;
    margin-bottom: 34px;
  }
}

.contacts__tab {
  width: 50%;
  text-align: center;
  border-bottom: 2px solid #c7cfdb;
  position: relative;
  padding-bottom: 17px;
  cursor: pointer;
}

@media only screen and (max-width: 767px) {
  .contacts__tab {
    font-size: 12px;
    font-weight: 500;
  }
}

.contacts__tab.active {
  background: linear-gradient(180deg, #6ea8ff 0%, #2b5dd1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.contacts__tab.active:before {
  opacity: 1;
}

.contacts__tab:before {
  content: "";
  display: block;
  position: absolute;
  bottom: -3px;
  left: 0;
  height: 6px;
  width: 100%;
  background: linear-gradient(180deg, #6ea8ff 0%, #2b5dd1 100%);
  opacity: 0;
}

.contacts__map {
  height: 570px;
}

@media only screen and (max-width: 1300px) {
  .contacts__map {
    height: 435px;
  }
}

@media only screen and (max-width: 767px) {
  .contacts__map {
    height: 300px;
  }
}

.contacts__map iframe {
  width: 100%;
  border: 1px solid transparent;
  height: 570px;
}

@media only screen and (max-width: 1300px) {
  .contacts__map iframe {
    height: 435px;
  }
}

@media only screen and (max-width: 767px) {
  .contacts__map iframe {
    height: 300px;
  }
}

.contacts__items {
  display: grid;
  grid-template-columns: 711px 1fr;
  align-items: flex-end;
}

@media only screen and (max-width: 1300px) {
  .contacts__items {
    grid-template-columns: 540px 1fr;
  }
}

@media only screen and (max-width: 991px) {
  .contacts__items {
    grid-template-columns: 1fr;
  }
}

.contacts__container {
  display: none;
}

.contacts__container:first-child {
  display: block;
}

.contacts__info {
  height: 682px;
  margin-left: 50px;
}

@media only screen and (max-width: 1300px) {
  .contacts__info {
    margin-left: 30px;
    height: 520px;
  }
}

@media only screen and (max-width: 991px) {
  .contacts__info {
    height: 540px;
    width: 100%;
    max-width: 540px;
    margin: 0 auto;
    margin-top: 20px;
  }
}

.about-showcase {
  background: #eff5ff;
}

.about-showcase__title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 43px;
}

@media only screen and (max-width: 767px) {
  .about-showcase__title {
    font-size: 16px;
    margin-bottom: 24px;
  }
}

.about-showcase__item {
  max-width: 658px;
}

@media only screen and (max-width: 1300px) {
  .about-showcase__item {
    max-width: 515px;
  }
}

@media only screen and (max-width: 991px) {
  .about-showcase__item {
    margin: 0 auto 30px auto;
    max-width: 650px;
  }
}

.about-showcase__info {
  font-size: 16px;
  font-weight: 500;
}

@media only screen and (max-width: 767px) {
  .about-showcase__info {
    font-size: 14px;
  }
}

.about-showcase__inner {
  position: relative;
  padding: 60px 0 52px 0;
}

@media only screen and (max-width: 1300px) {
  .about-showcase__inner {
    padding: 46px 0 54px 0;
  }
}

@media only screen and (max-width: 991px) {
  .about-showcase__inner {
    padding: 30px 0 0 0;
    text-align: center;
  }
}

.about-showcase__image {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  width: 500px;
  bottom: 0;
  right: -26px;
}

@media only screen and (max-width: 1300px) {
  .about-showcase__image {
    right: -84px;
  }
}

@media only screen and (max-width: 991px) {
  .about-showcase__image {
    position: static;
    width: 100%;
  }
}

.about {
  margin: 93px 0 83px 0;
}

@media only screen and (max-width: 1300px) {
  .about {
    margin: 56px 0 78px 0;
  }
}

@media only screen and (max-width: 767px) {
  .about {
    margin: 33px 0 41px 0;
  }
}

.about__content {
  padding-bottom: 37px;
  margin-bottom: 37px;
  border-bottom: 1px solid #c7cfdb;
}

@media only screen and (max-width: 1300px) {
  .about__content {
    padding-bottom: 44px;
    margin-bottom: 44px;
  }
}

@media only screen and (max-width: 767px) {
  .about__content {
    padding-bottom: 26px;
    margin-bottom: 26px;
  }
}

.about__content:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border: 0;
}

.about__items {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

@media only screen and (max-width: 1300px) {
  .about__items {
    flex-direction: column-reverse;
  }
}

.about__item {
  min-width: 393px;
  width: 393px;
  margin-right: 32px;
}

@media only screen and (max-width: 1300px) {
  .about__item {
    min-width: auto;
    width: 100%;
    margin-right: 0;
    margin-top: 44px;
    display: flex;
    align-items: center;
  }
}

.about__images {
  display: grid;
  -moz-column-gap: 18px;
  column-gap: 18px;
  row-gap: 18px;
  width: 100%;
}

@media only screen and (max-width: 767px) {
  .about__images {
    -moz-column-gap: 10px;
    column-gap: 10px;
    row-gap: 10px;
  }
}

.about__content:nth-child(2n) .about__items {
  flex-direction: row-reverse;
}

@media only screen and (max-width: 1300px) {
  .about__content:nth-child(2n) .about__items {
    flex-direction: column-reverse;
  }
}

.about__content:nth-child(2n) .about__item {
  margin-right: 0;
  margin-left: 48px;
}

@media only screen and (max-width: 1300px) {
  .about__content:nth-child(2n) .about__item {
    margin-left: 0;
    margin-top: 44px;
  }
}

.about__content:nth-child(2) .about__images {
  grid-template-columns: 1fr 1fr 1fr;
}

.about__content:nth-child(2) .about__image:nth-child(1) {
  grid-row-start: 1;
  grid-row-end: 3;
}

.about__content:nth-child(2) .about__image:nth-child(4) {
  grid-row-start: 1;
  grid-row-end: 3;
}

.about__content:nth-child(1) .about__images {
  grid-template-columns: 1fr 1fr;
}

.about__content:nth-child(1) .about__image:nth-child(3) {
  grid-column-start: 2;
  grid-column-end: 3;
}

.about__content:nth-child(1) .about__image:nth-child(1) {
  grid-row-start: 1;
  grid-row-end: 3;
}

.about__content:nth-child(3) .about__images {
  grid-template-columns: 1fr 1fr 1fr 1fr;
  max-width: 593px;
  min-width: 593px;
}

@media only screen and (max-width: 1300px) {
  .about__content:nth-child(3) .about__images {
    min-width: auto;
    max-width: 100%;
  }
}

.about__content:nth-child(3) .about__head {
  max-width: 393px;
}

.about__content:nth-child(3) .about__item {
  width: auto;
}

.about__content:nth-child(3) .about__image:nth-child(4) {
  grid-row-start: 1;
  grid-row-end: 3;
  grid-column-start: 3;
  grid-column-end: 5;
}

.about__content:nth-child(3) .about__image:nth-child(1) {
  grid-column-start: 1;
  grid-column-end: 3;
}

.about__content:nth-child(4) .about__images {
  grid-template-columns: 1fr 1fr 1fr;
}

.about__content:nth-child(4) .about__image:nth-child(1) {
  grid-row-start: 1;
  grid-row-end: 3;
}

.about__content:nth-child(4) .about__image:nth-child(4) {
  grid-row-start: 1;
  grid-row-end: 3;
  grid-column-start: 3;
  grid-column-end: 4;
}

.about__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 93px;
  margin-bottom: 21px;
}

@media only screen and (max-width: 1300px) {
  .about__icon {
    min-width: 93px;
    width: 93px;
    margin-bottom: 0;
    margin-right: 45px;
  }
}

@media only screen and (max-width: 767px) {
  .about__icon {
    min-width: 50px;
    width: 50px;
    margin-right: 22px;
  }
}

.about__head {
  font-size: 24px;
  margin-bottom: 26px;
  font-weight: 700;
}

@media only screen and (max-width: 1300px) {
  .about__head {
    margin-bottom: 22px;
  }
}

@media only screen and (max-width: 767px) {
  .about__head {
    font-size: 16px;
    margin-bottom: 17px;
  }
}

.about__text {
  font-size: 16px;
  font-weight: 500;
}

@media only screen and (max-width: 767px) {
  .about__text {
    font-size: 14px;
  }
}

.about__image {
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.video {
  margin-bottom: 76px;
}

@media only screen and (max-width: 1300px) {
  .video {
    margin-bottom: 64px;
  }
}

@media only screen and (max-width: 767px) {
  .video {
    margin-bottom: 46px;
  }
}

.video__content {
  border-radius: 46px;
  background: #eff5ff;
  padding: 60px;
  display: flex;
  align-items: center;
}

@media only screen and (max-width: 1300px) {
  .video__content {
    flex-direction: column-reverse;
    padding: 60px 60px 75px 60px;
  }
}

@media only screen and (max-width: 767px) {
  .video__content {
    border-radius: 20px;
    padding: 25px 25px 35px 25px;
  }
}

.video__video {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 496px;
  min-height: 236px;
  margin-left: 42px;
}

@media only screen and (max-width: 1300px) {
  .video__video {
    min-width: auto;
    width: 100%;
    min-height: 390px;
    margin-left: 0;
    margin-bottom: 37px;
  }
}

@media only screen and (max-width: 767px) {
  .video__video {
    min-height: 183px;
    margin-bottom: 28px;
  }
}

.video__video iframe {
  width: 100%;
  height: 100%;
  min-height: 236px;
  -o-object-fit: cover;
  object-fit: cover;
}

@media only screen and (max-width: 1300px) {
  .video__video iframe {
    min-height: 390px;
  }
}

@media only screen and (max-width: 767px) {
  .video__video iframe {
    min-height: 183px;
  }
}

.video__title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 42px;
}

@media only screen and (max-width: 1300px) {
  .video__title {
    margin-bottom: 36px;
  }
}

@media only screen and (max-width: 767px) {
  .video__title {
    font-size: 16px;
    margin-bottom: 28px;
  }
}

.video__info {
  font-size: 16px;
  font-weight: 500;
}

@media only screen and (max-width: 767px) {
  .video__info {
    font-size: 14px;
  }

  .video__info p {
    margin-bottom: 20px;
  }
}

.osnovatel {
  margin-bottom: 85px;
}

@media only screen and (max-width: 1300px) {
  .osnovatel {
    margin-bottom: 77px;
  }
}

@media only screen and (max-width: 767px) {
  .osnovatel {
    margin-bottom: 40px;
  }
}

.osnovatel__items {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

@media only screen and (max-width: 991px) {
  .osnovatel__items {
    display: block;
  }
}

.osnovatel__right {
  min-width: 568px;
  width: 568px;
  margin-left: 66px;
}

@media only screen and (max-width: 1300px) {
  .osnovatel__right {
    min-width: 462px;
    width: 462px;
    margin-left: 20px;
  }
}

@media only screen and (max-width: 991px) {
  .osnovatel__right {
    min-width: auto;
    width: 100%;
    margin-left: 0;
    margin-top: 45px;
  }
}

.osnovatel__item {
  display: flex;
  align-items: flex-start;
}

@media only screen and (max-width: 991px) {
  .osnovatel__item {
    text-align: center;
  }
}

.osnovatel__item-block {
  width: 100%;
  margin-right: 29px;
}

@media only screen and (max-width: 1300px) {
  .osnovatel__item-block {
    margin-right: 20px;
  }
}

.osnovatel__item-block:last-child {
  margin-right: 0;
}

.osnovatel__item-block:last-child .osnovatel__image::before {
  background: var(--2, linear-gradient(180deg, #f6cf6e 0%, #f2692d 100%));
}

.osnovatel__image {
  position: relative;
  width: 182px;
  height: 182px;
  margin-left: 21px;
  display: flex;
  align-items: center;
  margin-bottom: 63px;
}

@media only screen and (max-width: 1300px) {
  .osnovatel__image {
    width: 150px;
    height: 150px;
  }
}

@media only screen and (max-width: 991px) {
  .osnovatel__image {
    margin: 0 auto 32px auto;
  }
}

.osnovatel__image-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 5;
}

.osnovatel__image-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 50%;
}

.osnovatel__image::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  border-radius: 50%;
  top: 12px;
  background: var(--1, linear-gradient(180deg, #6ea8ff 0%, #2b5dd1 100%));
  left: -20px;
}

.osnovatel__name {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 21px;
}

@media only screen and (max-width: 1300px) {
  .osnovatel__name {
    font-size: 16px;
    margin-bottom: 18px;
  }
}

.osnovatel__profile {
  font-size: 16px;
  font-weight: 500;
}

@media only screen and (max-width: 1300px) {
  .osnovatel__profile {
    font-size: 14px;
  }
}

.osnovatel__title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 24px;
}

@media only screen and (max-width: 767px) {
  .osnovatel__title {
    font-size: 24px;
    margin-bottom: 34px;
  }
}

.osnovatel__info {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 26px;
}

@media only screen and (max-width: 767px) {
  .osnovatel__info {
    margin-bottom: 34px;
  }
}

.osnovatel__right-item {
  margin-bottom: 17px;
  border-radius: 10px;
  background: #eff5ff;
  padding: 20px 25px;
  color: #3366d7;
  font-size: 16px;
  font-weight: 500;
}

@media only screen and (max-width: 1300px) {
  .osnovatel__right-item {
    padding: 16px 20px;
    font-size: 14px;
  }
}

@media only screen and (max-width: 767px) {
  .osnovatel__right-item {
    margin-bottom: 14px;
  }
}

.osnovatel__right-item:last-child {
  margin-bottom: 0;
}

.about.about-second {
  margin: 0 0 97px 0;
}

@media only screen and (max-width: 1300px) {
  .about.about-second {
    margin-bottom: 76px;
  }
}

.about.about-second .about__content:nth-child(2) .about__image:nth-child(1) {
  grid-row-start: 1;
  grid-row-end: 2;
}

.about.about-second .about__content:nth-child(2) .about__image:nth-child(2) {
  grid-row-start: 2;
  grid-row-end: 3;
  grid-column-start: 1;
  grid-column-end: 2;
}

.about.about-second .about__content:nth-child(2) .about__image:nth-child(3) {
  grid-column-start: 2;
  grid-column-end: 3;
  grid-row-start: 1;
  grid-row-end: 3;
}

.about.about-second .about__content:nth-child(2) .about__image:nth-child(4) {
  grid-column-start: 3;
  grid-column-end: 4;
  grid-row-start: 1;
  grid-row-end: 2;
}

.about.about-second .about__content:nth-child(2) .about__image:nth-child(5) {
  grid-row-start: 2;
  grid-row-end: 3;
}

.video.video-reverse .video__content {
  flex-direction: row-reverse;
}

@media only screen and (max-width: 1300px) {
  .video.video-reverse .video__content {
    flex-direction: column-reverse;
  }
}

.video.video-reverse .video__video {
  margin-left: 0;
  margin-right: 58px;
  min-height: 275px;
}

@media only screen and (max-width: 1300px) {
  .video.video-reverse .video__video {
    min-height: 390px;
    margin-right: 0;
  }
}

@media only screen and (max-width: 767px) {
  .video.video-reverse .video__video {
    min-height: 170px;
  }
}

.video.video-reverse .video__video iframe {
  min-height: 275px;
}

@media only screen and (max-width: 1300px) {
  .video.video-reverse .video__video iframe {
    min-height: 390px;
  }
}

@media only screen and (max-width: 767px) {
  .video.video-reverse .video__video iframe {
    min-height: 170px;
  }
}

.video.video-reverse .video__title {
  margin-bottom: 18px;
}

.video.video-reverse .video__info p {
  margin: 0;
}

.video.video-reverse .video__info p:nth-child(2) {
  margin-bottom: 20px;
}

.reviews {
  margin-bottom: 53px;
}

@media only screen and (max-width: 1300px) {
  .reviews {
    margin-bottom: 40px;
  }
}

.reviews__title {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 25px;
}

@media only screen and (max-width: 767px) {
  .reviews__title {
    font-size: 24px;
    margin-bottom: 15px;
  }
}

.reviews__head {
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 55px;
}

@media only screen and (max-width: 1300px) {
  .reviews__head {
    margin-bottom: 40px;
  }

  .reviews__head p {
    display: inline;
  }
}

@media only screen and (max-width: 767px) {
  .reviews__head {
    margin-bottom: 32px;
  }
}

.reviews__item {
  border-radius: 24px;
  background: #fff;
  box-shadow: 0px 4px 13px 0px rgba(24, 35, 51, 0.15);
  padding: 30px 36px 36px 36px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 23px;
  display: none;
}

@media only screen and (max-width: 1300px) {
  .reviews__item {
    margin-bottom: 33px;
  }
}

@media only screen and (max-width: 767px) {
  .reviews__item {
    padding: 20px 25px 30px 25px;
    margin-bottom: 24px;
    flex-direction: column-reverse;
  }
}

.reviews__item:nth-child(1),
.reviews__item:nth-child(2),
.reviews__item:nth-child(3) {
  display: flex;
}

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

.reviews__items.active .reviews__item {
  display: flex;
}

.reviews__image {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 197px;
  min-width: 197px;
  margin-left: 54px;
  height: 240px;
}

@media only screen and (max-width: 991px) {
  .reviews__image {
    margin-left: 30px;
    margin-top: 54px;
  }
}

@media only screen and (max-width: 767px) {
  .reviews__image {
    min-width: auto;
    width: 100%;
    height: auto;
    min-height: 161px;
    margin-left: 0;
    margin-bottom: 24px;
    max-height: 161px;
    border-radius: 26px;
    overflow: hidden;
    margin-top: 0;
  }
}

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

.reviews__header {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}

@media only screen and (max-width: 767px) {
  .reviews__header {
    justify-content: space-between;
    margin-bottom: 15px;
  }
}

.reviews__name {
  font-size: 20px;
  font-weight: 600;
  margin-right: 15px;
}

@media only screen and (max-width: 767px) {
  .reviews__name {
    font-size: 16px;
  }
}

.reviews__date {
  font-size: 13px;
  color: #878f9b;
}

@media only screen and (max-width: 767px) {
  .reviews__date {
    font-size: 10px;
  }
}

.reviews__text {
  font-size: 14px;
  font-weight: 500;
}

@media only screen and (max-width: 767px) {
  .reviews__text {
    font-size: 12px;
  }
}

.reviews__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 218px;
  height: 60px;
  border-radius: 90px;
  background: var(--1, linear-gradient(180deg, #6ea8ff 0%, #2b5dd1 100%));
  color: #fff;
  cursor: pointer;
  font-size: 20px;
  font-weight: 600;
  margin: 34px auto 0 auto;
}

@media only screen and (max-width: 1300px) {
  .reviews__btn {
    margin-top: 57px;
  }
}

@media only screen and (max-width: 767px) {
  .reviews__btn {
    margin-top: 26px;
  }
}

.reviews__btn:hover {
  background: var(--1, linear-gradient(180deg, #2b5dd1 0%, #6ea8ff 100%));
}

.service {
  padding: 50px 0 124px 0;
}

@media only screen and (max-width: 1300px) {
  .service {
    padding: 15px 0 85px 0;
  }
}

@media only screen and (max-width: 767px) {
  .service {
    padding-bottom: 52px;
  }
}

.service__content {
  display: none;
}

.service__content:first-child {
  display: block;
}

.service__content:nth-child(3) .service__items {
  grid-template-columns: 1fr 1fr;
}

@media only screen and (max-width: 1300px) {
  .service__content:nth-child(3) .service__items {
    -moz-column-gap: 22px;
    column-gap: 22px;
    row-gap: 22px;
  }
}

@media only screen and (max-width: 991px) {
  .service__content:nth-child(3) .service__items {
    grid-template-columns: 1fr;
  }
}

.service__content:nth-child(3) .service__item {
  display: flex;
}

.service__content:nth-child(3) .service__image {
  width: 288px;
  min-width: 288px;
  height: 100%;
}

@media only screen and (max-width: 1300px) {
  .service__content:nth-child(3) .service__image {
    min-width: 219px;
    width: 219px;
  }
}

@media only screen and (max-width: 767px) {
  .service__content:nth-child(3) .service__image {
    min-width: 146px;
    width: 146px;
  }
}

.service__content:nth-child(3) .service__image img {
  border-radius: 0;
  border-bottom-left-radius: 24px;
  border-top-left-radius: 24px;
}

@media only screen and (max-width: 1300px) {
  .service__content:nth-child(3) .service__block {
    padding: 20px;
  }
}

.service__items {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  -moz-column-gap: 29px;
  column-gap: 29px;
  row-gap: 29px;
}

@media only screen and (max-width: 1300px) {
  .service__items {
    grid-template-columns: 1fr 1fr 1fr;
    -moz-column-gap: 30px;
    column-gap: 30px;
    row-gap: 26px;
  }
}

@media only screen and (max-width: 991px) {
  .service__items {
    grid-template-columns: 1fr 1fr;
  }
}

@media only screen and (max-width: 767px) {
  .service__items {
    grid-template-columns: 1fr;
    row-gap: 20px;
  }
}

.service__item {
  border-radius: 24px;
  background: #fff;
  box-shadow: 0px 4px 13px 0px rgba(24, 35, 51, 0.15);
}

@media only screen and (max-width: 767px) {
  .service__item {
    display: flex;
  }
}

.service__image {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 207px;
}

@media only screen and (max-width: 767px) {
  .service__image {
    min-width: 140px;
    width: 140px;
    height: auto;
  }
}

.service__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
}

@media only screen and (max-width: 767px) {
  .service__image img {
    border-top-right-radius: 0;
    border-bottom-left-radius: 24px;
  }
}

.service__block {
  padding: 15px 24px 25px 33px;
}

@media only screen and (max-width: 767px) {
  .service__block {
    padding: 20px;
  }
}

.service__name {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 25px;
  height: 40px;
  display: flex;
  align-items: center;
}

@media only screen and (max-width: 767px) {
  .service__name {
    font-size: 14px;
    margin-bottom: 20px;
  }
}

.service__text {
  font-size: 12px;
  font-weight: 500;
}

@media only screen and (max-width: 767px) {
  .service__text {
    font-size: 11px;
  }
}

.gallery {
  padding: 50px 0 124px 0;
}

@media only screen and (max-width: 1300px) {
  .gallery {
    padding: 15px 0 85px 0;
  }
}

@media only screen and (max-width: 767px) {
  .gallery {
    padding-bottom: 52px;
  }
}

.gallery__content {
  display: none;
}

.gallery__content:first-child {
  display: block;
}

.gallery__items {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  -moz-column-gap: 8px;
  column-gap: 8px;
  row-gap: 8px;
}

@media only screen and (max-width: 1300px) {
  .gallery__items {
    -moz-column-gap: 6px;
    column-gap: 6px;
    row-gap: 6px;
  }
}

@media only screen and (max-width: 767px) {
  .gallery__items {
    grid-template-columns: 1fr 1fr;
    -moz-column-gap: 5px;
    column-gap: 5px;
    row-gap: 5px;
  }
}

.gallery__item {
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.gallery .carousel__tab {
  font-size: 16px;
}

@media only screen and (max-width: 1300px) {
  .gallery .carousel__tab {
    padding: 0 30px 15px 30px;
  }
}

@media only screen and (max-width: 767px) {
  .gallery .carousel__tab {
    font-size: 14px;
    padding: 0 10px 10px 10px;
  }
}

.police {
  padding: 30px 0 50px 0;
}

@media only screen and (max-width: 1300px) {
  .police {
    padding: 40px 0 88px 0;
  }
}

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

.police__content {
  font-size: 16px;
  font-weight: 500;
}

@media only screen and (max-width: 991px) {
  .police__content {
    font-size: 14px;
  }
}

.police__content p {
  margin: 20px 0;
}

@media only screen and (max-width: 991px) {
  .police__content p {
    margin: 15px 0;
  }
}

.police__content h1,
.police__content h2,
.police__content h3 {
  font-size: 32px;
  margin: 32px 0;
  font-weight: 700;
}

@media only screen and (max-width: 991px) {

  .police__content h1,
  .police__content h2,
  .police__content h3 {
    font-size: 24px;
    margin: 25px 0;
  }
}

.police__content h4,
.police__content h5,
.police__content h6 {
  font-size: 24px;
  margin: 20px 0;
  margin-bottom: 20px;
}

@media only screen and (max-width: 991px) {

  .police__content h4,
  .police__content h5,
  .police__content h6 {
    font-size: 18px;
  }
}

.modal {
  border-radius: 30px;
  background: #fff;
  max-width: 632px;
  margin: 0 auto;
  display: none;
  padding: 40px;
}

@media only screen and (max-width: 767px) {
  .modal {
    padding: 30px 20px;
  }
}

.modal__title {
  text-align: center;
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
}

@media only screen and (max-width: 767px) {
  .modal__title {
    font-size: 20px;
  }
}

.modal__text {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 30px;
  text-align: center;
}

@media only screen and (max-width: 767px) {
  .modal__text {
    font-size: 14px;
    margin-bottom: 15px;
  }
}

.modal__btn {
  width: 125px;
  margin: 0 auto;
}

.modal .fancybox-button {
  display: none;
}

.hashtag__items {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px 25px;
}

@media only screen and (max-width: 1300px) {
  .hashtag__items {
    gap: 10px;
  }
}

@media only screen and (max-width: 991px) {
  .hashtag__items {
    gap: 5px;
  }
}

.hashtag__item {
  display: flex;
  align-items: center;
  font-size: 16px;
  color: #3366d7;
  border-radius: 10px;
  background: #eff5ff;
  padding: 19px 20px;
  white-space: nowrap;
  font-weight: 600;
}

@media only screen and (max-width: 1300px) {
  .hashtag__item {
    font-size: 14px;
    padding: 15px;
  }
}

@media only screen and (max-width: 991px) {
  .hashtag__item {
    font-size: 10px;
    padding: 11px 7px;
  }
}

.hashtag__item img {
  margin-left: 6px;
}

.hashtag__item.hide {
  display: none;
}

.living__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 64px;
}

@media only screen and (max-width: 991px) {
  .living__top {
    margin-bottom: 27px;
    display: block;
  }
}

@media only screen and (max-width: 991px) {
  .living__title {
    margin-bottom: 21px;
    text-align: center;
  }
}

.living__tabs {
  display: flex;
  align-items: center;
}

.living__content {
  display: none;
}

.living__content.active {
  display: block;
}

.living__tab {
  width: auto;
  font-size: 18px;
  padding: 0 55px 10px;
}

@media only screen and (max-width: 1300px) {
  .living__tab {
    padding: 0 25px 10px;
  }
}

@media only screen and (max-width: 991px) {
  .living__tab {
    font-size: 12px;
    padding: 0 0 10px;
    width: 50%;
  }
}

.living__labels {
  display: flex;
  align-items: center;
  gap: 77px;
}

@media only screen and (max-width: 1300px) {
  .living__labels {
    gap: 38px;
  }
}

@media only screen and (max-width: 991px) {
  .living__labels {
    gap: 65px;
  }
}

.living__label {
  font-size: 16px;
  color: #878f9b;
}

@media only screen and (max-width: 1300px) {
  .living__label {
    font-size: 14px;
  }
}

@media only screen and (max-width: 991px) {
  .living__label {
    font-size: 12px;
  }
}

.living__table {
  margin-top: 13px;
}


@media only screen and (max-width: 991px) {
  .living__information {
    margin-right: -20px;
  }

}

@media only screen and (max-width: 991px) {
  .living__table {
    overflow: auto;
    padding-bottom: 20px;
   
  }

  .living__table::-webkit-scrollbar {
    border-radius: 10px;
    background: var(--grey, #C7CFDB);
    height: 4px;
  }

  .living__table::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background: var(--1, linear-gradient(180deg, #6EA8FF 0%, #2B5DD1 100%));
    height: 4px;
  }
}

.living__items {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  justify-content: space-between;
  align-items: center;
  border: 1px solid #c7cfdb;
  border-bottom: none;
}

@media only screen and (max-width: 991px) {
  .living__items {
    border: none !important;
  }
}

.living__items:last-child {
  border-bottom: 1px solid #c7cfdb;
}

@media only screen and (max-width: 991px) {}

.living__logo {
  height: 44px;
}

.living__item {
  height: 100%;
  padding: 20px 0;
  text-align: center;
  border-right: 1px solid #c7cfdb;
}


@media only screen and (max-width: 991px) {
  .living__item {
    min-width: 190px;
    border-top: 1px solid #c7cfdb;
    padding: 15px 0;
  }

  .living__item.category {
    border-bottom: 1px solid #c7cfdb;
  }
}


.living__item:last-child {
  border-right: none;
}


.living__item.border {
  border-right: 1px solid #c7cfdb;
}

.living__item:first-child {
  padding-left: 26px;
  text-align: left;
}



@media only screen and (max-width: 1300px) {
  .living__item:first-child {
    padding-left: 16px;
  }
}

@media only screen and (max-width: 991px) {
  .living__item:first-child {
    border-left: 1px solid #c7cfdb;
  }
}


.living__btn {
  height: 100%;
  display: flex;
  align-items: center;
  border-radius: 20px;
  background: linear-gradient(270deg, #f6cf6e 0%, #f2692d 100%);
  justify-content: center;
  color: #fff;
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  max-width: 165px;
  margin: 0 auto;
}

@media only screen and (max-width: 1300px) {
  .living__btn {
    max-width: 137px;
    height: 50px;
    font-size: 16px;
  }
}



.living__btn.mobile {
  display: none;
}

@media only screen and (max-width: 991px) {
  .living__btn.mobile {
    display: flex;
    margin-bottom: 14px;
  }
}

.living__desc {
  font-weight: 500;
  font-size: 16px;
}

.living__text {
  color: #182333;
  font-size: 24px;
  font-weight: 700;
}

@media only screen and (max-width: 991px) {
  .living__text {
    font-size: 20px;
  }
}

.living__text.mobile {
  display: none;
}

@media only screen and (max-width: 991px) {
  .living__text.mobile {
    display: block;
  }
}

.living__grids {
  margin-top: 30px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 30px;
}

@media only screen and (max-width: 991px) {
  .living__grids {
    margin-top: 0;
    margin-bottom: 30px;
    grid-template-columns: 1fr;
    grid-gap: 10px;
  }
}

.living__grids.mobile {
  display: none;
}

@media only screen and (max-width: 991px) {
  .living__grids.mobile {
    display: grid;
  }
}

@media only screen and (max-width: 991px) {
  .living__grids.desktop {
    display: none;
  }
}

.living__grid {
  border-radius: 10px;
  background: #eff5ff;
  padding: 19px 28px;
}

@media only screen and (max-width: 1300px) {
  .living__grid {
    padding: 19px;
  }
}

@media only screen and (max-width: 991px) {
  .living__grid {
    padding: 14px 14px 16px 18px;
  }
}

.living__grid span {
  color: #3366d7;
  font-size: 16px;
  font-weight: 600;
  display: block;
  margin-bottom: 13px;
}

.living__grid p {
  font-size: 14px;
  color: #3366d7;
}

@media only screen and (max-width: 991px) {
  .living__grid p {
    font-size: 12px;
  }
}

.order {
  margin-top: 60px;
}

.order__title {
  margin-bottom: 40px;
}

.order__items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 20px;
}

@media only screen and (max-width: 991px) {
  .order__items {
    grid-template-columns: 1fr;
  }
}

.order__item {
  border-radius: 10px;
  background: #fff;
  box-shadow: 0px 4px 13px 0px rgba(24, 35, 51, 0.15);
  margin-bottom: 10px;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  cursor: pointer;
}

.order__item:hover {
  background: #eff5ff;
}

.order__item:hover .order__icon svg {
  fill: #3c76cc;
}

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

.order__icon {
  display: flex;
  align-items: center;
  margin-right: 20px;
  flex-shrink: 0;
  transition: 400ms;
}

@media only screen and (max-width: 991px) {
  .order__icon {
    margin-right: 13px;
  }
}

.order__icon svg {
  width: 32px;
  height: 32px;
  fill: #c7cfdb;
  transition: 400ms;
}

.order__time {
  color: #182333;
  font-size: 15px;
  font-weight: 600;
  flex-shrink: 0;
  width: 90px;
  margin-right: 10px;
}

@media only screen and (max-width: 991px) {
  .order__time {
    font-size: 14px;
    width: 85px;
    margin-right: 5px;
  }
}

.order__text {
  font-size: 12px;
  font-weight: 500;
}

.order__text.bold {
  font-weight: 700;
}

.menu {
  margin-top: 90px;
}

@media only screen and (max-width: 991px) {
  .menu {
    margin-top: 58px;
  }
}

.menu__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 37px;
}

@media only screen and (max-width: 991px) {
  .menu__top {
    margin-bottom: 30px;
  }
}

.menu__weeks {
  display: flex;
  align-items: center;
}

.menu__week {
  border-radius: 20px;
  background: #eff5ff;
  height: 58px;
  width: 168px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 31px;
  color: #182333;
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
}

@media only screen and (max-width: 991px) {
  .menu__week {
    width: 111px;
    height: 38px;
    margin-right: 7px;
    border-radius: 10px;
    font-size: 14px;
  }
}

.menu__week.active {
  background: linear-gradient(180deg, #6ea8ff 0%, #2b5dd1 100%);
  color: #fff;
}

.menu__week:last-child {
  margin-right: 0;
}

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

@media only screen and (max-width: 991px) {
  .menu__tabs {
    overflow-x: scroll;
    margin-right: -20px;
    padding-right: 20px;
    margin-left: -20px;
    padding-left: 20px;
  }

  .menu__tabs::-webkit-scrollbar {
    display: none;
  }
}

@media only screen and (max-width: 991px) {
  .menu__tab {
    flex-shrink: 0;
    white-space: nowrap;
    width: 134px;
  }
}

.menu__content {
  display: none;
}

.menu__content.active {
  display: block;
}

.menu__aside {
  margin-top: 28px;
  display: none;
}

.menu__aside.active {
  display: block;
}

.menu__items {
  grid-template-columns: 1fr 1fr;
  display: grid;
}

@media only screen and (max-width: 991px) {
  .menu__items {
    grid-template-columns: 1fr;
  }
}

.menu__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 110px;
  border-bottom: 1px dashed #c7cfdb;
  border-right: 1px dashed #c7cfdb;
  padding: 0 20px 0 0;
}

@media only screen and (max-width: 991px) {
  .menu__item {
    border-right: none;
    min-height: auto;
    padding: 20px 0;
  }
}

.menu__item:nth-child(2n) {
  border-right: none;
  padding-left: 20px;
}

@media only screen and (max-width: 991px) {
  .menu__item:nth-child(2n) {
    padding-left: 0;
  }
}

.menu__label {
  width: 212px;
  color: #182333;
  font-size: 20px;
  font-weight: 700;
  flex-shrink: 0;
}

@media only screen and (max-width: 1300px) {
  .menu__label {
    margin-right: 45px;
    width: auto;
  }
}

@media only screen and (max-width: 991px) {
  .menu__label {
    font-size: 16px;
  }
}

.menu__list {
  flex-grow: 10;
  text-align: right;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0 20px;
}

.menu__list li {
  font-size: 14px;
  font-weight: 500;
  position: relative;
}

@media only screen and (max-width: 991px) {
  .menu__list li {
    font-size: 12px;
  }
}

.menu__list li:before {
  content: "";
  display: block;
  position: absolute;
  display: block;
  width: 6px;
  height: 6px;
  background: linear-gradient(180deg, #f6cf6e 0%, #f2692d 100%);
  top: 50%;
  transform: translateY(-50%);
  left: -13px;
  border-radius: 50%;
}

.price {
  margin-top: 75px;
  margin-bottom: 90px;
}

@media only screen and (max-width: 991px) {
  .price {
    margin-top: 55px;
    margin-bottom: 50px;
  }
}

.price__inner {
  border-radius: 24px;
  background: #fff;
  box-shadow: 0px 4px 13px 0px rgba(24, 35, 51, 0.15);
  padding: 55px 60px 57px;
}

@media only screen and (max-width: 1300px) {
  .price__inner {
    padding: 40px;
  }
}

@media only screen and (max-width: 991px) {
  .price__inner {
    padding: 23px 20px 38px;
  }
}

.price__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}

@media only screen and (max-width: 991px) {
  .price__top {
    flex-direction: column;
    justify-content: center;
    gap: 14px;
  }
}

.price__tabs {
  display: flex;
  align-items: center;
}

.price__tab {
  width: 136px;
}

@media only screen and (max-width: 991px) {
  .price__tab {
    width: 98px;
  }
}

.price__items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 40px;
}

@media only screen and (max-width: 991px) {
  .price__items {
    grid-template-columns: 1fr;
  }
}

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

@media only screen and (max-width: 991px) {
  .price__item--order {
    order: -1;
  }
}

.price__img {
  display: flex;
  align-items: center;
  justify-content: center;
}

.price__step[data-step-second] {
  display: none;
}

.price__label {
  display: block;
  font-size: 20px;
  color: #182333;
  font-weight: 600;
  margin-bottom: 30px;
}

@media only screen and (max-width: 991px) {
  .price__label {
    text-align: center;
    font-size: 18px;
    margin-bottom: 16px;
  }

  .price__label.mobile {
    display: none;
  }
}

@media only screen and (max-width: 991px) and (max-width: 991px) {
  .price__label.mobile {
    display: block;
  }
}

@media only screen and (max-width: 991px) and (max-width: 991px) {
  .price__label.desktop {
    display: none;
  }
}

.price__location {
  margin-bottom: 44px;
}

@media only screen and (max-width: 991px) {
  .price__location {
    margin-bottom: 40px;
  }
}

.price__location--items {
  display: flex;
  align-items: center;
}

@media only screen and (max-width: 991px) {
  .price__location--items {
    justify-content: center;
  }
}

.price__location--item {
  width: 177px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  background: #eff5ff;
  font-size: 18px;
  font-weight: 500;
  margin-right: 20px;
  cursor: pointer;
}

@media only screen and (max-width: 767px) {
  .price__location--item {
    height: 38px;
    width: 100%;
    max-width: 158px;
    font-size: 14px;
    border-radius: 10px;
  }
}

.price__location--item.active {
  background: linear-gradient(180deg, #6ea8ff 0%, #2b5dd1 100%);
  color: #fff;
}

.price__location--item:last-child {
  margin-right: 0;
}

.price__info--items {
  display: grid;
  grid-template-columns: 320px 1fr;
  grid-gap: 35px 30px;
}

@media only screen and (max-width: 1300px) {
  .price__info--items {
    grid-template-columns: 1fr 1fr;
    grid-gap: 35px 22px;
  }
}

@media only screen and (max-width: 767px) {
  .price__info--items {
    grid-template-columns: 1fr;
    grid-gap: 15px;
  }
}

.price__info .field__choose {
  position: relative;
  cursor: pointer;
}

.price__info .field__choose.active img {
  transform: rotate(180deg);
}

.price__info .field__choose img {
  position: absolute;
  top: 22px;
  right: 20px;
  transition: 300ms;
}

.price__info .field__choose input {
  cursor: pointer;
}

.price__info .field__dropdown {
  position: absolute;
  border-radius: 10px;
  border: 1px solid #c7cfdb;
  left: 0;
  padding: 17px;
  width: 100%;
  background: #fff;
  z-index: 10;
  top: 105%;
  display: none;
}

.price__info .field__dropdown.active {
  display: block;
}

.price__info .field__dropdown span {
  display: block;
  margin-bottom: 13px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
}

.price__info .field__dropdown span:last-child {
  margin-bottom: 0;
}

.price__info--item {
  position: relative;
}

.price__info--item.wide {
  grid-column: span 2;
}

@media only screen and (max-width: 767px) {
  .price__info--item.wide {
    grid-column: span 1;
  }
}

.price__info--item input {
  width: 100%;
  height: 50px;
  border-radius: 10px;
  border: 1px solid #c7cfdb;
  background: #fff;
  padding-left: 17px;
  font-size: 16px;
  font-weight: 500;
  color: #182333;
}

.price .field__label {
  font-size: 14px;
  font-weight: 500;
  display: block;
  margin-bottom: 8px;
}

.price__state .checkbox {
  margin-bottom: 16px;
}

.price__state .checkbox:last-child {
  margin-bottom: 10px;
}

.price__state .checkbox__text {
  font-size: 14px;
}

.price__state .price__label {
  margin-bottom: 20px;
}

.price__area textarea {
  resize: none;
  width: 100%;
  min-height: 120px;
  border-radius: 10px;
  border: 1px solid var(--grey, #c7cfdb);
  background: #fff;
  padding: 17px;
}

.price__btn {
  border: none;
  max-width: 295px;
  margin: 0 auto;
  margin-top: 40px;
}

.price__button {
  width: 195px;
  border: none;
  margin-top: 44px;
}

@media only screen and (max-width: 991px) {
  .price__button {
    margin: 0 auto;
    margin-top: 29px;
  }
}

.choose {
  margin-bottom: 64px;
}
.choose__text ul {
	margin:0 0 15px 45px;
	list-style: inherit;
}
.choose__text p, .choose__text li {
  font-size: 14px;
  margin-bottom: 15px;
  font-weight: 500;
  line-height: 1.3;
}
.choose__text li {margin:3px 0;}
.choose__text p:last-child {
  margin-bottom: 0;
}

.choose__title {
  font-size: 24px;
  margin-top: 48px;
  margin-bottom: 20px;
}

@media only screen and (max-width: 991px) {
  .choose__title {
    font-size: 20px;
    margin-top: 40px;
  }
}

.choose__label {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 40px;
}

.choose__items {
  margin-bottom: 67px;
}

@media only screen and (max-width: 991px) {
  .choose__items {
    margin-bottom: 30px;
  }
}

.choose__item {
  border-radius: 18px;
  background: #fff;
  box-shadow: 0px 4px 13px 0px rgba(24, 35, 51, 0.15);
  padding: 20px;
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

@media only screen and (max-width: 991px) {
  .choose__item {
    align-items: flex-start;
  }
}

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

.choose__icon {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  margin-right: 23px;
}

@media only screen and (max-width: 991px) {
  .choose__icon {
    width: 33px;
    height: 33px;
  }
}

.choose__desc {
  font-size: 16px;
  font-weight: 500;
}

@media only screen and (max-width: 991px) {
  .choose__desc {
    font-size: 14px;
  }
}

.aspect {
  margin-bottom: 86px;
}

@media only screen and (max-width: 1300px) {
  .aspect {
    margin-bottom: 65px;
  }
}

@media only screen and (max-width: 991px) {
  .aspect {
    margin-bottom: 53px;
  }
}

.aspect__title {
  font-size: 24px;
  margin-bottom: 55px;
}

@media only screen and (max-width: 991px) {
  .aspect__title {
    font-size: 20px;
    margin-bottom: 26px;
  }
}

.aspect__items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px 19px;
}

@media only screen and (max-width: 991px) {
  .aspect__items {
    grid-template-columns: 1fr;
    grid-gap: 15px;
  }
}

.aspect__item {
  border-radius: 18px;
  background: #fff;
  box-shadow: 0px 4px 13px 0px rgba(24, 35, 51, 0.15);
  padding: 20px;
  display: flex;
  align-items: center;
}

.aspect__img {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  margin-right: 72px;
}

@media only screen and (max-width: 1300px) {
  .aspect__img {
    margin-right: 30px;
  }
}

@media only screen and (max-width: 991px) {
  .aspect__img {
    width: 80px;
    height: 80px;
    margin-right: 26px;
  }
}

.aspect__text {
  font-size: 14px;
  font-weight: 500;
}

@media only screen and (max-width: 1300px) {
  .aspect__text {
    font-size: 13px;
  }
}

@media only screen and (max-width: 991px) {
  .aspect__text {
    font-size: 12px;
  }
}

.aspect__desc {
  border-radius: 18px;
  background: #eff5ff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 47px;
  color: #3366d7;
  font-size: 16px;
  font-weight: 500;
}

@media only screen and (max-width: 1300px) {
  .aspect__desc {
    font-size: 15px;
    padding: 20px 34px;
  }
}

@media only screen and (max-width: 991px) {
  .aspect__desc {
    font-size: 14px;
  }
}

.faq {
  margin-bottom: 74px;
}

@media only screen and (max-width: 991px) {
  .faq {
    margin-bottom: 50px;
  }
}

.faq__title {
  font-size: 24px;
  margin-bottom: 40px;
}

@media only screen and (max-width: 991px) {
  .faq__title {
    margin-bottom: 35px;
  }
}

.faq__item {
  border-radius: 10px;
  background: #fff;
  box-shadow: 0px 4px 13px 0px rgba(24, 35, 51, 0.15);
  margin-bottom: 20px;
}

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

.faq__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  padding: 18px 25px;
}

.faq__head.active .faq__text {
  color: #3366d7;
}

.faq__head.active .faq__arrow svg {
  transform: rotate(180deg);
  fill: #3366d7;
}

.faq__text {
  font-size: 20px;
  font-weight: 600;
}

@media only screen and (max-width: 991px) {
  .faq__text {
    font-size: 16px;
    margin-right: 30px;
  }
}

.faq__arrow {
  display: flex;
  align-items: flex-start;
}

.faq__arrow svg {
  width: 25px;
  height: 25px;
  fill: #182333;
  transition: 400ms;
}

.faq__body {
  padding: 0 25px 18px;
  display: none;
}

.faq__body ul li {
  list-style-type: disc;
  margin-left: 20px;
  font-size: 16px;
  color: #878f9b;
  font-weight: 500;
  margin-bottom: 24px;
}

@media only screen and (max-width: 991px) {
  .faq__body ul li {
    font-size: 14px;
    margin-bottom: 12px;
  }
}

.faq__body ul li:last-child {
  margin-bottom: 0;
}

.faq__desc {
  font-size: 16px;
  color: #878f9b;
  margin-bottom: 24px;
  font-weight: 500;
}

@media only screen and (max-width: 991px) {
  .faq__desc {
    font-size: 14px;
    margin-bottom: 10px;
  }
}

.footer {
  padding-bottom: 37px;
  margin-top: 31px;
}

@media only screen and (max-width: 991px) {
  .footer {
    padding-bottom: 24px;
    margin-top: 60px;
  }
}

@media only screen and (max-width: 991px) {
  .footer__inner {
    position: relative;
  }
}

.footer__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

@media only screen and (max-width: 1300px) {
  .footer__logo {
    height: 44px;
  }
}

@media only screen and (max-width: 991px) {
  .footer__logo {
    height: 40px;
    grid-column: span 2;
  }
}

.footer__copy {
  max-width: 499px;
  font-size: 12px;
  font-weight: 500;
}

@media only screen and (max-width: 1300px) {
  .footer__copy {
    max-width: 450px;
  }
}

.footer__information {
  display: grid;
  grid-template-columns: 194px 264px 222px 340px;
  justify-content: space-between;
  align-items: flex-start;
}

@media only screen and (max-width: 1300px) {
  .footer__information {
    grid-template-columns: 145px 264px 222px 250px;
  }
}

@media only screen and (max-width: 991px) {
  .footer__information {
    grid-template-columns: 1.5fr 1fr;
    grid-gap: 35px;
  }
}

.footer__nav li {
  margin-bottom: 6px;
  line-height: 1.1;
}

.footer__nav li:last-child {
  margin-bottom: 0;
}

.footer__nav li a {
  font-size: 13px;
  font-weight: 500;
}

@media only screen and (max-width: 767px) {
  .footer__nav li a {
    font-size: 12px;
  }
}

.footer__nav li a:hover {
  color: #f2692d;
}

.footer__nav--item {
  display: flex;
  align-items: center;
  margin-top: 10px;
}

.footer__nav--item span {
  font-size: 13px;
  font-weight: 500;
  margin-left: 10px;
}

@media only screen and (max-width: 767px) {
  .footer__nav--item span {
    font-size: 12px;
  }
}

.footer__label {
  display: block;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 14px;
}

@media only screen and (max-width: 767px) {
  .footer__label {
    font-size: 13px;
    margin-bottom: 10px;
  }
}

.footer__aside {
  display: flex;
  margin-top: 50px;
  align-items: center;
  justify-content: space-between;
}

@media only screen and (max-width: 1300px) {
  .footer__aside {
    align-items: flex-end;
  }
}

@media only screen and (max-width: 991px) {
  .footer__aside {
    justify-content: flex-start;
    margin-top: 30px;
  }
}

.footer__social {
  display: flex;
  align-items: center;
  margin-right: 81px;
}

@media only screen and (max-width: 1300px) {
  .footer__social {
    margin-right: 26px;
  }
}

@media only screen and (max-width: 991px) {
  .footer__social {
    position: absolute;
    right: 0;
    top: 0;
    margin-right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}

.footer__social span {
  font-weight: 500;
  font-size: 13px;
  display: block;
  margin-right: 11px;
}

.footer__social ul {
  display: flex;
  align-items: center;
}

.footer__social ul li {
  margin-right: 5px;
}

.footer__social ul li:last-child {
  margin-right: 0;
}

.footer__social ul li a {
  display: flex;
  align-items: center;
}

@media only screen and (max-width: 767px) {
  .footer__social ul li a {
    width: 30px;
    height: 30px;
  }
}

.footer__call {
  font-weight: 600;
  font-size: 15px;
  display: flex;
  align-items: center;
}

@media only screen and (max-width: 1300px) {
  .footer__call {
    flex-direction: column;
    gap: 6px;
  }
}

@media only screen and (max-width: 991px) {
  .footer__call {
    /*position: absolute;*/
    right: 0;
    bottom: 86px;
    gap: 23px;
	margin-top:20px;  
  }
}

.footer__call span {
  flex-shrink: 0;
  margin-right: 10px;
}

@media only screen and (max-width: 1300px) {
  .footer__call span {
    margin-right: 0;
  }
}

.footer__btn {
  font-size: 14px;
  font-weight: 600;
  width: 159px;
  height: 44px;
}

.footer__info {
  display: flex;
  align-items: center;
  margin-left: 23px;
}

.footer__info li {
  margin-right: 10px;
}

.footer__info li a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
}
.pricetable table {border-collapse:collapse;}
.pricetable td {padding:12px;border:1px #f2f2f2 solid;}

.subtext {margin:25px auto;font-size: 16px;  font-weight: 500;}
.subtext p {margin:0 0 15px;}
.subtext h2 {
	font-size: 24px;
	margin-bottom: 26px;
	font-weight: 700;
}
.subtext ul {list-style:initial;margin:0 0 15px 25px;}
.subtext h3 {
	font-size: 18px;
	margin-bottom: 26px;
	font-weight: 700;
}

.showcase {
	background: url(https://radostjizni.ru/wp-content/uploads/2024/12/3.png) 50% 50% no-repeat;
	background-size: cover;
}

.choose ul li a {display:inline;}

@media (max-width: 800px) {
	.pricetable {overflow:auto;}
	.pricetable table {width: 100%!important;}
}

.advantages-grid {
	display: grid;
	grid-template-columns:repeat(5,1fr);
	gap:15px;
}
.advantages-grid__box {
	border-radius: 30px;
	background: #FFF;
	box-shadow: 3px 4px 13.9px 0px #E4E4E8;
	text-align:center;
	padding:40px 15px;
	font-size:16px;
	line-height:22px;
}
.advantages-grid__box-icon {
	color:#F16A2E;
	margin:0 0 15px;
}
.advantages-grid__box-icon svg {
	display: inline-block;vertical-align:top;
}
.advantages-grid__box:hover{
	color:#fff;
	background: linear-gradient(180deg, #68A2FB 0%, #2F62D4 100%);
	box-shadow: 3px 4px 13.9px 0px #E4E4E8;
}
.advantages-grid__box:hover .advantages-grid__box-icon{
	color:#fff;
}

.board__content {flex:1}

.employ-grid {
	display: grid;
	grid-template-columns:repeat(2,1fr);
	gap:50px;
}
.employ-grid__box {
	background: #FFFFFF;
	box-shadow: 3px 4px 13.9px #E4E4E8;
	border-radius: 30px;
	display:flex;
}
.employer-img {
	width:45%;
	max-width:45%;
}
.employer-img img {
	border-radius:30px 0 0 30px;
	width:100%;
	height:100%;
	object-fit:cover;
	min-height:100%;
	min-width:0;
}
.employer-info {
	display:flex;
	padding:20px;
	flex-direction:column;
	justify-content: space-around;
	flex:1;
}
.employer-text {
	padding:40px 0 0;
	margin:0 0 25px;
	font-size:16px;
	background:url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjMiIGhlaWdodD0iMTkiIHZpZXdCb3g9IjAgMCAyMyAxOSIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTkuODY0OCAwTDYuMzI2MzQgMTMuNDExOEw1LjE0Njg1IDguMzgyMzVDNi42ODM3NiA4LjM4MjM1IDcuOTM0NzMgOC44NDgwNCA4Ljg5OTc3IDkuNzc5NDFDOS44NjQ4IDEwLjcxMDggMTAuMzQ3MyAxMS45OTYxIDEwLjM0NzMgMTMuNjM1M0MxMC4zNDczIDE1LjIzNzMgOS44NDY5MyAxNi41NDEyIDguODQ2MTUgMTcuNTQ3MUM3Ljg4MTEyIDE4LjUxNTcgNi42NjU4OSAxOSA1LjIwMDQ3IDE5QzMuNjk5MyAxOSAyLjQ0ODMzIDE4LjUxNTcgMS40NDc1NSAxNy41NDcxQzAuNDgyNTE3IDE2LjU0MTIgMCAxNS4yMzczIDAgMTMuNjM1M0MwIDEzLjE1MSAwLjAzNTc0MTkgMTIuNjg1MyAwLjEwNzIyNiAxMi4yMzgyQzAuMTc4NzEgMTEuNzUzOSAwLjMyMTY3OCAxMS4xOTUxIDAuNTM2MTMgMTAuNTYxOEMwLjc1MDU4MyA5LjkyODQzIDEuMDU0MzkgOS4wOTAxOSAxLjQ0NzU1IDguMDQ3MDZMNC41NTcxMSAwSDkuODY0OFpNMjIuNTE3NSAwTDE4Ljk3OSAxMy40MTE4TDE3Ljc5OTUgOC4zODIzNUMxOS4zMzY0IDguMzgyMzUgMjAuNTg3NCA4Ljg0ODA0IDIxLjU1MjQgOS43Nzk0MUMyMi41MTc1IDEwLjcxMDggMjMgMTEuOTk2MSAyMyAxMy42MzUzQzIzIDE1LjIzNzMgMjIuNDk5NiAxNi41NDEyIDIxLjQ5ODggMTcuNTQ3MUMyMC41MzM4IDE4LjUxNTcgMTkuMzE4NiAxOSAxNy44NTMxIDE5QzE2LjM1MiAxOSAxNS4xMDEgMTguNTE1NyAxNC4xMDAyIDE3LjU0NzFDMTMuMTM1MiAxNi41NDEyIDEyLjY1MjcgMTUuMjM3MyAxMi42NTI3IDEzLjYzNTNDMTIuNjUyNyAxMy4xNTEgMTIuNjg4NCAxMi42ODUzIDEyLjc1OTkgMTIuMjM4MkMxMi44MzE0IDExLjc1MzkgMTIuOTc0NCAxMS4xOTUxIDEzLjE4ODggMTAuNTYxOEMxMy40MDMzIDkuOTI4NDMgMTMuNzA3MSA5LjA5MDE5IDE0LjEwMDIgOC4wNDcwNkwxNy4yMDk4IDBIMjIuNTE3NVoiIGZpbGw9IiMyRjYyRDQiLz4KPC9zdmc+Cg==) 0 0 no-repeat;
}
.employer-workingtime {
	font-weight:300;
	font-size:16px;
	color:#2F62D4;
}
.employer-name {
	margin:65px 0 15px 0;
	font-weight:700;
	font-size: 18px;
}
.employer-job {
	font-weight:300;
	font-size:14px;
}
.employ-list {
	margin:25px 0 50px;
	display:flex;
	flex-wrap:wrap;
	gap:20px
}
.employ-list button {
	cursor: pointer;
	border: 0;
	background: #fff;
	padding: 20px 26px;
	box-shadow: 3px 4px 14px #E4E4E8;
	border-radius: 30px;
	min-width: 150px;
	font-size: 16px;
}
.employ-list button.mixitup-control-active {
	color:#fff;
	background: linear-gradient(180deg, #68A2FB 0%, #2F62D4 100%);
}

.info-grid {
	display: grid;
	grid-template-columns:repeat(3,1fr);
	gap:50px;
	margin:40px auto;
}
.info-grid__box-img a, .info-grid__box-img img {
	display: inline-block;
	vertical-align:top;
	width:100%;
}
.info-grid__box-img img {
	width:100%;
	height:285px;
	border-radius:30px;
	object-fit:cover;
	box-shadow:3px 4px 14px #E4E4E8;
}
.info-grid__box-name {
	margin:25px 0;
	font-weight:bold;
}
.info-grid__box-name a {
	color:#243551;
	text-decoration:none;
}
.info-grid__box-links a {
	display: inline-block;
	vertical-align:top;
	color:#fff;
	background: linear-gradient(180deg, #68A2FB 0%, #2F62D4 100%);
	box-shadow: 3px 4px 14px #E4E4E8;
	border-radius: 30px;
	padding:20px 40px;
}
.documents {
	display: grid;
	grid-template-columns:repeat(3,1fr);
	gap:50px;
	margin:40px auto;
}
.document-box {
	border-radius:30px;
	box-shadow:3px 4px 14px #E4E4E8;
	padding:25px;
	display:flex;
	flex-direction:column;
	gap:15px;
}

.document-box__link {
	margin-top:auto;
	text-align:right;
	background:url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIHZpZXdCb3g9IjAgMCA0OCA0OCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTM5LjgwNiAxNy4xNzJDMzkuNzExMiAxNi45NTQ5IDM5LjU3ODQgMTYuNzU2NSAzOS40MTQgMTYuNTg2TDI3LjQxNCA0LjU4NkMyNy4yNDM1IDQuNDIxNTYgMjcuMDQ1MSA0LjI4ODgyIDI2LjgyOCA0LjE5NEMyNi43NjggNC4xNjYgMjYuNzA0IDQuMTUgMjYuNjQgNC4xMjhDMjYuNDcyNyA0LjA3MTA1IDI2LjI5ODQgNC4wMzY3NSAyNi4xMjIgNC4wMjZDMjYuMDggNC4wMjIgMjYuMDQyIDQgMjYgNEgxMkM5Ljc5NCA0IDggNS43OTQgOCA4VjQwQzggNDIuMjA2IDkuNzk0IDQ0IDEyIDQ0SDM2QzM4LjIwNiA0NCA0MCA0Mi4yMDYgNDAgNDBWMThDNDAgMTcuOTU4IDM5Ljk3OCAxNy45MiAzOS45NzQgMTcuODc2QzM5Ljk2NDIgMTcuNjk5NCAzOS45Mjk5IDE3LjUyNTEgMzkuODcyIDE3LjM1OEMzOS44NTIgMTcuMjk0IDM5LjgzNCAxNy4yMzIgMzkuODA2IDE3LjE3MlpNMzMuMTcyIDE2SDI4VjEwLjgyOEwzMy4xNzIgMTZaTTEyIDQwVjhIMjRWMThDMjQgMTguNTMwNCAyNC4yMTA3IDE5LjAzOTEgMjQuNTg1OCAxOS40MTQyQzI0Ljk2MDkgMTkuNzg5MyAyNS40Njk2IDIwIDI2IDIwSDM2TDM2LjAwNCA0MEgxMloiIGZpbGw9InVybCgjcGFpbnQwX2xpbmVhcl80M180NjUpIi8+CjxwYXRoIGQ9Ik0xNiAyNEgzMlYyOEgxNlYyNFpNMTYgMzJIMzJWMzZIMTZWMzJaTTE2IDE2SDIwVjIwSDE2VjE2WiIgZmlsbD0idXJsKCNwYWludDFfbGluZWFyXzQzXzQ2NSkiLz4KPGRlZnM+CjxsaW5lYXJHcmFkaWVudCBpZD0icGFpbnQwX2xpbmVhcl80M180NjUiIHgxPSIyNCIgeTE9IjQiIHgyPSIyNCIgeTI9IjQ0IiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSI+CjxzdG9wIHN0b3AtY29sb3I9IiM2OEEyRkIiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMkY2MkQ0Ii8+CjwvbGluZWFyR3JhZGllbnQ+CjxsaW5lYXJHcmFkaWVudCBpZD0icGFpbnQxX2xpbmVhcl80M180NjUiIHgxPSIyNCIgeTE9IjE2IiB4Mj0iMjQiIHkyPSIzNiIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiPgo8c3RvcCBzdG9wLWNvbG9yPSIjNjhBMkZCIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzJGNjJENCIvPgo8L2xpbmVhckdyYWRpZW50Pgo8L2RlZnM+Cjwvc3ZnPgo=) 0 50% no-repeat;
	padding:0 0 0 55px;
	min-height:45px;
}
.document-box__link a {
	display: inline-block;
	vertical-align:top;
	color:#fff;
	background: linear-gradient(180deg, #68A2FB 0%, #2F62D4 100%);
	box-shadow: 3px 4px 14px #E4E4E8;
	border-radius: 30px;
	padding:20px 40px;
}
.article-grid {
	display:grid;
	grid-template-columns:1fr 1fr;
	gap:50px;
	align-items:center;
	margin:50px auto;
}
.article-grid__left img {
	display: inline-block;
	vertical-align:top;
	max-width:100%;
	border-radius:30px;
	height:auto;
}


@media (max-width: 800px) {
	.advantages-grid {
		grid-template-columns:repeat(3,1fr);
	}
	.info-grid, .documents {
		grid-template-columns:repeat(2,1fr);
	}
}

@media (max-width: 580px) {
	.advantages-grid {
		grid-template-columns:repeat(2,1fr);
	}
	.advantages-grid__box {
		font-size:14px;
	}
	.employ-grid, .info-grid, .documents {
		grid-template-columns:repeat(1,1fr);
		gap:20px;
	}
	.employ-list {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 8px 20px;
	}
	.employ-list button {
		min-width:0;
		font-size:12px;
		padding:10px 14px;
	}
	.employ-grid__box {
		flex-direction:column;
	}
	.employer-img {
		width:100%;
		max-width:100%
	}
	.employer-img img {
		border-radius:30px 30px 0 0;
		/*height:200px;
		object-position:50% 0;*/
	}
	 .info-grid {
		 text-align:center;
	 }
	 .info-grid__box-img img {
		 height:185px;
	 }
	 .info-grid__box-name {
		 margin:10px 0;
	 }
	 .article-grid {
		 grid-template-columns: 1fr;
	 }
	 .article-grid__left img {height:auto}
}


.single-post .choose__label p{
	margin-top:10px;
	margin-bottom:10px;
}
.single-post .choose__label h2{
	margin-top:20px;
	margin-bottom:20px;
}
.single-post .choose ul {
	margin: 20px 0px 20px 0px;
}
.single-post .choose li {
	margin: 10px 0px 10px 0px;	
}
.single-post .choose ul li:before {
  content: "";
  display: inline-block;
  margin-right:10px;
  margin-bottom:4px;
  width: 6px;
  height: 6px;
  background: linear-gradient(180deg, #f6cf6e 0%, #f2692d 100%);
  border-radius: 50%;
}

.category-actions {text-align:center;margin-top:80px;}
.category-actions__box-name {margin:30px 0;font-weight:bold;font-size:18px;}
.category-actions__box {
	background: #ffffff;
	box-shadow: 0px 4px 13px rgba(24, 35, 51, 0.15);
	border-radius: 24px;
	padding:24px;
}
.category-actions__box-icon {
	display:flex;
	align-items:center;
	justify-content:center;
	font-weight:bold;
	font-size:40px;
	width:140px;
	height:140px;
	margin:-70px auto 0;
	border-radius:50%;
	color:#fff;
	background:#f37b38 url(data:image/svg+xml;base64,PHN2ZyBzdHlsZT0iZW5hYmxlLWJhY2tncm91bmQ6bmV3IDAgMCAyNCAyNDsiIHZlcnNpb249IjEuMSIgdmlld0JveD0iMCAwIDI0IDI0IiB4bWw6c3BhY2U9InByZXNlcnZlIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj48cGF0aCBkPSJNMjAuMiwxNi4yYzAtMC41LDAuMi0xLDAuNS0xLjRsMCwwYzAsMCwwLDAsMCwwYzEuNi0xLjYsMS42LTQuMSwwLTUuN2MtMC40LTAuNC0wLjYtMC45LTAuNi0xLjRjMC0yLjItMS44LTQtNC00ICAgYy0wLjUsMC0xLTAuMi0xLjQtMC42Yy0xLjYtMS42LTQuMS0xLjYtNS43LDBDOC44LDMuNiw4LjMsMy44LDcuOCwzLjhjLTIuMiwwLTQsMS44LTQsNGMwLDAuNS0wLjIsMS0wLjYsMS40ICAgYy0xLjYsMS42LTEuNiw0LjEsMCw1LjdjMC40LDAuNCwwLjYsMC45LDAuNiwxLjRjMCwyLjIsMS44LDQsNCw0YzAuNSwwLDEsMC4yLDEuNCwwLjZDMTAsMjEuNiwxMSwyMiwxMiwyMmMxLDAsMi4xLTAuNCwyLjgtMS4yICAgYzAuNC0wLjQsMC45LTAuNiwxLjQtMC42QzE4LjQsMjAuMiwyMC4yLDE4LjQsMjAuMiwxNi4yeiBNMTYuMiwxOC4yYy0xLjEsMC0yLjEsMC40LTIuOCwxLjJjLTAuOCwwLjgtMiwwLjgtMi44LDAgICBjLTAuOC0wLjgtMS44LTEuMi0yLjgtMS4yYy0xLjEsMC0yLTAuOS0yLTJjMC0xLjEtMC40LTIuMS0xLjItMi44Yy0wLjgtMC44LTAuOC0yLDAtMi44YzAuOC0wLjgsMS4yLTEuOCwxLjItMi44YzAtMS4xLDAuOS0yLDItMiAgIGMxLjEsMCwyLjEtMC40LDIuOC0xLjJDMTEsNC4yLDExLjUsNCwxMiw0YzAuNSwwLDEsMC4yLDEuNCwwLjZjMC44LDAuOCwxLjgsMS4yLDIuOCwxLjJjMS4xLDAsMiwwLjksMiwyYzAsMS4xLDAuNCwyLjEsMS4yLDIuOCAgIGMwLjgsMC44LDAuOCwyLDAsMi44bDAuNywwLjdsLTAuNy0wLjdjLTAuOCwwLjgtMS4yLDEuOC0xLjIsMi44QzE4LjIsMTcuMywxNy4zLDE4LjIsMTYuMiwxOC4yeiIgZmlsbD0iI2ZmZiIvPjwvc3ZnPg==) 50% 50% no-repeat;
}/*
.category-actions__box1 .category-actions__box-icon {
	background-color:#f4a654
}
.category-actions__box2 .category-actions__box-icon {
	background-color:#008053
}
.category-actions__box3 .category-actions__box-icon {
	background-color:#C35354
}*/

.board-aside__text ul {
	margin:0 0 15px 40px;
	list-style:initial;
}
.board-aside__text ul li {
	margin:0 0 5px;
	font-size: 16px;
}

.home .price, .page-id-406 .video {margin-bottom:0}
.home #advantages, .page-id-406 #reviews {padding-top:90px;}

#menu-kategorii-uslug {
	display: flex;
	  align-items: center;
	  justify-content: space-between;
	  border-bottom: 2px solid #c7cfdb;
	  margin: 35px 0;
}

#menu-kategorii-uslug li {
	text-align: center;
	font-size: 18px;
	color: #182333;
	position: relative;
	padding: 0 67px;
	height: 100%;
	padding-bottom: 15px;
	cursor: pointer;
}

#menu-kategorii-uslug li:before {
	content: "";
	display: block;
	position: absolute;
	background: linear-gradient(180deg, #6ea8ff 0%, #2b5dd1 100%);
	width: 100%;
	height: 6px;
	bottom: -3px;
	left: 0;
	opacity: 0;
}


#menu-kategorii-uslug li.current_page_item:before {
	opacity: 1;
}
#menu-kategorii-uslug li.current_page_item a {
	background: linear-gradient(180deg, #6ea8ff 0%, #2b5dd1 100%);
    background-clip: border-box;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}



.showcase.new_design{
	/*background: url("/wp-content/uploads/2024/09/group-24.jpg") 50% 50%;*/
	position:relative;
	max-height:660px;
	padding: 100px 0;
	background: url("../images/winter-bg.jpg") 50% 50% no-repeat;
	background-size:cover;
}
.showcase.new_design .showcase__inner{
	align-items: flex-end;	
}
.showcase.new_design .showcase__text{
    display: flex;
    flex-direction: column;
    gap: 20px;	
}
.showcase.new_design .showcase__title{
	margin-bottom:30px;
	font-size:26px
}
.showcase.new_design+.showcase-banner{
    margin-top: -46px;	
}
.showcase.new_design .showcase__text p{
    display: flex;
    align-items: center;
    gap: 26px;
    font-size: 22px;
    font-weight: 500;
}
.showcase.new_design .showcase__info{
    width: 50%;	
}
.showcase.new_design .showcase__img{
    width: 50%;
    justify-content: flex-end;
}
.showcase.new_design .showcase__img a{
	z-index:1
}
.showcase.new_design .showcase__img .bg_father{
    position: absolute;
    right: 0;
    height: 100%;
    width: 50%;
    top: 0;
    padding-left: 50px;
    /*object-fit: contain;*/
}
.header.new_designr{
	height:194px
}
.header.new_designr .header__nav li{
	margin-right:60px
}
.header.new_designr .site_local{
	font-size: 18px;
	font-weight: 500;
}
.header.new_designr .header__inner{
    margin: 40px 0 10px 0;	
}
.header.new_designr .header__btn{
    width: 270px;
    height: 52px;
    font-size: 20px;
    font-weight: 700;
}
.header.new_designr .search-field{
    padding: 16px 40px 16px 26px;
    border-radius: 100px;
    border: 1px solid #000;
    box-shadow: 3px 4px 13.9px 0px #E4E4E8;
    max-width: 355px;
    width: 100%;	
	
}

.header.new_designr .search-form{
    position: relative;
    display: flex;
    align-items: center;	
}
.header.new_designr .phonelink{
	display:flex;
	flex-direction:column;
	gap:6px
}
.header.new_designr .phonelink a{
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;	
    text-align: left;
}

.header.new_designr .search-submit{
	background-image:url(/wp-content/uploads/2024/09/ic_outline-search.png);
    border: none;
    background-color: transparent;
    font-size: 0;
    width: 34px;
    height: 34px;
	position:absolute;
	right:10px;
}
.header.new_designr .phons_mobs{
	display:none
}
.header.new_designr .header_bot{
    display: flex;
    justify-content: space-between;
	align-items:center
}
.header.new_designr .header__nav>li>a{
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
	padding: 30px 0;
}

.showcase.new_design {
	padding:0
}
.showcase__inner-bew {
	padding:100px 0;
	position:relative;
}
.showcase.new_design .showcase__img .bg_father {
	height:auto;top:auto;
	bottom:40px;
	right:40px;
}

.showcase.new_design .showcase__title h1 {
	font-size: 32px;
	font-weight: 600;
	margin:0 0 30px
}
.showcase__text-grid {
	display:grid;
	grid-template-columns:1fr 1fr;
	gap:25px;
	margin:0 0 30px;
}
.showcase__text-grid>div{
	border-radius: 20px;
background: rgba(255, 255, 255, 0.41);
backdrop-filter: blur(4.5px);
padding:15px 24px;
font-size: 16px;
font-weight: 500;
}
.showcase__text-grid-title {
	font-size: 20px;
	font-weight: 600;
	margin:0 0 10px
}
.showcase__text-grid-title span {
	color: #F16A2E;
}
.textbox {font-size:14px;}
.textbox p, .textbox ul, .textbox ol, .textbox h2, .textbox h3 {margin:0 0 15px;}
.textbox ul, .textbox ol {margin:0 0 15px 25px;list-style:initial;}

.reviews-buttons {
    display:flex;
    gap:10px;
    flex-wrap:wrap;
    margin:15px 0 25px 0;
}
.reviews-buttons button
{
    box-shadow:0px 4px 13px 0px rgba(24, 35, 51, 0.15);
    border:0;
    padding:12px 20px;
    font-size:14px;
    cursor:pointer;
    border-radius:10px;
    background:#fff;
    display:flex;
    align-items:center;
    gap:5px;
}
.reviews-buttons button.mixitup-control-active {
    background:#EFF5FF;
}
.reviews-buttons button img {
    max-width:100px;
}
.reviews-grid__box {
    display:block;
    padding:15px;
    border:10px;
    background:#fff;
    border-radius:10px;
    box-shadow:0px 4px 13px 0px rgba(24, 35, 51, 0.15);
}
.reviews-grid {
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
}
.reviews-grid__box-text {
    padding:10px;
    background:#fff;
    border-radius:5px;
    margin:10px 0 0;
}
.reviews-grid__box-head {
    display:grid;
    grid-template-columns:100px 1fr;
    gap:10px;
}
.reviews-grid__logo {
    width:100px;
    height:100px;
    border-radius:50%;
    background:#EFF5FF;
}
.reviews-grid__box-head img {
    width:100px;
    height:100px;
    object-fit:cover;
    border-radius:50%;
}
.reviews-grid__info-name {
    font-weight:bold;margin:0 0 5px;
}
.reviews-grid__info-date {
    font-size:12px;
}
.reviews-grid__box-link {
    margin:10px 0 0;
    font-size:14px;
}
.reviews-grid__info-rate {display:flex;gap:2px;}
.reviews-grid__info-rate span {display:block;width:20px;height:20px;min-width:20px;}
.reviews-grid__info-rate span.full {
    background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0icmdiYSgyNTUsMjA0LDAsMSkiPjxwYXRoIGQ9Ik0xMi4wMDA2IDE4LjI2TDQuOTQ3MTUgMjIuMjA4Mkw2LjUyMjQ4IDE0LjI3OTlMMC41ODc4OTEgOC43OTE4TDguNjE0OTMgNy44NDAwNkwxMi4wMDA2IDAuNUwxNS4zODYyIDcuODQwMDZMMjMuNDEzMiA4Ljc5MThMMTcuNDc4NyAxNC4yNzk5TDE5LjA1NCAyMi4yMDgyTDEyLjAwMDYgMTguMjZaIj48L3BhdGg+PC9zdmc+) 50% 50% no-repeat;
    background-size:100% auto;
}
.reviews-grid__info-rate span.half {
    background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0icmdiYSgyNTUsMjA0LDAsMSkiPjxwYXRoIGQ9Ik0xMi4wMDA2IDE1Ljk2OEwxNi4yNDczIDE4LjM0NTFMMTUuMjk4OCAxMy41NzE3TDE4Ljg3MTkgMTAuMjY3NEwxNC4wMzkgOS42OTQzNEwxMi4wMDA2IDUuMjc1MDJWMTUuOTY4Wk0xMi4wMDA2IDE4LjI2TDQuOTQ3MTUgMjIuMjA4Mkw2LjUyMjQ4IDE0LjI3OTlMMC41ODc4OTEgOC43OTE4TDguNjE0OTMgNy44NDAwNkwxMi4wMDA2IDAuNUwxNS4zODYyIDcuODQwMDZMMjMuNDEzMiA4Ljc5MThMMTcuNDc4NyAxNC4yNzk5TDE5LjA1NCAyMi4yMDgyTDEyLjAwMDYgMTguMjZaIj48L3BhdGg+PC9zdmc+) 50% 50% no-repeat;
    background-size:100% auto;
}
.reviews-grid__info-rate span.empty {
    background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0icmdiYSgyNTUsMjA0LDAsMSkiPjxwYXRoIGQ9Ik0xMi4wMDA2IDE4LjI2TDQuOTQ3MTUgMjIuMjA4Mkw2LjUyMjQ4IDE0LjI3OTlMMC41ODc4OTEgOC43OTE4TDguNjE0OTMgNy44NDAwNkwxMi4wMDA2IDAuNUwxNS4zODYyIDcuODQwMDZMMjMuNDEzMiA4Ljc5MThMMTcuNDc4NyAxNC4yNzk5TDE5LjA1NCAyMi4yMDgyTDEyLjAwMDYgMTguMjZaTTEyLjAwMDYgMTUuOTY4TDE2LjI0NzMgMTguMzQ1MUwxNS4yOTg4IDEzLjU3MTdMMTguODcxOSAxMC4yNjc0TDE0LjAzOSA5LjY5NDM0TDEyLjAwMDYgNS4yNzUwMkw5Ljk2MjE0IDkuNjk0MzRMNS4xMjkyMSAxMC4yNjc0TDguNzAyMzEgMTMuNTcxN0w3Ljc1MzgzIDE4LjM0NTFMMTIuMDAwNiAxNS45NjhaIj48L3BhdGg+PC9zdmc+) 50% 50% no-repeat;
    background-size:100% auto;
}

.pagination {text-align:center;margin:0 0 45px;display:flex;align-items:center;justify-content:center;gap:10px;}
.pagination a.page-numbers, .catlist a {display:flex;align-items:center;justify-content:center;width:40px;height:40px;border-radius:5px;background:linear-gradient(180deg, #68A2FB 0%, #2F62D4 100%);color:#fff}
.pagination span.current, .catlist a.active {display:flex;align-items:center;justify-content:center;width:40px;height:40px;border-radius:5px;background:#bcd6fe;}
.catlist a, .catlist a.active {width:auto;height:auto;padding:10px 15px;}

.catlist {display:flex;flex-wrap:wrap;gap:15px;margin:20px 0;}

.lwpcngNotice-dark {background:#f2692d;border:0!important}
.lwpcngNotice-dark .lwpcngNotice_accept {background:#fff;color:#000;border:0!important}
.footer__copy p {margin:0 0 8px;}

@media (max-width: 1310px) {
	.header.new_designr .header__nav>li>a,.header.new_designr .phonelink a{
		font-size:14px;
	    text-wrap: nowrap;
	}
	.showcase.new_design{
	    max-height: 100%;
    	height: auto;	
	}
}

@media (max-width: 991px) {
	.showcase.new_design{
		padding:0;
		max-height:100%
	}
	.showcase.new_design .showcase__title{
		font-size:24px;
		margin-bottom:36px
	}
	.showcase.new_design .showcase__text p{
	    text-align: left;
    	font-weight: 700;	
		font-size:16px;
		gap: 10px;
	}
	.showcase.new_design+.showcase-banner{
	    margin-top: 0;	
	}
	.showcase.new_design .showcase__text{
	    font-size: 20px;
    	font-weight: 700;
		gap:18px
	}
	.showcase.new_design .showcase__info{
		width:100%
	}
	.showcase.new_design .showcase__img{
	    min-width: auto;
    	width: 100%;	
	    position: relative;
	}
	.showcase.new_design .showcase__btn{
	    max-width: 100%;
	} 
	.showcase.new_design .showcase__img .bg_father{
	    position: initial;
	    height: 228px;
    	width: 100%;
		padding:0;
	    object-fit: contain;
	}
	.showcase.new_design .showcase__img a{
	    position: absolute;
		width: 143px;
		right: 12px;
		bottom: 5px;
	}
	.showcase.new_design .showcase__text p svg{
		min-width:24px
	}
	.header.new_designr .phons_mobs{
		display:flex
	}
	.header.new_designr :is(.mobile_phone,.header__social,.phonelink,.header__btn,.search-form,.header_bot){
		display:none
	}
	.header.new_designr .header__inner{
		margin:0
	}
	.header.new_designr{
		height:76px
	}
	.header.new_designr .header__burger a{
	    background-color: #68A2FB;
		padding: 10px;
		border-radius: 50%;
		display: flex;
		align-items: center;
		justify-content: center;
		height: 44px;
		width: 44px;	
	}
	
	.showcase__inner-bew .showcase__title {text-align:left;}
	.showcase__inner-bew {padding:60px 0 0;}
	.showcase.new_design .showcase__title h1 {font-size:24px;}
	
	.reviews-grid {
        grid-template-columns:repeat(2,1fr);
	}
}

@media (max-width: 480px) {
	.showcase__text-grid, .reviews-grid {grid-template-columns:1fr}
	.showcase.new_design .showcase__title h1 {font-size:20px;}
	.showcase__text-grid-title {font-size:16px}
	.showcase__text-grid > div {font-size:14px}
}


img.lazy {
    opacity: 0;
    transition: opacity 0.3s;
}

img.lazy.loaded {
    opacity: 1;
}

.text-bold {
	font-weight: bold;
}


.flextableitem {
	width:100% !important;
}
.pricetable__item {
  border-radius: 10px;
  background: #EFF5FF;
  margin-bottom: 20px;
}

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

.pricetable__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  padding: 18px 25px;
}

.pricetable__head.active .faq__text {
  color: #3366d7;
}

.pricetable__head.active .faq__arrow svg {
  transform: rotate(180deg);
  fill: #3366d7;
}

.pricetable__text {
  font-size: 16px;
  font-weight: 600;
  line-height: 19.5px;
  color:#3366D7;
}

@media only screen and (max-width: 991px) {
  .faq__text {
    font-size: 16px;
    margin-right: 30px;
  }
}

.pricetable__arrow {
  display: flex;
  align-items: flex-start;
}

.pricetable__arrow svg {
  width: 25px;
  height: 25px;
  fill: #2B5DD1;
  transition: 400ms;
}

.pricetable__head.active .pricetable__arrow svg {
  transform: rotate(180deg);
  fill: #2B5DD1;
}

.pricetable__body {
  padding: 0 25px 18px;
  display: none;
}

.pricetable__body ul li {
  list-style-type: disc;
  margin-left: 20px;
  font-size: 16px;
  color: #878f9b;
  font-weight: 500;
  margin-bottom: 24px;
}

@media only screen and (max-width: 991px) {
  .pricetable__body ul li {
    font-size: 14px;
    margin-bottom: 12px;
  }
}

.pricetable__body ul li:last-child {
  margin-bottom: 0;
}

.pricetable__desc {
  font-size: 16px;
  color: #878f9b;
  margin-bottom: 24px;
  font-weight: 500;
}
.pricetable_subtext {
	display:block;
	font-size:12px;
	line-height:14.63px;
	color:#3366D7;
	margin-top:10px;
}
.flextablebody {
		width: 100%;
		display: flex;
		gap:60px;	
}



@media only screen and (max-width: 991px) {
  .flextablebody {
    flex-wrap:nowrap;
	display:grid;
	gap:20px;
  }
}

.flex8 {
  display: flex;
  flex-wrap: wrap;
  align-content: space-between;
}
.flex8 span {
margin-top:10px;
}
.cenanomera {
	text-align:right;
	font-size:14px;
	line-height:14px;
	font-weight:700;	
	flex: 30%;
}
.etaj {
	font-size:18px;
	font-weight:700;
	line-height:24.38px;
}
.nomer {
	font-size:14px;
	line-height:16px !important;	
	font-weight:500;
	line-height:24.38px;
flex: 70%;	
}
.rekvizity p {
	    margin: 10px auto;
    font-size: 16px;
}
.single-post a:hover {
	
color:#68A2FB;
}

/*NEW STYLE*/
html {
  scroll-behavior: smooth;
}
.anchor-target {
  scroll-margin-top: 180px; 
}
.anchor-target-2 {
  scroll-margin-top: 100px; 
}

:root {
       
    --text-color: #3E3E3E;
   --primary-font:  "Inter", sans-serif;
   --secondary-font: "Geologica", -apple-system, BlinkMacSystemFont, sans-serif;
   --third-font: "Manrope", sans-serif;
}

.rem_text {

 font-family: var(--primary-font);
font-size: 22px;
line-height: 140%;
letter-spacing: 0.28px;
color: var(--text-color);
}
.rem_text a {
	text-decoration: underline;
}
.rem_text a:hover {
	color: #F26D30;
}
.rem_text p {
	margin: 12px 0;
}

.rem_text li {
    margin-bottom: 16px;
    list-style: initial;
}
.rem_text ol li {
    
    list-style: auto;
}

.rem_text img {
	max-width: 60%;
    border-radius: 24px;
	margin: 40px 0;
}

.rem_text img:last-child {
	margin-bottom:0;
}
.rem_title {
font-family: var(--secondary-font);
font-weight: 600;
font-size: 52px;
line-height: 110%;
letter-spacing: 0.28px;
    margin-bottom: 52px;
color: var(--text-color);
}

section {
	margin: 120px auto;
	
}

main > section:first-of-type {
    margin: 36px auto;
}
main > section.rem_tariff {
    margin-bottom: 220px !important;
}

.hidden_desktop {
	display:none;
}
.show_desktop {
	display: block;
}

.custom-logo {
	width: auto;
    height: auto;
}


article [class$="-content"] p, article [class$="-content"] ul li {
    margin-top: 10px;
    margin-bottom: 10px;
}
article [class$="-content"] h2, article [class$="-content"] h3, article [class$="-content"] h4 {
	 margin-top: 30px;
    margin-bottom: 30px;
}

article [class$="-content"] ul li:before {
	content: "";
    display: inline-block;
    margin-right: 10px;
    margin-bottom: 4px;
    width: 6px;
    height: 6px;
    background: linear-gradient(180deg, #f6cf6e 0%, #f2692d 100%);
    border-radius: 50%;
}


.rem_faq_title {
margin-bottom: 52px;
}

.rem_faq__item {
	background: #F0F4F7;
	border-radius: 16px;
	padding: 30px 50px 30px;
	color: var(--text-color);
	margin: 8px auto;
}

.rem_faq__text {
font-weight: 600;
    max-width: 75%;
}

.rem_faq__body {
	    padding: 30px 25% 0 0;
	display: none;
}
.rem_faq__head {
display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
   
}
.rem_faq_btn_block {
	display: flex;
    align-items: center;
}

.rem_faq__head.active .rem_faq__arrow svg {
    transform: rotate(45deg);
 
}
.rem_faq__arrow {
display: flex;
    align-items: flex-start;
}
.rem_faq__arrow svg {
    width: 25px;
    height: 25px;
    fill: #182333;
    transition: 400ms;
	
}

.rem_faq__body p {
	    padding: 10px 0;
}

.rem_faq__body ul, .rem_faq__body ol  {
	    padding: 10px 20px;
}

.rem_faq__body ul {
	list-style: disc;
}
.rem_faq__body ul li, .rem_faq__body ol li {
	        margin-bottom: 10px;
}

.rem_faq_form_block {
	background: #2057CD;
	border-radius: 16px;
	padding:28px;
	color: #fff;
	display: flex;
    justify-content: space-between;
	align-items: center;
	}
	
.rem_faq_form_block_text {
	max-width:50%;
	color:#fff;
	
}	
.rem_block_btn {
	cursor: pointer;
border-radius: 52px;
padding: 20px 40px;
background: #F26D30;
text-align:center;
    font-weight: 600;
color:#fff;
display:block;
transition: 300ms;
}

.rem_faq_form_block .rem_block_btn {
	margin: 0 6px;
}

.rem_faq_form_block_wa, .rem_faq_form_block_tg, .rem_faq_form_block_max {
	width:68px;
	height:68px;
	display: block;
	margin: 0 6px;
	 
}

.rem_faq_form_block_wa, .rem_forma_small_wa {
	background: url('/wp-content/themes/blankslate/images/wa.svg') no-repeat center center;
	background-size: contain;
}

.rem_faq_form_block_tg, .rem_forma_small_tg {
	background: url('/wp-content/themes/blankslate/images/tg.svg') no-repeat center center;
	background-size: contain;
}

.rem_faq_form_block_max, .rem_forma_small_max {
	background: url('/wp-content/themes/blankslate/images/max.svg') no-repeat center center;
	background-size: contain;
}
.rem_faq_form_block_mess {
	display: flex;
}
.rem_block_btn:hover {
	background: #E35E21;
}
.rem_faq_form_block_wa:hover, .rem_faq_form_block_tg:hover, .rem_forma_small_wa:hover, .rem_forma_small_tg:hover, .rem_forma_small_max:hover, .rem_faq_form_block_max:hover {
	opacity:0.8;
}

.rem_text_text {
/*
	margin: 20px auto;*/
}

.rem_text_text ul, .rem_text_text ol {
	
	margin: 10px 0 10px 40px;
}
.rem_text_text li {
	margin-bottom:8px;
	list-style: auto;
}

.rem_text_text ul li {
	list-style: disc;
}

.rem_text_text ol li {
	list-style: inherit;
}

.rem_text_text p{
	margin: 10px 0;
}
.rem_text_text h2, .rem_text_text h3, .rem_text_text h4 {
	margin: 50px 0 30px 0;
	line-height: normal;
}
.rem_text_text h2:first-child, .rem_text_text h3:first-child, .rem_text_text h4:first-child {
	margin-top:0;
}


.rem_qoute_inner {
	border-radius: 24px;
	background:#F0F4F7;
	color: var(--text-color);
	display:flex;
}
.rem_qoute_image {
display: flex;
    min-width: 40%;
    min-height: 100%;
    border-radius: 24px;
    padding: 20px;
    flex-direction: column;
        justify-content: flex-end;
}
.rem_quote_video_btn {
transition: transform 0.3s ease;
    display: block;
    width: 90px;
    height: 90px;
    background: url(/wp-content/themes/blankslate/images/play.png) center center / cover no-repeat;
}

.rem_quote_video_btn:hover {
	transform: scale(1.1);
}
.rem_qoute_desc_inner {
	background:#fff;
	padding:28px;
	border-radius: 16px;
}

.rem_qoute_desc {

font-weight: 400;
font-size: 18px;
line-height: 145%;
letter-spacing: 0.28px;
color:#898989;
margin-bottom:5px;

}
.rem_quote_name {
font-family: var(--secondary-font);
font-weight: 600;
font-size: 28px;
letter-spacing: 0.28px;
}
.rem_qoute_text {
	padding:40px;
font-style: Italic;
line-height: 140%;


}
.rem_qoute_text p {
	margin-bottom: 20px;
}
.rem_qoute_text::before {
	   content: "";
    background: url('/wp-content/themes/blankslate/images/up-quote.svg') no-repeat center center;
    background-size: contain;
    display: inline-block;
    width: 36px;
    height: 28px;
    vertical-align: middle;
	    margin-bottom: 28px;
}
	.rem_qoute_text::after {
	 content: "";
    background: url('/wp-content/themes/blankslate/images/bottom-quote.svg') no-repeat center center;
    background-size: contain;
    display: inline-block;
    width: 36px;
    height: 28px;
    vertical-align: middle;
	 margin-top: 28px;
	float: right;
}
	
.video-modal {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.9);
        z-index: 9999;
        display: none;
    }
    
    .modal-content {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 80%;
        max-width: 800px;
        background: #000;
    }
    
    .close-modal {
        position: absolute;
        top: -40px;
        right: -40px;
        color: white;
        font-size: 35px;
        cursor: pointer;
        background: none;
        border: none;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .video-player-container {
        width: 100%;
        height: 0;
        padding-bottom: 56.25%; /* 16:9 aspect ratio */
        position: relative;
    }
    
    .video-player-container iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: none;
    }

.rem_text_image {
/*background:#F0F4F7;

	padding:60px 0;*/
}	

.rem_text_image_items {
	display: flex;
    flex-wrap: wrap;
    gap: 16px;
}



.rem_text_image_item {
	display: flex;
    align-items: center;
	border-radius:24px;
	background: #fff;
	    flex: 0 0 calc(50% - 16px);
	padding-right:24px;
	
	height: 250px;
	overflow: hidden;
	    box-shadow: 0px 5px 20px 4px #1f29401f;
}

}

.rem_bg .rem_text_image_item {
	    box-shadow: none;
}

.rem_text_image_img{
	    display: block;
    border-top-right-radius: 500px;
    border-bottom-right-radius: 500px;
    border-top-left-radius: 100px;
    border-bottom-left-radius: 100px;
	
	height: 250px;
    width: 222px;
		margin-right:32px;
	    flex: 0 0 40%;   
		
}



.rem_text_image_form_block{
	border-radius: 24px;
    background: #2057CD;
	color:#fff;
    max-width: 49%;
    padding: 46px 40px;
    height: 250px;
}


.rem_text_image_form_text{
color:#fff;
margin-bottom:32px;
}
.rem_text_image_form_block .rem_block_btn {
	width: 100%;
}

.rem_slider {
	position:relative;
}

.rem_slider_inner {
position: relative;	
}
.rem_slider_desc {
font-size: 24px;
line-height: 140%;
color: var(--text-color);
margin: 24px auto;


}
.rem_slider .swiper-button-next, .rem_slider .swiper-button-prev {
	top: 60%;
}
.rem_slider_item {
	text-align:center;
	    height: 100%;
		border-radius: 24px;
    overflow: hidden;
}
.rem_slider_item  a {
	 height: 100%;
}
.rem_slider_item  img{
	    object-fit: cover;
    object-position: center;
    height: 100%;
}
.rem_slider .swiper-slide {
	height: auto;
}
.rem_slider_item a:hover img {
    transform: scale(1.05);
}
.rem_slider_item img {
transition: transform 0.3s ease;

}
 .rem_slider_item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.04);
    pointer-events: none;
    z-index: 2;	
    border-radius: 24px;
}

.rem_slider .swiper-wrapper {
    align-items: stretch;
}

.rem_mission_big_block {
	margin-top: 50px;
	height: 424px;
	background: url('/wp-content/themes/blankslate/images/mission-block-h.jpg') no-repeat right bottom;
	background-size: cover;
	padding:44px;
	border-radius:24px;
}

.rem_mission_big_block_inner {
	width: 50%;
}

.rem_mission_big_block_text {
font-size: 28px;
color: var(--text-color);
font-weight: 600;
}

.rem_mission_cards {
	margin-top:40px;
	display: flex;
	gap:20px;
}

.rem_mission_card {

border-radius: 16px;
padding: 28px;
background:#fff;
flex: 0 0 calc(50% - 20px);

}

.rem_mission_cards_name{
color:#2057CD;
font-size: 28px;
font-weight: 600;
}
.rem_mission_cards_desc {
	padding-top:8px;
font-size: 18px;
line-height: 145%;
letter-spacing: 0.28px;

}

.rem_mission_small_blocks {
	display:flex;
	margin-top:16px;
	gap:16px;
}

.rem_mission_small_block {
	width: 50%;
	background:#F0F4F7;
	padding:44px;
	border-radius: 24px;
	color: var(--text-color);
}

.rem_mission_small_blocks_title {
font-size: 28px;
font-weight:bold;
margin: 20px 0 12px 0;
}
.rem_mission_small_blocks_desc {
	font-size: 24px;
	line-height:140%;
	
}




.rem_price_inner {
	margin-top:52px;
    overflow: hidden;
}
.rem_price_title {
	margin-bottom:8px;
}

.rem_price_table {
min-width:500px;
border-radius: 24px;
border: 1px solid #898989;
width: 100%;

}
.rem_price_table th {
	background:#F0F4F7;
	padding:20px 32px;
font-weight: 600;
line-height: 140%;
text-align:left;

}
.rem_price_table th:last-child,.rem_price_table td:last-child {
text-align:right;
}
.rem_price_table th:last-child {
	border-top-right-radius: 24px;
}
.rem_price_table th:first-child {
	border-top-left-radius: 24px;
}

.rem_price_table td {
	padding: 20px 32px;
	color: var(--text-color);
	
	line-height: 140%;
}

.rem_price_table tr:not(:last-child) td {

	border-bottom: 1px solid #D0D0D0;

}

.rem_price_table .cross_out {
	text-decoration: line-through;
	color:#A6A6A6;
	}
	
	
.rem_price	.table_cell_desc{
	font-size:16px;
}

.rem_price_desc {
	padding: 16px 0;
	color: var(--text-color);
}
.rem_price_btns {
	display: flex;
    gap: 16px;
    align-items: center;
}
.rem_tariff .rem_price_btns, .rem_tariff_pure .rem_price_btns  {
	position: relative;
    bottom: -100px;
}

.rem_step_item {
	background:#F0F4F7;
	border-radius:24px;
	padding: 72px 32px;
	display:flex;
	align-items: center;
    gap: 20px;
	flex: 1 0 calc(33.333% - 16px);
	max-width:calc(33.333% - 16px);
	position:relative;
}


.rem_steps_inner{
	    display: flex;
    gap: 16px;
	flex-wrap:wrap;
}

.rem_step_icon {
	border-radius:12px;
	background:#fff;
	width: 44px;
    height: 64px;
	text-align: center;
  
	color:#2057CD;
	font-size:40px;
	 min-width: 44px;
	 line-height: 64px;

}
.rem_step_text span {
	font-weight:600;
}

.rem_cta {
	background: #2057CD;
	color:#fff;
    border-radius: 24px;
    padding: 32px;    
    flex: 1 0 calc(33.333% - 16px);
	max-width:calc(33.333% - 16px);
	display: flex;
	flex-direction: column;
    align-items: center;
    justify-content: center;
}


.rem_steps_cta_desc {
	font-size:20px;
	margin-bottom:20px;
	color:#fff;
}

.rem_step_arrow {
	position: absolute;
    /* top: 35px; */
    right: -30px;
    
   background: url(/wp-content/themes/blankslate/images/arrow-right.svg) no-repeat center center;
    background-color: #fff;
    
    color: #3E3E3E;
    font-size: 28px;
    display: flex;
    justify-content: center;
    align-items: center;	
width: 44px;
    height: 44px;
z-index: 10;
border-radius: 50px;
padding: 20px;

}

.rem_step_item:nth-child(3n) .rem_step_arrow {
	display: none;
}

.rem_steps_cta_btn {
	width:100%;
}

.rem_video_text {
	
color: var(--text-color);
font-size:24px;
margin-bottom:52px;

}

.rem_video_frame {
	width:100%;
	border-radius:24px;
}

.rem_video_frame iframe {
    min-height: 0;	
	border-radius: 24px;
}



.rem_video_wrapper {
    position: relative;
    width: 100%;
    height: 0;
	/*
    padding-bottom: 56.25%; /* 16:9 соотношение */
	padding-bottom: 40%;
    overflow: hidden;
	border-radius: 24px;
}

.rem_video_cover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
}

.rem_video_cover:hover {
    opacity: 0.9;
}

.rem_play_button {
   display: block;
    width: 90px;
    height: 90px;
    background: url(/wp-content/themes/blankslate/images/play.png) center center / cover no-repeat;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.rem_play_button:hover {
    transform: scale(1.1);
   }

.rem_video_frame {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.rem_btn_white, .rem_btn_white_download {
    font-weight: 600;
    font-size: 18px;
    line-height: 145%;
    letter-spacing: 0.28px;
    text-align: center;
    color: var(--text-color);
    border: 2px solid #3E3E3E;
    border-radius: 50px;
    padding: 20px 40px;
    margin-top: 64px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    gap: 10px;
}

.rem_btn_white_download {
	margin-top: 0;
}

.rem_btn_white::after {
 content: '';
    display: inline-block;
    width: 16px;
    height: 14px;
    background-image: url("data:image/svg+xml,%3Csvg width='16' height='14' viewBox='0 0 16 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 7L15 7M15 7L9 13M15 7L9 1' stroke='%233E3E3E' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.rem_btn_white:hover::after {
    transform: translateX(5px);
    background-image: url("data:image/svg+xml,%3Csvg width='16' height='14' viewBox='0 0 16 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 7L15 7M15 7L9 13M15 7L9 1' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.rem_btn_white_download::after {
    content: '';
    display: inline-block;
    width: 16px;
    height: 14px;
    background-image: url("data:image/svg+xml,%3Csvg width='16' height='14' viewBox='0 0 16 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 1V13M7 13L1 7M7 13L13 7' stroke='%233E3E3E' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.rem_btn_white_download:hover::after {
    transform: translateY(5px);
    background-image: url("data:image/svg+xml,%3Csvg width='16' height='14' viewBox='0 0 16 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 1V13M7 13L1 7M7 13L13 7' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.rem_btn_white:hover, .rem_btn_white_download:hover {
    background-color: #3E3E3E;
    color: white;
}


.rem_btn_orange_download {
	color: #F26D30;
    background: #fff;
    border: 2px solid #F26D30;
    border-radius: 52px;
    padding: 20px 40px;
    font-weight: 600;
    text-align: center;
    line-height: 145%;
}

.rem_btn_orange_download:hover {
    background: #F26D30;
    color: #fff;
}
.swiper-button-next, .swiper-button-prev{
	position: absolute;
    top: 50%;
    line-height: 2;
    transform: translateY(-50%);
    background: #FFFFFF;
    color: #3E3E3E;
    box-shadow: 0px 4px 12px 0px #0000001A;
    border: none;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    font-size: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.rem_banner .swiper-button-next, .rem_banner .swiper-button-prev{ 
top: 45%;

}
.swiper-button-next:hover, .swiper-button-prev:hover {
color: #ED682B;
    transform: translateY(-50%) scale(1.1);
}

.swiper-button-next:after, .swiper-container-rtl .swiper-button-prev:after {
   /* content: '→';*/
    content: '';
    background-image: url("data:image/svg+xml,%3Csvg width='16' height='14' viewBox='0 0 16 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 7L15 7M15 7L9 13M15 7L9 1' stroke='%233E3E3E' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
	width: 16px;
    height: 14px;
}
.swiper-button-next:after, .swiper-button-prev:after {

font-size: 40px;
    font-family: monospace;
}
.swiper-button-prev:after, .swiper-container-rtl .swiper-button-next:after {
    /*content: '←';*/
	    content: '';
    background-image: url("data:image/svg+xml,%3Csvg width='16' height='14' viewBox='0 0 16 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M15 7L1 7M1 7L7 13M1 7L7 1' stroke='%233E3E3E' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    width: 16px;
    height: 14px;
}
.swiper-pagination-bullet {
	    background: #898989;
    opacity: 1;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: #ffffff;
}

.swiper-btn-low {
	display:none;
}


.rem_spec {
	position: relative;
}

.swiper-button-next, .swiper-container-rtl .swiper-button-prev {
    right: 50px;
    left: auto;
}

.swiper-button-prev, .swiper-container-rtl .swiper-button-next {
    left: 50px;
    right: auto;
}

.rem_spec_image {
	/*text-align:center;*/
}
.rem_spec_image img {
	border-radius: 24px;
    height: auto;
    width: 100%;
   /* max-width: 360px;*/
}
.rem_spec_content {
	/*max-width: 360px;*/
	margin: 15px 0;
}


.rem_spec_name{
color: var(--text-color);
font-size: 20px;
font-weight:600;
}
.rem_spec_rank {
	color:#898989;
	margin-top:8px;
	font-size: 16px;
line-height: 140%;

}

.rem_spec_quote{
	margin-top:16px;
font-style: Italic;
font-size: 16px;
line-height: 140%;
color: var(--text-color);
}


.rem_spec_card {
	text-align:center;
}
.rem_spec_link {
	text-align:left;
}
.rem_adv_desc {
margin-bottom:52px;	
}

.rem_adv_inner {
	display:flex;
	gap: 72px;
}
.rem_adv_images_block {
	flex: 0 0 40%;
	position: relative;
}
.rem_adv_cards {
	flex: 0 0 60%;
}




.rem_adv_images_block {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    position: relative;
    min-height: 1150px; 
}
.rem_adv_images_block.short_block {
	min-height: 600px;
}



.rem_adv_image1, 
.rem_adv_image2, 
.rem_adv_image3, 
.rem_adv_image4 {
    grid-area: 1 / 1 / -1 / -1; 
	height: fit-content;
}


.rem_adv_image1 {
  z-index: 4;
    transform: translate(40%, 30%);
    width: 320px;
}

.rem_adv_image2 {
   z-index: 3;
    transform: translate(0, 130%);
    width: 280px;
}

.rem_adv_image3 {
    z-index: 2;
    transform: translate(0%, 0);
    width: 250px;
}

.rem_adv_image4 {
    z-index: 1;
    transform: translate(80%, 200%);
    width: 250px;
}


.rem_adv_images_block img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 24px; 
   
}

.rem_adv_cards {
	    display: flex;
    gap: 35px;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: flex-start;
    align-content: flex-start;
}

.rem_adv_card  {
	flex: 0 0 45%;
}

.rem_adv_card_icon {
	padding: 9px;
    width: fit-content;
    max-width: 72px;
	    height: 72px;
}
.rem_adv_card_title {

font-size: 28px;
margin-top: 20px;
color:#2A2A2A;
font-weight: 600;
margin-bottom: 12px;
}

.rem_adv_card_text {

font-weight: 400;
color: var(--text-color);
font-size: 18px;
margin-top: 12px;
}


.rem_pans_cards {
	/*background:#F0F4F7;
	padding:96px 0;*/
}

.rem_pans_cards_list {
	display: flex;
    flex-direction: column;
    gap: 24px;
}
.rem_pans_cards_item {
background: #fff;
    border-radius: 24px;
    overflow: hidden;
    display: flex;
	    gap: 40px;
}
.rem_pans_cards_image {
flex: 0 0 33%;
    width: 100%;
}
.rem_pans_cards_image img{
	object-fit: cover;
    width: 100%;
    height: 100%;
}

.rem_pans_cards_content {
    flex: 0 0 63%;
    padding: 32px 32px 32px 0;
	
}

.rem_pans_cards_name {
font-size: 28px;
margin-bottom: 20px;
}
.rem_pans_cards_tags {
	display: flex;
    gap: 20px;
    margin-bottom: 20px;
	font-size: 18px;
}
.rem_pans_cards_tag {
	padding: 4px 16px;
	border-radius: 8px;

font-weight: 600;
font-size: 18px;

	}
	
	.rem_pans_cards_tag_orange {
		color:#F26D30;
		background:#F26D3040;
	}
	
	.rem_pans_cards_tag_blue{
		color:#2057CD;
		background:#F0F4F7;
	}
	
.rem_pans_cards_contacts {
	display:flex;
	font-size: 18px;
	margin-bottom: 28px;
	
}
.rem_pans_cards_contact {
	padding: 8px 20px;
	flex: 1;
}

.rem_pans_cards_contact:first-child {
	padding-left:0;
	border-right: 1px solid #C5C5C5;
}
.rem_pans_cards_contact:last-child {
	padding-right:0;
}

.rem_pans_cards_contact:not(:last-child){
	border-right:1px solid #C5C5C5;
}
.rem_pans_cards_contact a {
	text-decoration: none;
	
}
.rem_pans_cards_contact a:hover {
	color:#F26D30;
}
.rem_pans_cards_pans_desc {
	font-size: 18px;
	line-height:145%;
	margin-bottom:20px;
}
.rem_pans_cards_pans_desc ul li{
	list-style: initial;
    margin-left: 20px;
}
.rem_pans_cards_pans_prices{
	    display: flex;
    gap: 16px;
	margin-bottom: 24px;
}

.rem_pans_cards_pans_price {
	padding: 4px 16px;
	font-size:22px;
	font-weight:600;
	
}
.rem_pans_cards_pans_price_label {
	color:#898989;
}
.rem_pans_cards_pans_price_value {
	color: var(--text-color);
}

.rem_pans_cards_btns {
    display: flex;
    gap: 12px;
    align-items: center;	
}

.rem_pans_cards_link {
color:#F26D30;
background:#fff;
border: 2px solid #F26D30;
border-radius: 52px;
padding: 21px 40px;
font-weight:600;
text-align:center;
line-height: 2;

}

.rem_pans_cards_link:hover  {
	background:#F26D30;
	color:#fff;
}

.rem_tabs_nav, .rem_gallery_nav, .rem_serv_tabs_nav, .rem_tariff_tabs_nav, .rem_menu_nav, .rem_serv_tile_tabs_nav  {
    display: flex;
    margin-bottom: 36px;
    background: #F0F4F7;

    justify-content: space-around;
	    border-radius: 16px;
		 overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
}

.rem_bg .rem_serv_tabs_nav, .rem_bg .rem_serv_tile_tabs_nav {
	background: #fff;
}

.rem_tabs_nav_btn, .rem_gallery_tabs_nav_btn, .rem_serv_tabs_nav_btn, .rem_tariff_tabs_nav_btn, .rem_menu_nav_btn, .rem_serv_tile_tabs_nav_btn, .rem_serv_tile_tabs_nav_link {
    padding: 20px 40px;
    border: none;
    color: #3E3E3E;
	    background: #F0F4F7;
    font-size: 22px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
	    border-radius: 16px;
	 flex: 1; 
     min-width: max-content;
	    display: inline-block;
    white-space: nowrap;
    vertical-align: top;
}

.rem_serv_tile_tabs_nav_link {
	text-decoration: none!important;
	text-align: center;
}
.rem_bg .rem_serv_tabs_nav_btn, .rem_bg .rem_serv_tile_tabs_nav_btn {
	background: #fff;
}

.rem_tabs_nav_btn:hover, .rem_gallery_tabs_nav_btn:hover, .rem_serv_tabs_nav_btn:hover, .rem_tariff_tabs_nav_btn:hover, .rem_menu_nav_btn:hover, .rem_serv_tile_tabs_nav_btn:hover {
   
    color: #2057CD;
}

.rem_serv_tile_tabs_nav_link:hover {
	color: #2057CD!important;
}

.rem_tabs_nav_btn--active, .rem_gallery_tabs_nav_btn--active, .rem_serv_tabs_nav_btn--active, .rem_tariff_tabs_nav_btn--active, .rem_menu_nav_btn--active, .rem_serv_tile_tabs_nav_btn--active {
    color: #fff;
    background: #2057CD!important;
}
.rem_tabs_nav_btn--active:hover, .rem_gallery_tabs_nav_btn--active:hover, .rem_serv_tabs_nav_btn--active:hover, .rem_tariff_tabs_nav_btn--active:hover, .rem_menu_nav_btn--active:hover, .rem_serv_tile_tabs_nav_btn--active:hover {
    color: #fff;
    
}

.rem_tabs_panel, .rem_gallery_tab_panel, .rem_serv_tabs_panel, .rem_tariff_tabs_panel, .rem_menu_panel, .rem_serv_tile_tabs_panel {
    display: none;
}

.rem_tabs_panel--active, .rem_gallery_tab_panel--active, .rem_serv_tabs_panel--active, .rem_tariff_tabs_panel--active, .rem_menu_panel--active, .rem_serv_tile_tabs_panel--active {
    display: block;
}

.rem_tabs_tab_text {
	margin:16px 0;
}

.rem_tabs_tab_code{
 border-radius: 24px;
     overflow: hidden;
}

.rem_gallery_grid {
	display: flex;
    gap: 16px;
    flex-wrap: wrap;
}


.rem_gallery_item {
    flex: 0 0 calc(25% - 16px);
    position: relative;
    overflow: hidden;
    border-radius: 24px;
	
}
.rem_gallery_item  a {
	aspect-ratio: 1 / 1;
    display: block;
}

.rem_gallery_item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.rem_gallery_item a:hover img {
    transform: scale(1.05);
}


.rem_gallery_item img {
    transition: transform 0.3s ease;
}
.rem_gallery_tabs_nav_btn {
	font-size:16px;
}

.rem_action {
	background: #F0F4F7;
    padding: 96px 0;
}
.rem_action_title {
	margin-bottom:24px;
}

.rem_action_desc {
	margin-bottom:52px;
}
.rem_action_inner {
	display: flex;
    flex-wrap: wrap;
    column-gap: 16px;
	row-gap: 48px;
}
.rem_action_archive .rem_action_inner {
	column-gap: 28px;
	    margin-bottom: 28px;
}

.rem_action_item {
	flex: 0 0 calc(25% - 16px);
	     
}

.rem_action_archive .rem_action_item {
	flex: 0 0 calc(33% - 28px);
	     
}


.rem_action_item a:hover img {
    transform: scale(1.05);
}

.rem_action_item img{
	transition: transform 0.3s ease;
	     
}
.rem_action_item a:hover .rem_action_title{
	color: #F26D30;
}
.rem_action_image {
	border-radius: 24px;
	overflow: hidden;
	    display: block;
    aspect-ratio: 3 / 2;
}

.rem_action_image img {
	width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.rem_action_tags {
	margin-top: 15px;
    display: flex;
    gap: 8px;
}

.rem_action_tag {

padding: 4px 12px;
border-radius:8px;
color:#FFFFFF;
font-size:12px;
font-weight: 600;
}

.rem_action_tag_orange {
	background:#F26D30;
}
.rem_action_tag_blue {
	background:#2057CD;
}
.rem_action_title {
font-family: var(--secondary-font);
line-height: 100%;
margin-top:15px;
font-weight:600;

}

.rem_action_anons {
	font-size:18px;
}

.rem_breadcrumbs {
margin-bottom: 36px;
 font-family: var(--primary-font);
font-weight: 400;
font-size: 12px;
line-height: 140%;
letter-spacing: 0.28px;
	/*color:#DCDCDC;*/
	
	color: #3e3e3e80;
}

.rem_breadcrumbs a {
	/*color:#fff;*/
	color:var(--text-color);
	text-decoration:none;
}

.rem_banner {
	margin-top:0!important;
	position: relative;

}
.rem_banner  .swiper-button-next, .rem_banner  .swiper-button-prev {
	background:#ffffff80;
}
.rem_banner_head {
display: flex;
    align-content: flex-start;
    justify-content: space-between;	
	flex-wrap: wrap;
	row-gap: 20px;
}
.rem_banner_title   {
	flex: 0 0 80%;
}
.rem_banner_content   {
	flex: 0 0 50%;
}
.rem_banner_yandex_rating {
	padding: 10px 0;
	flex: 0 0 20%;
}


.rem_banner_item {
	    min-height: 850px;
	padding: 96px 0 72px 0;
		 border-bottom-left-radius: 44px;
	 border-bottom-right-radius: 44px;
    overflow: hidden;
	/*background: url('/wp-content/themes/blankslate/images/banner-bg.jpg') no-repeat bottom center / cover;*/
}

.rem_banner_title,.rem_banner_advantages, .rem_banner_desc {
	color:#FFFFFF;
}
 
.rem_banner_desc {
	margin-bottom:42px;
	
}

.rem_banner_advantages {
	
	background: #39700080;
    border-radius: 20px;
    padding: 24px;
    margin-bottom: 48px;
    display: flex;
    overflow: hidden;
    gap: 20px;
    flex-direction: column;
}

.rem_banner_advantage {
	    display: flex;
    gap: 16px;
    align-items: center;
    margin-bottom: 8px;
	justify-content: flex-start;
}

.rem_banner_advantage_text {
	font-family: var(--primary-font);
font-weight: 400;
font-size: 18px;
line-height: 140%;
letter-spacing: 0.28px;

}
.rem_banner_buttons {
	gap: 12px;
    display: flex;
    flex-direction: column;
    width: 70%;
	
}

.rem_banner_btn {
	cursor:pointer;
    width: 100%;
   border-radius: 52px;
    text-align: center;
    padding: 22px 40px;
}

.rem_banner_btn_orange {
	    background: #F26D30;
		    color: #fff;
}
.rem_banner_btn_orange:hover {
	opacity:0.8;
	
}
.rem_banner_btn_white {
	   background: #fff;
		    color: #F26D30;
			
}
.rem_banner_btn_white:hover {
	background: #F26D30;
		    color:#fff; 
}

.rem_banner_advantage_icon {
	    width: 44px;
    height: 44px;
	 flex-shrink: 0; 
}

.rem_banner_advantage_icon img {
	    width: 100%;
    height: 100%;
    object-fit: contain;
}

.rem_banner_content_wrap {
	display: flex;
}
.rem_banner_video_wrapper {
position: relative; 
}
.rem_banner_video_btn {
    display: block;
    width: 90px;
    height: 90px;
    background: url(/wp-content/themes/blankslate/images/play.png) center center / cover no-repeat;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: transform 0.3s ease;
	position: absolute;
	top: 50%;
	left: 40%;
	
}

.rem_banner_video_btn:hover {
    transform: scale(1.1);
}

.rem_banner_image {
	    position: absolute;
    right: 0;
    bottom: 0;
    width: 50%;
    height: auto;
}
.rem_banner_image img {
	width: 100%;
    height: auto;
    display: block;
	max-width: 800px;
}

.rem_serv, .rem_serv_til, .rem_serv_other {
	position:relative;
}

.rem_bg {
	background: #F0F4F7;
    padding: 96px 0;
}

.rem_serv  .swiper-button-next, .rem_serv  .swiper-button-prev {
	top:60%;
}

.rem_serv_desc, .rem_serv_tile_desc, .rem_serv_other_desc  {
	margin-bottom: 58px;
}
.rem_serv_services, .rem_serv_tile_services, .rem_serv_other_services {
	padding: 0 16px 26px 16px;
	height: auto;
}
.rem_serv_tile_services {
	    display: flex;
    flex-wrap: wrap;
    gap: 20px;
	align-items: stretch; 
}
.rem_serv_services .swiper-wrapper, .rem_serv_other_services .swiper-wrapper {
	 align-items: stretch;
}
.rem_serv_services .swiper-slide, .rem_serv_other_services .swiper-slide {
	height: auto;
}
.rem_serv_service, .rem_serv_tile_service, .rem_serv_other_service {
border-radius: 24px;
    overflow: hidden;
    /*box-shadow: 0px 12px 20px 4px #1f29401f;*/
	box-shadow: 0px 12px 14px 0px #1f29401f;
	    display: flex;
    flex-direction: column;
    height: 100%; 
	width: 100%;
	
}

.rem_serv_tile_service {
	width: calc(33% - 10px);
	 height: auto;
}
.rem_serv_service_content, .rem_serv_tile_service_content, .rem_serv_other_service_content  {
	padding:24px;
	    flex: 1;
    display: flex;
    flex-direction: column;
	background: #fff;
}


.rem_serv_service_name, .rem_serv_tile_service_name, .rem_serv_other_service_name {
font-family:var(--secondary-font);
font-weight: 600;
margin-bottom:16px;

}
.rem_serv_other_service_name {
margin-bottom:36px;	
flex-grow: 1;
}
.rem_serv_service_name a, .rem_serv_tile_service_name a, .rem_serv_other_service_name a  {
	text-decoration:none;,
}

.rem_serv_service_desc, .rem_serv_tile_service_desc {
 flex-grow: 1;
font-size: 18px;
line-height: 145%;
margin-bottom:24px;

}
.rem_serv_service_price, .rem_serv_tile_service_price, .rem_serv_other_service_price {
font-family:var(--secondary-font);
font-weight: 600;
margin-bottom:20px;

}
.rem_serv_service_photo, .rem_serv_tile_service_photo, .rem_serv_other_service_photo {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}
.rem_serv_service_photo img, .rem_serv_tile_service_photo img, .rem_serv_other_service_photo img {
	width: 100%;
    height: 100%;
	transition: transform 0.3s ease;
    object-fit: cover; 
    aspect-ratio: 8 / 5; 
}
.rem_serv_service_link:hover .rem_serv_service_photo  img, .rem_serv_tile_service_link:hover   img, .rem_serv_other_service_link:hover   img  {
	transform: scale(1.05);
}

.rem_serv_tile_service_btn {
	font-size: 18px;
    border: none;
	margin-top: auto;
}

.rem_serv_other_service_btn {
	    color: #F26D30;
    background: #fff;
    border: 2px solid #F26D30;
    border-radius: 52px;
    padding: 21px 40px;
    font-weight: 600;
    text-align: center;
	margin-top: auto;
}

.rem_serv_other_service_btn:hover {
    color: #fff;
    background: #F26D30;
}

.rem_serv_service_name a:hover, .rem_serv_tile_service_name a:hover, .rem_serv_other_service_name a:hover  {
	color:#F26D30;
}
.rem_serv_service_link, .rem_serv_tile_service_link, .rem_serv_other_service_link {
	display:block;
}
.rem_tariff, .rem_tariff_pure {
		position:relative;
		margin-bottom: 220px;
}

.rem_tariff_desc, .rem_tariff_pure_desc {
	margin-bottom:52px;
}

.rem_tariff_item, .rem_tariff_pure_item  {

border-radius: 24px;
padding: 32px;
border: 2px solid #2057CD;
   height: 100%;
    display: flex;
    flex-direction: column;
justify-content: space-between;
}
.rem_tariff_item_btns, .rem_tariff_pure_item_btns {
	border-top: 1px solid #C5C5C5;
}
.rem_tariff .swiper-wrapper, .rem_tariff_pure .swiper-wrapper {
   
    align-items: stretch; 
}

.rem_tariff .swiper-slide, .rem_tariff_pure .swiper-slide  {
    height: auto; 
}

.rem_tariff_item_name, .rem_tariff_pure_item_name {
color:#2057CD;
font-size: 28px;
padding-bottom:24px;
border-bottom: 1px solid #C5C5C5;
margin-bottom:0;
}
.rem_tariff_item_desc, .rem_tariff_pure_item_desc {
	font-size: 18px;
	line-height: 145%;
	padding: 24px 0;
	
}

.rem_tariff_item_desc ul li, .rem_tariff_pure_item_desc ul li, .rem_rooms_item_desc ul li{
	  list-style: none;
  position: relative;
  padding-left: 30px;
  margin-bottom:8px;
}

.rem_tariff_item_desc ul li::before, .rem_tariff_pure_item_desc ul li::before, .rem_rooms_item_desc ul li::before{
	  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background-image: url('/wp-content/themes/blankslate/images/check.svg');
  background-size: contain;
  background-repeat: no-repeat;
}

.rem_tariff_item_desc  ul li.cross::before, .rem_tariff_pure_item_desc  ul li.cross::before {
  background-image: url('/wp-content/themes/blankslate/images/cross.svg');
}
.rem_tariff_item_desc  ul li.cross, .rem_tariff_pure_item_desc  ul li.cross  {
color:#A6A6A6;
}

.rem_tariff_item_price {
	font-family: var(--secondary-font);
font-weight: 600;
/*margin:24px 0 32px 0;*/
}
.rem_tariff_pure_item_prices, .rem_tariff_item_prices {
   margin: 24px 0 32px 0;
}

.rem_tariff_pure_item_price, .rem_tariff_item_price {
	padding: 8px 0;
    display: flex;
    flex-direction: column;
	
}
.rem_tariff_pure_item_price_desc, .rem_tariff_item_price_desc {
	font-family: var(--primary-font);
font-weight: 400;
font-size: 18px;
line-height: 145%;
letter-spacing: 0.28px;

	
}
.rem_tariff_pure_item_price_value, .rem_tariff_item_price_value {
	    font-family: var(--secondary-font);
    font-weight: 600;
font-size: 28px;
line-height: 100%;
letter-spacing: 0.28px;

	
}


.rem_tariff  .swiper-button-next, .rem_tariff  .swiper-button-prev, .rem_tariff_pure  .swiper-button-next, .rem_tariff_pure  .swiper-button-prev  {
	top:60%;
}

.rem_tariff_tabs_panel .swiper-pagination, .rem_tariff_pure  .swiper-pagination, .rem_rooms .swiper-pagination{
	/*bottom: -50px;*/
	bottom: 0;
}



.rem_tariff_tabs_panel .swiper-pagination-bullet {
	background: var(--text-color);
}
.rem_tariff_tabs_panel  .swiper-pagination-bullet-active {
    opacity: 1;
    background: #F26D30;
}




.rem_stories {
			position:relative;
}

.rem_stories_card {
	border-radius: 24px;
    overflow: hidden;
    /*box-shadow: 0px 5px 20px 4px #1f29401f;*/
		box-shadow: 0px 12px 14px 0px #1f29401f;
	height: 100%;
    display: flex;
    flex-direction: column;
}

.rem_stories_inner {
	padding: 0 16px 26px 16px;
}

.rem_stories_image{
	width: 100%;
    position: relative;
    aspect-ratio: 6 / 4;
    overflow: hidden;
}
.rem_stories_image img {
	object-fit: cover;
    width: 100%;
    height: 100%;
	transition: transform 0.3s ease;
}

.rem_stories_link{
	color: #F26D30;
    background: #fff;
    border: 2px solid #F26D30;
    border-radius: 52px;
    padding: 21px 40px;
    font-weight: 600;
    text-align: center;
}
.rem_stories_link:hover {
	color: #fff;
	background:#F26D30;
}
.rem_stories_content {
	padding: 24px 32px 32px;
	   flex: 1; 
    display: flex;
    flex-direction: column;
}
.rem_stories_name, .rem_stories_desc {
	font-size:16px;
}
.rem_stories_name span, .rem_stories_desc span {
	color:#A6A6A6;
	
}
.rem_stories_info {
	display: flex;
    gap: 40px;
	    margin-bottom: 24px;
		flex: 1;
}
.rem_stories_info > * {
    flex: 1;
    min-width: 0;
}

.rem_stories_inner {
    height: 100%;
}
.rem_stories .swiper-wrapper {
   
    align-items: stretch; 
}

.rem_stories .swiper-slide {
    height: auto; 
}

.rem_stories_image:hover img {
    transform: scale(1.05);
}

.rem_stories_archive  .rem_stories_inner {
display: flex;
    flex-wrap: wrap;
    gap: 40px 20px;
    align-items: stretch;
}

.rem_stories_archive .rem_stories_card {
    flex: 0 0 calc(33% - 20px);
    display: flex;
    flex-direction: column;
	height: auto;
}

.rem_stories_archive .rem_stories_content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.rem_stories_archive .rem_stories_info {
    flex-grow: 1;
}
.rem_forma_small {
	padding:96px 0;
	background:#F0F4F7;
}
.rem_forma_small_inner {
	display: flex;
    gap: 70px;
}

.rem_forma_small_info {
	flex: 0 0 60%;
}
.rem_forma_small_image {
	flex: 0 0 30%;
	    border-radius: 24px;
    overflow: hidden;
}

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

.rem_forma_small_title {

font-size: 40px;
margin-bottom: 24px;
}

.rem_forma_small_mess {
	display: flex;
	margin-top:8px;
	gap: 12px;
}

 .rem_forma_small_wa, .rem_forma_small_tg, .rem_forma_small_max  {
	width:50px;
	height:50px;
	display: block;
	
	 
}

.rem_forma_small_mess_text {
font-weight: 600;
font-size: 18px;
}
.form_small {
	display: flex;
    margin: 36px 0 20px 0;
    gap: 16px;
}
.form_small>* {
	flex: 0 0 50%;
}
.form_small button, .form_small  input, .form_small textarea, .form-big button, .form-big  input, .form-big textarea, .form_popup button, .form_popup  input {
	    -moz-appearance: auto;
    appearance: auto;
    -webkit-appearance: auto;
}

.form_btn_block {
	display: flex;
    gap: 16px;
    flex-direction: column;
}

.rem_forma_small .rem_block_btn, .form_small  .rem_block_btn{
	border: none;
    width: 100%;
    font-size: 18px;
	line-height: 140%;
}

.rem_input_field {
	color: #9D9D9D;
    padding: 21px 24px;
    border: none;
    width: 100%;
    border-radius: 16px;
    font-size: 18px;
}
.form-acceptance-text {
	font-size:12px;
	 font-family: var(--primary-font);
	 line-height: 140%;
}

.form-acceptance-text label {
	gap: 8px;
    display: flex;
}

.form-acceptance-text input[type="checkbox"] {
-webkit-appearance: none;
    width: 15px;
    height: 15px;
    border: 1px solid #3E3E3E;
    border-radius: 4px;
    background-color: white;
    cursor: pointer;
    position: relative;
	flex-grow: 0;
	flex-shrink: 0;
}
.form-acceptance-text input[type="checkbox"]:checked {
/*background-color: transparent;*/
}
.form-acceptance-text input[type="checkbox"]:checked::before {
  content: "✓";
  position: absolute;
  color: #3E3E3E;
  font-size: 14px;
  font-weight: bold;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.wpcf7-spinner {
    display: none;
    visibility: hidden;
}
.rem_forma_big {
	padding:96px 0;
	background:#F0F4F7;
}

.rem_forma_big_inner {
	display: flex;
    gap: 66px;
}

.rem_forma_small_info {
	flex: 0 0 60%;
}
.rem_forma_big_image {
	flex: 0 0 35%;
	    border-radius: 24px;
    overflow: hidden;
}

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

.rem_forma_big_title {

font-size: 40px;
margin-bottom: 24px;
}
.form-steps span{

border-radius: 8px;
background: #fff;
color:#898989;
padding: 8px 30px;
font-size:18px;
font-weight:600;

}
.form-steps p {
	display:flex;
	gap: 12px;
}

.form-steps .step-active {
	color:#2057CD;
}

.form-steps {
	margin-bottom: 48px;
}

#rem_popup_calc .form-steps {
	margin-bottom: 16px;
}

#rem_popup_calc .form-section {
	gap: 16px;
}
#rem_popup_calc .form-step {
gap: 24px;
}

.form-big .rem_block_btn{
border: none;
    width: 100%;
    font-size: 18px;
}
.form-text {
font-weight: 600;
font-size: 20px;
}

.form-step {
	display: flex;
    gap: 40px;
    flex-direction: column;
}

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

.form-row {
	display: flex;
    gap: 16px;
}

.form-column {
	width:100%;
}

.form-section select{
	 appearance: none;
  -webkit-appearance: none; 
  -moz-appearance: none;
 /* background-image: url('data:image/svg+xml;utf8,<svg fill="%23000000" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>');*/
  background-image: url('data:image/svg+xml;utf8,<svg width="14" height="11" viewBox="0 0 14 11" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M7.86602 10.5C7.48112 11.1667 6.51887 11.1667 6.13397 10.5L0.93782 1.5C0.55292 0.833332 1.03405 -2.67268e-07 1.80385 -1.9997e-07L12.1962 7.08554e-07C12.966 7.75852e-07 13.4471 0.833334 13.0622 1.5L7.86602 10.5Z" fill="%233E3E3E"/></svg>');
  background-repeat: no-repeat;
  background-position: right 25px center;
  background-size: 20px;
  padding-right: 40px; 
  cursor:pointer;
}

.form_popup select {
	appearance: none;
  -webkit-appearance: none; 
  -moz-appearance: none;
 /* background-image: url('data:image/svg+xml;utf8,<svg fill="%23000000" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>');*/
  background-image: url('data:image/svg+xml;utf8,<svg width="14" height="11" viewBox="0 0 14 11" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M7.86602 10.5C7.48112 11.1667 6.51887 11.1667 6.13397 10.5L0.93782 1.5C0.55292 0.833332 1.03405 -2.67268e-07 1.80385 -1.9997e-07L12.1962 7.08554e-07C12.966 7.75852e-07 13.4471 0.833334 13.0622 1.5L7.86602 10.5Z" fill="%233E3E3E"/></svg>');
  background-repeat: no-repeat;
  background-position: right 25px center;
  background-size: 20px;
  padding-right: 60px; 
  cursor:pointer;
	background-color: #F0F4F7;
}

.form-section select:hover {
	background-image: url('data:image/svg+xml;utf8,<svg width="14" height="11" viewBox="0 0 14 11" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M7.86602 10.5C7.48112 11.1667 6.51887 11.1667 6.13397 10.5L0.93782 1.5C0.55292 0.833332 1.03405 -2.67268e-07 1.80385 -1.9997e-07L12.1962 7.08554e-07C12.966 7.75852e-07 13.4471 0.833334 13.0622 1.5L7.86602 10.5Z" fill="%23F26D30"/></svg>');
}
.form-pans-choice input[type="radio"] {
    display: none;
}


.form-pans-choice label {
cursor: pointer;
    text-align: center;
border-radius: 16px;
padding: 20px 40px;
    display: inline-block;
	    transition: all 0.3s ease;
		background: #fff;
		    margin-right: 16px;

}
.form-pans-choice label span {

font-weight: 600;

font-size: 18px;
}

.form-pans-choice .wpcf7-list-item {
	margin: auto;
}

 .form-pans-choice label:hover {
    color: #2057CD;
   
}
.form-pans-choice label:has(input[type="radio"]:checked) {
    background: #2057CD;
    color: #fff;
}
.form-big textarea {
	max-height:140px;
}
.form-big .form-acceptance-text {
	margin-top:16px;
}


.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(10px); 
  -webkit-backdrop-filter: blur(10px); 
}

.popup-container {
background: #fff;
    border-radius: 24px;
    max-width: 440px;
    width: 100%; 
    animation: popupShow 0.3s ease-out;
	position: relative;
    padding: 44px;
	max-height: 85vh;
    overflow-y: auto;
}



.popup-title {
  margin-bottom: 28px;
  font-size: 28px;

}

.popup-close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  color: var(--text-color);
  transition: color 0.3s;
  position: absolute;
    top: 20px;
    right: 20px;
}





.popup-content .form_popup {
  margin: 0;
}

.popup-content .rem_input_field {
background-color: #F0F4F7;
    margin-bottom: 16px;
}

.popup-content .rem_input_field:focus {
  outline: none;

}
.form_popup .rem_block_btn {
	border: none;
    width: 100%;
    font-size: 18px;
}



@keyframes popupShow {
  from {
    opacity: 0;
    transform: scale(0.9) translateY(-20px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}
.rem_form_doc_wrap {
	    display: flex;
    align-items: center;
}
.rem_form_doc_info {
	flex: 0 0 60%;
}
.rem_form_doc_img {
	flex: 0 0 40%;
}

.rem_form_doc_img img{
	object-fit: contain;
    width: 100%;
}

.rem_form_doc_title {
	color:#2057CD;
	margin-bottom: 24px;
}

.rem_form_doc_cards {
	display: flex;
     align-items: stretch;
    gap: 16px;
	    margin-bottom: 16px;
}
.rem_form_doc_card {
	border-radius: 24px;
    padding: 44px;
    background: #F0F4F7;
	 flex: 1;
}

.rem_form_doc_icon {
	width: 72px;
    height: 72px;
	
}
.rem_form_doc_text {
color: var(--text-color);
    font-weight: 600;
    font-family: var(--secondary-font);
    font-size: 28px;
    line-height: 140%;
    letter-spacing: 0.28px;

}
.rem_form_doc_form {
	background:#2057CD;
border-radius: 24px;
padding: 44px;


}
.rem_form_doc_form .wpcf7-not-valid-tip{
	color:#fff;
}
.rem_form_doc_form_title{
margin-bottom: 20px;
font-size: 40px;
color:#fff;

}

.rem_form_doc_form_text{
margin-bottom: 44px;
color:#fff;

}
.rem_form_doc_form .form-acceptance-text {
	color:#fff;
}
.rem_form_doc_contacts {
	    gap: 44px;
    display: flex;
    align-items: center;
}
.rem_form_doc_phone {
	color: #fff;
    display: flex;
    flex-direction: column;
}

.rem_form_doc_phone a{
	text-decoration: none;
}
.rem_form_doc_phone a:hover {
	color: #F26D30;
}
.rem_form_doc_form .wpcf7-response-output {
	color:#fff;
}

.rem_form_doc_form input.rem_input_field {
    line-height: 2;
}
.rem_form_doc_form .form-acceptance-text input[type="checkbox"]:checked::before{
	color: #e86f3a;
}
.rem_form_doc_form .form-acceptance-text input[type="checkbox"] {
	    border: 1px solid #e86f3a;
}
.rem_reviews {
	position:relative;
}
.rem_reviews_widget {
border-radius: 24px;

    box-shadow: 0px 4px 13px 0px rgba(24, 35, 51, 0.15);
         

}

.rem_review_card {
	background: #F0F4F7;
    border-radius: 24px;
    padding: 32px;
	display:flex;
	flex-direction:column;
	gap:24px;
	 flex: 1; 
    width: 100%; 
	justify-content: space-between;
}

.rem_review_rating {
	display: flex;
    align-items: center;
    justify-content: space-between;
	}
	
	.rem_review_excerpt, .rem_review_full_content {
font-size: 16px;

	}
	.rem_review_read_more {
	font-size: 16px;
color:#2057CD;	
    margin-top: 8px;
	}
	
	.rem_review_category_icon {
		width: 36px;
    height: 36px;
    background: #fff;
    border-radius: 50px;
    padding: 8px;
	}
	
	.rem_review_category_ico img{
		    width: 100%;
    object-fit: contain;
	}
	
	.rem_review_author {
		    gap: 16px;
    display: flex;
    align-items: center;
	}
	.rem_review_image {
		    width: 68px;
    height: 68px;
    border-radius: 12px;
    overflow: hidden;
	}
	
	.rem_review_title {
 font-family: var(--secondary-font);
font-weight: 600;
font-size: 16px;


	}
	
	.rem_review_date {
font-weight: 400;
font-size: 14px;
color:#898989;


	}
	
	.rem_review_info {
		line-height:100%;
	}
	
	.rem_reviews .swiper-wrapper {
   
    align-items: stretch; 
}

.rem_reviews  .swiper-slide {
    height: auto;
    display: flex;
}

.rem_reviews .swiper-button-next, .rem_reviews  .swiper-button-prev {
	top:30%;
}

.rem_review_image img{
	    object-fit: cover;
}

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

.rem_review_video_btn {
transition: transform 0.3s ease;
    display: block;
    width: 68px;
    height: 68px;
    background: url(/wp-content/themes/blankslate/images/play.png) center center / cover no-repeat;
}

.rem_review_video_btn:hover {
	transform: scale(1.1);
}

.rem_review_video_cover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
}

.rem_review_video_cover:hover {
    opacity: 0.9;
}

.rem_reviews_video {
overflow: hidden;
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 24px;	
}

/*.rem_articles {
	background:#F0F4F7;
	padding: 96px 0;
}*/
.rem_articles_grid_layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.rem_articles_left_column,
.rem_articles_right_column {
    display: flex;
    flex-direction: column;
}

.rem_articles_right_column {
    gap: 40px;
}

.rem_articles_date_cat {
	display: flex;
    font-size: 16px;
    gap: 24px;
}
.rem_articles_article_date {
	color:#2828287a;
}

.rem_articles_article_category {
	color:#2057CD;
}


.rem_articles_article_title {
font-weight: 600;
font-size: 28px;
margin-bottom:0;

}

.rem_articles_article_title a:hover {
	color:#ED682B;
}

.rem_articles_article_content {
	    display: flex;
    gap: 15px;
    flex-direction: column;
}
.featured_article {
    height: fit-content;
}


.featured_image {
    border-radius: 24px;
    max-width: 590px;
    max-height: 590px;
    overflow: hidden;
}

.featured_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.featured_article:hover .featured_image img {
    transform: scale(1.05);
}

.featured_content {
    margin-top: 28px;
}

.featured_title {
    margin: 15px 0;
    font-size: 24px;
    line-height: 1.3;
}

.featured_title a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.featured_title a:hover {
    color: #007cba;
}

.small_article {
transition: transform 0.3s ease;
    display: flex;
    gap: 28px;
}



.small_image {
    flex: 0 0 200px;
    border-radius: 24px;
    overflow: hidden;
	height: fit-content;
}

.small_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
	aspect-ratio: 1 / 1;
}

.small_article:hover .small_image img {
    transform: scale(1.05);
}

.small_content {
    flex: 1;
    padding: 0;
}
.small_content .rem_articles_date_cat {
	
    flex-direction: column;
gap:4px;
}
.small_title {
    margin: 0 0 8px 0;
    font-size: 16px;
    line-height: 1.4;
}

.small_title a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.small_title a:hover {
    color: #007cba;
}



.rem_articles_article_category a:hover {
   
}

.rem_articles_article_meta {
display: flex;    
    gap: 24px;
    font-size: 16px;
	color: #959595;
}

.rem_articles_small_meta {
    gap: 10px;
    margin-top: 5px;
}

.rem_articles_article_time, .rem_articles_article_views, .rem_articles_article_comments {
	display: flex;
    gap: 5px;
    align-items: center;
	
}

.rem_articles_article_time img, .rem_articles_article_views img, .rem_articles_article_comments img {
	width: 24px;
    object-fit: contain;
    height: 24px;
}

footer {
	background:#F0F4F7;
	padding-top: 96px;
border-top-left-radius: 44px;
border-top-right-radius: 44px;

}
.rem_footer_info_row {
display: grid;
    grid-template-columns: 2fr 4fr 2fr 3fr;
       gap: 32px;
	   padding-bottom: 37px;
    border-bottom: 1px solid #D0D0D0;
}
.rem_footer_logo {
	    max-width: 225px;
}
.rem_footer_info {

font-weight: 400;
font-size: 12px;


}

.rem_footer_phone {


display: flex;
    flex-direction: column;
    gap: 8px;

}
.rem_footer_phone a{
	font-weight: 600;
font-size: 20px;
letter-spacing: 0.28px;
}

.rem_footer_phone a:hover{
color: #F26D30;
}
.rem_block_btn {
	    line-height: 2;
}
.rem_footer_main_row {
	    border-bottom: 1px solid #D0D0D0;
		padding: 44px 0;
		display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
       gap: 32px;
}

.rem_footer_menu_name {
font-weight:600;
margin-bottom: 20px;
}
.rem_footer_menu_name a {
	text-decoration: none;
}

.rem_footer_menu ul li{
 font-family: var(--primary-font);
font-weight: 400;
color: var(--text-color);
font-size: 16px;
line-height: 140%;
letter-spacing: 0.28px;
margin-bottom:10px;

}

 .rem_footer_work_time_info, .rem_footer_address_item{
 font-family: var(--primary-font);
font-weight: 400;
color: var(--text-color);
font-size: 16px;
line-height: 140%;
letter-spacing: 0.28px;

}
.rem_footer_menu ul li a:hover{
color: #F26D30;
}

.rem_footer_work_time_desc {
color:#898989;
font-size:12px;

}

 .rem_footer_address_item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}
.rem_footer_addresses_list {
display: flex;
    flex-direction: column;
    gap: 20px;
}
.rem_footer_address_item_img {
width: 24px;
    height: 24px;
object-fit: contain;
 flex-shrink: 0;
}
.rem_footer_address_item_img img {
width:100%;
height:100%;

}


.rem_footer_copyright {
 font-family: var(--primary-font);
font-weight: 400;
font-size: 12px;
line-height: 140%;
letter-spacing: 0.28px;
color:#2A2A2A;
  display: flex;
  gap: 10px;
 align-items: center;
justify-content: space-between;
padding:36px 0;

}

.rem_footer_copyright_info {
    gap: 30px;
    display: grid;
    grid-template-columns: 1fr 3fr;
    justify-items: center;
    align-items: center;
}

.rem_footer_copyright_links a:hover {
color: #F26D30;

}


.rem_footer_copyright_mess {
display: flex;

gap: 12px;
}
 
.rem_footer_copyright_mess > * {
	width:36px;
	height:36px;
	display: block;
		 
}

.rem_wa {
	background: url('/wp-content/themes/blankslate/images/wa.svg') no-repeat center center;
	background-size: contain;
}

.rem_tg {
	background: url('/wp-content/themes/blankslate/images/tg.svg') no-repeat center center;
	background-size: contain;
}
.rem_max {
	background: url('/wp-content/themes/blankslate/images/max.svg') no-repeat center center;
	background-size: contain;
}
.rem_ok {
	background: url('/wp-content/themes/blankslate/images/od.svg') no-repeat center center;
	background-size: contain;
}

.rem_vk {
	background: url('/wp-content/themes/blankslate/images/vk.svg') no-repeat center center;
	background-size: contain;
}
.rem_tel {
	background: url('/wp-content/themes/blankslate/images/tel.svg') no-repeat center center;
	background-size: contain;
	cursor: pointer;
}


.rem_footer_copyright_mess > *:hover {
    opacity: 0.8;
}

.rem_footer_copyright_links a {
    display: inline-block;
    margin-right: 30px;
}

header {
    background: #FFFFFF;
    position: fixed;
    width: 100%;
    z-index: 100;
    top: 0; 
    left: 0;
    border-bottom-right-radius: 44px;
    border-bottom-left-radius: 44px;
    transition: transform 0.4s ease, border-radius 0.4s ease;
    box-shadow: 0px 8px 32px 0px #1F29400F;

}

header.header-hidden {
    transform: translateY(-100%);
    
}

main {
	margin-top:100px;
}
.wp-singular main, .archive main, .search main, .error404 main {
	margin-top:180px;
}
.has-rem-banner.wp-singular main,
.has-rem-banner.archive main,
.single-specialists  main{
    margin-top: 100px;
}

header .container {
	 display: flex;
	 padding: 20px 0;

}

.rem_logo_block {
	    display: flex;
		flex: 0 0 20%;
    flex-direction: column;
    gap: 13px;
}

.rem_desc_under_logo {
 font-family: var(--primary-font);
font-weight: 400;
font-size: 12px;
line-height: 140%;
letter-spacing: 0.28px;
color:#898989;
}

.rem_header_block {
	flex: 0 0 80%;
	display: flex;
    gap: 24px;
    flex-direction: column;
}


.rem_header_btn_white {
	color: #F26D30;
    background: #fff;
    border: 2px solid #F26D30;
    border-radius: 52px;
    padding: 12px 24px;
    font-weight: 500;
    text-align: center;
	font-size:18px;
}

.rem_header_btn_white:hover {
	background: #F26D30;
    color: #fff;
    cursor: pointer;
}

.rem_header_mess {
	    display: flex;
    gap: 8px;
	/*gap: 12px;*/
}
.rem_header_mess  > * {
    /*width: 50px;
    height: 50px;*/
    display: block;
	 width: 40px;
    height: 40px;
}

.rem_header_mess  > *:hover {
   opacity: 0.8;
}
.rem_header_info {
	display: flex;
    gap: 28px;
	justify-content: space-between;
}

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

.rem_header_phone a {
	
    font-weight: 600;
    font-size: 18px;
    letter-spacing: 0.28px;
	line-height: 140%;


}
.rem_header_phone a:hover {
	color: #ED682B;
}
.rem_header_work_time {

font-weight: 400;
font-size: 16px;
line-height: 145%;
letter-spacing: 0.28px;

}
input[type="search"]::-webkit-search-cancel-button {
    position: relative;
    right: 10px; 
    margin-left: 10px; 
}
input[type="search"]::-webkit-search-cancel-button:hover {
   cursor:pointer;
    filter: sepia(1) hue-rotate(340deg) saturate(1000%);
  
}

.rem_header_search .search-field{
padding: 14px 40px 14px 12px;
    border-radius: 12px;
    border: 1px solid #3E3E3E;
    font-size: 16px;
    max-width: 180px;
    display: block;
    width: 100%;	
}

.rem_header_search .search-form{
    position: relative;
    display: flex;
    align-items: center;	
}

.rem_header_search .search-submit{
	background: url(/wp-content/themes/blankslate/images/search.svg) no-repeat;
    border: none;
    background-color: transparent;
    font-size: 0;
    width: 34px;
    height: 34px;
	position:absolute;
	right:10px;
	top: 10px;
}
.rem_header_search .search-submit:hover {
	background: url(/wp-content/themes/blankslate/images/search-orange.svg) no-repeat;
	cursor:pointer;
}
.search-form input[type="search"],
.search-field,
input[type="search"] {
    caret-color: #ED682B;
}
.rem_header_info_left {
	    display: flex;
    gap: 28px;
	position: relative;
    align-items: center;
    transition: all 0.3s ease;
}
.rem_header_info_right {
	    display: flex;
    gap: 12px;
	flex: 0 0 auto;
}



.rem_header_search {
    position: relative;
    transition: all 0.3s ease;
    flex: 0 0 auto;
}

.rem_header_search:focus-within {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 101;
}

.rem_header_search:focus-within .search-form {
    width: 100%;
}

.rem_header_search:focus-within .search-field {
    width: 100% !important;
    max-width: 100% !important;

}

.rem_header_search:focus-within ~ .rem_header_work_time,
.rem_header_search:focus-within ~ .rem_header_phone {
    opacity: 0;
    visibility: hidden;
    /*transform: translateX(-20px);*/
    pointer-events: none;
}

.rem_header_work_time,
.rem_header_phone {
    transition: all 0.3s ease;
    flex: 0 0 auto;
}


.rem_header_info_left > * {
    transition: all 0.3s ease;
}
.rem_header_search:focus-within .search-form label {
    width: 100% ; 
}
.rem_header_search:focus-within ~ .rem_header_info_left,
.rem_header_info_left:has(.rem_header_search:focus-within) {
    width: 100%;
    flex: 1 1 100% ;
}



.rem_header_menu {
    position: relative;
}

.header_menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
	justify-content: space-between;
}

.header_menu li {
    position: relative;
}

.header_menu a {
   display: flex;
   justify-content: space-between;
   align-items: center;
    padding: 10px 15px;
    text-decoration: none;
 font-family: var(--primary-font);
font-weight: 500;
font-size: 18px;
line-height: 145%;
letter-spacing: 0.28px;
color: var(--text-color);
}
.header_menu a:hover {
	color: #ED682B;
}

.header_menu .sub-menu,
.header_menu .children {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 200px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
	border-radius: 18px;
}


.header_menu .sub-menu .sub-menu,
.header_menu .children .children {
    top: 0;
    left: 100%;
    transform: translateX(-10px);
}


.header_menu > li:last-child .sub-menu,
.header_menu > li:last-child .children {
    left: auto;
    right: 0;
}


.header_menu > li:last-child .sub-menu .sub-menu,
.header_menu > li:last-child .children .children {
    left: 100%;
    right: auto;
    transform: translateX(-10px);
}
.header_menu .sub-menu li,
.header_menu .children li {
    width: 100%;
}

.header_menu .sub-menu a,
.header_menu .children a {
    padding: 12px 20px;
    white-space: nowrap;
}


.header_menu li:hover > .sub-menu,
.header_menu li:hover > .children {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}


.header_menu .sub-menu li:hover > .sub-menu,
.header_menu .children li:hover > .children {
    transform: translateX(0);
}


.header_menu li.menu-item-has-children > a::after {
    content: "▼";
    font-size: 0.7em;
    margin-left: 5px;
}


.header_menu .sub-menu li.menu-item-has-children > a::after,
.header_menu .children li.menu-item-has-children > a::after {
    content: "▶";
    margin-left: 15px;
}
.header_menu .sub-menu .sub-menu {
	max-height: calc(100vh - 300px);
    overflow-y: auto;
}

.hamburger_btn {
    display: none;
    flex-direction: column;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    width: 50px;
    height: 50px;
    position: relative;
    background: url('/wp-content/themes/blankslate/images/menu.svg') no-repeat center center;
    background-size: contain;
}

.hamburger_btn.active {
    background: url('/wp-content/themes/blankslate/images/menu-close.svg') no-repeat center center;
    background-size: contain;
}

.rem_tel {
    display: none;
}

.header_menu_mobile {
    display: none;
}

.error404  h1.rem_title {
	margin-bottom: 28px;
}
.error_404{
	text-align: center;
	    margin: 52px auto;
}
.title_404 {
	font-size: 28px;
   /* color: red;*/
}
.error_404_text {
	margin-bottom: 28px;
}

.error_404_img{
	max-height: 400px;
    width: 100%;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
	border-radius: 28px;
}

.error_404_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.error_btn {
	margin: 28px auto;
    max-width: 350px;
    text-decoration: none;
}

.error_404_btns {
	    display: flex;
    gap: 52px;
       align-items: center;
    justify-content: center;
}

.error_btn_white {
	color: #F26D30;
    background: #fff;
    border: 2px solid #F26D30;
    border-radius: 52px;
    padding: 21px 40px;
    font-weight: 600;
    text-align: center;
	cursor: pointer;
    
}
.error_btn_white:hover {
	color:#fff;
	 background: #F26D30;
}

.search_page {
	
	    margin: 52px auto;
}
.search_page .search-form{
    position: relative;
    display: flex;
    align-items: center;
    max-width: 600px;
    margin: 28px 0;
    width: 100%;
}
.search_page .search-form label {
	width: 100%;
}
.search_page .search-field {
	padding: 16px 40px 16px 26px;
    border-radius: 100px;
    border: 1px solid #000;
    box-shadow: 3px 4px 13.9px 0px #E4E4E8;
    width: 100%;
}
.search_page  .search-submit {
	    background-image: url(/wp-content/uploads/2024/09/ic_outline-search.png);
    border: none;
    background-color: transparent;
    font-size: 0;
    width: 34px;
    height: 34px;
    position: absolute;
    right: 10px;
cursor:pointer;
}

.search-card .entry-wrapper{
display: flex;
    gap: 28px;
    height: auto;
    overflow: hidden;
    border-radius: 24px;
    background: #F0F4F7;
    margin: 16px 0;
}
.search-card  .entry-content {
	    flex: 0 0 60%;
    padding: 28px 28px 28px 0;
}
.search-card .entry-thumbnail {
	flex: 0 0 30%;
	max-height: 300px;
	aspect-ratio: 1 / 1;
}
.search-card  .entry-title {
	margin-bottom: 16px;
	font-weight:600;
}
.search-card  .rem_text a{
	
	text-decoration: none;
	
}

.search-card .entry-thumbnail img {
	object-fit: cover;
	aspect-ratio: 1 / 1;
}
 .navigation.pagination.custom_pagination  {
	font-family: var(--secondary-font);
}
.navigation.pagination.custom_pagination .nav-links ul.page-numbers {
    list-style: none;
    margin: 0;
    padding: 0;
}

.navigation.pagination.custom_pagination .nav-links ul.page-numbers li {
    display: inline-block;
    margin: 0 11px;
	white-space: nowrap;
}

 .navigation.pagination.custom_pagination .nav-links .page-numbers {
    /*display: inline-block;*/
    padding: 11px 16px;
	display: flex;
    flex-wrap: nowrap;
    align-items: center;
     border-radius: 100%;
    text-decoration: none;
}
 .pagination.custom_pagination a.page-numbers {
	    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    height: auto;
    border-radius: 5px;
    background: none;
  color: var(--text-color);
}

  .pagination.custom_pagination  a.page-numbers:hover {
	color: #2057CD;
}
  .pagination.custom_pagination  span.current, .catlist a.active {
	   width: auto;
    height: auto;
	background: none;
	color: #F26D30;
}

 .pagination.custom_pagination  span.current {
color: #fff;
    background: #2057CD;
   
      
}
.pagination.custom_pagination  .prev.page-numbers, .pagination.custom_pagination  .next.page-numbers {
	background: #F0F4F7;
}
.pagination.custom_pagination .next.page-numbers { 
    background: url("data:image/svg+xml,%3Csvg width='16' height='14' viewBox='0 0 16 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 7L15 7M15 7L9 13M15 7L9 1' stroke='%233E3E3E' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center center;
    background-color: #F0F4F7;
    padding: 11px;
    width: 44px;
    height: 44px;
}

.pagination.custom_pagination .next.page-numbers:hover { 
    background: url("data:image/svg+xml,%3Csvg width='16' height='14' viewBox='0 0 16 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 7L15 7M15 7L9 13M15 7L9 1' stroke='%232057CD' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center center;
    background-color: #F0F4F7;
}

.pagination.custom_pagination .prev.page-numbers { 
    background: url("data:image/svg+xml,%3Csvg width='16' height='14' viewBox='0 0 16 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M15 7L1 7M1 7L7 13M1 7L7 1' stroke='%233E3E3E' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center center;
    background-color: #F0F4F7;
    padding: 11px;
    width: 44px;
    height: 44px;
}

.pagination.custom_pagination .prev.page-numbers:hover { 
    background: url("data:image/svg+xml,%3Csvg width='16' height='14' viewBox='0 0 16 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M15 7L1 7M1 7L7 13M1 7L7 1' stroke='%232057CD' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center center;
    background-color: #F0F4F7;
}

.rem_text_img_right_inner {
	display: flex;
    gap: 40px;
}

.rem_text_img_right_text {
flex: 0 0 65%;	
}
.rem_text_img_right_img {
flex: 0 0 30%;
    border-radius: 28px;
    overflow: hidden;

}

.rem_text_img_right_img img {
width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    aspect-ratio: 16 / 10;
}
.rem_text_img_left_inner {
	display: flex;
    gap: 40px;
}

.rem_text_img_left_text {
flex: 0 0 65%;	
}
.rem_text_img_left_img {
flex: 0 0 30%;
    border-radius: 28px;
    overflow: hidden;

}

.rem_text_img_left_img img {
width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    aspect-ratio: 16 / 9;
}

.rem_blocks {
	background: #F0F4F7;
    padding: 60px 0;
}
.rem_blocks_desc {
	margin-bottom: 52px;
}
.rem_blocks_inner {
display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: space-between;
    align-items: stretch;
}
.rem_block_item {
	border-radius: 24px;
	position:relative;
    background: #fff;
    flex: 0 0 30%;
    padding: 28px 40px;
	display: flex;
	align-items: center;
}
.rem_block_sep {	
    position: absolute;
    top: 45%;
    right: -50px;
    background: url(/wp-content/themes/blankslate/images/line.svg) no-repeat center center;
    
    width: 40px;
    height: 10px;
    z-index: 10;
    

}

.rem_block_item:last-child .rem_block_sep {
    display: none;
}

.rem_blocks_bottom_text {
	margin-top: 52px;
}

.rem_blocks + .rem_text_image {
   /* margin-top: -120px;*/
}


.rem_tile_inner {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}


.rem_tile_item {
    background: #F0F4F7;
    border-radius: 24px;
    overflow: hidden;
    
   	padding: 24px 32px;
}


/* 40%: 1,4,5,8,9,12,13... */
.rem_tile_item:nth-child(4n+1),
.rem_tile_item:nth-child(4n+4) {
    flex: 0 0 calc(40% - 16px);
}

/* 60%: 2,3,6,7,10,11,14,15... */
.rem_tile_item:nth-child(4n+2),
.rem_tile_item:nth-child(4n+3) {
    flex: 0 0 calc(60% - 16px);
}

.rem_tile_image {
    width: 150px;
    height: 150px;
    border-radius: 100px;
    overflow: hidden;
}

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



.rem_tile_text {
padding: 16px 0;
}

.rem_gallery_pure_items {
	display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.rem_gallery_pure_item {
	flex: 0 0 calc(25% - 16px);
    overflow: hidden;
    border-radius: 24px;
	aspect-ratio: 1 / 1;
}
.rem_gallery_pure_item  img {
	width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.rem_gallery_pure_desc {
	margin-bottom: 52px;
}


.woocommerce-breadcrumb,
#breadcrumbs,
.yoast-breadcrumb {
    white-space: nowrap !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    -webkit-overflow-scrolling: touch !important;
    padding-bottom: 5px !important;
}


.woocommerce-breadcrumb::-webkit-scrollbar,
#breadcrumbs::-webkit-scrollbar,
.yoast-breadcrumb::-webkit-scrollbar {
    height: 3px !important;
}

.woocommerce-breadcrumb::-webkit-scrollbar-track,
#breadcrumbs::-webkit-scrollbar-track,
.yoast-breadcrumb::-webkit-scrollbar-track {
    background: #f1f1f1 !important;
}

.woocommerce-breadcrumb::-webkit-scrollbar-thumb,
#breadcrumbs::-webkit-scrollbar-thumb,
.yoast-breadcrumb::-webkit-scrollbar-thumb {
    background: #888 !important;
    border-radius: 3px !important;
}


.woocommerce-breadcrumb,
#breadcrumbs,
.yoast-breadcrumb {
    scrollbar-width: thin !important;
    scrollbar-color: #888 #f1f1f1 !important;
}
.rem_code_title {
	margin-bottom: 24px;
}

.rem_code_text {
	font-size: 18px;
	margin-bottom: 16px;
}
.rem_code .big_text {
	font-family: var(--secondary-font);
font-weight: 600;
font-size: 22px;
line-height: 100%;
letter-spacing: 0.28px;

}

.rem_code_html {
	border-radius: 24px;
    overflow: hidden;
}

.rem_card_tile_title {
margin-bottom: 24px;
font-size: 40px;
}

.rem_card_tile_desc {
	margin-bottom: 52px;
}

.rem_card_tile_inner {
	display: grid;
    grid-template-columns: repeat(4, 1fr);
    row-gap: 24px;
    column-gap: 16px;
}
.rem_card_tile_item {
	display: flex;
    flex-direction: column;
}
.rem_card_tile_image img {
	border-radius: 24px;
	overflow: hidden;
	  width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    
}

.rem_card_tile_image {
	  width: 180px;
    height: 180px;
    overflow: hidden;
	margin-bottom: 20px;
}

.rem_card_tile_item_title {
	font-family: var(--secondary-font);
font-weight: 600;
font-size: 22px;
line-height: 100%;
letter-spacing: 0.28px;
margin-bottom:12px;

}
.rem_card_tile_item_desc {
	font-family: var(--primary-font);
font-weight: 400;
font-size: 18px;
line-height: 145%;
letter-spacing: 0.28px;
}


.rem_anchors {
	position: relative;
}

.rem_anchors_inner {
    position: relative;

	background: #F0F4F7;
    border-radius: 24px;
    overflow: hidden;
    padding: 36px 56px;
}

.rem_anchors_inner::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 150px;
    background: linear-gradient(90deg, transparent 0%, #F0F3F7 100%);
    pointer-events: none;
    z-index: 2;
}

.rem_anchors_inner .swiper-wrapper {
    align-items: center; 
}

.rem_anchors_inner .swiper-slide {
    width: auto !important; 
    height: auto;
}

.rem_anchors_item {
    text-align: center;
    
    height: auto;
    white-space: nowrap;
}

.rem_anchor_link {
display: inline-block;
    padding: 21px 40px;
    background: #fff;
    color: var(--text-color);
    text-decoration: none;
    border-radius: 52px;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 18px;
    font-family: var(--primary-font);
    text-align: center;
    white-space: nowrap;
	line-height: 145%;
letter-spacing: 0.28px;
}

.rem_anchor_link:hover {
   
    color: #2057CD;
    
}

.anchor-text {
   
    white-space: nowrap; 
}

.rem_anchors .swiper-button-next, .rem_anchors .swiper-button-prev  {
	top: 65%;
}
.rem_article_cat_list  .rem_anchors_item.active .rem_anchor_link {
background: #2057CD;
    color: #fff;

}

.rem_slider_caption {
	position: relative;
}

.rem_slider_caption_inner .swiper-wrapper {
	align-items: stretch; 
}

.rem_slider_caption_inner .swiper-slide {
	height: auto; 
	display: flex; 
}

.rem_slider_caption_item {
	background: #F0F4F7;
    border-radius: 24px;
    padding: 52px 24px 32px 24px;
    display: flex;
    flex-direction: column;
    gap: 32px;
    width: 100%; 
    height: 100%; 
    box-sizing: border-box; 
}

.rem_slider_caption_item a{
    margin: auto;
    display: block; 
}
.rem_slider_caption_item img{
  border-radius: 12px;
    overflow: hidden;
	transition: transform 0.3s ease;
} 
.rem_slider_caption_item a:hover img{
 transform: scale(1.05);
} 
.rem_slider_caption_text {
	font-family: var(--secondary-font);
    font-weight: 600;
    font-size: 22px;
    line-height: 100%;
    letter-spacing: 0.28px;
    /*text-align: center; */
    margin-top: auto; 
}

.rem_slider_caption .swiper-button-next, .rem_slider_caption .swiper-button-prev {
	top: 60%;
}
.rem_rooms {
    position: relative;
}

.rem_rooms_items .swiper-wrapper {
    align-items: stretch; 
}

.rem_rooms_items .swiper-slide {
    height: auto; 
    display: flex; 
}

.rem_rooms_item {
    border-radius: 24px;
    overflow: hidden;
    background: #F0F4F7;
    display: flex;
    flex-direction: column;
    flex-grow: 1; 
    width: 100%; 
}

.rem_rooms_item_img img {
    width: 100%;
    height: 100%;
    transition: transform 0.3s ease;
    object-fit: cover;
    aspect-ratio: 5 / 3;
}

.rem_rooms_item_content {
    padding: 32px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.rem_rooms_item_name {
    font-size: 28px;
    padding-bottom: 20px;
    margin: 0;
    border-bottom: 1px solid #C5C5C5;
}

.rem_rooms_item_desc {
    padding: 20px 0;
    font-size: 18px;
    border-bottom: 1px solid #C5C5C5;
    flex-grow: 1; 
}

.rem_rooms_item_price {
    padding: 28px 0 40px 0;
    font-family: var(--secondary-font);
    font-weight: 600;
    font-size: 28px;
    line-height: 100%;
    letter-spacing: 0.28px;
}


.rem_rooms_item_bottom {
    margin-top: auto; 
    display: block;
    width: 100%;
   
}
.rem_rooms .swiper-button-next, .rem_rooms .swiper-button-prev {
	top: 60%;
}

.rem_schedule_inner {
display: grid;
    grid-template-columns: 1fr 1fr;   
    row-gap: 8px;
    column-gap: 16px;	
}
.rem_schedule_column {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.rem_schedule_item {
    display: grid;    
    grid-template-columns: 1fr 3fr;
    gap: 20px;
	padding: 20px 32px;
    background: #fff;
    border-radius: 16px;
    align-items: center;
	 font-size: 18px;
}

.rem_schedule_time {
	font-weight: 600;
   
	white-space: nowrap;
}
.rem_menu_day_content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.rem_menu_intake {
	background: #F0F4F7;
    border-radius: 16px;
    padding: 30px 32px;
}

.rem_menu_intake_name {
	font-weight: 600;
	    margin-bottom: 16px;
}
.rem_menu_intake_food {
	font-size:18px;
}

.rem_menu_intake_food ul li{
	  display: inline-block;
  margin-right: 8px;
  margin-bottom: 4px;
  position: relative;
  padding-left: 15px;
  list-style: none;
	
}

.rem_menu_intake_food ul li::before {
	 content: "•";
  color: #2057CD;
  position: absolute;
  left: 0;
  font-size: 22px;
}

.rem_banner_pure {
	background: #F0F4F7;
}

.rem_banner_pure_item {
	    padding: 96px 0 52px 0;
}
.rem_banner_pure_inner--light .rem_breadcrumbs {
	color: #DCDCDC;
}
.rem_banner_pure_inner--light .rem_breadcrumbs  a{
	color: #fff;
}
.rem_banner_pure_inner--dark .rem_breadcrumbs {
	color: #3e3e3e80;
}
.rem_banner_pure_inner--dark .rem_breadcrumbs a{
	color: var(--text-color);
}

.rem_breadcrumbs #breadcrumbs > span > * {
    margin: 0 8px;
}
.rem_breadcrumbs #breadcrumbs > span > *:first-child {
    margin-left: 0;
}

.rem_banner_pure_content_wrap {
	    display: grid;
    gap: 25px;
    grid-template-columns: 7fr 5fr;
}
.rem_banner_pure_buttons {
	gap: 12px;
    display: flex;
    flex-direction: column;
    width: 70%;
	
}

.rem_banner_pure_btn {
	cursor:pointer;
    width: 100%;
   border-radius: 52px;
    text-align: center;
    padding: 22px 40px;
	font-family: var(--primary-font);
	font-size:18px;
}

.rem_banner_pure_btn_orange {
	    background: #F26D30;
		    color: #fff;
}
.rem_banner_pure_btn_orange:hover {
	opacity:0.8;
	
}
.rem_banner_pure_btn_white {
	   background: #fff;
		    color: #F26D30;
			
}
.rem_banner_pure_btn_white:hover {
	background: #F26D30;
		    color:#fff; 
}
.rem_banner_pure_bottom {
	    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.rem_banner_pure_price {
	border-radius: 24px;
    padding: 18px 35px;
    background: #FFFFFF;
	font-family: var(--secondary-font);
    color: var(--text-color);
    font-weight: 600;
    font-size: 24px;
	height: 100px;
}
.rem_banner_pure_price  span {
	font-family: var(--primary-font);
    font-size: 18px;
    font-weight: 400;
    color: #2F2F3DCC;
}
.rem_banner_pure_video_wrapper {
	position:relative;
	width: 100%;
  height: 100%;
}
.rem_banner_pure_video_btn{
    display: block;
    width: 90px;
    height: 90px;
    background: url(/wp-content/themes/blankslate/images/play.png) center center / cover no-repeat;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: transform 0.3s ease;
    position: absolute;
    top: 50%;
    left: 40%;
}

.rem_banner_pure_video_btn:hover {
    transform: scale(1.1);
}

.rem_banner_pure_right {
  display: flex;
  flex-direction: column;
  height: 100%;
  gap: 16px;
}
.rem_banner_pure_image {
 border-radius: 24px;
  overflow: hidden;
  flex-grow: 1;
  position: relative;
  min-height: 300px; 
}
.rem_banner_pure_image img {
	    width: 100%;
    height: 100%;
}

.rem_banner_pure_video_wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover; 
  object-position: center;
  display: block;
}

.rem_banner_pure_title {
	font-size: 44px;
	margin-bottom: 28px;
}
.rem_banner_pure_desc {
	margin-bottom: 32px;
}

.rem_banner_pure_advantages {
    border-radius: 20px;
    padding: 24px;
    margin-bottom: 44px;
    display: flex;
    overflow: hidden;
    gap: 20px;
    flex-direction: column;
	    max-width: 85%;
}

.rem_banner_pure_advantage {
    display: flex;
    gap: 16px;
    align-items: center;
    margin-bottom: 8px;
    justify-content: flex-start;
}

.rem_banner_pure_advantage_text {
	font-family: var(--primary-font);
font-size: 18px;
line-height: 140%;
letter-spacing: 0.28px;	
}

.rem_banner_pure_inner--light, .rem_banner_pure_inner--light .rem_text, .rem_banner_pure_inner--light .rem_title   {
	color:#fff;
	
}
.rem_banner_pure_inner--light .rem_banner_pure_advantages{
    background: #00000066; 
}
.rem_banner_pure_inner--dark, .rem_banner_pure_inner--dark .rem_text, .rem_banner_pure_inner--dark .rem_title   {
	color: var(--text-color);
	
}

.rem_banner_pure_inner--dark .rem_banner_pure_advantages{
    background: #E6EAED;
}

.bx-touch.crm-widget-button-mobile, .bx-touch.crm-widget-button-mobile body {
	overflow: visible!important;
}
.swiper-pagination-bullet-active {
	background: #f26d30;
}

.footer-services-menu {
    position: relative;
}

.services-spoiler-content {
    width: 100%;
}

.menu-item-spoiler-trigger {
    margin-top: 10px;
}

.menu-item-spoiler-trigger a {
    color: #999;
    text-decoration: none;
    font-size: 14px;
}

.menu-item-spoiler-trigger a:hover {
    color: #333;
    text-decoration: underline;
}

.menu-item-spoiler-trigger.hide {
    margin-top: 5px;
}

.rem_footer_address_item_img img{
	margin-top:0;
	
}

.rem_banner_story_desc {
	font-size: 18px;
	margin-bottom: 36px;
    line-height: 120%;
}
.rem_banner_story_desc_2 {
	display: flex;
    gap: 16px;
    flex-direction: column;
    margin-bottom: 44px;
}
.rem_banner_story_image {
	    object-fit: cover;
    aspect-ratio: 69/85;
    width: 100%;
    height: 100%;
}

.rem_qoute_text ul {
	
margin-left: 32px;
}

.rem_articles_archive .rem_forma_small{
border-radius: 44px;
    margin: 56px 0;
	padding: 40px;

}
.rem_articles_archive .rem_forma_small_image {
	flex: 1 1 0;
}
.rem_articles_archive  .rem_forma_small_image img {
	aspect-ratio: 1 / 1;
}

.rem_articles_archive .rem_forma_small_inner {
	justify-content: space-between;

}
.rem_articles_archive .articles-grid {
	display: grid;
    grid-template-columns: 1fr 1fr 1fr;
	gap: 56px 40px;
	margin-bottom: 56px;
}
.rem_articles_archive  .rem_forma_small {
	    grid-column: span 3;
}
.rem_articles_archive .articles-grid .article-thumbnail {
	    border-radius: 24px;
    overflow: hidden;
	margin-bottom:28px;
}
.rem_articles_archive .articles-grid .article-thumbnail   a {
	display:flex;
}
.rem_articles_archive .articles-grid .article-thumbnail  img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    aspect-ratio: 1 / 1;
}
.rem_articles_archive .articles-grid  .article-content {
	display: flex;
    flex-direction: column;
    gap: 15px;
}

.rem_articles_archive .articles-grid  .article-meta-top{
	display: flex;
	flex-direction: column;
    gap: 4px;
	font-size: 16px;
	
}
.rem_articles_archive .articles-grid  .article-date {
	color: #2828287a;
}
.rem_articles_archive .articles-grid  .article-category{
	    color: #2057CD;
}
.rem_articles_archive .articles-grid  .article-title {
	font-weight: 600;
    font-size: 28px;
    margin-bottom: 0;
}
.article-item:hover .article-thumbnail img {
    transform: scale(1.05);
}
.article-item .article-title a:hover {
    color: #ED682B;
}
.rem_articles-single {
	font-family: var(--primary-font);
}
.rem_articles-meta {
	display: flex;
    margin-bottom: 56px;
    gap: 56px;
}
.rem_articles-meta-info {
	display: flex;
    gap: 24px;
}

.rem_articles-meta_date,
.rem_articles-meta_time,
.rem_articles-meta_views,
.rem_articles-meta_comments {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #898989;
}
.rem_articles-meta_category {
	color: #2057CD;
}

.rem_actuality {
	margin: 56px 0;
    display: flex;
    justify-content: space-between;
}
.rem_actuality-date {
	    display: flex;
    align-items: center;
    gap: 8px;
}
.rem_actuality-date span {
	color: #898989;
}
.rem_actuality-date img {
	position: relative;
    top: -2px;
}
.rem_share {
	display: flex;
	gap: 20px;
	margin-bottom: 92px;
	align-items: center;
}
.rem_share-btns {
	display: flex;
    gap: 6px;
}
.rem_share-btns-wa, .rem_share-btns-tg, .rem_share-btns-max, .rem_share-btns-vk, .rem_share-btns-ok {
	width: 28px;
    background-color: #898989;
    border-radius: 100%;
    height: 28px;
	 background-repeat: no-repeat;
    background-position: center center;
}
.rem_share-btns-wa:hover, .rem_share-btns-tg:hover, .rem_share-btns-max:hover, .rem_share-btns-vk:hover, .rem_share-btns-ok:hover {
	 background-color: #F86E21;
}
.rem_share-btns-wa {
	    background-image: url(/wp-content/themes/blankslate/images/wa-share.svg);
   
}
.rem_share-btns-tg {
	    background-image: url(/wp-content/themes/blankslate/images/tg-share.svg);
   
}
.rem_share-btns-max {
	    background-image: url(/wp-content/themes/blankslate/images/max-share.svg);
   
}
.rem_share-btns-vk {
	    background-image: url(/wp-content/themes/blankslate/images/vk-share.svg);
   
}
.rem_share-btns-ok {
	    background-image: url(/wp-content/themes/blankslate/images/ok-share.svg);
   
}
.rem_article_content {
	max-width: 810px;
    margin: auto;
}
.rem_article_block {
    margin: 56px 0;
	color: var(--text-color);
}
#title_h2.rem_article_block {
margin: 56px 0 20px 0;

}	
#title_h3.rem_article_block {
margin: 56px 0 16px 0;

}	
#title_h4.rem_article_block {
margin: 56px 0 12px 0;

}	
.rem_article_text {
font-size: 18px;
    line-height: 140%;
    letter-spacing: 0.28px;
    
	
}
.rem_article_text h2, .rem_article_text h3, .rem_article_text h4, .title_h2, .title_h3, .title_h4 {
	font-family: var(--secondary-font);
    font-weight: 600;
    letter-spacing: 0.28px;
	line-height: 112%;
}
.rem_article_text h2, .title_h2 {
	font-size:40px;
	margin-bottom:20px;
	}
.rem_article_text h3, .title_h3 {
	font-size:28px;
	margin-bottom:16px;
}
.rem_article_text h4, .title_h4 {
	font-size:22px;
	margin-bottom:12px;
}
.rem_article_text h2:not(:first-child), .rem_article_text h3:not(:first-child), .rem_article_text h4:not(:first-child) {
	margin-top:36px;
}
.rem_article_text ol, .rem_article_text p {
	margin: 12px 0;
}
.rem_article_text ol, .rem_article_text ul {
	
	 list-style: none;
}
.rem_article_text ol li {
counter-increment: custom-counter;
    position: relative;
    padding-left: 34px;
    line-height: 1.5;
    margin-bottom: 12px;
}
.rem_article_text ol li::before {
content: counter(custom-counter);
    position: absolute;
    left: 0;
    top: 5px;
    width: 22px;
    height: 22px;
    background: #F0F4F7;
    font-weight: bold;
    font-size: 16px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.rem_article_text ul li {
	margin-bottom: 12px;
}

 .rem_article_text  ul li {
    position: relative;
    padding-left: 36px;
        margin-bottom: 10px;
    line-height: 1.5;
}

 .rem_article_text  ul li::before {
    content: "•";
    position: absolute;
    left: 18px;

    width: 18px;
    height: 18px;
      color: #F26D30;
    background-size: contain;
    background-repeat: no-repeat;
}
 .rem_article_text li.check::before {
	     content: "";
    position: absolute;
    left: 0;
    top: 2px;
    width: 18px;
    height: 18px;
      
    background-size: contain;
    background-repeat: no-repeat;
	  background-image: url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 18 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5.625 9.32143L7.65 11.25L12.375 6.75' stroke='%2331B428' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Ccircle cx='9' cy='9' r='8' stroke='%2331B428' stroke-width='2'/%3E%3C/svg%3E");
 }
 .rem_article_text li.cross::before {
	     content: "";
    position: absolute;
    left: 0;
    top: 2px;
    width: 18px;
    height: 18px;
      
    background-size: contain;
    background-repeat: no-repeat;
	  background-image: url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 18 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6.3125 11.6869L11.6906 6.31348M11.6906 11.6869L6.3125 6.31348' stroke='%23DE2B2B' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Ccircle cx='9' cy='9' r='8' stroke='%23DE2B2B' stroke-width='2'/%3E%3C/svg%3E");
	 
 }
 .rem_article_text a {
	     display: inline;
		 text-decoration: underline;
 }
 .rem_article_text a:hover {
	   color: #F26D30;
 }
 .rem_article_table {
	 overflow-x: auto;
 }
 .rem_article_table table {
	 border-collapse: collapse;
	 width: 100%;
    background: #F0F4F7;
	border-radius: 28px;
 }
  .rem_article_table th, .rem_article_table td  {
	  text-align: left;
	  padding: 14px 24px;
  }
  .rem_article_table th:not(:last-child) {
	  border-right: 1px solid #898989;
    border-bottom: 1px solid #898989;
  }
  .rem_article_table th:last-child {

    border-bottom: 1px solid #898989;
  }
   .rem_article_table td:not(:last-child) {
	  border-right: 1px solid #898989;
 
  }
  .rem_article_table  .rem_table_left td {
	   border-bottom: 1px solid #898989;
	    border-right: none;
  }
  .rem_table_left td:first-child{
	  font-weight: 600;
    border-right: 1px solid #898989;
   
  }
   .rem_table_left tr:last-child td{

    border-bottom: none;
  }
 .rem_article_images .rem_images_grid {
 
    display: flex;
    gap: 16px;
	overflow: auto;
}

.rem_article_images .rem_image_item {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1; 
	    min-width: 150px;
}

.rem_article_images .rem_image_item img {
    border-radius: 24px;
    overflow: hidden;
    width: 100%; 
    height: auto;
    aspect-ratio: 3 / 2; 
    object-fit: cover; 
}

 
.rem_article_images .rem_image_caption {
    word-break: break-word;
}

.rem_image_caption {
	font-size: 16px;
    color: #898989;
    line-height: 140%;
    letter-spacing: 0.28px;
}
.rem_article_gallery .rem_gallery_item{
	flex: 0 0 calc(33% - 16px);
}
  .rem_article_related {
	 border: 1px solid #898989;
    border-radius: 32px;
    padding: 24px; 
  }
  .rem_block_related_title {
	  font-weight: 600;
    color: #F26D30;
    /*font-size: 16px;
	margin-left: 230px;*/
    margin-bottom: 16px;
	
  }
  .rem_article_related  .rem_related_item {
	  display: flex;
    gap: 28px;
  }
  .rem_article_related  .rem_related_grid {
	  display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .rem_article_related .rem_related_item {
	  display: flex;
    gap: 28px;
	align-items: center;
  }
  
 .rem_article_related  .rem_related_image {
	  flex: 0 0 200px;
   
    height: fit-content;
	 display:flex;
  }
   .rem_article_related  .rem_related_image a {
	   border-radius: 24px;
    overflow: hidden;
   }
   .rem_article_related  .rem_related_image  img {
	   width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    aspect-ratio: 1 / 1;
   }
   
   .rem_article_related .rem_related_item:hover   .rem_related_image  img{
	      transform: scale(1.05);
   }
  .rem_article_related .rem_related_content {
	  display: flex;
    gap: 12px;
    flex-direction: column; 
   }
   .rem_article_related .rem_related_meta_top {
	   display: flex;
    font-size: 16px;
    gap: 16px;
   }
    .rem_article_related  .rem_related_date {
		color: #2828287a;
	}
	 .rem_article_related  .rem_related_category {
		 color: #2057CD;
	 }
	 .rem_article_related  .rem_related_title {
		 font-weight: 600;
    font-size: 28px;
    margin-bottom: 0;
	font-family: var(--secondary-font);
	    line-height: 110%;
    letter-spacing: 0.28px;
	 }
	 
	  .rem_article_related  .rem_related_title a:hover{
		color: #ED682B;  
	  }
	.rem_article_related  .rem_related_meta {
		 display: flex;
    gap: 24px;
    font-size: 16px;
    color: #959595;
	 }
	.rem_article_related .rem_related_time,.rem_article_related .rem_related_views,.rem_article_related .rem_related_comments {
    display: flex;
    gap: 5px;
    align-items: center;
}
.rem_article_lead{
    border: 1px solid #898989;
    border-radius: 24px;
    padding: 40px;
	display:flex;
	gap:20px;
	flex-direction:column;
}
.rem_article_lead .expert_row {
	 display: flex;
    gap: 16px;
    align-items: center;
}
  .rem_article_lead  .expert_photo {
	  max-width: 70px;
    max-height: 70px;
    border-radius: 12px;
    overflow: hidden; 
   }
     .rem_article_lead  .expert_photo img {
		     width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 1 / 1;
	 }
	 .rem_article_lead  .expert_name {
		 font-weight: 600;
    color: #2057CD;
	 }
	 .rem_article_lead .expert_meta {
		 font-size: 16px;
    color: #898989;
	 }
	.rem_article_lead .rem_lead_text {
		 line-height: 145%;
    letter-spacing: 0.28px;
	 }
	.rem_article_lead  .rem_lead_btn {
		     display: flex;
	 }
	 .rem_lead_expert_text {
    margin-top: 16px;
    font-size: 16px;
    position: relative;
    line-height: 1.5;
    padding-left: 28px;
	 }
	  .rem_lead_expert_text a {
		   color: #2057CD;
		   text-decoration: none;
	  }
	 .expert_checkmark {
            position: absolute;
            left: 0;
            top: 2px;
            width: 18px;
            height: 18px;
           background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 18 18'%3E%3Cpath d='M5.625 9.32143L7.65 11.25L12.375 6.75' stroke='%2331B428' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3Ccircle cx='9' cy='9' r='8' stroke='%2331B428' stroke-width='2' fill='none'/%3E%3C/svg%3E");
            background-size: contain;
            background-repeat: no-repeat;
        }
	 
	 .rem_tezis_wrapper{
		 padding: 40px;
    display: flex;
    gap: 28px;
    flex-direction: column;
    border-radius: 24px;
    border: 1px solid #2057CD;
	 }
	 .rem_tezis_title {
		 font-weight: 600;
    font-size: 40px;
    line-height: 112%;
    font-family: var(--secondary-font);
    letter-spacing: 0.28px;
	 }
	 .rem_tezis_text {
		 line-height: 145%;
    letter-spacing: 0.28px;
	 }
	 .rem_tezis_text p:not(:last-child), .rem_tezis_text li:not(:last-child) {
		     margin-bottom: 12px;
	 }
	 
	 .rem_tezis_text ul li , .rem_tezis_text ol li {
		     display: flex;
    align-items: flex-start;
    gap: 12px;
   
	 }
	 .rem_tezis_text ul li::before {
 content: "";

  width: 8px;
  height: 8px;
  background-image: url("data:image/svg+xml,%3Csvg width='8' height='8' viewBox='0 0 8 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='8' height='8' rx='2' fill='%232057CD'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
    flex-shrink: 0;
  position: relative;
  top: 8px;  
		 
	 }
.rem_quote_wrapper {
    background: #F0F4F7;
    display: flex;
    border-radius: 24px;
    gap: 12px;
    padding: 40px;
    flex-direction: column;
	    letter-spacing: .28px;
    line-height: 140%;
}
	 
.rem_quote_wrapper .rem_quote_text_block::before {
    content: "";
    background: url(/wp-content/themes/blankslate/images/up-quote.svg) no-repeat center center;
    background-size: contain;
    display: inline-block;
    width: 24px;
    height: 19px;
    vertical-align: middle;
    margin-bottom: 12px;
}
.rem_quote_wrapper .rem_quote_text_block::after {
    content: "";
    background: url(/wp-content/themes/blankslate/images/bottom-quote.svg) no-repeat center center;
    background-size: contain;
    display: inline-block;
    width: 24px;
    height: 19px;
    vertical-align: middle;
    margin-top: 12px;
    float: right;
}
.rem_quote_text_block .rem_quote_text {
	    font-style: italic;

}
.rem_quote_author {
	display: flex;
    align-items: center;
	    gap: 32px;
}
.rem_quote_author img {
	width: 120px;
    height: 120px;
    border-radius: 12px;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}
.rem_quote_author_name {
	font-weight: 600;
}

.rem_quote_author_post {
	color:#898989;
	font-size:16px;
}
.rem_article_sources {
    border: 1px solid #898989;
    border-radius: 32px;
    padding: 40px;
}
.rem_article_sources_title {
font-family: var(--secondary-font);
font-weight: 600;
font-size: 28px;
line-height: 100%;
letter-spacing: 0.28px;
margin-bottom: 32px;
}
.rem_article_sources_list li:not(:last-child) {
	margin-bottom:20px;
}
.rem_article_sources_list li a{
font-weight: 400;
font-size: 22px;
line-height: 140%;
letter-spacing: 0.28px;
color: var( --text-color);
}
.rem_article_sources_list li a:hover {
	color: #ED682B;
}
.rem_article_sources_link::after {
    content: '';
    display: inline-block;
    width: 16px;
    height: 14px;
    background-image: url("data:image/svg+xml,%3Csvg width='16' height='14' viewBox='0 0 16 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 7L15 7M15 7L9 13M15 7L9 1' stroke='%233E3E3E' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    transition: transform 0.2s ease;
	margin-left: 16px;
}
.rem_article_sources_link:hover::after{
	  background-image: url("data:image/svg+xml,%3Csvg width='16' height='14' viewBox='0 0 16 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 7L15 7M15 7L9 13M15 7L9 1' stroke='%23ED682B' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    transform: translateX(4px);
}
.rem_article_faq .rem_faq_title {
	font-size:40px;
}
.rem_article_text_btn {
    background: #2057CD;
    border-radius: 24px;
    padding: 40px;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
	gap:16px;
}
.rem_article_text_btn  .rem_block_btn {
	white-space: nowrap;
	flex: 0 0 50%;
}
.rem_article_text_btn_content {
	font-family: var(--secondary-font);
font-weight: 500;
font-size: 28px;
    line-height: 120%;
letter-spacing: 0.28px;
flex: 0 0 50%;

}

.popup-container.big-popup {
	max-width: 1220px;
	background: #F0F4F7;
}
.rem_article_form {
	position: relative;
    left: 50%;
    margin-left: -610px;
    max-width: 1220px;
	padding: 40px;
	border-radius: 44px;
}
.rem_article_form .rem_forma_small_image{
	 flex: 1;
}
.rem_article_form .rem_forma_small_image img {
	aspect-ratio: 1 / 1;
}
.rem_article_stories_title {
	font-size:40px;
}
.rem_article_stories {
	position:relative;
}
.rem_stories_link {
	width: fit-content;

}

.rem_article_stories  .swiper-button-prev, .rem_article_serv  .swiper-button-prev {
	    left: -100px;
    right: auto;
}
.rem_article_stories  .swiper-button-next, .rem_article_serv  .swiper-button-next {
    right: -100px;
    left: auto;
}
.rem_article_stories  .rem_stories_info {
	flex-direction: column;
	gap: 16px;
}
.rem_article_stories .swiper-slide {
    height: auto;
}
.rem_article_serv {
	position:relative;
}
.rem_article_serv  .rem_serv_other_service_name {
	margin-bottom:16px;
}
.rem_article_serv  .rem_serv_other_service_content{
	justify-content: space-between;
	gap: 24px;
}
.rem_article_serv  .rem_serv_other_service_desc {
	font-size:18px;
}

.rem_article_toc {
    background: #F0F4F7;
    border-radius: 24px;
    margin: 52px 0;
    overflow: hidden;
	padding:40px;
}

.rem_article_toc_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
 
    cursor: pointer;
  
}
.rem_article_toc_header:hover .rem_article_toc_toggle_text {
	color: #F26D30;
}
.rem_article_toc_header:hover .rem_article_toc_toggle svg path {
    fill: #F26D30;
}

.rem_article_toc_toggle_text {
	font-size: 15px;
    line-height: 145%;
    color: #898989;
    font-weight: 400;
    margin: 0 8px;
}

.rem_article_toc_title {
    font-family: var(--secondary-font);
    font-weight: 600;
    font-size: 22px;
    line-height: 100%;
    letter-spacing: 0.28px;
    color: var(--text-color);
}

.rem_article_toc_toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.rem_article_toc_header.collapsed .rem_article_toc_toggle svg {
    transform: rotate(180deg);
}

.rem_article_toc_toggle svg {
    transition: transform 0.3s ease;
}



.rem_article_toc_list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.rem_article_toc_list .rem_article_toc_list {
    margin-left: 24px;
    margin-top: 12px;
}

.rem_article_toc_item {
    margin: 16px 0;
}

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

.rem_article_toc_link {
    font-family: var(--primary-font);
    font-weight: 400;
    font-size: 18px;
    line-height: 145%;
    letter-spacing: 0.28px;
    color: #333333;
    text-decoration: none;
    transition: color 0.3s ease;
    cursor: pointer;
}

.rem_article_toc_link:hover {
    color: #F26D30;
}



.level-3 .rem_article_toc_link {
    font-size: 16px;
}

.level-4 .rem_article_toc_link {
    font-size: 16px;
   
}
.rem_article_toc_sublist {
	    margin-left: 24px;
}
.rem_articles_archive .rem_articles {
	margin: 120px auto;
}
.rem_spec_archive .rem_spec_inner {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: flex-start;
}

.rem_spec_archive .rem_spec_card {
    flex: 0 0 calc(33.333% - 20px);
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}



.rem_spec_archive .rem_spec_link {
    display: block;
  
    text-decoration: none;
}

.rem_spec_archive .rem_spec_image {
    overflow: hidden;
    border-radius: 24px;
}

.rem_spec_archive .rem_spec_image img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    transition: transform 0.4s ease;
}


.rem_spec_archive .rem_spec_content {
    padding: 20px 0;
    margin: 0;
}

.rem_spec_archive .rem_spec_name {
    margin-bottom: 10px;
    font-size: 20px;
    font-weight: 600;
}

.rem_spec_archive .rem_spec_name a {
    text-decoration: none;
    color: var(--text-color);
    transition: color 0.3s ease;
}

.rem_spec_archive .rem_spec_name a:hover {
    color: #F26D30;
}

.rem_spec_archive .rem_spec_rank {
    color: #898989;
    margin-top: 8px;
    font-size: 16px;
    line-height: 140%;
}

.rem_spec_archive .rem_spec_quote {
    margin-top: 16px;
    font-style: italic;
    font-size: 16px;
    line-height: 140%;
    color: var(--text-color);
}

.rem_spec_archive .rem_stories_link {
    display: block;
    margin: 0 20px 20px 20px;
    padding: 14px 20px;
    text-align: center;
    background: #fff;
    border: 2px solid #F26D30;
    border-radius: 52px;
    color: #F26D30;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.rem_spec_archive .rem_stories_link:hover {
    background: #F26D30;
    color: #fff;
}

.rem_spec_filter {
    display: flex;
    flex-wrap: nowrap;
    gap: 12px;
    margin-bottom: 52px;
    justify-content: space-around;
}

.rem_filter_btn {
    display: inline-block;
    padding: 21px 40px;
   background: #F0F4F7;
    color: var(--text-color);
    text-decoration: none;
    border-radius: 52px;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 18px;
    font-family: var(--primary-font);
    text-align: center;
    border: none;
    cursor: pointer;
    line-height: 145%;
    letter-spacing: 0.28px;
	word-wrap: break-word;
    word-break: normal;
    white-space: normal;
    max-width: 450px;
}

.rem_filter_btn:hover {
    color: #2057CD;
}

.rem_filter_btn.active {
    background: #2057CD;
    color: #fff;
}
.rem_banner_spec_desc {
	display: flex;
    gap: 16px;
    margin-bottom: 44px;
    flex-direction: column;
}

.rem_banner_spec_quote {
	background: #00000066;
    border-radius: 20px;
    padding: 24px;
    max-width: 85%;
    margin-bottom: 44px;
}

.rem_banner_spec_quote_text {
    display: flex;
    flex-direction: column;
    gap: 16px;
}	

.rem_banner_spec_quote_text::after {
    content: "";
    background: url(/wp-content/themes/blankslate/images/up-quote-orange.svg) no-repeat center center;
    background-size: contain;
    display: inline-block;
    width: 36px;
    height: 28px;
    vertical-align: middle;
    margin-bottom: 28px;
}
.rem_education_wrapper {
	 display: flex;
    gap: 44px;
    flex-wrap: nowrap;
	
}
.rem_education_col {
	flex: 50%;
}

.rem_education_items {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.rem_education_item {
    display: inline-block;
    padding: 12px 24px;
  
    border-radius: 32px;
 
    border: 1px solid #aaafb2;
 
}

@media (min-width: 1600px) {
	 .swiper-button-next {
		right: calc(50% - 720px);
	}
	
	 .swiper-button-prev {
		left: calc(50% - 720px);
	}
	
}


@media (max-width: 1600px) {
	.rem_rooms .swiper-button-prev, .rem_rooms .swiper-container-rtl .swiper-button-next{
	left: 20px;
    right: auto;
}

.rem_rooms .swiper-button-next, .rem_rooms .swiper-container-rtl .swiper-button-prev {
    right: 20px;
    left: auto;
}
}



@media (max-width: 1480px){
	.rem_anchors .swiper-button-prev {
	left: 0;	
	}
	.rem_anchors .swiper-button-next {
		right:0;
	}
}


@media (min-width: 1300px) {
.pt-desk {
	padding-top:90px;
}


}

@media (max-width: 1300px) {
.hidden_desktop {
	display:block;
}
.show_desktop {
	display: none;
}
.anchor-target {
  scroll-margin-top: 100px; 
}
	.rem_faq_form_block_text {
		max-width: 50%;
	}
	.rem_text_image_img{
		height: 200px;
	}
	.rem_text_image_item {
		height: 200px;
	}
	
	.rem_block_btn {
	    padding: 15px 25px;
}
.rem_text_image_form_block  {
	height: 200px;
	padding: 25px 35px;
}
.rem_step_item, .rem_cta  {
	flex: 1 0 calc(50% - 16px);
	max-width: calc(50% - 16px);
}

.rem_cta.full-width {
    flex: 100%!important;
    max-width: 100%!important;
}

.rem_step_item:nth-child(3n) .rem_step_arrow {
	display:flex;
}

.rem_step_item:nth-child(2n) .rem_step_arrow {
    display: none;
}
.rem_adv_image1 {
    width: 250px;
}
.rem_adv_image3, .rem_adv_image4 {
    width: 200px;
}
.rem_adv_image2 {
    width: 220px;
}
.rem_adv_inner {
	gap:40px;
}
.rem_banner_item {
	   /* min-height: 920px;*/
}
.rem_banner_buttons {
	width:100%;
}
.rem_forma_big_inner {
	flex-direction: column;
}
.rem_forma_big_image img{
    aspect-ratio: 4 / 3;
    /*object-position: top center;*/
        object-position: 25% 25%;
}
.rem_form_doc_text {
	font-size: 22px;
}

.rem_reviews_video {
    aspect-ratio: 2 / 1;

}

.rem_articles_grid_layout {
  
    grid-template-columns: 2fr 3fr;
  
}

.rem_footer_info_row {
grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
}
.rem_footer_logo {
 grid-area: 1 / 1 / 2 / 2; 
} 
.rem_footer_info {
 grid-area: 2 / 1 / 3 / 2;
 }
.rem_footer_phone {
 grid-area: 1 / 2 / 2 / 3;
align-items: flex-end;
 } 
.rem_footer_btn {
 grid-area: 2 / 2 / 3 / 3;
 }
  
    
	.rem_header_block {
flex-direction: row;
    justify-content: flex-end;
}
header .container {
padding: 12px 0;
    align-items: center;
}


main {
    margin-top: 30px;
}
.wp-singular main, .archive main, .search main, .error404 main {
    margin-top: 100px;
}
	.rem_tel {
	display:block;
}
.rem_header_info {
	gap: initial;
}
.header_menu {
        display: none !important;
    }

    .hamburger_btn {
        display: flex;
    }


    .header_menu_mobile {
    display: none;
        position: absolute;
        top: 100%;
     /* top: calc(100% - 12px);*/
        right: 5%; 
        /*width: 100%; */
        max-width: 100vw; 
        background: white;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        z-index: 1000;
        max-height: 70vh;
min-width:500px;
        overflow-y: auto;
        box-sizing: border-box;
    }

    .header_menu_mobile.active {
        display: block;
    }

 
    .header_menu_mobile .mobile-menu {
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .header_menu_mobile .mobile-menu li {
        position: relative;
        border-bottom: 1px solid #eee;
    }

    .header_menu_mobile .mobile-menu li:last-child {
        border-bottom: none;
    }

    .header_menu_mobile .mobile-menu a {
        display: block;
        padding: 15px 20px;
        text-decoration: none;
        color: #333;
        font-size: 16px;
        transition: color 0.3s ease;
    }

    .header_menu_mobile .mobile-menu a:hover {
        color: #0073aa;
    }


    .header_menu_mobile .menu-item-has-children > a,
    .header_menu_mobile .page_item_has_children > a {
        position: relative;
        padding-right: 50px;
    }

    .submenu-toggle {
        position: absolute;
        right: 15px;
        /*top: 50%;*/
        transform: translateY(-100%);
        background: none;
        border: none;
        width: 50px;
        height: 50px;
        cursor: pointer;
        transition: transform 0.3s ease;
    }

    .submenu-toggle::after {
        content: '';
        display: block;
        width: 12px;
        height: 12px;
        border-right: 2px solid #333;
        border-bottom: 2px solid #333;
        transform: rotate(45deg);
        transition: transform 0.3s ease;
    }

    .submenu-toggle.active::after {
        transform: rotate(-135deg);
    }

    
    .header_menu_mobile .sub-menu {
        display: none;
       
        border-top: 1px solid #eee;
    }

    .header_menu_mobile .sub-menu.active {
        display: block;
    }

    .header_menu_mobile .sub-menu li {
        border-bottom: 1px solid #e0e0e0;
    }

    .header_menu_mobile .sub-menu li:last-child {
        border-bottom: none;
    }

    .header_menu_mobile .sub-menu a {
        padding: 12px 30px;
        font-size: 14px;
    }


    .header_menu_mobile .sub-menu .sub-menu a {
        padding: 10px 40px;
        font-size: 14px;
    }
	
	.rem_logo_block, .rem_header_block {
		flex: 1;
	}
	.rem_header_mobile_search {
		padding: 28px 16px;
	}
	
	
.rem_header_mobile_search .search-field{
padding: 14px 40px 14px 12px;
    border-radius: 12px;
    border: 1px solid #3E3E3E;
    font-size: 16px;
    /*max-width: 180px;*/
    display: block;
    width: 100%;	
}

.rem_header_mobile_search .search-form{
    position: relative;
    display: flex;
    align-items: center;	
}

.rem_header_mobile_search .search-submit{
	background: url(/wp-content/themes/blankslate/images/search.svg) no-repeat;
    border: none;
    background-color: transparent;
    font-size: 0;
    width: 34px;
    height: 34px;
	position:absolute;
	right:10px;
}
.rem_header_mobile_search .search-submit:hover {
	background: url(/wp-content/themes/blankslate/images/search-orange.svg) no-repeat;
	cursor:pointer;
}
.search-form input[type="search"],
.search-field,
input[type="search"] {
    caret-color: #ED682B;
}

.rem_header_mobile_search .search-form label {
    width: 100% ; 
}

.header_menu_mobile .rem_header_phone {
	margin-top: 48px;
    padding: 0 16px;
     font-family: var(--primary-font);
    font-weight: 600;
        font-size: 14px;
       line-height: 145%;
    letter-spacing: 0.28px;
	    display: flex;
		gap: 4px;
}
.header_menu_mobile .rem_header_work_time {
		margin-top: 9px;
    padding: 0 16px;
    font-family: var(--primary-font);
font-weight: 400;
font-size: 12px;
line-height: 145%;
letter-spacing: 0.28px;

}
.header_menu_mobile  .rem_header_btn {
	    margin: 28px 16px 36px 16px;
}

.header_menu_mobile  .rem_header_btn_white {
	width: 100%;
     font-family: var(--primary-font);
    font-weight: 600;
    font-size: 14px;
    line-height: 145%;
    letter-spacing: 0.28px;
   
}
.rem_reviews .swiper-button-next, .rem_reviews  .swiper-button-prev {
top: 25%;
}
.rem_form_doc_form input.rem_input_field {
    line-height: 1;
}
.rem_pans_cards_link {
line-height: 1;

}
.rem_action_archive  .rem_action_item {
	flex: 0 0 calc(50% - 28px);
	     
}
.rem_text_img_right_inner, .rem_text_img_left_inner  {
    flex-direction: column;
}

.rem_block_sep {
	    right: -43px;
}

.swiper-btn-low {
	display:flex;
}

.rem_stories_archive .rem_stories_card {
    flex: 0 0 calc(50% - 20px);

}

.rem_card_tile_inner {
	grid-template-columns: repeat(2, 1fr);
}
.rem_banner_pure_price {
	padding: 12px 28px;
	    font-size: 24px;
    height: 80px;
}
.rem_serv_tile_service {
    width: calc(50% - 10px);
}

.rem_article_form {
	 position: relative;
        left: 50%;
        transform: translateX(-50%);
        width: 100vw;
        max-width: 100vw;
        margin-left: 0;
        border-radius: 0;
}

.rem_article_stories  .swiper-button-prev, .rem_article_serv .swiper-button-prev  {
	   left: 0px;
    right: auto;
	
}
.rem_article_stories  .swiper-button-next, .rem_article_serv .swiper-button-next{
    right: 0px;
    left: auto;
	
}
.rem_article_serv .swiper-button-prev, .rem_article_serv .swiper-button-next{  
	top: 30%;
	
}

.rem_spec_filter {
	justify-content: center;
}

}

@media (max-width: 1060px){
	.rem_anchors .swiper-button-prev,.rem_anchors .swiper-button-next {
	display: none;	
	}
	
}


@media (max-width: 990px) {
	.rem_faq_form_block {
		justify-content: center;
    flex-wrap: wrap;
	}
	.rem_faq_form_block_text {
		max-width: 100%;
		margin-bottom: 15px;
	}
	
	.rem_qoute_inner {
	justify-content: center;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
	}
	.rem_qoute_image {
		min-height: 500px;
		/*flex-direction: column-reverse;*/
	}
	.rem_text_image_item, .rem_text_image_form_block {
		max-width: 100%;
    width: 100%;
	flex:100%;
	}
	.rem_text_image_form_block {
	height: auto;
}
.rem_mission_big_block_inner {
	width:60%;
}

.rem_step_item {
	padding: 50px 32px;
}
.swiper-button-next, .swiper-container-rtl .swiper-button-prev {
    right: 10px;
    left: auto;
}

.swiper-button-prev, .swiper-container-rtl .swiper-button-next {
    left: 10px;
    right: auto;
}

.rem_adv_inner {
	flex-direction: column;
}
.rem_adv_images_block {
	flex: 0 0 100%;
min-height: 750px;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    align-items: start;
    justify-items: center;
}

.rem_adv_image1 {
    width: 320px;
	transform: translate(10%, 20%);
}
.rem_adv_image3, .rem_adv_image4 {
    width: 250px;
}
.rem_adv_image2 {
    width: 280px;
	transform: translate(-60%, 110%);
}

.rem_adv_image3 {
      transform: translate(-90%, 0);
}

.rem_adv_image4 {
      transform: translate(80%, 120%);
}
.rem_pans_cards_contacts {
	flex-direction: column;

}
.rem_pans_cards_contact{
		border: none;
		padding: 8px 0;
	
}

.rem_pans_cards_contact:not(:last-child) {
    border-bottom: 1px solid #C5C5C5;
	border-right: none;
	
}


.rem_pans_cards_contact a {
	    color: #2057CD;
		border-bottom: 1px solid #2057CD;
}
.rem_gallery_item {
    flex: 0 0 calc(33% - 16px);

}
.rem_action_item {
	flex: 0 0 calc(33% - 16px);
	     
}


.rem_banner_content {
	flex: 0 0 100%;
}

.rem_banner_yandex_rating {
display:none;
}
.rem_banner_title {
    flex: 0 0 100%;
}
.home .rem_banner_item {
	min-height: 1350px;
}

.rem_banner_item {
	min-height: 1350px;
}
	
.rem_banner_image {
	left: 0;
    right: 0;
    bottom: 0;
    margin: 0 auto;
    width: fit-content; 
	max-height: 550px;
	
}
.rem_banner_image img {
	border-bottom-left-radius: 44px;
    border-bottom-right-radius: 44px;
}
.rem_form_doc_wrap {
	gap: 48px;
    flex-direction: column;
}
.rem_form_doc_cards {
	flex-direction: column;
}
.rem_form_doc_card {
	padding:20px;
}
.rem_reviews_video {
    aspect-ratio: 1 / 1;

}
.rem_articles_grid_layout {
  
    grid-template-columns: 1fr;
  
}
.featured_article {
	    display: flex;
    gap: 28px;
}
.featured_image {
	flex: 0 0 200px;
    border-radius: 24px;
overflow: hidden;
}
.featured_content {
    margin-top: 0;
}
.rem_articles_date_cat {
    flex-direction: column;
    gap: 4px;
}
.rem_footer_info_row {
display: flex;
    flex-direction: column;
}
.rem_footer_phone {
align-items: flex-start;
}
footer{
    padding-top: 44px;
}

.rem_footer_main_row {
    grid-template-columns: 1fr;
gap: 28px;
}
.rem_footer_copyright {
flex-direction: column-reverse;
}
.rem_footer_copyright_info {
grid-template-columns: 1fr;
}
.rem_footer_info_row {
padding-bottom: 28px;
}
.rem_footer_main_row, .rem_footer_copyright {
padding:28px 0;
}
.rem_footer_addresses_list {
gap: 12px;
}

    header .container {
padding:12px 24px;
}
 .header_menu_mobile {
	 right: 0;
        width: 100%;
 }
 .search_page .page-numbers li{
	 border:none;
 }
 .navigation.pagination.custom_pagination  .nav-links ul.page-numbers li:not(.nav-arrow-item) {
    /*display: none;*/
}
 .navigation.pagination.custom_pagination  .nav-links ul.page-numbers {
	display:flex;
}
.rem_stories_archive .rem_stories_card {
	flex: 100%;
}

.rem_blocks_inner {
	flex-direction: column;
}

.rem_block_sep {
	display: none;
}

.rem_gallery_pure_item {
	flex: 0 0 calc(33% - 16px);
 
}
.rem_forma_small_image img {
	aspect-ratio: 4 / 3;
    
    object-position: 25% 25%;
}
.rem_stories_info {
	    flex-direction: column;
		gap: 12px;
}
.rem_anchors .swiper-button-next, .rem_anchors .swiper-button-prev  {
	display: none;
}
.rem_slider_caption .swiper-button-next, .rem_slider_caption .swiper-button-prev {
    top: 65%;
}
.rem_rooms .swiper-button-next, .rem_rooms .swiper-button-prev {
    top: 50%;
}
.rem_schedule_inner {
	grid-template-columns: 1fr;
}

.rem_banner_pure_content_wrap {
	grid-template-columns: 1fr;
}
.rem_banner_pure_advantages {
	max-width:100%;
}

.rem_banner_pure_buttons {
	width:100%;
}
.rem_banner_pure_price {
	width: fit-content;
	padding: 18px 35px;
        font-size: 28px;
        height: 100px;
		margin-left: auto;
		width: 240px;
}
.rem_banner_pure_video_wrapper img {
	    aspect-ratio: 4 / 2;
}
.rem_anchors .container {
	padding: 0;
}
.rem_price_btns {
	flex-direction: column;
	width: fit-content;
	margin: auto;
}
.rem_price_btns >* {
	width:100%;
}
.rem_spec_filter {
	flex-wrap: wrap;
}

.rem_education_wrapper {
   
    flex-direction: column;
}
 .rem_education_col {
    flex: 100%;
}
}


@media (max-width: 768px) {
	
	section {
    margin: 52px auto;
}
        .modal-content {
            width: 95%;
        }
        
        .close-modal {
            right: 0;
            top: -50px;
        }
		.rem_text {
font-size: 16px;
}

.rem_title {
font-size: 28px;
    margin-bottom: 16px;

}
.rem_faq_form_block_wa, .rem_faq_form_block_tg {
	
}

.rem_mission_small_blocks {
	flex-wrap: wrap;
}

.rem_mission_small_block {
	width:100%;
	padding:20px;
}

.rem_mission_small_blocks_desc {
	font-size: 18px;
}

.rem_mission_big_block_inner {
		width:100%;
		
}

.rem_mission_big_block_text,.rem_mission_cards_name, .rem_mission_small_blocks_title {
	font-size: 20px;
}

.rem_mission_big_block {
	background: url('/wp-content/themes/blankslate/images/mission-block-v.jpg') no-repeat center bottom;
	background-size: cover;
	    min-height: 780px;
}
.rem_step_item {
padding: 32px 20px;
    flex: 1 0 100%;
    max-width: 100%;
}
    .rem_step_arrow, .rem_step_item:nth-child(2n) .rem_step_arrow, .rem_step_item:nth-child(3n) .rem_step_arrow {
        display: flex;
    }

.rem_step_arrow {
transform: rotate(90deg);
    bottom: 0;
    top: 90%;
    right: 45%;
    width: 32px;
    height: 32px;

}

.rem_cta {
padding: 28px 16px;
    flex: 1 0 100%;
    max-width: 100%;
}


.rem_step_text {
	font-size:18px;
}
.swiper-button-next, .swiper-container-rtl .swiper-button-prev {
    right: 50px;
    left: auto;
}

.swiper-button-prev, .swiper-container-rtl .swiper-button-next {
    left: 50px;
    right: auto;
}

.rem_slider .swiper-button-next, .rem_slider .swiper-container-rtl .swiper-button-prev {
    right: 10px;
    left: auto;
}

.rem_slider .swiper-button-prev, .rem_slider .swiper-container-rtl .swiper-button-next {
    left: 10px;
    right: auto;
}

.swiper-button-next:after, .swiper-button-prev:after {
font-size: 24px;
 
}
.swiper-button-next, .swiper-button-prev {
	width: 40px;
    height: 40px;
	    font-size: 24px;
}

.rem_adv_image1 {
    width: 250px;
}
.rem_adv_image3, .rem_adv_image4 {
    width: 200px;
}
.rem_adv_image2 {
    width: 220px;
}
.rem_adv_images_block {
	min-height:600px;
}

.rem_adv_images_block.short_block {
    min-height: 400px;
}
.rem_pans_cards_item {
	flex-wrap: wrap;
}
.rem_pans_cards_image {
	flex: 100%;
	aspect-ratio: 10 / 9;
}
.rem_pans_cards_content {
	flex:100%;
	padding:0 32px 32px 32px;
}
.rem_pans_cards_pans_prices {
	        flex-direction: column;
}
.rem_pans_cards_pans_price{
	font-size: 16px;
}
.rem_tabs_nav_btn {
	font-size:16px;
}

.rem_gallery_item {
    flex: 0 0 calc(50% - 16px);

}
.rem_spec_image {
	text-align: center;
}
.rem_spec_content {
	margin: 15px auto;
}
.rem_action_item {
	flex: 0 0 calc(50% - 16px);
	     
}

  .home  .rem_banner_item {
        min-height: 1100px;
    }
.rem_banner_item {
        min-height: 1100px;
    }
	.rem_banner .swiper-button-prev, .rem_banner .swiper-button-next {
		display:none;
	}
	.rem_banner_image {

	max-height: 430px;
}
.rem_bg {
        padding: 44px 0;
    }
	.rem_serv .swiper-button-prev, .rem_serv .swiper-button-next {
		/*display:none;*/
	}
	.rem_serv_service_name, .rem_serv_service_price,.rem_serv_tile_service_name, .rem_serv_tile_service_price, .rem_serv_other_service_name, .rem_serv_other_service_price {
	font-size:18px;
	    margin-bottom: 8px;
	}
	.rem_serv_service_desc, .rem_serv_tile_service_desc, .rem_serv_other_service_desc {
		margin-bottom: 20px;
	}
		/*.rem_tariff .swiper-button-prev, .rem_tariff .swiper-button-next {
		display:none;
	}*/
.rem_tariff_item_name, .rem_tariff_pure_item_name {
	font-size:20px;
}

.rem_tariff_item_desc, .rem_tariff_pure_item_desc  {

    padding: 12px 0;
}

.rem_tariff_item_price {

    /*margin: 12px 0 20px 0;*/
}
.rem_tariff_item, .rem_tariff_pure_item {
	padding:24px;
}
.rem_tariff_item_name, .rem_tariff_pure_item_name {

    padding-bottom: 12px;
    }
	.rem_tariff_pure_item_prices, .rem_tariff_item_prices {
		margin: 12px 0 20px 0;
	}
	.rem_tariff_pure_item_price_desc, .rem_tariff_item_price_desc {
		font-size:14px;
	}
	.rem_tariff_pure_item_price_value, .rem_tariff_item_price_value {
		font-size:20px;
	}
	
	.rem_tabs_nav_btn, .rem_gallery_tabs_nav_btn, .rem_serv_tabs_nav_btn, .rem_tariff_tabs_nav_btn, .rem_menu_nav_btn, .rem_serv_tile_tabs_nav_btn, .rem_serv_tile_tabs_nav_link {
		font-size:16px;
	}
	
	.rem_forma_small_inner {
    flex-direction: column;
}
.form_small { 
    flex-direction: column;
}

.rem_input_field,.rem_forma_small .rem_block_btn  {
    font-size: 16px;
}

.rem_input_field {
	    padding: 20px 24px;
}
.rem_forma_small_inner {
	    gap: 28px;
}
.rem_forma_small {
    padding: 44px 0;

}
.form-steps span {
	font-size:14px;
}
.form-pans-choice label span {
	font-size:16px;
}
.rem_forma_big_title {
    
    margin-bottom: 16px;
}
.form-steps {
    margin-bottom: 28px;
}
.form-section, .form-step {
	gap:16px;
}
.rem_forma_big_inner {
 
    gap: 34px;
}
.rem_forma_big {
    padding: 44px 0;
  
}

.form-pans-choice .wpcf7-radio {
	display: flex;
    overflow-x: scroll;
}

.popup-container {
	    padding: 28px 20px;
		
}
.popup-close {
	top: 10px;
    right: 10px;

}
.popup-title {
  margin-bottom: 28px;
  font-size: 22px;

}
.form_popup .rem_block_btn {
	font-size: 16px;
}
.rem_form_doc_form {
	padding:20px;
}
.rem_form_doc_form_text {
    margin-bottom: 32px;

}
.rem_form_doc_contacts {
	    flex-direction: row-reverse;
    justify-content: space-between;
}
.rem_form_doc_contacts .rem_faq_form_block_mess >* {
	width: 40px;
    height: 40px;
}
.rem_form_doc_form_title {
	font-size: 22px;
}


.rem_reviews_video {
    aspect-ratio: 2 / 1;

}
.rem_articles {
	    padding: 52px 0;
}
.rem_articles_article_title {
	font-size:20px;
}
.rem_footer_copyright_links {
    display: flex;
    gap: 12px;
    flex-direction: column;
}
.rem_footer_copyright_links a {
    display: block;
margin:0;

}
.rem_footer_copyright {
align-items: flex-start;
}
.rem_footer_copyright_info{
    gap: 12px;
    justify-items: start;
}
.rem_footer_info {
font-size:10px;
}
.rem_footer_phone a,.rem_footer_menu ul li ,.rem_footer_work_time_info, .rem_footer_address_item {
font-size:14px;
}
main {
margin-top: 50px;
}
    .wp-singular main, .archive main {
        margin-top: 90px;
    }
     .has-rem-banner.wp-singular main, .has-rem-banner.archive main {
        margin-top: 70px;
    }
		
header {
	border-bottom-right-radius: 20px;
    border-bottom-left-radius: 20px;
}
.header_menu_mobile {
min-width: calc(100vw - 48px);
min-height: 87vh;
}
	.hamburger_btn {
		    width: 40px;
    height: 40px;
	}
	.rem_header_mess > * {
    width: 40px;
    height: 40px;
   
}


 header {
        transition: none !important;
        transform: none !important;
           }
    
    header.header-hidden {
        transform: none !important;
          }

.error_404_btns {
    gap: 14px;
    flex-direction: column;
}
.error_404 {
	    margin: 28px auto;
}

 .rem_tile_item:nth-child(n) {
        flex: 0 0 100%;
    }
    
    .rem_tile_image {
        width: 100px;
        height: 100px;
		
		flex-grow: 0;
        flex-shrink: 0;
    }
    
	
	.rem_tile_item {
		display: flex;
    gap: 16px;
    align-items: center;
    padding: 16px 24px;
	}
	
.rem_gallery_pure_item {
	flex: 0 0 calc(50% - 16px);
 
}
.rem_price	.table_cell_desc{
	font-size:10px;
}
.rem_video_title {
	margin-bottom: 16px;
}
.rem_reviews .swiper-button-next, .rem_reviews .swiper-button-prev {
    top: 30%;
}
.rem_qoute_text {
    padding: 28px 20px;
   
}

.rem_faq__item {
	    padding: 16px;
}
.rem_qoute_text::before {
	margin-bottom: 8px;
	width: 20px;
    height: 15px;
}

.rem_qoute_text::after {
	width: 20px;
    height: 15px;
	margin-top: 8px;
}
.rem_quote_name {
	font-size: 20px;
}
.rem_qoute_desc {
	font-size: 16px;
}

.rem_btn_white {
	margin-top: 32px;
	font-size: 14px;
	padding: 11px 32px;
}

 .rem_btn_white_download, .rem_btn_orange_download {

	font-size: 14px;
	padding: 11px 20px;
}
.rem_price_btns {
	gap:12px;
}

.rem_play_button {
	    width: 56px;
    height: 56px;
}
.rem_action {
    
    padding: 44px 0;
}
.rem_adv_card_title  {
	font-size: 20px;
}
.rem_adv_inner {
	gap:36px;
}
.b24-widget-button-wrapper {
    z-index: 99 !important;
}
.b24-widget-button-shadow {
	z-index: 98 !important;
}

.rem_serv_desc, .rem_serv_tile_desc, .rem_serv_other_tile_desc {
    margin-bottom: 36px;
}

.rem_pans_cards {
  
    padding: 44px 0;
}

.rem_banner_desc {
    margin-bottom: 28px;
}
.rem_banner_advantages {
	margin-bottom: 28px;
}
.rem_tariff_tabs_panel .swiper-pagination, .rem_tariff_pure .swiper-pagination, .rem_rooms .swiper-pagination {
    bottom: 30px;
}

.rem_code_text {
	font-size:14px;
}
.rem_code .big_text {
	font-size:16px;
}
.rem_card_tile_title {
	margin-bottom: 12px;
}
.rem_card_tile_desc {
    margin-bottom: 28px;
}
    .rem_card_tile_inner {
        grid-template-columns: repeat(1, 1fr);
    }
	.rem_card_tile_item {
    gap: 16px;
    flex-direction: row;
}
.rem_card_tile_content {
    padding-top: 8px;
}
.rem_card_tile_image {
	width: 120px;
    height: 120px;
    flex-shrink: 0;
}
.rem_card_tile_item_title {
	font-size:18px;
	margin-bottom:4px;
}

.rem_card_tile_item_desc {
	font-size:14px;
}

.rem_anchors_inner {
	padding: 20px;
	border-radius: 20px;
}

.rem_anchor_link {
	font-size: 14px;
    padding: 12px 24px;
}
.rem_anchors_inner::after {
	width: 100px;
}
.rem_slider_caption_text {
	font-size: 18px;
}
.rem_slider_caption_item {
	    padding: 40px 32px 32px;
}

    .rem_slider_caption .swiper-button-prev {
        left:0;
    }
.rem_slider_caption .swiper-button-next {
	right:0;
}
.rem_rooms_item_content {
	padding: 20px 20px 32px;
}
.rem_rooms_item_name {
	padding-bottom: 12px;
    margin: 0;
	font-size: 20px;
}
.rem_rooms_item_desc {
	padding: 12px 0;
	font-size: 14px;
}
.rem_rooms_item_price {
	font-size: 16px;
}
.rem_rooms_item_price {
	padding: 20px 0;
}
    .rem_rooms .swiper-button-next, .rem_rooms .swiper-button-prev {
        top: 40%;
    }
	.rem_schedule_item  {
	font-size:14px;
}
.rem_schedule_title {
	        margin-bottom: 32px;
}

.rem_menu_day_content {
	grid-template-columns: 1fr;
}
.rem_menu_intake_food {
	font-size:14px;
}
.rem_menu_intake {
	padding:16px;
}
.rem_menu_intake_food ul li {
	    padding-left: 12px;
		margin-right: 4px;
}
.rem_menu_intake_food ul li::before {
	font-size: 16px;
}
.rem_tabs_nav, .rem_gallery_nav, .rem_serv_tabs_nav, .rem_tariff_tabs_nav, .rem_menu_nav, .rem_serv_tile_tabs_nav {
	border-radius: 12px;
	margin-bottom: 20px;
}
.rem_tabs_nav_btn, .rem_gallery_tabs_nav_btn, .rem_serv_tabs_nav_btn, .rem_tariff_tabs_nav_btn, .rem_menu_nav_btn, .rem_serv_tile_tabs_nav_btn, .rem_serv_tile_tabs_nav_link {
	padding: 12px 20px;
	border-radius: 12px;
	
}

.rem_banner_pure_item {
    padding: 42px 0 32px 0;
}
.rem_breadcrumbs {
    margin-bottom: 20px;
}
.rem_banner_pure_desc {
    margin-bottom: 28px;
}
.rem_banner_pure_advantages {
	border-radius: 16px;
    padding: 16px;
	gap:16px;
	margin-bottom: 36px;
}
.rem_banner_pure_advantage_text {
	font-size: 14px;
}
.rem_banner_pure_price span {
	font-size: 14px;
}
    .rem_banner_pure_price {
	font-size: 20px;
	padding: 16px 26px;
	border-radius: 16px;
	width: 180px;
	height: 75px;
	}
	.rem_banner_pure_yandex_rating a{
		height: 75px;
	}
	.rem_banner_pure_video_wrapper img {
	    aspect-ratio: 1 / 1;
}
.rem_banner_video_btn {
	width: 56px;
    height: 56px;
}

.rem_banner_pure_bottom {
	    gap: 8px;
	
}
.rem_tariff_pure .swiper-button-next, .rem_tariff_pure.swiper-container-rtl .swiper-button-prev {
    right: 0;
    left: auto;
}

.rem_tariff_pure .swiper-button-prev, .rem_tariff_pure .swiper-container-rtl .swiper-button-next {
    left: 0;
    right: auto;
}
.rem_banner_pure_btn_orange, .rem_banner_pure_btn_white {
font-size: 14px;
padding: 12px 24px;
}
.rem_serv_tile_service {
    width: 100%;
}

.rem_text img { 
max-width: 100%;
    margin: 24px 0;
}

.rem_text_text h2, .rem_text_text h3, .rem_text_text h4 {
	margin-bottom:16px;
}

.rem_banner_story_desc {
	font-size: 16px;
   line-height: 140%;
   margin-bottom: 16px;
}
.rem_banner_story_desc_2 {
   margin-bottom: 16px;
}
.rem_articles_archive .rem_forma_small {
	grid-column: unset;
}
.rem_articles_archive .rem_forma_small_image {
	flex: 1;
}
.rem_articles_archive .articles-grid {
	grid-template-columns: 1fr;
	    gap: 36px;
}
.rem_articles_archive .rem_forma_small {
	  position: relative;
        width: 100vw;
        left: 50%;
        right: 50%;
        margin-left: -50vw;
        margin-right: -50vw;
        padding-left: 20px;
        padding-right: 20px;
        box-sizing: border-box;
		margin-top: 44px;
		margin-bottom: 16px;
		border-radius:24px;
}
.navigation.pagination.custom_pagination .nav-links ul.page-numbers li {
	margin: 0 8px;
	
}
.navigation.pagination.custom_pagination .nav-links .page-numbers {
	padding: 10px 15px;
    font-size: 14px;
}
.pagination.custom_pagination .next.page-numbers {
	width: 37px;
    height: 37px;
	background: url(data:image/svg+xml,%3Csvg width='14' height='12' viewBox='0 0 16 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 7L15 7M15 7L9 13M15 7L9 1' stroke='%233E3E3E' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E) no-repeat center center;
}
.pagination.custom_pagination .prev.page-numbers {
	width: 37px;
    height: 37px;
	background: url(data:image/svg+xml,%3Csvg width='14' height='12' viewBox='0 0 16 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M15 7L1 7M1 7L7 13M1 7L7 1' stroke='%233E3E3E' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E) no-repeat center center;
}
.rem_actuality {
	flex-direction: column;
    gap: 8px;
	    margin: 44px 0;
		font-size:12px;
}
.rem_articles-meta {
    margin-bottom: 44px;
    gap: 20px;
    flex-direction: column;
	font-size:14px;
}
.rem_articles-meta-info:first-child {

    gap: 4px;
    flex-direction: column-reverse;
}
.rem_share {
	font-size:12px;
	margin-bottom: 64px;
}
.rem_article_text, .rem_article_table {
	font-size: 14px;
}
.rem_article_text h2 {
	font-size: 28px;
}
.rem_article_text h3 {
	font-size: 20px;
	margin-bottom: 12px;
}
.rem_article_text h4 {
	font-size: 18px;
}
.rem_article_text h2:not(:first-child), .rem_article_text h3:not(:first-child), .rem_article_text h4:not(:first-child) {
    margin-top: 28px;
}
 .rem_article_images .rem_images_grid {
	gap:8px; 
 }
.rem_image_caption {
    font-size: 12px;
}
.rem_article_block {
    margin: 28px 0;
}
.rem_article_gallery .rem_gallery_grid {
	gap: 8px;
}
.rem_article_gallery .rem_gallery_item{
	flex: 0 0 calc(50% - 8px);
}
.rem_gallery_item {
	    border-radius: 12px;
}
.rem_faq__body {
	    padding: 16px 0;
 
    font-size: 14px;
}
.rem_block_related_title {
	font-size: 16px;
	/*text-align: center;*/
	margin-left:0;
}
.rem_article_related {
  
    border-radius: 24px;
    padding: 20px;
}
.rem_article_related .rem_related_item {
	
	gap: 20px;
	align-items: normal;
}

.rem_article_related .rem_related_image a {
	border-radius: 16px;
}
.rem_article_related .rem_related_content {
	gap: 8px;
}
.rem_article_related .rem_related_meta_top {
    gap: 4px;
    font-size: 12px;
    flex-direction: column;
}
.rem_article_related .rem_related_title {
    font-size: 20px;
}
.rem_article_related .rem_related_meta {
	font-size: 14px;
}
.rem_article_lead {
    padding: 20px;
}
.rem_article_lead .rem_lead_text {
	font-size:14px;
}
.rem_article_lead .expert_name {

    font-size: 14px;
}
.rem_article_lead .expert_meta {
    font-size: 12px;
}
.rem_article_lead .rem_lead_btn {
    display: block;
}
.rem_lead_expert_text {
    margin-top: 12px;
	        font-size: 12px;
}

.rem_tezis_wrapper {
    padding: 20px;
    gap: 20px;

}
.rem_tezis_title {

    font-size: 24px;
	
}

.rem_tezis_text {
	font-size:14px;
}
.rem_quote_wrapper {
	padding: 20px;
}
.rem_quote_wrapper .rem_quote_text_block::before, .rem_quote_wrapper .rem_quote_text_block::after {
width:18px;
height:14px;	
}
.rem_quote_wrapper .rem_quote_text {
	font-size:14px;
}
.rem_quote_author img {
    width: 70px;
    height: 70px;
}
.rem_quote_author_name {
	font-size:14px;
}
.rem_quote_author_post {
	font-size:12px;
}
.rem_quote_author {
	gap:16px;
}
.rem_article_sources {
    border-radius: 24px;
    padding: 20px;
}
.rem_article_sources_title {

    font-size: 20px;
    margin-bottom: 20px;
}
.rem_article_sources_list li:not(:last-child) {
    margin-bottom: 12px;
}
.rem_article_sources_list li a {
    font-size: 16px;
}
.rem_article_sources_link::after {
min-width:12px;
    width: 12px;
    height: 10px;
}
.rem_article_sources_link {
	    display: flex;
    align-items: center;
}
.rem_article_text h2, .title_h2 {
    font-size: 28px;
   
}
.rem_article_text h3, .title_h3 {
    font-size: 20px;

}
.rem_article_faq .rem_faq_title {
	font-size:28px;
}
.rem_article_text_btn{ 
    padding: 20px;
	flex-direction: column;
}
.rem_article_text_btn_content {
	font-size: 20px;
}

.rem_article_text_btn  .rem_block_btn {
	
	padding: 12px 24px;
}
.popup-container.big-popup {
	max-height:100vh;
}
#rem_popup_calc{
	    padding: 0px;
}
.rem_article_form  {
	padding: 44px 16px;
}

.rem_article_form  .rem_forma_small_title {
	font-size: 24px;
}
.rem_article_form  .rem_forma_small_wa, .rem_article_form  .rem_forma_small_tg, .rem_article_form  .rem_forma_small_max {
    width: 40px;
    height: 40px;
 
}
.rem_article_form  .rem_forma_small_mess {
	gap:6px;
}
.rem_article_form  .rem_forma_small_desc {
		font-size: 14px;
}
.rem_article_stories .rem_stories_info {
	gap:12px;
	
}
.rem_article_stories .rem_stories_link {
	padding: 10px 24px;
    width: 100%;
    font-size: 14px;
}
.rem_article_serv .rem_serv_other_service_content {
	padding: 16px 20px 20px;
}
.rem_article_serv .rem_serv_other_service_desc {
    font-size: 14px;
}
.rem_article_serv .rem_serv_other_service_name {
    margin-bottom: 8px;
}
.rem_article_serv .rem_serv_other_service {
	border-radius:16px;
}
.rem_article_serv .swiper-button-prev, .rem_article_serv .swiper-button-next{  
	top: 50%;
	
}
.rem_article_toc {
	padding: 20px;
	
}

.rem_article_toc_title {
	font-size:18px;
}

.rem_article_toc_toggle_text {
    font-size: 12px;
}
.rem_article_toc_link, .level-3 .rem_article_toc_link, .level-4 .rem_article_toc_link{
	 font-size: 14px;
}
.rem_article_toc_item {
    margin: 12px 0;
}
.rem_article_toc_sublist {
    margin-left: 16px;
}
.rem_article_form .rem_forma_small_image img {
	aspect-ratio: 4 / 3;
}
.rem_quote_text_block .rem_quote_text {
	line-height: 140%;
}
.rem_article_table, .rem_article_images.three-col{
	   width: calc(100vw - 20px); 
        position: relative;
        right: 0;
        margin-left: 0;
        margin-right: 0;
        overflow-x: auto;
		
}
.rem_articles_archive .rem_articles {
    margin: 0;
	padding: 0;
}
.featured_image img {
	aspect-ratio:1 / 1;
}
.rem_articles_archive .rem_forma_small_image img {
    aspect-ratio: 4/ 3;
}
.rem_articles_article_time img, .rem_articles_article_views img, .rem_articles_article_comments img {
    width: 18px;
    object-fit: contain;
    height: 18px;
}
.rem_spec_archive .rem_spec_card {
	 flex: 0 0 100%;
	 max-width: 400px;
 }
 .rem_spec_archive .rem_spec_inner {

    justify-content: center;
}
.rem_spec_filter {
        gap: 8px;
        margin-bottom: 32px;
    }
    
    .rem_filter_btn {
        padding: 12px 24px;
        font-size: 14px;
		max-width: 220px;
    }
.rem_banner_spec_experience {
	font-size: 14px;
}
.rem_banner_spec_quote {
	max-width:100%;
	margin-bottom: 28px;

        border-radius: 16px;
        padding: 16px;
        gap: 16px;
        
   
}
.rem_banner_spec_quote_text::after {
	margin-bottom: 12px;
}
.rem_banner_spec_desc {
   
    margin-bottom: 28px;
   
}
.rem_education_item {
   
    padding: 8px 16px;
    border-radius: 20px;
   
}
	}

@media (max-width: 580px) {
	.rem_faq_form_block_text {
		max-width: 100%;
	}
	.rem_faq_form_block {
		padding: 20px;
	}
	
	.rem_faq_form_block_wa, .rem_faq_form_block_tg, .rem_faq_form_block_max{
	    width: 40px;
    height: 40px;
}
.rem_text_image_form_block  {
	padding: 20px;
}
.rem_block_btn {
	padding: 12px;
	font-size:14px;
}
   

.rem_text_image_img {
	margin-right:20px;
}
	.rem_text_image_img{
		/*height: 160px;*/
		height:100%;
	}
	.rem_text_image_text {
		padding: 12px 0;
		
	}
	.rem_text_image_item {
		/*height: 160px;*/
		height:auto;
	}
	
	.rem_mission_card {
		flex: 0 0 100%;
		padding: 20px;
	}
	
	.rem_mission_cards {
		flex-wrap:wrap;
	}
	
	.rem_mission_big_block {
		min-height: 750px;
		padding:20px;
	}
	
	.rem_price_inner {
	
    overflow-x: scroll;
}

.rem_step_item {
padding: 28px 16px;

}



.swiper-button-next, .swiper-container-rtl .swiper-button-prev {
    right: 10px;
    left: auto;
}

.swiper-button-prev, .swiper-container-rtl .swiper-button-next {
    left: 10px;
    right: auto;
}
.rem_adv_image1 {
    width: 160px;
}
.rem_adv_image3, .rem_adv_image4 {
    width: 130px;
}
.rem_adv_image2 {
    width: 140px;
}

    .rem_adv_image3 {
        transform: translate(-80%, 0);
    }
.rem_adv_images_block {
	min-height: 400px;
}
    .rem_adv_images_block.short_block {
        min-height: 250px;
    }
.rem_adv_card {
	flex: 0 0 100%;
}

.rem_pans_cards_btns {
	flex-direction: column;
}

.rem_pans_cards_btn {
	width: 100%;
	padding: 12px;
    font-size: 14px;
	    line-height: 2;
}

.rem_pans_cards_link {
	padding: 10px;
}
.rem_action_item {
	flex: 0 0 100%;
	     
}
    .home  .rem_banner_item {
        min-height: 1100px;
		padding:42px 0;
    }
	 .rem_banner_item {
        min-height: 900px;
		padding:42px 0;
    }
	.rem_banner_title {
		margin-bottom:16px;
	}
	.rem_banner_advantage_text {
    font-size: 14px;
}
.rem_banner_advantage_icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

.rem_banner_buttons {
	font-size: 14px;
}
.small_article, .featured_article {
	flex-direction: column;
}

.small_image, .featured_image {
	flex: 100%;
}
    .rem_reviews_video {
        aspect-ratio: 1 / 1;
    }

 .error_btn {
	 max-width: 100%;
 }
 .error_404_btns >* {
	 width:100%;
 }
 .error_btn_white {
	     padding: 12px;
    font-size: 14px;
 }
 
.search-card .entry-wrapper {
	 flex-direction: column;
    align-items: center;
 }
 .search-card .entry-thumbnail {
  aspect-ratio: 16 / 9; 
    height: 100%; 
 }
 .search-card .entry-thumbnail img {

    aspect-ratio: 16 / 9; 
    width: 100%; 
    height: 100%; 
}
.search-card .entry-content {
	padding: 0 28px 28px 28px;
}

.rem_action_archive  .rem_action_item {
	flex: 100%;
	     
}

.rem_banner_btn_orange {

    padding: 22px 30px;
}
.rem_header_block, .rem_header_mess {
	gap: 6px;
}
.rem_logo_block img {
	max-height: 40px;
}
.rem_video_wrapper {
	height: 250px;
}
.rem_faq_form_block .rem_block_btn {
    margin: 0;
	padding: 6px 12px;
}
.rem_slider .swiper-button-next, .rem_slider .swiper-button-prev {
    top: 65%;
}

    .rem_input_field {
        padding: 13px 24px;
    }
	
	    .rem_input_field, .rem_forma_small .rem_block_btn {
        font-size: 14px;
    }
	
	    .rem_pans_cards_content {
       
        padding: 0 20px 20px 20px;
    }
	    .rem_pans_cards_item {
        gap: 20px;
    }
	.rem_pans_cards_name {
    font-size: 20px;
    
}

.rem_anchors_inner::after {
	width: 60px;
}

.rem_schedule_item {
	grid-template-columns: 1fr;
	gap: 8px;
    padding: 16px;
}
.rem_form_doc_contacts {

	flex-direction: column;
       
        gap: 16px;
}
.rem_article_related .rem_related_grid {
	gap: 24px;
}
.rem_article_related .rem_related_image img {
	aspect-ratio: 3 / 2;
}
.rem_article_related .rem_related_item {
	flex-direction: column;
}
.rem_article_text_btn  .rem_block_btn {
	
	width:100%;
}
   .rem_article_stories .swiper-button-prev, .rem_article_serv .swiper-button-prev{
        left: -10px;
        right: auto;
		top:50%;
    }
    
    .rem_article_stories .swiper-button-next, .rem_article_serv .swiper-button-next{
        right: -10px;
        left: auto ;
		top:50%;
    }
	.rem_article_serv .rem_serv_other_service_content {
		gap:0;
	}

}

@media (max-width: 400px) {
	.rem_banner_pure_bottom {
		display:flex;
	}
	.rem_banner_pure_price {
		padding: 10px 20px;
    flex: 50%;
    height: 70px;
	width: 100%;
	}
	.rem_banner_pure_yandex_rating img {
		height: 70px;
	}
	
}

/* Принудительно перемещаем превью fancy вниз */
.fancybox-show-thumbs .fancybox-inner {
    right: 0;
}
.fancybox-thumbs {
    top: auto !important;
    bottom: 0 !important;
    width: 100% !important;
    height: 100px !important;
    left: 0 !important;
    background: rgba(0, 0, 0, 0.8);
}

.fancybox-thumbs__list {
    display: flex !important;
    flex-direction: row !important;
    justify-content: center !important;
    height: 100% !important;
    padding: 10px 0;
}

.fancybox-thumbs__list a {
    flex: 0 0 auto;
    width: 80px !important;
    height: 80px !important;
    margin: 0 5px !important;
}


.fancybox-slide--image {
   /* padding: 0 0 120px 0 !important;*/
}

.fancybox-content {
   /* margin-bottom: 120px !important;*/
}

.fancybox-stage {
    bottom: 100px !important;
}




