/* css/style.css */
/* Variables */



body {
    background: #F0F0F0;
}


.main-nav{
    background-color: #fff;
}

/* Здесь*/


.main-nav{
    display: none;
}


.burger-mobile{
  display: none;
}



/* Здесь*/




.nav__inner{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 48px;

}


.nav__items{
    display: flex;
    gap: 66px;
}

.nav__items li a{
    font-weight: 600;
    font-size: 18px;
    line-height: 26px;
    text-transform: uppercase;
}



.nav__lang.main-nav--lang {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  min-width: 72px;
  height: 48px;
  cursor: pointer;
}

.main-nav__link--current {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  height: 100%;
  padding: 0 18px 0 12px;
  background: transparent;
  border: 0;
  font-size: 18px;
  line-height: 26px;
  text-transform: uppercase;
  color: var(--base-dark, #151515);
  cursor: pointer;
  white-space: nowrap;
}

.main-nav__link--current::after {
  content: "";
  position: absolute;
  right: 8px;
  top: 50%;
  width: 12px;
  height: 12px;
  border-right: 4px solid var(--base-dark, #151515);
  border-bottom: 4px solid var(--base-dark, #151515);
  transform: translateY(-65%) rotate(45deg);
  transition: transform 0.25s ease;
  box-sizing: border-box;
}

.main-nav--lang.is-open .main-nav__link--current::after,
.main-nav--lang:hover .main-nav__link--current::after {
  transform: translateY(-35%) rotate(-135deg);
}

.main-nav__dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  width: 72px;
  min-width: 72px;
  margin: 0;
  padding: 8px 0;
  list-style: none;
  background: #ececec;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
  z-index: 20;
}

.main-nav--lang.is-open .main-nav__dropdown,
.main-nav--lang:hover .main-nav__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.main-nav__dropdown__item {
  margin: 0;
  padding: 0;
}

.main-nav__dropdown__link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 40px;
  padding: 0 8px;
  background: transparent;
  border: 0;
  font-size: 18px;
  line-height: 26px;
  text-transform: uppercase;
  color: var(--base-dark, #151515);
  cursor: pointer;
  white-space: nowrap;
}

.main-nav__dropdown__link:hover {
  background: rgba(0, 0, 0, 0.04);
}

.main-nav__dropdown__item.is-hidden {
  display: none;
}



.burger {
  position: relative;
  width: 20px;
  height: 3px;
  background: #151515;
  display: inline-block;
}

.burger::before,
.burger::after {
  content: "";
  position: absolute;
  left: 0;
  width: 20px;
  height: 3px;
  background: #151515;
}

.burger::before {
  top: -5px; 
}

.burger::after {
  top: 5px; 
}


.main-banner{
    min-height: 596px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.main-banner::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(21, 21, 21, 0.28);
    z-index: 1;
}

.main-banner__media {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.main-banner__video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.snow_img{
    position: absolute;
    top: 48px;
    right: 204px;
    z-index: 2;
}

.banner__content{
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2;
}

.banner__title{
font-weight: 1000;
font-size: 130px;
line-height: 140px;
text-align: center;
text-transform: uppercase;
color: #ffffff;
}





.search-booking-form {
  width: 100%;
  max-width: 1400px;
}

.search-booking-form__fields {
  display: flex;
  align-items: stretch;
  width: 100%;
  border: 1px solid #151515;
  height: 80px;
  background: #fff;
}

.search-booking-form__item {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1 1 0;
  min-width: 0;
  padding: 0 20px;
  background: #fff;
  border-right: 1px solid #151515;
}

.search-booking-form__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 24px;
}

.search-booking-form__icon img {
  display: block;
  max-width: 100%;
  height: auto;
}

.search-booking-form__item input {
  width: 100%;
  height: 100%;
  border: 0;
  outline: none;
  box-shadow: none;
  background: transparent;
  padding: 0;
  font-size: 16px;
  line-height: 22px;
  color: #151515;
  text-transform: uppercase;
}

.search-booking-form__item input::placeholder {
  color: #151515;
  text-transform: uppercase;
  opacity: 1;
}

.search-booking-form__btn {
  flex: 0 0 320px;
  max-width: 320px;
  width: 320px;
  height: 80px;
  border: 0;
  background: #151515;
  color: #C9F76E;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  transition: 0.2s ease;
}

.search-booking-form__btn:hover {
  opacity: 0.9;
}

#online {
  position: relative;
  --online-fly-distance: 180vh;
}

#online .online-pin-wrap {
  position: relative;
}

#online .online-pin-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  z-index: 3;
}

.online__inner {
  display: flex;
  width: 100%;
  position: relative;
}

