/* css/style.css */
/* Variables */
:root {
  /* Intentionally empty: no custom properties yet. */
}
/* Base/Reset */
/* Общие настройки */
*,
*::before,
*::after {
  box-sizing: border-box;
}
body {
  margin: 0;
  font-family: 'Mulish', sans-serif;
  color: #151515;
  line-height: 100%;
  background-color: #F2F2F2;
  font-weight: 500;
}
a{
  text-decoration: none;
  color: #000000;
}
a:hover {
  color: #151515;
  text-decoration: none;
}
p{
  padding: 0px;
  margin: 0px;
}
ul{
  list-style-type: none;
  margin: 0px;
  padding: 0px;
}
img {
  max-width: 100%;
}
/* Layout */


.container {
  --container-padding: 120px; 
  
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
}
/* Адаптив */
/* Media Queries */
@media (max-width: 1280px) {
  .container {
    --container-padding: 80px;
  }
}
@media (max-width: 1024px) {
  .container {
    --container-padding: 64px;
  }
}
@media (max-width: 768px) {
  .container {
    --container-padding: 32px;
  }
}

@media (max-width: 576px) {
  .container {
    --container-padding: 16px;
  }
}


@media (min-width: 1281px) {
  .container__inner {
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
}
}

@media (min-width: 1025px) {
  .container__inner--1024 {
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
}
}











/* Страница мастера*/

.bg-extra-4 { background: var(--c-extra-4) !important; }





.hero-block{
}











.m-nav__item{
font-weight: 600;
text-transform: uppercase;
padding: 12px 24px;
color: #B2B0B0;
border: 1px solid #CCCCCC;
display: flex;
}

.m-nav__item:hover,
.m-nav__item.active{
color: #151515;
border: 1px solid #151515;
}

.nav-block ul{
  display: flex;
}























/* Header  */





.hero {
  min-height: 60px;
  position: relative;
  background-color: #151515;
}
.hero__inner {
  position: relative;     
  height: 60px;
  display: flex;
  align-items: center;
  gap: 48px;
  justify-content: space-between;
}

.search-bar {
  display: flex;
  align-items: flex-end;
  z-index: 1;
  height: 42px;
  order: 2;
  width: 100%;
}
.search-bar__container {
  display: flex;
  align-items: center;
  gap: 8px;
}
.search-bar__container.hidden-sm {
 /* display: flex !important; */
  width: 100%;
}

/* здесь убрать */
.search-bar__container.hidden-sm,
.search-bar__btn.search-btn-mob{
  display: none !important;
}
/* здесь убрать */

.search-bar__input-wrapper {
  width: 100%;
  position: relative;
}
.search-bar__input {
  width: 100%;
  border: none;
  outline: none;
  background: transparent;
  font-size: 16px;
  line-height: 12px;       
  padding: 0px 0px 4px 0px;               
  height: 20px;            
  vertical-align: bottom;  
  color: #F5F5F5;
}
.search-bar__input::placeholder {
    color: #454545; 
}
/* линия */
.search-bar__input-wrapper::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: #454545;
}
.search-bar__actions {
  display: flex;
  align-items: center;
  margin-left: 8px; 
  gap: 12px;     
  margin-bottom: 4px;
}
.search-bar__btn {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
}
.hero__logo {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 3px; 
  order: 1;
}
.hero__logo span{
font-weight: 300;
font-size: 10px;
line-height: 100%;
}
.hero__nav {
  display: flex;
  z-index: 1;
  align-items: center;
  font-family: sans-serif;
  order: 3;
}
.hero__nav__list {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 18px;
}
.hero__nav__item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 4px;
}
.hero__nav__item.hidden-sm {
  display: flex !important;
}






/* Здесь убрать */

.hero__nav__list .hero__nav__item:nth-child(-n+2){
  display: none !important;
}

/*
.hero__nav__item.hidden-sm {
  display: none !important;
}

.search-bar {
 opacity: 0;
} */

/* Здесь убрать */


.hero__nav__link--phone img{
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}



.hero__nav__link {
  display: flex;
  align-items: center;
  text-decoration: none;
  font-weight: 900;
  font-size: 32px;
  line-height: 40px;
  letter-spacing: 0%;
  text-transform: uppercase;
  cursor: pointer;
  color: #FFFFFF;
}
.hero__nav__link--current::after {
  content: ""; 
  background-image: url(/skin/assets/img/promo/lang_arrow.svg);
  background-repeat: no-repeat;
  width: 24px;
  height: 12px;
  margin-left: 8px;
}
.hero__nav__dropdown {
  position: absolute;
  top: 70%;
  left: 0;
  display: none;
  list-style: none;
  margin: 0;
  padding: 4px 0;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  min-width: 100px;
  z-index: 10;
}
.hero__nav__item--lang:hover .hero__nav__dropdown {
  display: block;
}
.hero__nav__dropdown__link {
  display: block;
  padding: 2px 8px;
  color: #000;
  text-decoration: none;
  font-size: 32px;
  line-height: 40px;
  letter-spacing: 0%;
}
.hero__nav__dropdown__link:hover {
  background-color: #f0f0f0;
  border-radius: 4px;
}
.hero__nav__link svg {
  display: block;
  width: 18px;
  height: 18px;
}
.hero__nav__link:hover svg path {
  fill: red;
}
.hero__nav__link--human{
  padding-bottom: 1px;
}

.footer__center{
  display: flex;
  justify-content: space-between;
}

.footer__center .hero__nav__item{
  display: none;
}







.search-field {
  display: none;
  padding: 8px 0;
  background: #151515; 
}




.search-bar__input-wrapper {
  position: relative;
}



.search-bar__submit {
  position: absolute;
  right: 0px;
  top: 50%;
  transform: translateY(-50%);

  background: none;
  border: none;
  cursor: pointer;

  display: none;
}

.search-bar__submit svg {
  fill: #F5F5F5;
}


.search-bar__btn--close {
  display: none;
}



.search-bar__container.active .search-bar__btn--search {
  display: none;
}

.search-bar__container.active .search-bar__btn--close {
  display: inline-flex;
}

.search-bar__container.active .search-bar__submit {
  display: block;
  padding-bottom: 7px;
}





.page-header .breadcrumbs{
  height: 64px;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 0px;
  margin-bottom: 0px;
}

.breadcrumbs a{
font-weight: 600;
font-size: 12px;
line-height: 16px;
color: #B2B0B0;
text-decoration: underline;
text-transform: uppercase;
position: relative;
padding-right: 12px;
}

.breadcrumbs a::before {
  content: "";
  position: absolute;
  right: 0px;       
  top: 50%;
  width: 6px;
  height: 6px;
  border-right: 1px solid #B2B0B0;
  border-bottom: 1px solid #B2B0B0;
  transform: translateY(-50%) rotate(-45deg);
  opacity: 1;
}

.breadcrumbs span{
font-weight: 600;
font-size: 12px;
line-height: 16px;
text-transform: uppercase;
}










.footer{
  padding: 66px 0px;
  background-color: #151515;
  color: #fff;
}



.dark-form {
  max-width: 656px;
  width: 100%;
  padding: 24px;
  background: #151515;
}

.dark-form__field {
}

.dark-form input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid #C1C1C1;
  padding: 16px 0;
  font-weight: 500;
  font-size: 14px;
  line-height: 22px;
  letter-spacing: 0%;
  text-transform: uppercase;
  outline: none;
  color: #ffffff;
  height: 68px;
}

.dark-form input::placeholder {
  color: #fff;
  font-size: 14px;
}