.online__img {
  background-image: url(/skin/assets/img/promo/online_bg.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.online__img,
.online__info {
  flex: 1;
  aspect-ratio: 1 / 1;
  box-sizing: border-box;
}

.online__info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  background-color: #151515;
}

.online__info__title {
  margin: 0 30px 0 66px;
  font-weight: 900;
  font-size: 56px;
  line-height: 68px;
  letter-spacing: 0;
  text-transform: uppercase;
  color: #f5f5f5;
}

.online__info__text {
  max-width: 370px;
  margin: 0 30px 0 66px;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: .02em;
  color: #a2a2a2;
}

.online__info .js-online-title,
.online__info .js-online-text {
  transition: opacity 220ms ease, transform 220ms ease;
  will-change: opacity, transform;
}

.online__info.is-fade .js-online-title,
.online__info.is-fade .js-online-text {
  opacity: 0;
  transform: translateY(8px);
}

.online__info .js-online-desc {
  will-change: transform;
  transition: transform 420ms cubic-bezier(.2, .8, .2, 1);
}

.online__img {
  position: relative;
  background: none !important;
  overflow: visible !important;
}

.online__inner,
.online__img,
.online__stack {
  overflow: visible !important;
}

.online__stack {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.online__info {
  position: relative;
  z-index: 2;
}

.online-card {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate3d(var(--x, 0px), var(--y, 0px), 0) rotate(var(--r, 0deg));
  opacity: 1;
  box-shadow: 0 24px 60px rgba(0, 0, 0, .35);
  will-change: transform, opacity;
}

.online-card.is-enter {
  animation: online-card-enter 820ms cubic-bezier(.2, .8, .2, 1) both;
}

.online-card.is-exit {
  animation: online-card-exit 520ms cubic-bezier(.2, .8, .2, 1) both;
}

.online-arrow {
  display: none !important;
}



.online-arrow.disabled,
.online__inner__btn .gallery__arrow.disabled {
  opacity: .35;
  pointer-events: none;
}

@keyframes online-card-enter {
  from {
    opacity: 0;
    transform: translate3d(0, var(--online-fly-distance), 0) rotate(0deg);
  }

  to {
    opacity: 1;
    transform: translate3d(var(--x, 0px), var(--y, 0px), 0) rotate(var(--r, 0deg));
  }
}

@keyframes online-card-exit {
  from {
    opacity: 1;
    transform: translate3d(var(--x, 0px), var(--y, 0px), 0) rotate(var(--r, 0deg));
  }

  to {
    opacity: 0;
    transform: translate3d(0, var(--online-fly-distance), 0) rotate(0deg);
  }
}















@media (max-width: 768px) {
  #online {
    --online-fly-distance: 140vh;
  }

  #online .online-pin-sticky {
    position: static;
    height: auto;
    display: block;
  }

  .online__inner {
    flex-direction: column;
    padding: 0 70px;
    background-color: #151515;
  }

  .online__img {
    order: 2;
    aspect-ratio: 1 / 1;
    width: 100%;
  }

  .online__info {
    order: 1;
    gap: 12px;
    padding: 130px 0 72px;
  }

  .online__img,
  .online__info {
    flex: inherit;
    aspect-ratio: inherit;
  }



  .online-arrow {
    display: flex !important;
  }

  .online-arrow-left {
    left: -20px;
  }

  .online-arrow-right {
    right: -20px;
  }
}

@media (max-width: 576px) {
  .online__info {
    gap: 12px;
    padding: 28px 0 72px;
  }

  .online__inner {
    padding: 0 26px;
  }

  .online__img {
    aspect-ratio: 1 / 1;
    width: 100%;
  }

  .online-arrow {
    width: 40px;
    height: 40px;
    top: 70%;
  }

  .online-arrow-left {
    left: -20px;
    z-index: 10;
  }

  .online-arrow-right {
    right: -20px;
    z-index: 10;
  }
}

@media (max-width: 992px) {
  .online__info__title {
    margin: 0 30px 0 46px;
  }

  .online__info__text {
    margin: 0 30px 0 46px;
  }
}

@media (prefers-reduced-motion: reduce) {
  #online .online-pin-sticky {
    position: static;
    transform: none;
  }

  .online-card,
  .online__info .js-online-desc,
  .online__info .js-online-title,
  .online__info .js-online-text {
    transition: none !important;
    animation: none !important;
  }
}




.online__inner__btn{
  position: absolute;
  bottom: 0px;
  right: 0px;
  display: flex;
  gap: 1px;
}
.online__inner__btn .gallery__arrow{
  position: relative;
}



.top-category .home-title{
  position: relative;

}

.top-category .home-title:before{
  content: "";
  background-image: url(/skin/assets/img/home/top_category_bg.png);
  background-repeat: no-repeat;
  width: 227px;
  height: 27px;
  position: absolute;
  bottom: 10px;
  left: 0px;
  z-index: -1;

}


.category__inner {
  position: relative;
  display: flex;
  align-items: center;
}

.category__inner .calendar__arrow__block {
 /* position: absolute;
  top: 50%;
  z-index: 2;
  transform: translateY(-50%); */
  background: #FFF;
  width: 40px;
  height: 40px;
  border: 1px solid #151515;
  cursor: pointer;
}

.category__inner .calendar__arrow__block:first-child {
  left: 0;
}

.category__inner .calendar__arrow__block:last-child {
  right: 0;
}

.category__inner .calendar__arrow__block.is-disabled {
  pointer-events: none;
}

.category__inner .calendar__arrow__block.is-disabled .arrow-left {
  border-right-color: #b2b0b0;
}

.category__inner .calendar__arrow__block.is-disabled .arrow-right {
  border-left-color: #b2b0b0;
}

.category__list {
  display: flex;
  gap: 8px;
  width: 100%;
  min-width: 0;
  padding: 0 8px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.category__list::-webkit-scrollbar {
  display: none;
}

.category__list > .nav__btn {
  flex: 0 0 auto;
  white-space: nowrap;
  border: 1px solid #15151500;
}

.category__list > .nav__btn.is-active {
  border: 1px solid #151515;
}

.category__list > .nav__btn:hover {
  border: 1px solid #151515;
}

@media (max-width: 768px) {
  .category__list {
    gap: 8px;
    padding: 0 28px;
  }
}






.category__img{
 /* background-image: url(/skin/assets/img/home/top_category_bg.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 340px; */
}


.category__img {
  position: relative;
  width: 100%;
  height: 340px;
  overflow: hidden;
}

.category__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


.sub-category__list{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.top-category__subcategories-templates{
  display: none;
}

.category__item{
  display: flex;
  align-items: center;
  justify-content: space-between;

  width: calc((100% - 32px) / 5); 

  height: 56px;
  background-color: #151515;
  padding: 0 16px;

  font-weight: 600;
  font-size: 16px;
  line-height: 18px;
  text-transform: uppercase;

  color: #fff;
  text-decoration: none;
  position: relative;
}

.category__item:hover{
  color: #fff;
}


.category__item::after{
  content: "";
  width: 16px;
  height: 16px;
  background: url('/skin/assets/img/home/cat_arrow.png') no-repeat center;
  background-size: contain;
  flex-shrink: 0;
}

.category__item{
  gap: 10px;
}

.category__item span{
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}


.counter__inner{
  text-align: center;
  text-transform: uppercase;
}

.counter__info{
  display: flex;
}


.counter__info__block{
  flex: 1;
  display: flex;
  flex-direction: column;
}

.counter__info__block .b-btn{
  font-size: 20px;
}


.counter__info__block__inner{
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  min-height: 308px;
  padding: 0px 48px;
}

.counter__ditail{
  display: flex;
  flex-direction: column;
  gap: 42px;
  width: 100%;
}

.counter__ditail p{
  font-weight: 1000;
  font-size: 94px;
  line-height: 108px;
  text-transform: uppercase;
  position: relative;
}

.counter__ditail span{
  text-transform: uppercase;
}


.time-counter{
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.time-counter p span{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px 8px;
font-weight: 1000;
font-size: 94px;
line-height: 108px;
text-transform: uppercase;
width: 100%;
color: #151515;
}


.time-counter p span.time-counter__name{
  font-weight: 600;
  font-size: 16px;
  line-height: 18px;
  text-transform: uppercase;
  color: #D9D9D9;
  position: absolute;
  bottom: -20px;
}


.counter__separator{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 25px; 
}

.counter__separator::before,
.counter__separator::after{
  content: "";
  width: 9px;
  height: 9px;
  background-color: #D9D9D9;
  display: block;
}


.top-title{
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.recommend .b-btn{
  color: #C9F76E;
  font-size: 18px;
}






.master-cards {
  position: relative;
  background: #f3f3f3;
}

.master-cards__viewport {
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.master-cards__viewport::-webkit-scrollbar {
  display: none;
}

.master-cards__list {
  display: flex;
  gap: 14px;
  flex-wrap: nowrap;
  scroll-behavior: smooth;
}

.master-card {
  flex: 0 0 calc((100% - (14px * 3)) / 4);
  background: #f6f6f6;
  border: 1px solid #151515;
  text-decoration: none;
  color: #151515;
  display: flex;
  flex-direction: column;
  transition: 0.2s ease;
}

.master-cards__arrow {
  position: absolute;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid #151515;
  background: #fff;
  z-index: 2;
  transform: translateY(-50%);
}

.master-cards__arrow--prev {
  left: -29px;
}

.master-cards__arrow--next {
  right: -29px;
}

.master-cards__arrow.disabled {
  opacity: 0.4;
  pointer-events: none;
}



.master-card__image {
  position: relative;
  height: 402px;
  overflow: hidden;
}

.master-card__image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.master-card__label {
  position: absolute;
  top: 16px;
  left: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 34px;
  padding: 4px 16px;
  text-transform: uppercase;
  font-weight: 600;
}

.master-card__label--salon {
  background: #b8fff0;
}

.master-card__content {
  padding: 16px 24px 24px 24px;
}

.card__title {
  font-weight: 900;
  text-transform: uppercase;
}

.master-card__role {
  color: #858585;
}

.master-card__rating {
  display: flex;
  align-items: center;
  gap: 8px;
}

.master-card__star {
  font-size: 15px;
  line-height: 1;
  color: #151515;
}

.master-card__score {
  font-weight: 600;
  color: #151515;
  line-height: 100%;
  font-size: 18px;
  line-height: 26px;
}

.master-card__reviews {
  color: #858585;
  line-height: 100%;
  padding-top: 2px;
}

.master-card__location {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #858585;
}

.master-card__location img {
  padding-left: 3px;
}


.inst__item{
  height: 402px;
}




@media (max-width: 768px) {
  .master-cards__list {
    gap: 12px;
  }

  .master-card {
    flex-basis: 100%;
  }

  .master-card__image {
    height: 220px;
  }

  .master-cards__arrow--prev {
    left: 8px;
  }

  .master-cards__arrow--next {
    right: 8px;
  }

  .inst__item {
    flex-basis: calc((100% - 24px) / 2);
    height: 320px;
  }

  .blog__card {
    flex-basis: calc((100% - 24px) / 2);
  }

  .inst-slider__arrow--prev,
  .blog-slider__arrow--prev {
    left: 8px;
  }

  .inst-slider__arrow--next,
  .blog-slider__arrow--next {
    right: 8px;
  }
}




.map__block{
  border: 1px solid #CCCCCC;
}

.map__block iframe{
  height: 620px;
}



.inst-section{
  padding: 120px 0px;
}


.inst-section .b-btn{
  font-size: 20px;
}

.inst-slider,
.blog-slider {
  position: relative;
}

.inst-slider__viewport,
.blog-slider__viewport {
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.inst-slider__viewport::-webkit-scrollbar,
.blog-slider__viewport::-webkit-scrollbar {
  display: none;
}

.inst-slider__arrow,
.blog-slider__arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid #151515;
  background: #fff;
  transform: translateY(-50%);
}

.inst-slider__arrow--prev,
.blog-slider__arrow--prev {
  left: -20px;
}

.inst-slider__arrow--next,
.blog-slider__arrow--next {
  right: -20px;
}

.inst-slider__arrow.disabled,
.blog-slider__arrow.disabled {
  opacity: 0.4;
  pointer-events: none;
}



.inst__list{
  display: flex;
  flex-wrap: nowrap;
}

.inst__item{
  flex: 0 0 400px;
  width: 400px;
  height: 500px;
  overflow: hidden;
}

.inst__item img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.section-link{
  font-weight: 600;
  text-transform: uppercase;
  position: relative;
  padding-right: 35px;
  text-decoration: underline;
}


.section-link:before{
  content: "";
  background-image: url(/skin/assets/img/home/arrow_right.svg);
  background-repeat: no-repeat;
  width: 17px;
  height: 17px;
  position: absolute;
  right: 0px;
  top: 2px;
}


.blog-section .top-title{
  align-items: baseline;
}




.blog__list{
  display: flex;
  flex-wrap: nowrap;
}

.blog__card{
  flex: 0 0 calc((100% - 48px) / 3);
  text-decoration: none;
  color: inherit;
  position: relative;
}

.blog__card__image{
  border: 1px solid #151515;
  height: 299px;
  overflow: hidden;
}

.blog__card__image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.blog__card__role{
  text-transform: uppercase;
}

.blog__card .card__title{
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.2;
  min-height: calc(1.2em * 2);
  max-height: calc(1.2em * 2);
}

.blog__card__content{
  padding-right: 90px;
}

.home-reviews-section {
  margin-bottom: 120px;
}

.home-reviews-section .booking__title {
  font-weight: 900;
  text-transform: uppercase;
}

.home-reviews-section .s__nav {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}

.home-reviews-section .s-nav__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 6px 16px;
  border: 1px solid transparent;
  text-decoration: none;
  transition: border-color 0.2s ease;
}

.home-reviews-section .m-nav_link {
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
}

.home-reviews-section .s__nav--white .s-nav__link {
  color: #151515;
  background-color: #fff;
}

.home-reviews-section .s__nav--white .s-nav__link:hover,
.home-reviews-section .s__nav--white .s-nav__link.active {
  border: 1px solid #151515;
}

.home-reviews-section .ml-auto {
  margin-left: auto;
}

.home-reviews-section .tab-pane {
  display: none;
}

.home-reviews-section .tab-pane.active {
  display: block;
}

.home-reviews-section .reviews__rating {
  display: flex;
  align-items: center;
  gap: 16px;
}

.home-reviews-section .rating-general {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 114px;
  height: 110px;
  background-image: url(/skin/assets/img/master/rating_main_star.png);
  background-repeat: no-repeat;
  background-size: cover;
}

.home-reviews-section .ratings-bars {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 100%;
  max-width: 878px;
}

.home-reviews-section .bar-item {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 22px;
}

.home-reviews-section .bar-label {
  width: 110px;
  text-align: right;
}

.home-reviews-section .bar {
  position: relative;
  flex: 1;
  width: 100%;
  height: 12px;
  overflow: hidden;
  background: #ccc;
}

.home-reviews-section .bar-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: #c9f76e;
  transition: width 0.3s ease-in-out;
}

.home-reviews-section .bar-count {
  flex-shrink: 0;
  font-weight: 700;
}

.home-reviews-section .reviews__list {
  columns: 3 380px;
  column-gap: 24px;
  column-fill: balance;
}

.home-reviews-section .reviews__item {
  break-inside: avoid;
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-bottom: 24px;
  background: #fff;
  border: 1px solid #ccc;
}

.home-reviews-section .reviews__item.p-16 {
  padding: 20px;
}

.home-reviews-section .space-between-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.home-reviews-section .author__name__block {
  display: flex;
  align-items: center;
}

.home-reviews-section .author__name {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.home-reviews-section .author__name__block img {
  border-radius: 50%;
}

.home-reviews-section .author__stat__block {
  display: flex;
  align-items: flex-start;
}

.home-reviews-section .m-comment {
  display: flex;
  align-items: center;
  gap: 4px;
}

.home-reviews-section .star-rating {
  padding-top: 3px;
}

.home-reviews-section .star-wrap {
  display: flex;
  gap: 4px;
}

.home-reviews-section .bg-surface {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 6px 12px;
  background: #f2f2f2;
}

.home-reviews-section .s-link {
  color: #151515;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  text-decoration: underline;
  color: #999999;
}

.home-reviews-section .reviews__more-link {
  display: table;
  margin: 0 auto;
}

.home-reviews-section .reviews__item img[src*="review_img"] {
  width: 100%;
  height: 220px;
  margin-top: auto;
  object-fit: cover;
  border-radius: 8px;
}


body.no-scroll {
  overflow: hidden;
}

.promo-title {
  margin-bottom: 8px;
  font-weight: 900;
  font-size: 34px;
  line-height: 44px;
}

.promo-text {
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
}

.underlined {
  position: relative;
}

.underlined:before {
  content: "";
  position: absolute;
  bottom: 3px;
  left: -20px;
  z-index: -1;
  width: 282px;
  height: 27px;
  background-image: url(/skin/assets/img/promo/underlined_bg.png);
  background-repeat: no-repeat;
}

.home-faq-section {
  margin-bottom: 240px;
}

.faq__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.faq__title {
  font-weight: 900;
  font-size: 96px;
  line-height: 120px;
  text-transform: uppercase;
}

.faq__btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 418px;
  height: 80px;
  background-color: #080808;
  color: #c9f76e;
  cursor: pointer;
  font-weight: 700;
  font-size: 20px;
  line-height: 26px;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
}

.faq__items {
  border-top: 2px solid #151515;
}

.faq__item {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 60px 120px 60px 48px;
  border-bottom: 2px solid #151515;
}

.faq__item__title {
  width: 520px;
  flex-shrink: 0;
}

.faq__item__text {
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.plus-btn {
  position: absolute;
  top: 48px;
  right: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 68px;
  height: 68px;
  border: 0;
  border-radius: 50%;
  background-color: #c9f76e;
  cursor: pointer;
}

.plus-btn span {
  position: absolute;
  width: 32px;
  height: 4px;
  border-radius: 2px;
  background-color: #000;
}

.plus-btn span:last-child {
  transform: rotate(90deg);
}

.plus-btn:hover {
  transform: scale(1.05);
  transition: 0.2s ease;
}

.faq__item.active {
  flex-direction: column;
  gap: 16px;
  background-color: #c9f76e;
}

.faq__item.active .plus-btn {
  background-color: #151515;
}

.faq__item.active .plus-btn span {
  background-color: #c9f76e;
}

.faq__item.active .plus-btn span:last-child {
  display: none;
}

.faq__item.active .faq__item__text {
  display: block;
  overflow: visible;
  -webkit-line-clamp: unset;
}

#faqOverlay {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  display: none;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

#faqModal,
#regSuccess {
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 1000;
  display: none;
  width: 100%;
  transform: translate(-50%, -50%);
  border: 1px solid #151515;
}

#faqModal {
  max-width: 965px;
  padding: 46px 48px;
  background: #e5e5e5;
}

#regSuccess {
  max-width: 1680px;
  padding: 46px 48px;
  background-color: #fff;
}

.faq-modal-close {
  position: absolute;
  top: 36px;
  right: 40px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.faq-modal p {
  width: 100%;
  max-width: 500px;
}

.faqForm {
  width: 100%;
}

.faq-grid-row {
  display: flex;
  border-left: 1px solid #151515;
}

.faq-grid-row:first-child .faq-cell {
  border: 1px solid #151515;
  border-left: 0;
}

.faq-cell {
  box-sizing: border-box;
  display: flex;
  flex: 1;
  align-items: center;
  height: 68px;
  border-right: 1px solid #151515;
  border-bottom: 1px solid #151515;
  background: #fff;
}

.faq-cell:last-child {
  border-right: 0;
}

.faq-cell--full {
  flex: 1;
  height: 245px;
  border-right: 1px solid #151515 !important;
}

.faq-cell input,
.faq-cell textarea {
  width: 100%;
  height: 100%;
  padding: 23px;
  border: 0;
  background: transparent;
  color: #151515;
  font-family: Mulish, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 22px;
  resize: none;
  text-transform: uppercase;
}

.faq-cell input:focus,
.faq-cell textarea:focus,
.faq-cell input:active,
.faq-cell textarea:active {
  border: 0;
  outline: none;
  box-shadow: none;
}

.faq-cell input::placeholder,
.faq-cell textarea::placeholder {
  color: #a2a2a2;
  font-family: Mulish, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 22px;
  text-transform: uppercase;
}

.faq-modal .faq__btn {
  margin: 28px auto 0;
}

.faq-modal .underlined:before {
  width: 220px;
  height: 29px;
  bottom: -15px;
  left: -15px;
  background-image: url(/skin/assets/img/promo/underlined_form_bg.png);
}

.faq-modal-success {
  position: relative;
  width: 100%;
  height: 493px;
  background-image: url(/skin/assets/img/promo/success_bg.png), url(/skin/assets/img/promo/modal_success_logo.png);
  background-repeat: no-repeat, no-repeat;
  background-position: left center, left top;
  background-size: cover, contain;
}

.modal__inner {
  display: flex;
  align-items: center;
  height: 100%;
}

.modal__inner__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.faq-modal-success .promo-title {
  font-size: 72px;
  line-height: 76px;
}

.faq-modal-success .promo-text {
  font-size: 18px;
}

.faq-modal-success .underlined:before {
  width: 332px;
  height: 44px;
  bottom: -5px;
  left: -22px;
  background-image: url(/skin/assets/img/promo/underlined_success_form_bg.png);
}

@media (max-width: 1280px) {
  .faq__title {
    font-size: 54px;
    line-height: 64px;
  }

  .faq__btn {
    max-width: 334px;
  }

  .faq__item__title {
    width: 450px;
  }
}

@media (max-width: 992px) {
  .home-reviews-section .b-btn-246.visible-md.hidden-xs {
    display: block !important;
  }

  .home-reviews-section .b-btn-246.hidden-md.visible-xs {
    display: none !important;
  }

  .home-reviews-section .ratings-bars {
    max-width: 678px;
  }

  .home-reviews-section .reviews__list {
    columns: 3 300px;
    column-gap: 8px;
  }

  .home-reviews-section .reviews__item {
    margin-bottom: 8px;
  }

  .home-reviews-section .reviews__item.p-16 {
    padding: 16px;
  }

  #faqModal {
    max-width: 704px;
  }

  #regSuccess {
    max-width: 780px;
    padding: 64px 54px;
  }

  .faq-modal-success {
    height: 442px;
    background-image: url(/skin/assets/img/promo/success_bg_mob2.png);
    background-position: center bottom, left top;
    background-size: contain, contain;
  }

  .modal__inner {
    align-items: flex-start;
  }

  .modal__inner__content {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 768px) {
  .home-reviews-section {
    margin-bottom: 96px;
  }

  .home-reviews-section .booking__title {
    font-size: 28px;
    line-height: 34px;
  }

  .home-reviews-section .s__nav {
    align-items: center;
  }

  .home-reviews-section .reviews__rating {
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .home-reviews-section .reviews__list {
    columns: 2 280px;
    column-gap: 12px;
  }

  .home-reviews-section .author__stat__block {
    flex-direction: column-reverse;
    align-items: flex-end;
  }

  .home-reviews-section .bar-item {
    height: 18px;
  }

  .home-faq-section {
    margin-bottom: 120px;
  }

  .faq__item {
    flex-direction: column;
    gap: 0;
    padding: 22px 112px 22px 22px;
  }

  .faq__item__title {
    width: 100%;
  }

  .promo-title {
    font-size: 32px;
    line-height: 40px;
  }

  .promo-text {
    font-size: 14px;
  }
}

@media (max-width: 576px) {
  .inst__item {
    flex-basis: 100%;
    height: 280px;
  }

  .blog__card {
    flex-basis: 100%;
  }

  .home-reviews-section .reviews__rating {
    flex-wrap: wrap;
  }

  .home-reviews-section .rating-general {
    order: 1;
    width: 54px;
    height: 51px;
    padding-top: 5px;
  }

  .home-reviews-section .score.h3 {
    font-size: 10px;
  }

  .home-reviews-section .ratings-bars {
    order: 3;
    max-width: 100%;
  }

  .home-reviews-section .reviews__list {
    columns: 1;
    column-gap: 0;
  }

  .home-reviews-section .space-between-block {
    flex-wrap: wrap;
  }

  .home-reviews-section .b-btn-246.visible-md.hidden-xs {
    display: none !important;
  }

  .home-reviews-section .b-btn-246.hidden-md.visible-xs {
    display: block !important;
  }

  .faq__title {
    font-size: 40px;
    line-height: 46px;
  }

  .faq__btn {
    max-width: 100%;
    height: 54px;
    font-size: 14px;
    line-height: 20px;
  }

  #faqModal {
    max-width: 328px;
    padding: 24px 16px;
  }

  #regSuccess {
    max-width: 328px;
    padding: 24px 16px;
  }

  .faq-modal-close {
    top: 16px;
    right: 10px;
  }

  .faq-modal .underlined:before {
    width: 142px;
    height: 19px;
    bottom: -7px;
    left: -12px;
    background-size: 142px;
  }

  .faq-grid-row {
    display: block;
  }

  .faq-cell:first-child {
    border-top: 1px solid #151515;
    border-bottom: 0 !important;
  }

  .faq-cell:last-child {
    border-top: 0;
    border-bottom: 1px solid #151515 !important;
  }

  .faq-cell input,
  .faq-cell textarea {
    padding: 16px;
  }

  .faq__btn.modal--btn {
    max-width: 100%;
  }

  .faq-modal-success {
    height: 320px;
    background-image: url(/skin/assets/img/promo/success_bg_mob.png), url(/skin/assets/img/promo/success_logo_mob.png);
    background-position: right bottom, left top;
    background-size: contain, contain;
  }

  .faq-modal-success .promo-title {
    font-size: 28px;
    line-height: 34px;
  }

  .faq-modal-success .promo-text {
    font-size: 14px;
  }

  .faq-modal-success .underlined:before {
    width: 160px;
    height: 22px;
    background-size: 160px;
  }

   .faq__top {
    flex-direction: column;
    align-items: flex-start;
  }


}