.dark-form input:focus {
  border-bottom-color: #b7f35a;
}

.dark-form__submit {
    max-width: 316px;
    width: 100%;
    height: 58px;
    margin-top: 32px;
    background: #BEF15A;
    color: #151515;
    border: none;
    font-weight: 700;
    font-size: 14px;
    line-height: 22px;
    text-transform: uppercase;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
}


.footer__top{
  display: flex;
  justify-content: space-between;
}

.footer__top__nav{
  display: flex;
  gap: 24px;
}

.footer__top__list{
  display: flex;
  flex-direction: column;
}

.footer__top__list:first-child {
}

.footer__top__title{
  font-weight: 500;
  font-size: 34px;
  line-height: 44px;
  letter-spacing: 0%;
  color: #FFFFFF;
}

.footer__bottom .footer__top__title{
  font-weight: 700;
}

.footer__nav__list{
   display: flex;
  gap: 90px;
}

.footer__nav__list ul li{
  margin-bottom: 3px;

}

.footer__nav__list ul li a{
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 2%;
  color: #A2A2A2;
  text-decoration: none;
}


.nav__text{
   font-weight: 500;
  font-size: 14px;
  line-height: 22px;
  letter-spacing: 2%;
  color: #A2A2A2;
}
.nav__text.text-white{
  color: #fff;
}

.social{
  text-align: right;
}

.social__list{
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}



.footer__links{
  display: flex;
  justify-content: space-between;
}

.footer__links a{
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 2%;
  color: #FFFFFF;
}

.footer__links span {
  font-weight: 600;
  font-size: 14px;
  line-height: 22px;
  text-transform: uppercase;
  color: #A2A2A2;
}


.footer__bottom{

}

.footer__bottom p{
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  letter-spacing: 0%;
  color: #9C9C9C;
}

.footer__top__subtitle{
  font-weight: 600;
  font-size: 28px;
  line-height: 28px;
}




#faqOverlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.5);
  display: none;
  z-index: 999;
}

#faqModal {
  position: fixed;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: #E5E5E5;
  padding: 46px 48px;
  max-width: 965px;
  width: 100%;
  display: none;
  z-index: 1000;
  border: 1px solid #151515;
}

#regSuccess {
  position: fixed;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background-color: #ffffff;
  padding: 46px 48px;
  max-width: 1680px;
  width: 100%;
  display: none;
  z-index: 1000;
  border: 1px solid #151515;
}



.dark-form__submit {
    max-width: 316px;
    width: 100%;
    height: 58px;
    margin-top: 32px;
    background: #BEF15A;
    color: #151515;
    border: none;
    font-weight: 700;
    font-size: 14px;
    line-height: 22px;
    text-transform: uppercase;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
}
















.ticker {
  overflow: hidden;
  width: 100%;
  height: 71px;
  display: flex;
  align-items: center;
  position: relative;
}

.ticker__track {
  display: flex;
  white-space: nowrap;
  position: absolute;
  left: 0;
}

.ticker__track span {
  margin-right: 32px;
  font-weight: 900;
  font-size: 34px;
  line-height: 46px;
  letter-spacing: 0%;
  text-transform: uppercase;
  color: #151515;
}






/* About  */


.m-about {
  display: flex;
  gap: var(--gap);
}


.about__info {
  flex: 0 1 1080px;
  min-width: 0;      
  border: 1px solid #AEAEAE;
  min-height: 434px;
  display: flex;

}


.about__calendar {
  flex: 1 1 auto;   
  min-width: 450px;
  width: 450px;
  border: 1px solid #AEAEAE;
  min-height: 434px;
}

.about__calendar{
  display: flex;
  flex-direction: column;
}

.about__calendar button{
  margin-top: auto;
}