.b-map .schedule__info-block{
  position: relative;
}

.map__block.js-schedule-modal-open {
  cursor: pointer;
}

.schedule-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 16px;
  background: rgba(21, 21, 21, 0.6);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.schedule-modal.is-open {
  opacity: 1;
  visibility: visible;
}

.schedule-modal__dialog {
  width: 100%;
  max-width: 528px;
}

.b-map .schedule__info-block--home {
  position: relative;
  top: auto;
  right: auto;
  bottom: auto;
  left: auto;
  display: block;
  width: 100%;
  max-width: 100%;
  max-height: calc(100vh - 64px);
  overflow-y: auto;
  background: #fff;
}

.schedule-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  padding: 0;
  border: 0;
  background: transparent;
  font-size: 28px;
  line-height: 1;
  color: #151515;
  cursor: pointer;
}


.b-map .schedule__info-block--home .schedule__info-content,
.b-map .schedule__info-block--home .schedule__info-worktime,
.b-map .schedule__info-block--home .schedule-bottom-img {
  order: initial;
}

.b-map .schedule__info-block--home .schedule__info-content {
  width: 100%;
  display: block;
}

.b-map .schedule__info-block--home .schedule-bottom-img {
  margin-right: 0;
  margin-left: 0;
}

body.schedule-modal-open {
  overflow: hidden;
}