.about__img{
  max-width: 331px;
  min-height: 100%;
  width: 100%;
   background-image: url(/skin/assets/img/master/master_img.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    border-right: 1px solid #AEAEAE;
    position: relative;
}


.about__stat{
  background-color: #ffffff;
  height: 41px;
  padding: 0px 16px;
  display: flex;
  align-items: center;
  margin-top: auto;
}

.stat__item{
  display: flex;
  align-items: center;
  gap: 4px;
}

.vertical-line{
  width: 1px;
  height: 25px;
  background-color: #AEAEAE80;
}

.about__stat a{
  text-decoration: underline;
}

.about__badges{
  position: absolute;
  top: 24px;
  left: 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.about__rating{
  position: static;
  font-weight: 700;
  height: 24px;
  width: 117px;
  background-color: #151515;
  display: flex;
  padding: 4px 10px;
  align-items: center;
  justify-content: flex-start;
  font-size: 10px;
  line-height: 16px;
}

.about__rating img{
  width: 14px;
  height: 14px;
  margin-right: 12px;
  flex-shrink: 0;
}

.about__partner-badge{
  width: 120px;
  height: 24px;
  padding: 4px 10px;
  background-color: #C9F76E;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: #151515;
  font-family: "Mulish", sans-serif;
  font-weight: 600;
  font-size: 10px;
  line-height: 16px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.about__partner-badge img{
  width: 14px;
  height: 14px;
  margin-right: 12px;
  flex-shrink: 0;
}

.about__content{
  padding: 24px 42px;
  display: flex;
  flex-direction: column;
  background-color: #fff;
  width: 100%;

}

.about__name{
  display: flex;
  align-items: center;
}


.about__text-wrapper {
  position: relative;
  overflow: hidden;
}
.about__text {
  display: -webkit-box;
  -webkit-line-clamp: 4; 
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: max-height 0.3s ease;
  font-weight: 500;
}
.read__more {
  cursor: pointer;
  display: none;
  text-align: right;
  margin-top: 16px;
}

.about__text.is-open{
  -webkit-line-clamp: unset;
  display: block;
  max-height: none;
}


.about__location{
  font-weight: 700;
  display: flex;
  gap: 12px;

}

.about__tags-current{
  display: flex;
  gap: 40px;
}

.about__tags-list{
  display: flex;
  flex-wrap: wrap;
}


.about__tags-list span.bg-dark{
  color: #F2F2F2;
}


.about__tags{
  margin-top: auto;
}

.about__middle{
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  flex: 1;
}










.m-custom-dropdown {
  position: relative;
  width: 100%;
}

.m-dropdown-input {
  height: 38px;
  width: 100%;
  padding: 0 50px 0 16px;
  font-size: 14px;
  cursor: pointer;
  background: transparent;
  border: 1px solid #CCCCCC;
  font-weight: 700;
  outline: none;
}


.dropdown-arrow {
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%) rotate(0deg);
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 12px solid #000;
  pointer-events: none;
  transition: transform 0.3s ease;
}

.m-custom-dropdown.active .dropdown-arrow {
  transform: translateY(-50%) rotate(180deg);
}

.m-custom-dropdown.active .m-dropdown-input {
  border-bottom: 0px;
}


.m-dropdown-list {
   position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  list-style: none;
  padding: 0;
  margin: 0;
  overflow-y: auto;
  z-index: 10;
  display: none;
  border: 1px solid #CCCCCC;
  border-top: none;
}

.m-custom-dropdown.active .m-dropdown-list {
  display: block;
}

.m-dropdown-list li:not(:last-child)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 34px;
    right: 34px;
    height: 1px;
    background: #D2D2D2;
}

.m-dropdown-list li {
  padding: 14px 34px;
  cursor: pointer;
  font-size: 14px;
  color: #151515;
  position: relative;
  font-weight: 700;
}

.m-dropdown-list li:hover {
  background: var(--c-primary);
}


.m-dropdown-list::-webkit-scrollbar {
  width: 6px;
}

.m-dropdown-list::-webkit-scrollbar-track {
  background: #CCCCCC;
}

.m-dropdown-list::-webkit-scrollbar-thumb {
  background: #151515;
}





.about__calendar{
  padding: 24px;
  background-color: #fff;
}

.about__calendar__title{
  text-transform: uppercase;
}

.calendar__arrow__block{
  height: 36px;
  width: 36px;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #CCCCCC;
  cursor: pointer;
}
.calendar__days .calendar__arrow__block{
  margin-top: 24px;
}


.calendar__days,
.slider-full-width,
.calendar__time{
  width: 100%;
  display: flex;
  min-width: 0;
}

.slider-full-width {
  --month-arrow-size: 36px;
  box-sizing: border-box;
}

.slider-full-width > .calendar__arrow__block {
  flex: 0 0 var(--month-arrow-size);
  width: var(--month-arrow-size);
  cursor: pointer;
}

.calendar__list{
  display: flex;
  width: 100%;
}

.calendar__item{
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  flex: 1;            

}

.calendar__day-name{
font-weight: 600;
font-size: 12px;
line-height: 16px;
text-transform: uppercase;
color: #CCCCCC;
}

.calendar__day-data{
/*  flex: 1;      */    
  width: 100%;
  height: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  font-size: 12px;
  line-height: 18px;
  color: #404040;
  border: 1px solid #CCCCCC;
  border-left: none;
}

.calendar__day-data:hover,
.calendar__day-data.active {
  background: var(--c-primary);
}

.calendar__list .calendar__item:last-child .calendar__day-data {
  border-right: none;
}

.slider-full-width__info{
  border: 1px solid #CCCCCC;
  border-left: none;
  border-right: none;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  font-size: 14px;
  line-height: 22px;
  width: 100%;
  height: 36px;
}

.slider-full-width > .calendar__list {
  flex: 0 0 calc(100% - (var(--month-arrow-size) * 2));
  width: calc(100% - (var(--month-arrow-size) * 2));
  max-width: calc(100% - (var(--month-arrow-size) * 2));
  min-width: 0;
  overflow-x: hidden;
  overflow-y: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.slider-full-width > .calendar__list::-webkit-scrollbar {
  display: none;
}

.slider-full-width > .calendar__list .slider-full-width__info {
  flex: 0 0 100%;
  min-width: 0;
  box-sizing: border-box;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.selected-services-slider .selected-services-slider__list {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.selected-services-slider .selected-services-slider__list::-webkit-scrollbar {
  display: none;
}

.selected-services-slider .slider-full-width__info {
  flex: 0 0 100%;
}

.selected-services-slider .calendar__arrow__block.is-disabled {
  pointer-events: none;
}

.selected-services-slider .calendar__arrow__block.is-disabled .arrow-left {
  border-right-color: #B2B0B0;
}

.selected-services-slider .calendar__arrow__block.is-disabled .arrow-right {
  border-left-color: #B2B0B0;
}


.calendar__middle{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
}






.gallery__title{
  color: #F2F2F2;
}



.m-gallery .s-nav__link {
  color: #F2F2F2;
  background-color: #242424;
}

.m-gallery .s-nav__link:hover,
.m-gallery .s-nav__link.active{
  border: 1px solid #727272;
  color: #F2F2F2;
}

.m-gallery__inner{
  display: flex;
}

.gallery__content__title{
  color: #F2F2F2;
  max-width: 400px;
  width: 100%;
}
.gallery__content__title.h4{
  color: #F2F2F2;
}

.gallery__images,
.gallery__content {
  flex: 1;
}

.gallery__images{
  display: flex;
  flex-wrap: wrap;
  gap: 16px 16px;
  position: relative;
  transition: opacity 0.28s ease;
}

.gallery__images.is-switching {
  opacity: 0.55;
}

.gallery__arrow{
  position: absolute;
  width: 50px;
  height: 50px;
  background-color: #FFFFFF;
  display: flex;
  justify-content: center;
  align-items: center;
  bottom: 0px;
  right: 0px;
  z-index: 10;
  cursor: pointer;

}

.gallery__arrow .arrow-right {
  pointer-events: none;
}

.gallery__img {
  flex: 0 0 calc(50% - 8px);
  max-width: calc(50% - 8px);
}

.gallery__img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery__images .gallery__img.is-gallery-hidden {
  display: none;
}

.gallery__images.gallery-visible-1 .gallery__img.is-gallery-visible {
  flex: 0 0 100%;
  max-width: 100%;
}

.gallery__images.gallery-visible-2 .gallery__img.is-gallery-visible {
  flex: 0 0 calc(50% - 8px);
  max-width: calc(50% - 8px);
}

.gallery__images.gallery-visible-3 .gallery__img.is-gallery-visible {
  flex: 0 0 calc(50% - 8px);
  max-width: calc(50% - 8px);
}

.gallery__images.gallery-visible-3 .gallery__img.is-gallery-last {
  flex: 0 0 100%;
  max-width: 100%;
}

.gallery__arrow.is-disabled {
  pointer-events: none;
  cursor: default;
}

.gallery__arrow.is-disabled .arrow-right {
  border-left-color: #B2B0B0;
}


.gallery__content{
  display: flex;
  align-items: center;
  position: relative;

}

.gallery__content__inner{
  display: flex;
  flex-direction: column;
  padding: 80px 0px 80px 120px;
}

.gallery__content p{
  color: #BABABA;
  max-width: 467px;
  width: 100%;
}


.social-block{
  position: absolute;
  right: 0px;
  bottom: 0px;
  display: flex;

}


.social-item:hover img {
    opacity: 0.7;
    transform: scale(1.08);
}


.s__nav--white .s-nav__link{
  color: #151515;
  background-color: #FFFFFF;
}
.s__nav--white .s-nav__link:hover{
 border: 1px solid #151515;
}

.s__nav--white .s-nav__link.active{
 border: 1px solid #151515;
}


.b-address{
  display: flex;
  align-items: center;
}



.address__item{
  height: 62px;
  padding: 0px 12px;
  background-color: #fff;
  display: flex;
  align-items: center;

}

.address__item__img{
  width: 32px;
  height: 32px;
  background-color: #FFF86A;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.address__item__img.active{
  background-color: #D296FE;
}

.address__info{
  display: flex;
  flex-direction: column;
}

.address__info strong {
  font-weight: 700;
}


.address__arrow__block{
  height: 36px;
  width: 36px;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #151515;
  display: none;
}

.address__arrow__block .arrow-left{
  border-right: 12px solid #F2F2F2;
}
.address__arrow__block .arrow-right{
  border-left: 12px solid #F2F2F2;
}






.booking__content {
  display: flex;
  background-color: #fff;
  padding: 24px;
}


.booking__time-data {
  flex: 0 1 1040px;
  min-width: 0;      
  display: flex;
  align-items: stretch;
  flex-direction: column;

}


.booking__service-data {
  flex: 1 1 auto;   
  min-width: 380px;
}

.booking__time-data .s-calendar__block{
  width: 100%;
}


.calendar__block__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.calendar__block__item {
  flex: 0 0 calc(50% - 4px);
}

.calendar__block__item .space-between-block{
  align-items: center;
}





.calendar__block__item span{
  display: flex;
  align-items: center;
}

.calendar__block__item strong.price-tag{
  height: 30px;
  padding: 0px 16px;
  display: flex;
  align-items: center;
  background-color: #EDFDCF;
  color: #151515;
}

.calendar__block__item.active strong.price-tag{
  background: var(--c-primary);
}





.calendar__block__item {
  border: 1px solid transparent;
  padding: 16px;
  box-shadow: 0 0 0 1px #CCCCCC;
  transition: box-shadow 0.2s ease;
}

.calendar__block__item.active,
.calendar__block__item:hover {
  box-shadow: 0 0 0 2px #151515;
}



.booking__time-data .s-link,{
  margin: 0px auto;
}


.booking__service-data{
  border: 1px solid #CCCCCC;
  display: flex;
  flex-direction: column;
}

.s-ditail__item{
  display: flex;
  align-items: center;
}

.s-ditail{
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.schedule__inner{
  border: 1px solid #CCCCCC;
  position: relative;
}

.schedule__inner iframe{
  height: 772px;
  width: 100%;
}

.schedule__info-block{
  position: absolute;
  top: 24px;
  left: 24px;
  bottom: 24px;
  max-width: 496px;
  width: 100%;
  background-color: #FFFFFF;
  border: 1px solid #CCCCCC;
}


.schedule__inner .s-nav__link {
    color: #151515;
    background-color: #F2F2F2;
}

.schedule__inner .s-nav__link:hover,
.schedule__inner .s-nav__link.active {
  border: 1px solid #151515
}


.schedule-container .s-ditail__item{

  width: 100%;
  height: 44px;
  border-bottom: 1px solid #E6E6E6;
}

.schedule-container {
  display: flex;
  gap: 16px;
}

.schedule-left,
.schedule-right {
  width: 50%;
  display: flex;
  flex-direction: column;
}

.schedule-bottom-img span {
  display: flex;
  align-items: center;
}


.block-list__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.block-list__item {
  height: 56px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  padding: 0 24px;
  gap: 8px;
  flex: 1 1 0px; 
  min-width: 350px; 
  position: relative;
  font-size: 14px;
  font-weight: bold;
  white-space: nowrap;
  max-width: 414px;

}

.comfort__tooltip {
  position: absolute;
  left: 0;
  bottom: calc(100% + 14px);

  width: 100%;
  padding: 16px;

  background: #fff;
  border-radius: 4px;

  opacity: 0;
  visibility: hidden;
  transition: 0.2s ease;
}

.comfort__tooltip p{
  max-width: 328px;
  white-space: normal;
}

.comfort__tooltip strong{
  display: flex;
  margin-bottom: 4px;
}
.comfort__tooltip strong{
  display: flex;
  margin-bottom: 4px;
}


.comfort__tooltip::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -14px;

  width: 0;
  height: 0;

  border-left: 10.5px solid transparent;
  border-right: 10.5px solid transparent;
  border-top: 14px solid #fff; 
}

.block-list__item:hover .comfort__tooltip {
  opacity: 1;
  visibility: visible;
}

.diplomas .booking__title{
  color: #F2F2F2;
}


.diploma__name{
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.diploma__name span {
  color: #5F5F5F;
  text-transform: uppercase;
}
.diploma__name strong,
.diploma__file p {
  color: #F2F2F2;
}

.diploma__file{
  display: flex;
}

.diplomas__item{
  height: 80px;
  width: 100%;
  background-color: #1B1B1B;
  padding: 0px 16px;
  align-items: center;
  position: relative;
}
.diplomas__item:hover,
.diplomas__item.active{
  border: 1px solid #B3B3B3;
}



.diploma__preview {
  position: absolute;
  left: 50%;
  bottom: -100%;
  transform: translate(-50%, -16px);

  opacity: 0;
  visibility: hidden;
  transition: 0.25s ease;
  pointer-events: none;
  max-width: 180px;
  width: 100%;
  z-index: 10;
}

.diploma__preview img {
  width: 260px;
  height: auto;
  display: block;
  border-radius: 6px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

.diplomas__item:hover .diploma__preview {
  opacity: 1;
  visibility: visible;
}








.reviews__rating {
  display: flex;
  align-items: center;
  gap: 16px;

}

.rating-general {
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url(/skin/assets/img/master/rating_main_star.png);
  width: 114px;
  height: 110px;
  background-repeat: no-repeat;
  background-size: cover;
  flex-shrink: 0;
}


.ratings-bars {
  display: flex;
  flex-direction: column;
  gap: 4px;
  max-width: 878px;
  width: 100%;
}

.bar-item {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 22px;
}


.bar-label {
  width: 110px;
  text-align: right;

}


.bar {
  flex: 1;
  height: 12px;
  background: #CCCCCC;
  position: relative;
  overflow: hidden;
  width: 100%;
}

.bar-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: var(--c-primary);
  transition: width 0.3s ease-in-out;
}


.bar-count {
  font-weight: 700;
  flex-shrink: 0;
}





.reviews__item{
  background-color: #fff;
  border: 1px solid #CCCCCC;
  max-width: 550px;
  width: 100%;
}

.author__name__block{
  display: flex;
  align-items: center;
}

.author__name{
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.author__name__block img{
  border-radius: 50%;
}




.star-wrap {
  display: flex;
  gap: 4px;
}

.m-comment{
  display: flex;
  align-items: center;
  gap: 4px;
}

.author__stat__block{
  display: flex;
  align-items: start;
}

.star-rating{
  padding-top: 3px;
}








.reviews__list {
  columns: 3 380px;
  column-gap: 24px;
  column-fill: balance; 
}

.reviews__item {
  break-inside: avoid;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  background: white;
  border: 0.1px solid #CCCCCC;
  overflow: hidden;
}

.reviews__item img[src*="review_img"] {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 8px;
  margin-top: auto;
}

.reviews__item.p-16 {
  padding: 20px;
}

.services .block-list__item{
  background-color: var(--c-primary);
}





.slider-full-width1,
.calendar__days1 {
  display: flex;
  align-items: center;
}



/*


.about__calendar {
  padding: 24px;
  background: #fff;
  overflow: hidden; 
}


.calendar__days {
  display: flex;
  align-items: center;
  overflow: hidden; 
  width: 100%;
}

.calendar__list.calendar__list-fix {
  display: flex;
  overflow-x: hidden; 
  flex: 1;
  transition: transform 0.3s ease;
  
}

.calendar__list-fix .calendar__item {
  flex: 0 0 77px !important;
  margin: 0;
  width: 77px !important; 
}


*/


/*

.calendar__list.calendar__list-fix {
  display: flex !important;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.calendar__list-fix .calendar__item {
  flex: 0 0 77px !important;
  margin: 0 4px;
}


.calendar__time {
  display: flex;
  overflow: hidden;
}

.calendar__list.days-list {
  flex: 1;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.days-list .calendar__item {
  width: 77px !important;
  flex: none !important;
  margin: 0 4px;
}

*/






.scroll-top{
  min-height: 96px;
  width: 100%;
  border-bottom: 0.8px solid #AEAEAE;
  box-shadow: 0px 1px 2px -1px #0000001A;
  box-shadow: 0px 1px 3px 0px #0000001A;
  display: flex;
  align-items: center;
  background-color: #fff;

   position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;

  transform: translateY(-100%);
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.3s ease;
}

.scroll-top--visible {
  transform: translateY(0);
  opacity: 1;
}


.scroll-top__inner{
  display: flex;
  align-items: center;
}


.scroll-top__img__block{
  display: flex;
  align-items: center;
}

.scroll-top__img{
  width: 80px;
  height: 80px;
   background-image: url(/skin/assets/img/master/scrol_master_img.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    position: relative;
    flex-shrink: 0;
}

.scroll-top__img strong{
  color: var(--c-primary);
  padding-top: 2px;
}

.scroll-top__rating{
  display: flex;
  gap: 4px;
  justify-content: center;
  align-items: center;
  margin-top: auto;
  height: 24px;
  width: 100%;
}

.scroll-top__inner .m-nav__item {
    padding: 8px 16px;
    white-space: nowrap;
}


.scroll-top__inner .b-btn{
  font-weight: 600;
  border: 1px solid #151515;
}


    .booking__content .service__info {
        height: 100%;
        display: flex;
         flex-direction: column;
        justify-content: center;
       
    }









/*   здесь правки  */



.calendar__time {
  position: relative;
  align-items: center;
}

.calendar__time .calendar__arrow__block {
  position: absolute;
  top: 0;
  z-index: 3;
  background: #fff;
  cursor: pointer;
}

.calendar__time .calendar__arrow__block.is-disabled {
  pointer-events: none;
}

.calendar__time .calendar__arrow__block.is-disabled .arrow-left {
  border-right-color: #B2B0B0;
}

.calendar__time .calendar__arrow__block.is-disabled .arrow-right {
  border-left-color: #B2B0B0;
}

.calendar__time .calendar__arrow__block:first-child {
  left: 0;
}

.calendar__time .calendar__arrow__block:last-child {
  right: 0;
}

.calendar__time > .calendar__list {
  display: flex;
  width: 100%;
  box-sizing: border-box;
  min-width: 0;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 0 36px;
}

.calendar__time > .calendar__list::-webkit-scrollbar {
  display: none;
}

.calendar__time > .calendar__list > .calendar__item {
  flex: 0 0 clamp(77px, calc((100% - 24px) / 4), 140px);
  width: auto;
}

.calendar__days {
  position: relative;
  align-items: center;
  --calendar-days-side-pad: 36px;
}

.calendar__days::before,
.calendar__days::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: var(--calendar-days-side-pad);
  background: #fff;
  z-index: 2;
  pointer-events: none;
}

.calendar__days::before {
  left: 0;
}

.calendar__days::after {
  right: 0;
}

.calendar__days .calendar__arrow__block {
  position: absolute;
  z-index: 3;
  background: #fff;
}

.calendar__days .calendar__arrow__block:first-child {
  left: 0;
}

.calendar__days .calendar__arrow__block:last-child {
  right: 0;
}

.calendar__days .calendar__arrow__block.is-disabled {
  pointer-events: none;
}

.calendar__days .calendar__arrow__block.is-disabled .arrow-left {
  border-right-color: #B2B0B0;
}

.calendar__days .calendar__arrow__block.is-disabled .arrow-right {
  border-left-color: #B2B0B0;
}

.calendar__days > .calendar__list {
  display: flex;
  width: 100%;
  box-sizing: border-box;
  min-width: 0;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 0 var(--calendar-days-side-pad);
}

.calendar__days > .calendar__list::-webkit-scrollbar {
  display: none;
}

.calendar__days > .calendar__list > .calendar__item {
  flex: 0 0 clamp(77px, calc((100% - 24px) / 4), 120px);
  width: auto;
}







/* Здесь верхний зеленый баннер */

.top-notice{
  width: 100%;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #C9F76E;
  position: relative;
}


.top-notice:before{
  content: "";
  background-image: url(/skin/assets/img/promo/top_notice_bg1.png);
  background-repeat: no-repeat;
  width: 224px;
  height: 80px;
  position: absolute;
  top: 0px;
  left: 58px;
}

.top-notice:after{
  content: "";
  background-image: url(/skin/assets/img/promo/top_notice_bg2.png);
  background-repeat: no-repeat;
  width: 224px;
  height: 66px;
  position: absolute;
  bottom: 0px;
  right: 58px
}


.top-notice ul{
  display: flex;
  gap: 12px;
  z-index: 1;
}

.top-notice ul li{
  font-weight: 700;
  font-size: 18px;
  line-height: 26px;
  letter-spacing: 4%;
  text-align: center;
  text-transform: uppercase;
}



.top-notice ul li::before {
  content: "✦";
  margin-right: 10px;
}


.top-notice ul li:last-child::after {
  content: "✦";
  margin-left: 10px;
}




   .b-btn-246.visible-md.hidden-xs{
      display: none !important;
    }


    .footer-contacts li{
      font-weight: 600;
      font-size: 18px;
      line-height: 26px;
      align-items: center;
      display: flex;
      gap: 16px;
    }

    .footer-contacts a{
      color: #ffffff;
    }

     .footer-contacts a:hover{
      color: #BEF15A;
    }






    /*  Info-modal  */

    .info-modal{
     display: none;
     position: fixed;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      background: #E5E5E5;
      max-width: 1200px;
      width: 100%;
      z-index: 1000;
      border: 1px solid #151515;
    }


    .info-modal .h2{
      margin-bottom: 0px;
      max-width: 850px;
      width: 100%;
      font-weight: 900 !important;
    }

    .info-modal p{
      max-width: 840px;
      width: 100%;
    }

  




    .info-modal__img{
      background-image: url(/skin/assets/img/home/info_popap_bg.jpg);
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      height: 445px;
    }

    .info-modal__content{
      padding: 48px 120px;
      display: flex;
      flex-direction: column;
      background-color: #fff;
      gap: 24px;
      align-items: center;
    }




       /*  Info-modal  */



       /*  Terms  */

.terms-search__inner{
  text-align: center;
  padding: 48px 0px;

}



.search-block {
  display: flex;
  width: 100%;
  position: relative;
}

.search-block input {
  flex: 1;
  height: 54px;
  border: 1px solid #151515;
  border-right: none;
  padding-left: 62px;
  font-weight: 600;
  font-size: 14px;
  line-height: 22px;
  text-transform: uppercase;
  color: #A1A1A1;
  outline: none;
  position: relative;
}

.search-block input::placeholder {
  color: #A1A1A1;
}

.search-block button {
  width: 184px;
  height: 54px;
  border: 1px solid #151515;
  background: #151515;
  color: #C9F76E; /* как у тебя в дизайне */
  text-transform: uppercase;
  cursor: pointer;
}


.search-block:before{
  content: "";
  background-image: url(/skin/assets/img/search_dark.svg);
  background-repeat: no-repeat;
  width: 15px;
  height: 16px;
  position: absolute;
  top: 52%;
  left: 27px;
  transform: translateY(-50%);
  z-index: 1;
}


.alphabet__inner{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
 }

.alphabet__inner a{
  height: 40px;
  background-color: #fff;
  font-weight: 900;
  font-size: 20px;
  line-height: 32px;
  text-transform: uppercase;
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 0 0 45px;   
 }

 .alphabet__inner a.empty{
  opacity: 0.5;
 }

 .alphabet__inner a.active,
 .alphabet__inner a:hover{
  background-color: #151515;
  color: var(--c-primary);
 }



 .terms__list{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
 }

 .terms__item{
  padding: 16px 24px;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  text-align: left;
 }

 .terms__item__title{
  font-weight: 800;
 }

 .terms__item__description{
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  line-clamp: 4;
 }

 .terms__item a{
  border: 1px solid #151515;
  padding-right: 40px;
  position: relative;
  margin-top: auto;
 }

 .terms__empty{
  padding: 24px;
  background-color: #fff;
 }


 .terms__item a:before{
  content: "";
  background-image: url(/skin/assets/img/arrow-up-right.svg);
  background-repeat: no-repeat;
  width: 14px;
  height: 12px;
  position: absolute;
  top: 50%;
  right: 8px;
  transform: translateY(-50%);
  
 }

 





 /*  Terms  */


 














































@media (max-width: 1550px) {


.calendar__block__item .space-between-block{
  align-items: start;
}

    .calendar__block__item span {
        flex-direction: column-reverse;
        gap: 4px;
    }

    .calendar__block__item {
        flex: 0 0 calc(50% - 4px);
        width: calc(50% - 4px);
    }





    .top-notice:before{
  top: 0px;
  left: 0px;
}

.top-notice:after{
  bottom: 0px;
  right: 0px;
}




}










/* Адаптив */
/* Media Queries */
@media (max-width: 1280px) {



  .breadcrumbs a {
    font-size: 10px;
    line-height: 14px;
}

.breadcrumbs span {
    font-size: 10px;
    line-height: 14px;
}



.scroll-top__img{
  width: 62px;
  height: 68px;
}

  .ticker__track span {
    font-size: 32px;
    line-height: 40px;
  }




.footer__top__subtitle{
  font-size: 20px;
  line-height: 28px;
}


.dark-form__submit {
    max-width: 292px;
    height: 60px;
    font-size: 12px;
    line-height: 18px;
  }



  .footer__nav__list ul li a{
   font-size: 12px;
  line-height: 18px;
}


.nav__text{
    font-size: 12px;
  line-height: 18px;
}


.dark-form {
    max-width: 400px;
    padding: 16px;
}

.footer__links span {
    font-size: 12px;
    line-height: 18px;
}

.footer__top__title {
    font-size: 32px;
    line-height: 38px;
}


.dark-form input {
  font-size: 12px;
  line-height: 18px;
  height: 64px;
}

.dark-form input::placeholder {
  font-size: 12px;
}






.m-nav__item {
    padding: 8px 24px;
}



.about__content {
    padding: 30px 16px 24px 16px;
}


.about__img {
    max-width: 271px;
}

.stat__item img{
  max-width: 22px;
}


.m-dropdown-input {
    font-size: 12px;
}

.m-dropdown-list li {
    font-size: 12px;
}


.gallery__content__inner {
    padding-left: 48px;
}

.gallery__images {
    gap: 8px;
}


.booking__content.gap-48{
  gap: 16px;
}

.booking__service-data {
  flex: 1 1 auto;   
  min-width: 306px;
}


.calendar__block__item span {
    flex-direction: column-reverse;
}




.address__item {
    height: 56px;
    padding: 0px 8px;
}


.about__tags-current{
  display: flex;
  justify-content: space-between;
  gap: 0px;
}


.schedule__info-block {
    top: 16px;
    left: 16px;
    bottom: 16px;
    max-width: 372px;
}

.schedule__inner iframe {
    height: 662px;
}


.schedule-container .s-ditail__item {
   max-width: 211px; 

    height: 38px;

}

.schedule__info__img{

}

.schedule__info__img img{
  height: 170px;
}


.block-list__item {
  font-size: 12px;
  min-width: inherit;
}

.diplomas__item {
  height: 74px;
}

.ratings-bars {
    max-width: 678px;
}

.reviews__list {
    columns: 3 280px;
    column-gap: 16px;
}

.reviews__item {
    margin-bottom: 16px;
}

.comfort__tooltip p{
  
}


.about__calendar {
  min-width: 380px;
  width: 400px;
}





.top-notice ul li{
  font-size: 16px;
  line-height: 26px;
}

.top-notice:before{
  width: 121px;
  height: 45px;
  background-size: contain;
}

.top-notice:after{
   width: 121px;
  height: 35px;
  background-size: contain;
}




.hero {
  min-height: 44px;
}
.hero__inner {
  height: 44px;
}

.search-bar {
    height: 28px;
}








    /*  Info-modal  */

    .info-modal{
      max-width: 800px;
    }

      .info-modal__img{
      height: 278px;
    }

    .info-modal .h2{
      max-width: 668px;
      font-size: 26px;
    }

    .info-modal p{
      max-width: 668px;
      font-size: 14px;
    }

    .info-modal__content{
      padding: 48px 66px;
      gap: 16px;
    }




    .search-block input {
    height: 52px;
    font-size: 12px;
    line-height: 18px;
    }

    .search-block button {
    width: 176px;
    height: 52px;
    border: 1px solid #151515;
    background: #151515;
    color: #C9F76E;
    text-transform: uppercase;
    cursor: pointer;
    font-size: 14px;
    line-height: 20px;
}


       /*  Info-modal  */






  
}

























@media (max-width: 1024px) {


    .scroll-top__inner{
    flex-wrap: wrap;
    padding: 8px 0px;
  }

  .scroll-top__inner.gap-24{
    gap: 4px;
  }


  .scroll-top__img__block{
    order: 1;
    padding: 8px 0px;
  }


  .scroll-top__inner .b-btn{
    order: 2;
    margin-left: auto; 
  }

  .scroll-top__name{
    max-width: 170px;
  }




  .scroll-top__inner .nav-block{
    order: 3;
    width: 100%;
  }


.scroll-top__inner .nav-block ul{
  display: flex;
  width: 100%;
}

.scroll-top__inner .nav-block ul li{
  flex: 1 1 auto;
  min-width: max-content;
  display: flex;
}

.scroll-top__inner .nav-block ul li a{
  flex: 1;
  display: flex;
  justify-content: center;
  white-space: nowrap;
}



  .ticker {
    height: 68px;
  }


    .dark-form {
        max-width: 300px;
        padding: 18px;
    }

        .footer__top__title {
        font-size: 24px;
        line-height: 32px;
    }

       .dark-form input {
        height: 50px;
    }


        .dark-form__submit {
        max-width: 239px;
        height: 46px;
    }


    .m-about {
       flex-direction: column;
    }

    .about__info {
    flex: inherit;
    min-height: inherit;
    }

    .calendar__middle {
    gap: 16px;
}

.about__calendar {
    min-width: inherit;
    min-height: 0px;
    gap: 16px;
}


.m-gallery__inner {
    flex-direction: column;
}

.gallery__img {
    flex: 0 0 calc(50% - 4px);
    max-width: calc(50% - 4px);
}


.calendar__block__inner {
    display: block;
}

.calendar__block__item {
    flex: 0 0 100%;
    width: 100%;
    min-height: 102px;
    margin-bottom: 8px;
}


.calendar__block__item span {
  flex-direction: row;
}

.calendar__day-data {
  height: 34px;
}

.calendar__arrow__block {
    height: 34px;
    width: 34px;
}

.slider-full-width {
    --month-arrow-size: 34px;
}

.calendar__block__item strong.price-tag {
    height: 28px;
}

.slider-full-width__info {
    height: 34px;
}


.calendar__block__item .space-between-block{
  align-items: center;
}

.calendar__block__item span {
        flex-direction: row;
        gap: 8px;
    }








 .calendar__block__item:nth-child(n+4) {
      display: none;
  }

  .calendar__block__inner.open .calendar__block__item {
      display: block;
  }


.about__rating.fs-16{
  font-size: 14px;
}

.about__stat.gap-24{
  gap: 24px;
}

    .about__content {
        padding: 16px 8px;
        min-height: 300px;
    }

    .about__location svg{
      width: 10px;
      height: 14px;
    }




    .schedule__inner iframe {
        height: 800px;
    }

    .schedule__info-block {
        top: inherit;
        left: 16px;
        bottom: 16px;
        right: 16px;
        max-width: 100%;
        width: inherit;
        height: 364px;
        display: flex;
        flex-wrap: wrap;
        gap: 0px 24px;
    }

    .space-around-block {
    display: flex;
    justify-content: inherit;
    margin-left: auto;
    margin-right: 48px;
    gap: 48px;
}

.schedule__info-content{
  order: 3;
  width: 40%;
}

.schedule__info-worktime{
  order: 2;
}

.schedule-bottom-img{
  order: 3;
  align-items: end;
  margin-bottom: 14px;
}


.reviews__rating {
    justify-content: space-between;
}


.reviews .s__nav {
    align-items: center;
}

.bar-item {
    height: 18px;
}

    .reviews__list {
        columns: 3 300px;
        column-gap: 8px;
    }

        .reviews__item {
        margin-bottom: 8px;
    }

    .reviews__item.p-16 {
    padding: 16px;
}


.author__stat__block {
    flex-direction: column-reverse;
    align-items: end;
}

.author__stat__block.gap-16{
  gap: 4px;
}











.calendar__time > .calendar__list {
  padding: 0 34px;
}

.calendar__days {
  --calendar-days-side-pad: 34px;
}




.about__calendar {
  min-width: 380px;
  width: 100%;
}



.top-notice ul li{
  font-size: 14px;
}



   .b-btn-246.visible-md.hidden-xs{
      display: block !important;
    }

     .b-btn-246.hidden-md.visible-xs{
      display: none !important;
    }




    

    /*  Info-modal  */

    .info-modal{
      max-width: 768px;
    }

      .info-modal__img{
      height: 268px;
    }

    .info-modal .h2{
      max-width: 636px;
    }

    .info-modal p{
      max-width: 636px;
    }

    .info-modal__content{
      padding: 48px 66px;
    }


       /*  Info-modal  */








  
}






@media (max-width: 992px) {



  .top-notice ul li{
  font-size: 12px;
  line-height: 16px;
}


}



















@media (max-width: 768px) {
  /* Поиск */


.search-field {
  display: none;
  padding: 8px 16px 24px 16px;
  background: #151515; 
  position: relative;
  z-index: 999;
  margin: 0 -16px;
}

/* контейнер */
.search-field__inner {
  position: relative;
}

/* input */
.search-field__input {
  width: 100%;
  height: 28px;

  padding-left: 8px;
  padding-right: 50px;

  font-family: 'Mulish', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 0.02em;
  background: transparent;
  border: none;
  border-bottom: 1px solid #454545;
  outline: none;
  color: #F5F5F5;
}


.search-field__icons {
  position: absolute;
  right: 0;
  top: 0;
  height: 28px;

  display: flex;
  align-items: center;
  gap: 10px;
}


.search-field__submit,
.search-field__close {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

.search-field__submit svg {
  fill: #F5F5F5;
}

.search-field__close svg {
  fill: #454545;
}

.hero__nav__item.hidden-sm {
    display: none !important;
}

.search-bar__container.hidden-sm {
  display: none !important;
}



.search-bar--mob.visible-sm{
  display: flex !important;
  gap: 16px;
  align-items: center;
}


.search-bar {
    align-items: center;
}


    .hero__logo img {
        width: 86px;
    }


        .hero__nav__link svg {
          display: block;
        width: 20px;
        height: 20px;
    }




    .footer__top {
    flex-direction: column;
}

.footer__top__nav {
    gap: 52px;
}

    .footer__nav__list {
        gap: 27px;
    }

        .dark-form {
        max-width: 522px;
        margin: 0px auto;
    }

    .dark-form__submit {
        max-width: 239px;
        height: 54px;
        margin: 32px auto 0px auto;
    }




   .footer__center {
  align-items: center;  
  position: relative;  
  flex-direction: column;
  gap: 24px;
}

.hero__nav__item.hero__nav__item--lang {
  margin-right: auto;   
  position: absolute;   
}

.social {
  margin-left: auto;  
  margin-right: auto;        
}

.footer__links a {
    font-size: 14px;
}

.footer__bottom p {
    font-size: 12px;
}


.footer__top__nav {
    gap: 16px;
    margin-bottom: 48px;
}


.banner__bg {
    margin-top: 48px;
}



.m-nav__item {
    padding: 8px 16px;
}


 .calendar__block__item:nth-child(n+4) {
      display: block;
  }

  .calendar__block__inner.open .calendar__block__item {
      display: block;
  }



.booking__content {
    flex-direction: column;
}

.booking__time-data {
    flex: inherit;
}



.calendar__block__item {
    flex: 0 0 calc(50% - 4px);
}

.calendar__block__inner {
    display: flex;
    gap: 8px;
}

    .calendar__block__item span {
        flex-direction: column-reverse;
    }

    .calendar__block__item strong{
      display: block;
      max-width: 170px;
    }


    .slider-full-width__info {
    font-size: 12px;
    line-height: 18px;
}

    .s-nav__link {
        height: 24px;
    }

    .schedule__info__img img {
        max-width: 308px;
    }

    .space-around-block {
        margin-right: 16px;
        gap: 24px;
    }


    .block-list__item {
        height: 36px;
    }



    .diplomas__item {
        height: 114px;
    }

.diploma__preview {
  position: relative;
  left: inherit;
  bottom: inherit;
  transform: inherit;
  opacity: 1;
  visibility: visible;
  pointer-events: none;
  max-width: 80px;
  width: 100%;
  z-index: 10;
}

.diploma__preview img {
  width: auto;
  height: 80px;
}


.diplomas__item.space-between-block{
  justify-content: inherit;
  gap: 16px;
  width: 100%;
}

.diploma__file{
  margin-left: auto;
}




.calendar__block__item .space-between-block{
  align-items: start;
}

    .calendar__block__item span {
        flex-direction: column-reverse;
        gap: 4px;
    }





     .top-notice ul li{
  font-size: 10px;
  line-height: 10px;
}







.search-bar {
  order: 1;
  width: inherit;
}
.hero__logo {
  order: 2;
}

.hero__nav {
  order: 3;
}

.hero__logo {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}


    .hero__logo img {
        width: 47px;
    }


    .hero__nav__link--phone img{
    width: 17px;
    height: 17px;
}




    /*  Info-modal  */

    .info-modal{
      max-width: 704px;
    }

      .info-modal__img{
      height: 324px;
    }

    .info-modal .h2{
      max-width: 570px;
      font-size: 22px;
      line-height: 26px;
    }

    .info-modal p{
      max-width: 570px;
      font-size: 12px;
      line-height: 18px;
    }

    .info-modal__content{
      padding: 24px 66px;
    }


       /*  Info-modal  */
















}




















@media (max-width: 576px) {

  .hero__inner {
    height: 54px;
  }

  .hero {
    height: 54px;
    min-height: 54px;
  }

  .page-header .breadcrumbs {
    height: 48px;
  }

  .ticker__track span {
    font-size: 16px;
    line-height: 24px;
  }

  .ticker{
    height: 60px;
  }




  .footer__top__nav {
    flex-direction: column;
  }

  .footer__bottom .footer__top__title {
    font-weight: 700;
    font-size: 20px;
    line-height: 28px;
  }

  .footer__nav__list ul li a {
    font-weight: 500;
    font-size: 12px;
    line-height: 18px;
  }



  .dark-form {
    max-width: 100%;
    padding: 0px;
  }

  .dark-form__submit {
    max-width: 100%;
    height: 46px;
    font-size: 12px;
    line-height: 18px;
  }

  .hero__nav__item.hero__nav__item--lang {
    margin-right: inherit;
    position: relative;
  }

  .footer__center {

    flex-direction: column;
    gap: 48px;
  }

  .hero__nav__link {
    font-weight: 600;
    font-size: 16px;
    line-height: 18px;
  }

  .social .promo-text {
    font-size: 12px;
    text-align: center;
  }

  .footer__links {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }


  .footer__links a {
    font-weight: 600;
    font-size: 12px;
    line-height: 18px;
    letter-spacing: 0%;
    text-align: center;
    text-transform: uppercase;
    color: #A2A2A2;

  }

  .banner__bg__img.mb-8{
    margin-bottom: 16px;
  }

  .footer__links a:first-child {  
    order: 3;                    
  }

  .footer__links a:nth-child(2) {  
    order: 2;                   
  }

  .footer__links a:nth-child(3) { 
    order: 1;                  
  }


  .footer .banner__bg__img {
    padding: 0px 16px 0px 16px;
  }




  .scroll-top__inner .m-nav__item {
    padding: 4px;
    border: none;
  }

  .scroll-top__inner .m-nav__item.active {
    border: 1px solid #151515;
  }



  .scroll-top__inner .m-nav.gap-8 {
    gap: 0px;
  }

  .scroll-top__img {
    width: 52px;
    height: 57px;
  }

  .scroll-top__btn.visible-xs{
    width: 46px;
    height: 46px;
    border-top: 1px solid #151515;
    display: flex !important;
    justify-content: center;
    align-items: center;
  }

  .scroll-top__img__block {
    padding: 0px;
  }

  .scroll-top__name.h4{
    font-size: 14px;
  }


  .scroll-top__inner .m-nav__item.fs-14 {
    font-size: 10px;

  }



  .gallery__content__inner {
    display: flex;
    flex-direction: column;
    padding: 24px 0px 24px 16px;
}

.gallery__content {
    flex-direction: column;
}

.social-block {
    position: relative;
}



.calendar__block__item:nth-child(n+4) {
    display: none;
}

.calendar__block__inner.open .calendar__block__item {
    display: block;
}




.calendar__block__item {
    flex: 0 0 100%;
}

.calendar__block__inner {
    display: block;
}

    .calendar__block__item span {
        flex-direction: row;
    }


.b-address {
    flex-wrap: wrap;
}

.s__nav {
  flex-wrap: wrap;
}

.nav-block ul {
     flex-wrap: wrap;
}

.m-nav__item {
        padding: 4px 12px;
    }


    .about__info {
        flex-direction: column;
    }

    .about__img {
        max-width: 100%;
        min-height: 428px;
    }

    .about__badges {
    top: 12px;
}

    .about__rating {
    height: 24px;
    width: 117px;
}


.about__tags-current{
  flex-direction: column;
  gap: 12px;
}

    .calendar__block__item strong {
        max-width: 150px;
    }


    .schedule__info-block {
      position: relative;
      height: auto;
      top: 0px;
      left: 0px;
      right: 0px;
      gap: 16px;
    }


    .s__nav.visible-xs {
        display: flex !important;
        width: 100%;
    }

    .schedule__info-content {
        order: 2;
        width: 100%;
        display: flex;
        align-items: center;
        gap: 8px;
    }

        .schedule__info-worktime {
        order: 3;
        width: 100%;
    }

    .schedule-container {
    flex-direction: column;
    gap: 0px;
}

.schedule-left, .schedule-right {
    width: 100%;
}

    .schedule__inner iframe {
        height: 328px;
    }




    .space-around-block {
        display: flex;
         margin-left: inherit; 
        margin-right: inherit;
        gap: 24px;
        justify-content: space-around;
        width: 100%;
    }

      .diploma__preview img {
        height: 54px;
        border-radius: 4px;
    }


        .diplomas__item.space-between-block {
        gap: 0px;
        flex-wrap: wrap;
    }

    .diploma__name {
    flex-direction: column-reverse;
    gap: 4px;
    order: 1;
    width: 100%;
}

.diploma__preview{
  order: 2;
}

.diploma__file{
  order: 3;
  align-items: center;
}

.diploma__file img{
  width: 24px;
  height: 24px;
}

    .diplomas__item {
        height: 128px;
    }


    .b-btn-246.visible-md.hidden-xs{
      display: none !important;
    }

     .b-btn-246.hidden-md.visible-xs{
      display: block !important;
      order: 2;
    }

    .reviews__rating {
        flex-wrap: wrap;
    }

    .rating-general {
    width: 54px;
    height: 51px;
    order: 1;
        padding-top: 5px;
}

.score.h3{
  font-size: 10px;
}

.ratings-bars {
    max-width: 500px;
    width: 100%;
    order: 3;
    width: 100%;
}

.services .block-list__item{
  height: 28px;
  font-size: 9px;
}

.comfort__tooltip {
    max-width: 328px;
}





    .calendar__block__item .space-between-block {
        align-items: start;
        flex-wrap: wrap;
    }

        .calendar__block__item strong {
        max-width: 100%;
        width: 100%;
    }



        .calendar__block__item .space-between-block {
       
        gap: 12px;
    }

        .calendar__block__item .price-info {
          width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
    }

    .calendar__block__item .price-tag {
  width: auto;
  max-width: none;
  display: inline-block;
  padding: 4px 10px;
  white-space: nowrap;
}







.top-notice{
  min-height: 82px;
  height: auto;
}

 .top-notice ul{
  flex-direction: column;
  gap: 8px;
}



    .top-notice:before {
        width: 107px;
        left: -35px;
        top: -5px;
    }

        .top-notice:after {
        width: 107px;
        height: 32px;
        right: -40px;
        background-size: contain;
    }





     .about__content {
        min-height: 0px;
    }


    .footer-contacts li{
      font-size: 12px;
      line-height: 18px;
      gap: 8px;
    }


    .footer__center {
      align-items: start;
        gap: 16px;
        margin-top: 24px;
    }


    

    /*  Info-modal  */

    .info-modal{
      max-width: 328px;
    }

      .info-modal__img{
      height: 335px;
    }

    .info-modal .h2{
      max-width: 100%;
      font-size: 20px;
      line-height: 24px;
      text-align: center;
    }

    .info-modal p{
      max-width: 100%;
    }

    .info-modal__content{
      padding: 16px;
    }


       /*  Info-modal  */






     /*  Terms  */

       .search-block button {
        width: 52px;
        height: 52px;
        position: relative;
         font-size: 0;
    }

      .search-btn::before {
        content: "";
        position: absolute;
        top: 50%;
        left: 50%;
        width: 16px;
        height: 16px;
        transform: translate(-50%, -50%);

        background-image: url('/skin/assets/img/search_green_img.svg');
        background-repeat: no-repeat;
        background-size: contain;
      }


      .search-block input {
        padding-left: 22px;
      }

      .search-block:before {
        display: none;
      }



     /*  Terms  */







  
}








@media (max-width: 400px) {

   .about__img {
        max-width: 100%;
        min-height: 328px;
    }


}

@media (max-width: 1280px) and (min-width: 1024px) {
  .calendar__block__inner {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }

  .calendar__block__item {
    flex: 0 0 calc(50% - 4px);
    width: calc(50% - 4px);
  }
}

@media (max-width: 1024px) and (min-width: 768px) {
  .calendar__block__inner {
    display: block;
  }

  .calendar__block__item {
    flex: 0 0 100%;
    width: 100%;
  }
}

@media (max-width: 768px) and (min-width: 576px) {
  .calendar__block__inner {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }

  .calendar__block__item {
    flex: 0 0 calc(50% - 4px);
    width: calc(50% - 4px);
  }
}

@media (max-width: 576px) {
  .calendar__block__inner {
    display: block;
  }

  .calendar__block__item {
    flex: 0 0 100%;
    width: 100%;
  }
}





.is-hidden{
  display: none;
}