.term__inner{
  padding: 48px;
  background-color: #fff;
  border: 1px solid #151515;
}



.counter__info__block a{
  border: 1px solid #151515;
}

#faqModal #faqClose, #regSuccess #faqClose {
    position: absolute;
    top: 36px;
    right: 40px;
    background: none;
    border: none;
    cursor: pointer;
}






/* Category */


.category-banner {
 background-image: url(/skin/assets/img/main__img.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 580px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.category-banner__content{
  background-color: #fff;
  padding: 24px 125px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.banner__content__title.h1{
  font-weight: 900;
  margin-bottom: 0px;
}

.banner__content__text{
  text-transform: uppercase;
  font-weight: 600;
  max-width: 330px;
  text-align: center;

}






/* Category */













































@media (max-width: 1280px) {

  .main-banner {
    min-height: 800px;
}

@media (max-width: 992px) {
  .b-map .schedule__info-block--home {
    height: auto;
    gap: 0;
  }

  .b-map .schedule__info-block--home .schedule__info-content {
    width: 100%;
    display: block;
  }

  .b-map .schedule__info-block--home .schedule__info-worktime {
    width: 100%;
  }

  .b-map .schedule__info-block--home .schedule-bottom-img {
    justify-content: space-around;
    gap: 24px;
    width: 100%;
  }
}

@media (max-width: 767px) {
  .schedule-modal {
    padding: 16px 8px;
    align-items: flex-start;
  }

  .schedule-modal__dialog {
    max-width: 100%;
  }

  .b-map .schedule__info-block--home {
    max-height: calc(100vh - 32px);
  }

  .b-map .schedule__info-block--home .schedule-container {
    flex-direction: column;
    gap: 0;
  }

  .b-map .schedule__info-block--home .schedule-left,
  .b-map .schedule__info-block--home .schedule-right {
    width: 100%;
  }
}

.banner__title {
    font-size: 92px;
    line-height: 104px;
}

.search-booking-form__fields {
    height: 72px;
}

.search-booking-form__btn {
    flex: 0 0 315px;
    max-width: 315px;
    width: 315px;
    height: 70px;
}

.search-booking-form {
    max-width: 1120px;
}










.counter__info__block__inner {
    min-height: 228px;
}

.counter__ditail p {
    font-size: 52px;
    line-height: 64px;
}

.time-counter p span {
    font-size: 52px;
    line-height: 64px;
}

.time-counter p span.time-counter__name {
    font-size: 14px;
    bottom: -16px;
}

.counter__separator::before, .counter__separator::after {
    width: 7px;
    height: 7px;

}

.counter__separator {
    height: 21px;
}

.counter__inner .home-title{
  justify-content: center;
}




.online__info__title {
  font-size: 44px;
  line-height: 56px;
}






.top-category .home-title:before {
  display: none;
}

.category__img {
    height: 300px;
}

.category__item {
    width: calc((100% - 32px) / 5);
    height: 68px;
    padding: 0 16px;
    font-size: 14px;
}

.category__item span {
    overflow: visible;
    white-space: pre-wrap;
}







.master-card__image {
    height: 234px;
}

.master-card__content {
  padding: 16px;
}



.top-title {
    gap: 66px;
}




.home-title img{
  width: 54px;
  height: 54px;
}

.inst-section {
    padding: 80px 0px;
}

.inst__item{
  height: 358px;
}




.blog__card {
    flex: 0 0 calc((100% - 16px) / 2);
}

.snow_img{
  display: none;
}

.counter__inner p{
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
}


.map__block iframe{
  height: 550px;
}














  
}















@media (max-width: 1024px) {


  .search-booking-form {
    max-width: 900px;
}

  .search-booking-form__fields {
  display: flex;
  align-items: stretch;
  width: 100%;
  flex-wrap: wrap;
}

.search-booking-form__item {
  flex: 0 0 25%;
  max-width: 25%;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 20px;
  background: #fff;
  border-right: 1px solid #151515;
  height: 72px;
}

.search-booking-form__item:nth-child(4) {
  border-right: none;
}

.search-booking-form__btn {
  flex: 0 0 100%;
  max-width: 100%;
  width: 100%;
  height: 72px;
}





    .category__img {
        height: 260px;
    }


     .category__item {
        width: calc((100% - 24px) / 4);
    }

    .sub-category__list .category__item:nth-child(n+9) {
        display: none;
    }











.counter__info__block__inner {
    min-height: 188px;
}


.master-card {
    flex-basis: calc((100% - (14px * 2)) / 3);
  }


  .inst__item {
    flex: 0 0 calc((100% - 48px) / 3);
}

.nav__items {
    gap: 24px;
}


.map__block iframe{
  height: 500px;
}






  
}








@media (max-width: 768px) {

      .main-banner {
        min-height: 880px;
    }


    .faq__btn {
    max-width: 352px;
    height: 64px;
}

.nav__inner {
    height: 40px;
}

.nav__items li a {
    font-weight: 600;
    font-size: 12px;
    line-height: 18px;
    text-transform: uppercase;
}

.main-nav__link--current {
    font-size: 14px;
    line-height: 18px;
}

.main-nav__dropdown__link {
    font-size: 14px;
    line-height: 18px;
}

.main-nav__link--current::after {
    width: 9px;
    height: 9px;
    border-right: 3px solid var(--base-dark, #151515);
    border-bottom: 3px solid var(--base-dark, #151515);
}

.banner__title {
        font-size: 60px;
        line-height: 72px;
    }


 .search-booking-form__item {
  flex: 0 0 50%;
  max-width: 50%;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 16px;
  background: #fff;
  border-right: 1px solid #151515;
  border-bottom: 1px solid #151515;
  height: 56px;
  box-sizing: border-box;
}

.search-booking-form__item:nth-child(2n) {
  border-right: none;
}

.search-booking-form__item:nth-child(3),
.search-booking-form__item:nth-child(4) {
  border-bottom: none;
}

.search-booking-form__fields {
    height: auto;
}

.search-booking-form__btn {
  flex: 0 0 100%;
  max-width: 100%;
  width: 100%;
  height: 64px;
}



.search-booking-form {
        max-width: 704px;
    }



    .counter__info {
    display: flex;
    flex-direction: column;
}

.counter__info__block__inner {
    min-height: 180px;
    padding: 0px 68px;
}

.counter__ditail {
    gap: 16px;
}

.counter__ditail.gap-32{
  gap: 32px;
}

.counter__info.gap-24{
  gap: 0px;
}

.counter__btn {
  display: flex;
  gap: 16px;
}

.counter__btn .b-btn {
  flex: 1 1 0;
  width: 100%;
}

    .online__img {
        aspect-ratio: 1 / 1;
        width: 100%;
    }

    .online__inner__btn {
      display: none;
    }


    

  .online-arrow {
    display: flex !important;    
    justify-content: center;
    align-items: center;
    width: 54px;
    height: 54px;
    background-color: #C9F76E;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
  }

  .online-arrow-left{
    left: -70px;
  }

  .online-arrow-right{
    right: -70px;
  }

      .category__img {
        height: 240px;
    }


    
     .category__item {
        width: calc((100% - 16px) / 3);
    }

    .sub-category__list .category__item:nth-child(n+9) {
        display: inherit;
    }

     .sub-category__list .category__item:nth-child(n+10) {
        display: none;
    }

    .recommend .top-title{
      flex-direction: column;
      gap: 0px;
    }

    .recommend .top-title button{
      margin-left: auto;
    }

    .master-card__label {
    top: 8px;
    left: 8px;
    }

        .master-card__content {
        padding: 8px;
    }

        .master-card__image {
        height: 180px;
    }




    .inst-section .top-title {
    justify-content: start;
   }






   .blog__card__content {
    padding-right: 0px;
}


.map__block iframe{
  height: 460px;
}


.term__inner {
    padding: 24px;
}









.category-banner {
    min-height: 460px;
}







  
}











@media (max-width: 576px) {


      .plus-btn {
        position: absolute;
        top: 18px;
        right: 16px;
        width: 36px;
        height: 36px;
    }

        .plus-btn span {
        width: 18px;
        height: 2px;
    }

        .faq__btn {
        max-width: 100%;
        height: 48px;
    }

    .top-title {
    align-items: start;
    flex-direction: column;
    }

    .faq__top {
    gap: 16px;
    }
    

      .top-title{
        gap: 16px;
      }

      .main-nav{
        display: none;
      }



          .main-banner {
        min-height: 700px;
    }

    .banner__title {
        font-size: 44px;
        line-height: 54px;
        max-width: 328px;
    }

        .search-booking-form {
        max-width: 328px;
    }



.search-booking-form__fields {
  display: flex;
  flex-wrap: wrap;
  border: 1px solid #151515;
}

.search-booking-form__item {
  flex: 0 0 100%;
  max-width: 100%;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 16px;
  height: 56px;
  border-bottom: 1px solid #151515;
  box-sizing: border-box;
}


.search-booking-form__item:last-child {
  border-bottom: none;
}

.search-booking-form__btn {
  flex: 0 0 100%;
  max-width: 100%;
  width: 100%;
  height: 64px;
  border-top: 1px solid #151515;
}

    .search-booking-form__item:nth-child(3) {
        border-bottom: 1px solid #151515;
        border-right: none;
    }
    .search-booking-form__item:nth-child(1) {
        border-right: none;
    }

.search-booking-form__fields {
  height: auto;
}



    .counter__ditail p {
        font-size: 42px;
        line-height: 44px;
    }

    .counter__info__block__inner {
        min-height: 124px;
        padding: 0px 24px;
    }

        .time-counter p span {
         font-size: 42px;
        line-height: 44px;
    }

    .time-counter p span.time-counter__name {
        font-size: 12px;
    }

    .counter__separator::before, .counter__separator::after {
        width: 6px;
        height: 6px;
    }

        .counter__separator {
        height: 16px;
    }

    .counter__info__block .b-btn {
    font-size: 16px;
}

    .counter__btn {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .counter__btn .b-btn {
        flex: inherit;
    }


        .online-arrow {
        width: 40px;
        height: 40px;
        top: 70%;
    }

        .online-arrow-right {
        right: -20px;
        z-index: 10;
    }

        .online-arrow-left {
        left: -20px;
        z-index: 10;
    }



      .online__info__title {
    margin: 0;
    font-size: 30px;
    line-height: 40px;
  }

  .online__info__text {
    margin: 0;
    font-size: 14px;
    line-height: 24px;
  }


  .sub-category__list {
    flex-direction: column;
    gap: 4px;
}

    .category__item {
      width: 100%;
      height: 40px;
    }


        .master-card {
        flex-basis: 100%;
    }

    .master-cards__list {
    flex-wrap: wrap;
    gap: 16px;
    }

    .master-cards__arrow {
    display: none;
    }

    .card__title.fs-26{
      font-size: 20px;
      line-height: 26px;
    }



        .master-cards__list .master-card:nth-child(n+4) {
        display: none;
    }


     .recommend .top-title button {
        margin-left: 0px;
        height: 48px;
        max-width: 100%;
    }

    .recommend .b-btn {
    font-size: 16px;
}

.recommend .top-title {
        gap: 8px;
    }


       .inst-section .b-btn {
    max-width: 100%;

}

    .home-title img {
        width: 35px;
        height: 35px;
    }

    .inst-section .home-title{
      flex-direction: row-reverse;
      gap: 16px;
      margin-bottom: 16px;
    }

    .inst-section p{
      margin-bottom: 16px;
      line-height: 22px;
    }

        .inst__item {
        height: 160px;
    }

    .inst__item {
        flex: 0 0 calc((100% - 16px) / 3);
    }

    .b-btn.h-58 {
        height: 48px;
        line-height: 48px;
    }

     a.b-btn.h-58 {
        height: 48px;
        line-height: 48px;
    }



    .blog-section .top-title {
      flex-direction: row;
    }


    .blog__list {
    flex-wrap: wrap;
    }

    .blog__card {
        flex: 100%;
    }

    .blog__list.gap-24{
      gap: 24px;
    }

    .blog-slider__arrow {
      display: none;
    }

     .blog__list .blog__card:nth-child(n+4) {
        display: none;
    }








    .category-banner__content {
    padding: 24px 8px;
    }

    .category-banner {
    min-height: 290px;
}


.promo-title {
        font-size: 24px;
        line-height: 34px;
    }









    



}

   








@media (max-width: 400px) {

}




