@import url("fonts.css");
@import url("header.css");
@import url("footer.css");

html {
    font-size: 1vw;
}
body {
    margin: 0;
    font-size: 1.04167rem;
}
body * {
    font-family: 'Gbar';
    box-sizing: border-box;
}
.flex {
    display: flex;
}
.container {
    width: 85.4rem;
    padding: 0;
}

a {
    text-decoration: none;
}
h1, h2, h3, h4, h5, p, ul {
    margin: 0;
    padding: 0;
}

body.loading {
    overflow: hidden;
}

#preloader {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: #0223C6;
    z-index: 111111111;
}
#preloader img{
    position: absolute;
    width: 18rem;
    height: auto;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}

/*todo select*/
.select-container {
    display: flex;
    align-items: center;
    gap: 0.52083rem;
    flex: 1 0 0;
    align-self: stretch;
    position: relative;
}

.custom-select {
    position: relative;
    display: flex;
    /* padding: 0rem 1.82292rem; */
    justify-content: space-between;
    align-items: center;
    flex: 1 0 0;
    align-self: stretch;
}

.select-button {
    display: flex;
    padding: 0 1.82292rem;
    justify-content: space-between;
    align-items: center;
    flex: 1 0 0;
    align-self: stretch;
    width: 100%;
    height: 4.79rem;
    background: #FFF;
    border: 1px solid #0223C6;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    color: #0223C6;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: left;
}

.select-button:focus {
    outline: none;
}

.select-button.open {

}

.select-arrow {
    width: 0.54198rem;
    height: 0.54198rem;
    border-right: 1px solid #0223C6;
    border-bottom: 1px solid #0223C6;
    transform: rotate(45deg);
    transition: transform 0.2s ease;
}

.select-button.open .select-arrow {
    transform: rotate(-135deg);
}

.select-dropdown {
    position: absolute;
    top: 5.29rem;
    left: 0;
    width: 100%;
    background: white;
    border: 1px solid #0223C6;
    border-radius: 0;
    max-height: 300px;
    overflow-y: auto;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s ease;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.30208rem;
    padding: 1.30208rem;

    justify-content: space-between;
    align-items: flex-start;
    align-content: flex-start;
    row-gap: 1.30208rem;
    flex-wrap: wrap;

    display: none;
}

.select-dropdown.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    display: block;
}

.select-option {
    cursor: pointer;
    color: #2C2929;
    font-size: 0.72917rem;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
}
.select-option span {
    color: #7B8794;
    font-feature-settings: 'liga' off, 'clig' off;
    font-size: 0.625rem;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    display: block;
}

.select-option:hover {
    color: #0223C6;
    text-decoration: none;
    outline: none;
}

.select-option.selected {
    background-color: #FFF;
    color: #0223C6;
}
/*todo select*/

.head-slider img{
    width: 100%;
}

#directions {
    display: flex;
    padding: 5.20833rem 7.29167rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 2.60417rem;
    align-self: stretch;
    background: transparent;
}
#directions .wrap-head{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.88542rem;
    align-self: stretch;
}
#directions .wrap-head h2{
    width: 56.66667rem;
    color: #0223C6;
    font-feature-settings: 'calt' off;
    font-size: 4.16667rem;
    font-style: normal;
    font-weight: 700;
    line-height: 96%;
    text-transform: uppercase;
}
.chooseSalon{
    display: flex;
    padding: 0 1.82292rem;
    justify-content: space-between;
    align-items: center;
    flex: 1 0 0;
    align-self: stretch;
    border: 1px solid #0223C6;
    background: #FFF;
    box-shadow: none;
}
.chooseSalon span{
    color: #0223C6;
    font-size: 1.14583rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1;
    text-transform: uppercase;
}
.chooseSalon img{
    width: 0.88542rem;
    height: 0.57292rem;
}
#directions .wrap-list{
    display: flex;
    height: 16.97917rem;
    align-items: flex-start;
    gap: 0.88542rem;
    align-self: stretch;
}
#directions .wrap-list .slide{
    display: flex;
    padding: 0;
    justify-content: space-between;
    align-items: flex-end;
    flex: 1 0 0;
    align-self: stretch;

    text-decoration: none;
    transition: 0.5s all;
    outline: none;
    height: 16.97rem;
}
#directions .wrap-list .slide:hover a {
    filter: grayscale(0) !important;
}
#directions .wrap-list .slide h3{
    color: #FFF;
    font-size: 0.9375rem;
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
}
#directions .wrap-list .slide img{
    width: 2.70833rem;
    height: 0.83333rem;
}

#directions .wrap-list .slick-slide {
    margin: 0 0.45rem;
}
#directions .wrap-list .slick-list {
    margin: 0 -0.45rem;
}

section.about {
    display: flex;
    padding: 5.20833rem 7.29167rem;
    align-items: center;
    gap: 5.20833rem;
    background: transparent;
}
section.about .slider-images.slider-mobile {
    display: none;
}
section.about .slick-dots {
    bottom: -0.781rem;
}
section.about .slick-dots li {
    height: 0.729rem;
    margin: 0;
}
section.about .slick-dots li button {
    width: 100%;
    height: 100%;
    padding: 0;
    background: transparent;
    border-radius: 0;
}
section.about .slick-dots li button:before {
    display: none;
}
section.about .slick-dots li.slick-active button {
    background: #0223C6;
}
section.about .slider-images img{
    height: 37.5rem;
    object-fit: cover;
}
section.about .flex{
    display: flex;
    align-items: center;
    gap: 5.20833rem;
}
section.about .about-content{
    display: flex;
    width: 27.65625rem;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    flex-shrink: 0;
    align-self: stretch;
}
section.about .about-content .wrap-text{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.88542rem;
    align-self: stretch;
}
section.about .about-slider{
    width: 51.55208rem;
}
section.about h2{
    color: #0223C6;
    font-feature-settings: 'calt' off;
    font-size: 2.60417rem;
    font-style: normal;
    font-weight: 700;
    line-height: 114%;
    text-transform: uppercase;
}

section.about p{
    color: #212121;
    text-align: justify;
    font-size: 1.14583rem;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    margin: 0;
}
section.about .slick-prev {
    background: #0223C6 url("/assets/images/svg/arrow-left.svg") no-repeat center;
    background-size: 5rem;
    left: auto;
    right: 6.5625rem;
    border-right: 1.5px solid #FFF !important;
}
section.about .slick-next {
    background: #0223C6 url("/assets/images/svg/arrow-right.svg") no-repeat center;
    background-size: 5rem;
    right: 0;
    border-left: 1.5px solid #FFF !important;
}
section.about .slick-next, section.about .slick-prev {
    display: block;
    opacity: 1;
    top: auto;
    bottom: 0;
    height: 4.79167rem;
    width: 6.5625rem;
    z-index: 1;
    transform: none;
}
section.about .slick-dotted.slick-slider {
    margin-bottom: 0;
}
section.about .slick-next:before, section.about .slick-prev:before {
    display: none;
}

section.reviews {
    display: flex;
    height: 36.97917rem;
    padding: 5.20833rem 7.29167rem;
    align-items: center;
    gap: 2.29167rem;
    background: #0223C6;
}
section.reviews h2 {
    width: 23.28125rem;
    flex-shrink: 0;
    color: #FFF;
    font-feature-settings: 'calt' off;
    font-size: 2.60417rem;
    font-style: normal;
    font-weight: 700;
    line-height: 114%;
    text-transform: uppercase;
}
section.reviews .reviews-slider {
    display: flex;
    align-items: center;
    gap: 0.89609rem;
}
section.reviews .reviews-slider .review {
    display: flex;
    width: 18.07792rem;
    height: 27.89161rem;
    padding: 1.19484rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.19484rem;
    background: #FFF;
}
section.reviews .reviews-slider .review .wrap-image img {
    width: 2.58255rem;
    height: 2.58255rem;
    flex-shrink: 0;
    border-radius: 50%;
}
section.reviews .reviews-slider .review p, section.reviews .reviews-slider .review li {
    flex: 1 0 0;
    align-self: stretch;
    color: #000;
    font-size: 0.72313rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
section.reviews .reviews-slider .review p.review-name {
    color: #000;
    font-size: 0.72313rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    opacity: 0.5;
}
section.reviews .reviews-slider .review li {
    list-style-type: none;
}
.feedbacks {
    display: flex;
    /*height: 36.97917rem;*/
    padding: 5.20833rem 7.29167rem;
    align-items: center;
    gap: 2.29167rem;

    align-self: stretch;
    background: #0223C6;
    overflow: hidden;
    user-select: none;
}
.feedbacks h2 {
    color: #FFF;
    font-feature-settings: 'calt' off;
    font-size: 2.60417rem;
    font-style: normal;
    font-weight: 700;
    line-height: 114%;
    text-transform: uppercase;
    width: auto;
}
.swiper .titleMobile {
    display: none;
}
.feedbacks .swiper .swiper-wrapper {
    display: flex;
    align-items: stretch;
}
.feedbacks .swiper-slide {
    display: flex;
    width: 18.07792rem !important;
    height: auto;
    padding: 1.19484rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.19484rem;
    border-radius: 0;
    background: #FFF;
}
.swiper {
    width: 100%;
}
.feedbacks .swiper-slide.title {
    justify-content: center;
    background: transparent;
}
.feedbacks .feedback-img {
    width: 2.58255rem;
    height: 2.58255rem;
    flex-shrink: 0;
    position: relative;
}
.feedbacks .feedback-img img{
    object-fit: cover;
    object-position: 0 0;
    border-radius: 50%;
    width: 3.4434rem;
    height: 3.4434rem;
    flex-shrink: 0;
}
.feedbacks .feedback-text {
    font-size: 0.72313rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    color: #000;
    flex: 1 0 0;
    align-self: stretch;
}
.feedbacks .feedback-name {
    color: #000;
    font-size: 0.72313rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    width: auto;
    opacity: 0.5;
    position: relative;
}
.feedbacks .feedback-video {
    display: none;
}
.feedbacks .feedback-video img.video-play {
    border-radius: 3.98271rem;
    background: rgba(255, 255, 255, 0.40);
    display: flex;
    width: 3.4434rem;
    height: 3.4434rem;
    padding: 0.79653rem;
    justify-content: center;
    align-items: center;
    gap: 0.49785rem;
    flex-shrink: 0;
    aspect-ratio: 49.59/49.59;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    cursor: pointer;
    z-index: 1;
}
.feedbacks .feedback-video img.video-img {
    width: 100%;
    border-radius: 0.39826rem;
}
.feedbacks .swiper-slide .feedback-video{
    position: absolute;
    top: 0;
    left: 0;
}
section.testimonials {
    padding: 5.20833rem 7.29167rem;
    background: #0223C6;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    gap: 0.52083rem;
}
section.testimonials img.testimonial-image{
    width: 100%;
    height: 20.83rem;
    display: block;
    object-fit: cover;
}
section.testimonials .row-item.row-item-2 {
    order: 1;
    width: 20.46rem;
}
section.testimonials .row-item.row-item-1 {
    order: 2;
    width: 19.84375rem;
}
section.testimonials img.img-3{
    order: 3;
    width: 24.58958rem;
}
section.testimonials img.img-4{
    order: 4;
    width: 17.55208rem;
}
section.testimonials .row-item.row-item-3 {
    order: 5;
    width: 22.89rem;
}
section.testimonials img.img-6{
    order: 6;
    width: 22.89rem;
}
section.testimonials img.img-7{
    order: 7;
    width: 11.97917rem;
}
section.testimonials img.img-8{
    order: 8;
    width: 24.69375rem;
}

section.testimonials .testimonial-text{
    display: flex;
    width: 23.07292rem;
    padding: 1.25rem;
    align-items: flex-start;
    gap: 1.25rem;
    border-radius: 0.67708rem;
    background: #FFF;

    position: absolute;
}
section.testimonials .testimonial-text.text-1{
    left: 12.96875rem;
    top: 21.5625rem;
}
section.testimonials .testimonial-text.text-2{
    right: 37.34375rem;
    bottom: 17.39583rem;
}
section.testimonials .testimonial-text.text-3{
    right: 11.82292rem;
    top: 20.83333rem;
}
section.testimonials .testimonial-text .circle{
    width: 2.91667rem;
    height: 2.91667rem;
    flex-shrink: 0;
    background: #F4C6E0;
    border-radius: 50%;
}
section.testimonials .testimonial-text p{
    flex: 1 0 0;
    color: #2C2929;
    font-feature-settings: 'calt' off;
    font-size: 1.04167rem;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
}

section.locations {
    display: flex;
    padding: 5.20833rem 7.29167rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 2.60417rem;
}
section.locations .wrap-head {
    display: flex;
    align-items: flex-start;
    gap: 2.60417rem;
    align-self: stretch;
}
section.locations .wrap-head h2 {
    width: 29.84375rem;
    color: #0223C6;
    leading-trim: both;
    text-edge: cap;
    font-feature-settings: 'calt' off;
    font-size: 2.60417rem;
    font-style: normal;
    font-weight: 700;
    line-height: 114%;
    text-transform: uppercase;
}
.gmap {
    height: 30rem;
    width: 100%;
}

.navigate {
    display: flex;
    padding: 7.29167rem;
    align-items: flex-start;
    gap: 2.08333rem;
    align-self: stretch;
    background: #0223C6;
}
.navigate .item{
    display: flex;
    height: 17.5rem;
    padding: 2.08333rem;
    justify-content: space-between;
    align-items: flex-end;
    flex: 1 0 0;
    transition: 0.5s all;
    filter: grayscale(100%);
    text-decoration: none;
}
.navigate .item.book-online{
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 0%, rgba(0, 0, 0, 0.50) 100%), url('/assets/images/navigate-1.jpg') lightgray 50% / cover no-repeat;
}
.navigate .item.callback{
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 0%, rgba(0, 0, 0, 0.50) 100%), url('/assets/images/navigate-2.jpg') lightgray 50% / cover no-repeat;
}
.navigate .item.instagram{
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 0%, rgba(0, 0, 0, 0.50) 100%), url('/assets/images/navigate-3.jpg') lightgray 50% / cover no-repeat;
}
.navigate .item:hover{
    filter: grayscale(0);
}
.navigate .item p{
    color: #FFF;
    text-align: center;
    font-size: 0.9375rem;
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
    text-transform: uppercase;
}
.navigate .item img{
    width: 2.70833rem;
    height: 0.83333rem;
}

.wrap-table {
    background: #FFF;
    display: flex;
    padding: 5.20833rem 7.29167rem;
    flex-direction: column;
    align-items: flex-start;
    overflow: hidden;
}

.wrap-table .wrap {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    align-self: stretch;
}
.wrap-table .wrap .wrap-head {
    display: flex;
    padding: 2.08333rem;
    justify-content: center;
    align-items: center;
    gap: 2.08333rem;
    align-self: stretch;
    border-right: 1px solid #0223C6;
    border-left: 1px solid #0223C6;
}
.wrap-table .wrap .wrap-head h2 {
    color: #0223C6;
    font-feature-settings: 'calt' off;
    font-size: 3.125rem;
    font-style: normal;
    font-weight: 700;
    line-height: 114%;
    text-transform: uppercase;
    height: 3.54167rem;
    flex: 1 0 0;
}
.wrap-table .wrap .wrap-head .chooseSalon {
    display: flex;
    width: 25.69427rem;
    padding: 0 1.82292rem;
    justify-content: space-between;
    align-items: center;
    align-self: stretch;
    flex: none;
}
.wrap-table .wrap .border {
    width: 100rem;
    height: 1px;
    background: #0223C6;
}
.wrap-table .wrap .wrap-content {
    padding: 2.08333rem;
    border-right: 1px solid #0223C6;
    border-left: 1px solid #0223C6;
    width: 100%;

    gap: 2.08333rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}
.wrap-table .wrap .wrap-content img {
    align-self: stretch;
    width: 100%;
    object-fit: cover;
}
.wrap-table .wrap .wrap-content p {
    width: 100%;
    color: #212121;
    font-size: 1.04167rem;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
}
.wrap-table .wrap .wrap-button {
    display: flex;
    padding: 2.08333rem;
    justify-content: flex-end;
    align-items: center;
    gap: 0.52083rem;
    align-self: stretch;
    border-right: 1px solid #0223C6;
    border-left: 1px solid #0223C6;
}
.wrap-table .wrap .wrap-button a {
    display: flex;
    height: 3.54167rem;
    padding: 0 1.82292rem;
    justify-content: space-between;
    align-items: center;
    flex: 1 0 0;
    background: #0223C6;
    color: #FFF;
    font-feature-settings: 'calt' off;
    font-size: 1.14583rem;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    text-transform: uppercase;
}
.wrap-table .wrap .wrap-button a img {
    width: 2.70833rem;
    height: 0.83333rem;
}
.franchise.wrap-table .wrap .wrap-button a {
    display: flex;
    width: 22.86458rem;
    max-width: 22.86458rem;
    height: 3.54167rem;
    padding: 0 1.82292rem;
    justify-content: center;
    align-items: center;
    background: #0223C6;
    color: #FFF;
    font-feature-settings: 'calt' off;
    font-size: 1.14583rem;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    text-transform: uppercase;
}
#chooseLocation .modal-dialog{
    width: 67.7rem;
    height: 30.5rem;
    position: absolute;
    right: 0;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
}
#chooseLocation .modal-body{
    padding: 0;
}
#chooseLocation .select-container{
    position: absolute;
    left: 0.52rem;
    top: 0.52rem;
    z-index: 1;
}
#chooseLocation .select-container .select-button{
    display: flex;
    width: 12.03125rem;
    padding: 1.30208rem;
    justify-content: space-between;
    align-items: center;
    background: #0223C6;
    color: #FFF;
    font-size: 0.83333rem;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    text-transform: uppercase;
}
#chooseLocation .select-container .select-arrow{
    border-color: #FFF;
}
#chooseLocation button.close{
    width: 0.67708rem;
    height: 0.67708rem;
    position: absolute;
    right: 1.04167rem;
    top: 1.04167rem;
    z-index: 1;
    opacity: 1;
}
.gmap .gm-style-cc,
.gmap a[href^="https://maps.google.com/maps"],
.gmap a[href^="https://www.google.com/maps"] {
    display: none !important;
}

.cookies-popup {
    z-index: 2;
    position: fixed;
    bottom: 4.89583rem;
    left: 0;
    display: flex;
    width: 100%;
    padding: 2.08333rem;
    justify-content: space-between;
    align-items: center;

    background: rgba(255, 255, 255, 0.50);
    backdrop-filter: blur(8.75px);
}
.cookies-popup p {
    width: 49.11458rem;
    flex-shrink: 0;

    color: #FFF;
    font-feature-settings: 'calt' off;
    font-size: 0.83333rem;
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
    text-transform: uppercase;
}
.cookies-popup .wrap-buttons {
    display: flex;
    align-items: center;
    gap: 1.5625rem;
    align-self: stretch;
}
.cookies-popup a {
    color: #FFF;
    text-decoration: underline;
}
.cookies-popup .accept {
    color: #0223C6;
    font-feature-settings: 'calt' off;
    font-size: 0.83333rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;

    display: flex;
    width: 14.84375rem;
    padding: 0.52083rem 1.5625rem;
    justify-content: center;
    align-items: center;
    gap: 0.52083rem;
    align-self: stretch;
    border: 1px solid #FFF;
    background: #FFF;
}
.cookies-popup .reject {
    color: #FFF;
    font-feature-settings: 'calt' off;
    font-size: 0.83333rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;

    display: flex;
    width: 14.84375rem;
    padding: 0.52083rem 1.5625rem;
    justify-content: center;
    align-items: center;
    gap: 0.52083rem;
    align-self: stretch;
    border: 1px solid #FFF;
    background: transparent;
}

.navigation {
    display: flex;
    width: 100%;
    height: 4.89583rem;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0;
    border-top: 1px solid #FFF;
    background: rgba(2, 35, 198, 0.35);
    /*background: #0223C6;*/
    /*backdrop-filter: blur(4.5px);*/
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 1;
}

.navigation .item {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.40625rem;
    flex: 1 0 0;
    align-self: stretch;
    transition: all 0.3s;
}
.navigation .item:hover, .navigation .item:focus, .navigation .item:active {
    background: #0223C6;
}
.navigation .item + .item {
    border-left: 1px solid #FFF;
}
.navigation .item.navigation-record svg {
    width: 1.04167rem;
    height: 1.04167rem;
}
.navigation .item.navigation-app svg {
    width: 6.71875rem;
    height: 2.23958rem;
    aspect-ratio: 3/1;
    stroke-width: 1px;
    stroke: #FFF;
}
.navigation .item.navigation-location svg {
    width: 0.72917rem;
    height: 1.04167rem;
}
.navigation .item.navigation-call {
    position: relative;
}
.navigation .item.navigation-call svg.icon-svg {
    width: 1.04167rem;
    height: 1.04167rem;
}
.navigation .item.navigation-call .choose-method.active {
    display: flex;
}
.navigation .item.navigation-call .choose-method {
    display: none;
    position: absolute;
    width: 100%;
    height: 100%;
    bottom: 100%;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    border: 1px solid #0223C6;
    background: #FFF;
}
.navigation .item.navigation-call .choose-method a{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.72917rem;
    flex: 1 0 0;
    align-self: stretch;
    border-right: 1px solid #0223C6;
}
.navigation .item.navigation-call .choose-method a:last-child{
    border-right: none;
}
.navigation .item.navigation-call .choose-method .icon-telegram{
    width: 1.81151rem;
    height: 1.48438rem;
}
.navigation .item.navigation-call .choose-method .whatsapp{
    width: 1.40661rem;
    height: 1.48438rem;
    aspect-ratio: 27.01/28.50;
}
.navigation .item.navigation-call .choose-method .icon-phone{
    width: 1.48438rem;
    height: 1.48438rem;
}
.navigation .item, .navigation .item span {
    color: #FFF;
    text-align: center;
    font-size: 0.83333rem;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    text-decoration: none;
    cursor: pointer;
}
.cartPreorder {
    position: fixed;
    z-index: 1;
    bottom: 0;
    left: 0;
    width: 100%;
}
.cartPreorder .wrap-buttons{
    display: flex;
    width: 100%;
    height: 4.89583rem;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0;
    border-top: 1px solid #FFF;
    background: #0223C6;
    backdrop-filter: blur(4.5px);
}
.cartPreorder .wrap-buttons .button-cart, .cartPreorder .wrap-buttons .button-next{
    display: flex;
    flex: 1 0 0;
    align-self: stretch;
    justify-content: center;
    align-items: center;
    color: #FFF;
    text-align: center;
    font-size: 0.83333rem;
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
    text-transform: uppercase;
    background: transparent;
    border: none;
}
.cartPreorder .wrap-buttons .button-cart{
    padding: 0 2.70833rem;
    border-right: 1px solid #FFF;
    gap: 0.625rem;
}
.cartPreorder .wrap-buttons .button-cart svg{
    width: 1.25rem;
    height: 1.25rem;
    aspect-ratio: 1/1;
}
.cartPreorder .selected-panel{
    background: #0223C6;
    display: none;
}

.cartPreorder .selected-panel .selectedServices{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.04167rem;
    align-self: stretch;
}
.cartPreorder .selected-panel .selected-service{
    display: flex;
    gap: 1.04167rem;
    align-self: stretch;
    align-items: center;
}
.cartPreorder .selected-panel .selected-service .remove-button {
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
}
.cartPreorder .selected-panel .selectedServices .remove-button svg *{
    stroke: #FFF;
}
.cartPreorder .selected-panel .selected-service .selected-service-name{
    flex: 1 0 0;
    color: #FFF;
    font-feature-settings: 'calt' off;
    font-size: 0.83333rem;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
    text-transform: uppercase;
}
.cartPreorder .selected-panel .selected-service .selected-service-price{
    width: 5.55557rem;
    color: #FFF;
    text-align: right;
    font-feature-settings: 'calt' off;
    font-size: 0.83333rem;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
    text-transform: uppercase;
}

.cartPreorder .selected-panel .wrap-box .summary{
    border-color: #FFF;
    margin-top: 0;
}
.cartPreorder .selected-panel .summary-row .summary-label{
    color: #FFF;
    font-feature-settings: 'calt' off;
    font-size: 0.83333rem;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
    text-transform: uppercase;
}
.cartPreorder .selected-panel .summary-row .summary-value{
    flex: 1 0 0;
    color: #FFF;
    text-align: right;
    font-feature-settings: 'calt' off;
    font-size: 0.83333rem;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
    text-transform: uppercase;
}
.cartPreorder .selected-panel .bookButton{
    display: none;
}
.cartPreorder .selected-panel .empty-state{
    color: #FFF;
    opacity: 0.5;
}


.page-bg {
    width: 100%;
    height: 77.5rem;
    position: absolute;
    z-index: -1;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.00) 0%, rgba(255, 255, 255, 0.94) 72.74%, #FFF 88.81%), url('/assets/images/pages/page_bg.webp') lightgray 50% / cover no-repeat;
}
.padding-bg {
    padding-bottom: 14rem;
}

.static-page {
    padding: 0 7.29167rem 3.64583rem 7.29167rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.static-page li {
    list-style-type: none;
}
.static-page table {
    width: 100%;
    border-collapse: collapse;
}
.static-page td, .static-page th {
    border: 1px solid #ddd;
    padding: 8px;
}
.static-page a {
    text-decoration: underline;
}

.menu-services {
    display: flex;
    padding: 0 7.29167rem 3.64583rem 7.29167rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 5.15625rem;
}
.landing-style .landing-head {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    align-self: stretch;
}
.landing-style .landing-head .breadcrumbs, .landing-style .landing-head .breadcrumbs a, .landing-style .landing-head .breadcrumbs span {
    align-self: stretch;
    color: #0223C6;
    font-feature-settings: 'calt' off;
    font-size: 1.04167rem;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    text-transform: uppercase;
}
.landing-style .landing-head .breadcrumbs span {
    cursor: default;
}
.landing-style h1 {
    color: #0223C6;
    font-feature-settings: 'calt' off;
    font-size: 6.32714rem;
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
    text-transform: uppercase;
}

.landing-style .booking-container {
    display: flex;
    align-items: center;
    gap: 5.20833rem;
    align-self: stretch;
}

.landing-style .filters {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.04167rem;
    align-self: stretch;
}
.landing-style .filters .filter{
    width: 100%;
}
.landing-style .filters .filter .select-dropdown{
    display: flex;
    flex-direction: column;
    padding: 1.82292rem;
    background: rgba(255, 255, 255, 0.01);
    backdrop-filter: blur(32.70000076293945px);
}
.landing-style .filters .filter .select-option{
    width: 100%;
    color: #0223C6;
    font-size: 1.14583rem;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    text-transform: uppercase;
}
.landing-style .filters .filter .select-option.selected, .landing-style .filters .filter .select-option:hover{
    background: transparent;
    font-weight: 700;
}
.landing-style .filters .filter .select-button{
    background: transparent;
}

.landing-style .services-panel {
    margin: 4.16667rem 0;
    gap: 2.60417rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex: 1 0 0;
}
.landing-style #servicesList {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    align-self: stretch;
}

.landing-style .selected-panel {
    margin: 4.16667rem 0;

    display: flex;
    width: 30.15625rem;
    flex-direction: column;
    align-items: flex-start;
    align-self: stretch;
    border: 1px solid #0223C6;


    height: fit-content;
    position: sticky;
    top: 80px;
}
.selected-panel .wrap-box {
    display: flex;
    padding: 2.60417rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 2.60417rem;
    align-self: stretch;
}
.selected-panel .wrap-box .selectedServices {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5625rem;
    align-self: stretch;
}
.selected-panel .wrap-box .summary {
    display: flex;
    padding-top: 1.5625rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.52083rem;
    align-self: stretch;
    border-top: 1px solid #0223C6;
}

.landing-style .service-item {
    flex-direction: column;
    justify-content: center;
    align-self: stretch;
    display: flex;
    align-items: flex-start;
}

.landing-style .service-item:hover {
    border-color: #007bff;
}

.landing-style .service-header {
    display: flex;
    padding: 1.25rem;
    align-items: flex-start;
    gap: 1.5625rem;
    align-self: stretch;
    border-bottom: 1px solid #0223C6;
}
.landing-style .service-header.active {
    border-bottom: none;
}
.landing-style .service-header.selected .service-name, .landing-style .service-header.selected .service-duration, .landing-style .service-header.selected .service-price{
    font-weight: 700;
}

.landing-style .service-header:hover {
    /*cursor: pointer;*/
}

.landing-style .expand-icon {
    width: 1.30208rem;
    height: 1.30208rem;

    color: #0223C6;
    transition: transform 0.2s ease;
}

.landing-style .expand-icon.expanded {
    transform: rotate(180deg);
}

.landing-style .service-name {
    color: #0223C6;
    font-feature-settings: 'calt' off;
    font-size: 0.9375rem;
    font-style: normal;
    font-weight: 400;
    align-self: stretch;
    flex: 1 0 0;
    cursor: pointer;
}

.landing-style .service-duration {
    color: #0223C6;
    text-align: center;
    font-feature-settings: 'calt' off;
    font-size: 0.9375rem;
    font-style: normal;
    font-weight: 400;
    width: auto;
}

.landing-style .service-price {
    width: auto;
    color: #0223C6;
    text-align: center;
    font-feature-settings: 'calt' off;
    font-size: 0.9375rem;
    font-style: normal;
    font-weight: 400;
    text-transform: uppercase;
}

.landing-style .add-remove-button, .landing-style .add-remove-button svg {
    background: transparent;
    border: none;
    box-shadow: none;
    width: 1.30208rem;
    height: 1.30208rem;
    padding: 0;
}

/*.landing-style .add-remove-button:disabled {
    background: #6c757d;
    cursor: not-allowed;
    transform: none;
}*/

.landing-style .service-description {
    align-self: stretch;
    color: #0223C6;
    font-feature-settings: 'calt' off;
    font-size: 0.9375rem;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;

    padding: 0.52rem 4.11rem 1.25rem 4.11rem;
    border-bottom: 1px solid #0223C6;

    display: none;
}

.landing-style .service-description.show {
    display: block;
}

.selected-panel .selected-service {
    display: flex;
    align-items: flex-start;
    gap: 1.04167rem;
    align-self: stretch;
}
.selected-panel .selected-service .remove-button {
    /*display: none;*/
}

.selected-panel .selected-service:last-child {
    border-bottom: none;
}

.selected-panel .selected-service-info {
    display: flex;
    align-items: flex-start;
    gap: 1.04167rem;
    flex: 1 0 0;
}

.selected-panel .selected-service-name {
    flex: 1 0 0;
    color: #0223C6;
    font-feature-settings: 'calt' off;
    font-size: 0.9375rem;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    text-transform: uppercase;
}

.selected-panel .selected-service-price {
    width: auto;
    color: #0223C6;
    text-align: right;
    font-feature-settings: 'calt' off;
    font-size: 0.9375rem;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    text-transform: uppercase;
}

.selected-panel .remove-button {
    width: 1.30208rem;
    height: 1.30208rem;
    padding: 0;
    cursor: pointer;
    background: transparent;
    border: none;
    box-shadow: none;
}
.selected-panel .remove-button svg{
    width: 100%;
    height: 100%;
    stroke-width: 1px;
    stroke: #0223C6;
    transition: all 0.3s;
}

.selected-panel .remove-button:hover svg{
    transform: scale(1.1);
}

.landing-style .filter-top-master {
    display: flex;
    height: 4.42708rem;
    align-items: center;
    align-self: stretch;
    border: 1px solid #0223C6;
}
.landing-style .filter-top-master button {
    background: transparent;
    border: none;
    box-shadow: none;

    display: flex;
    padding: 1.04167rem 0;
    justify-content: center;
    align-items: center;
    gap: 0.52083rem;
    flex: 1 0 0;
    align-self: stretch;

    color: #0223C6;
    text-align: center;
    font-feature-settings: 'calt' off;
    font-size: 0.9375rem;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    text-transform: uppercase;
}
.landing-style .filter-top-master button.active {
    cursor: default;
    font-weight: 700;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: none;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
}
.landing-style .filter-top-master button:first-child {
    border-right: 1px solid #0223C6;
}

.selected-panel .summary {
    margin-top: 1.5rem;
    border-top: 2px solid #e9ecef;
}

.selected-panel .summary-row {
    display: flex;
    height: 1.30208rem;
    align-items: flex-start;
    align-self: stretch;
}
.selected-panel .summary-row.salonAddress {
    display: none;
}

.selected-panel .summary-label {
    color: #0223C6;
    font-feature-settings: 'calt' off;
    font-size: 0.9375rem;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    text-transform: uppercase;
}

.selected-panel .summary-value {
    flex: 1 0 0;
    color: #0223C6;
    text-align: right;
    font-feature-settings: 'calt' off;
    font-size: 0.9375rem;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    text-transform: uppercase;
}

.landing-style .book-button {
    box-shadow: none;
    border: none;

    transition: all 0.2s ease;
    cursor: pointer;

    display: flex;
    height: 5.26042rem;
    padding: 1.04167rem 2.60417rem;
    justify-content: space-between;
    align-items: center;
    align-self: stretch;
    background: #0223C6;

    color: #FFF;
    font-feature-settings: 'calt' off;
    font-size: 1.14583rem;
    font-style: normal;
    font-weight: 700;
    line-height: 140%;
    text-transform: uppercase;
}

.landing-style .book-button:hover {
    opacity: 0.95;
}

.landing-style .book-button:disabled .totalPriceButton {
    display: none;
}
.landing-style .book-button:disabled {
    justify-content: center;
    background: #6c757d;
    cursor: not-allowed;
}

.selected-panel .empty-state {
    text-align: center;
    color: #6c757d;
    font-style: italic;
    padding: 20px 0;
}

.landing-style .about-service {
    display: flex;
    padding: 5.20833rem 7.29167rem;
    align-items: stretch;
    background: #0223C6;
}
.landing-style .about-service .about-content {
    display: flex;
    width: 33.33333rem;
    padding: 3.64583rem;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2.08333rem;
    flex-shrink: 0;
    background: #FFF;
}
.landing-style .about-service .about-content h2 {
    align-self: stretch;
    color: #0223C6;
    font-feature-settings: 'calt' off;
    font-size: 2.08333rem;
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
    text-transform: uppercase;
}
.landing-style .about-service .about-content p, .landing-style .about-service .about-content li {
    align-self: stretch;
    color: #2C2929;
    text-align: justify;
    font-feature-settings: 'calt' off;
    font-size: 0.9375rem;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
}
.landing-style .about-service .about-content ol, .landing-style .about-service .about-content ul{
    margin: 0;
    padding: 0 0 0 1rem;
}
.landing-style .about-service .wrap-image {
    flex: 1 0 0;
    align-self: stretch;
    overflow: hidden;
}
.landing-style .about-service .wrap-image img.about-content-image{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.landing-style .about-service .wrap-image.about-service-sliders .slick-list, .landing-style .about-service .wrap-image.about-service-sliders .slick-track, .landing-style .about-service .wrap-image.about-service-sliders .slick-slide, .landing-style .about-service .wrap-image.about-service-sliders .slick-slide div {
    height: 100%;
}

#leavingSite .modal-dialog {
    display: flex;
    height: 100vh;
    width: 100%;
    padding: 0;
    justify-content: center;
    align-items: center;
    margin: 0;
}
#leavingSite .modal-dialog .modal-content{
    box-shadow: none;
    border: none;
    border-radius: 0;
    background: #FFF;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
#leavingSite .modal-dialog .modal-body{
    width: 40rem;
    display: flex;
    padding: 4.47917rem 6.61458rem;
    flex-direction: column;
    align-items: center;
    gap: 2.86458rem;
}
#leavingSite button.close{
    opacity: 1;
    position: absolute;
    right: 1.04167rem;
    top: 1.04167rem;
}
#leavingSite button.close, #leavingSite button.close svg {
    width: 1.61458rem;
    height: 1.61458rem;
}
#leavingSite .wrap-content {
    display: flex;
    padding: 0;
    flex-direction: column;
    align-items: center;
    gap: 1.82292rem;
}
#leavingSite .wrap-content img {
    width: 3.12rem;
}
#leavingSite .wrap-content .wrap-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.10417rem;
}
#leavingSite .wrap-content .wrap-text h3 {
    color: #0223C6;
    text-align: center;
    font-feature-settings: 'calt' off;
    font-size: 1.66667rem;
    font-style: normal;
    font-weight: 700;
    line-height: 140%;
    text-transform: uppercase;
}
#leavingSite .wrap-content .wrap-text p {
    color: #0223C6;
    text-align: center;
    font-feature-settings: 'calt' off;
    font-size: 1.14583rem;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    text-transform: uppercase;
}
#leavingSite .buttons {
    display: flex;
    width: 19.11458rem;
    height: 3.17708rem;
    justify-content: center;
    align-items: center;
    gap: 1.19792rem;
}
#leavingSite .buttons button {
    display: flex;
    padding: 0 1.82292rem;
    justify-content: center;
    align-items: center;
    flex: 1 0 0;
    align-self: stretch;
    border: 2px solid #0223C6;
    background: transparent;
    color: #0223C6;
    text-align: center;
    font-size: 1.14583rem;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    text-transform: uppercase;
}
#leavingSite .buttons a {
    display: flex;
    padding: 0 1.82292rem;
    justify-content: center;
    align-items: center;
    flex: 1 0 0;
    align-self: stretch;
    border: 2px solid #0223C6;
    background: #0223C6;
    color: #FFF;
    text-align: center;
    font-size: 1.14583rem;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    text-transform: uppercase;
}

.landing-style .masters {
    position: relative;
    overflow: hidden;
    background: #0223C6;
    display: flex;
    padding: 13.54167rem 7.29167rem 5.20833rem 7.29167rem;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 3.64583rem;
}
.landing-style .masters h2 {
    font-size: 19.7rem;
    font-weight: 700;
    line-height: 140%;
    text-align: center;
    color: #FCC0DE;
    text-transform: uppercase;
    position: absolute;
    top: 0;
    left: -2rem;
    right: 0;
    margin: auto;
}
.landing-style .masters .master{
    display: flex;
    padding: 1.5625rem;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2.08333rem;
    background: #FFF;
    width: 18.07792rem;
    min-width: 18.07792rem;
}
.landing-style .masters .master .master-name{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.78125rem;
    align-self: stretch;
}
.landing-style .masters .master .master-name p{
    align-self: stretch;
    color: #000;
    text-align: center;
    font-feature-settings: 'calt' off;
    font-size: 1.04167rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}
.landing-style .masters .master .master-image {
    position: relative;
}
.landing-style .masters .master .master-image img{
    width: 7.13042rem;
    height: 7.13042rem;
    flex-shrink: 0;
    border-radius: 50%;
    object-fit: cover;
}
.landing-style .masters .master .master-rating{
    position: absolute;
    left: 0;
    top: 0;

    display: inline-flex;
    padding: 0.26042rem 0.36458rem;
    justify-content: center;
    align-items: center;
    gap: 0.26042rem;
    border-radius: 2.08333rem;
    background: #FCC0DE;
}
.landing-style .masters .master .master-rating span{
    color: #212121;
    font-feature-settings: 'liga' off, 'clig' off;
    font-size: 0.625rem;
    font-style: normal;
    font-weight: 700;
    line-height: 145%;
}
.landing-style .masters .master .master-rating img{
    width: 0.625rem;
    height: 0.625rem;
    object-fit: cover;
}
.landing-style .masters .master .master-about {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.78125rem;
    align-self: stretch;
}
.landing-style .masters .master .master-about p {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-self: stretch;
    color: #000;
    text-align: center;
    font-size: 0.83333rem;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
}
.landing-style .masters .master .master-about p.text-opacity {
    align-self: stretch;
    color: #000;
    text-align: center;
    font-size: 0.72313rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    opacity: 0.5;
}
.landing-style .our_works_slider {
    display: flex;
    padding: 5.20833rem 7.29167rem;
    align-items: center;
    gap: 7.29167rem;
}
.landing-style .our_works_slider h2{
    color: #0223C6;
    font-feature-settings: 'calt' off;
    font-size: 4.57828rem;
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
    text-transform: uppercase;
}
.landing-style .our_works_slider .swiper-slide{
    width: 24.96391rem;
    height: 38.51573rem;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 1.95rem 1.66rem;
}
.landing-style .our_works_slider .swiper-wrapper{
    background: #FFF;
}
.landing-style .our_works_slider .swiper-slide.title{
    justify-content: center;
    margin-right: 7.29rem !important;
}
.landing-style .our_works_slider .swiper-slide p{
    color: #FFF;
    font-size: 0.99854rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    position: relative;
    z-index: 1;
}
.landing-style .our_works_slider .swiper-slide .icon{
    border-radius: 50%;
    width: 3.56625rem;
    height: 3.56625rem;
    object-fit: cover;
    flex-shrink: 0;
    aspect-ratio: 68.47/68.47;
    position: absolute;
    top: 1.64rem;
    left: 1.64rem;
    z-index: 1;
}
.landing-style .our_works_slider .swiper-slide .work-image{
    z-index: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

@media (max-width: 768px) {
    .landing-style .booking-container {
        flex-direction: column;
    }

    .landing-style .selected-panel {
        position: static;
    }
}

@media (max-width: 767px) {
    .landing-style .filters .filter .select-button {
        display: flex;
        height: auto;
        padding: 3.8641rem 3.58974rem;
        justify-content: space-between;
        align-items: center;
        align-self: stretch;

        color: #0223C6;
        font-feature-settings: 'calt' off;
        font-size: 4.10256rem;
        font-style: normal;
        font-weight: 400;
        line-height: 140%;
        text-transform: uppercase;
    }
    .select-button.open .select-arrow {
        margin-top: 1rem;
    }
    .landing-style .filters .filter .select-button .select-text {
        line-height: normal;
    }
    .landing-style .filters .filter .select-option {
        color: #0223C6;
        font-size: 4.10256rem;
        font-style: normal;
        font-weight: 400;
        line-height: 140%;
        text-transform: uppercase;
    }
    .landing-style .filters .filter .select-dropdown {
        display: flex;
        padding: 3.58974rem 3.84615rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 2.5641rem;
        background: #FFF;
        top: 15rem;
    }
    .landing-style .service-name, .landing-style .service-price, .landing-style .service-duration {
        flex: 1 0 0;
        font-feature-settings: 'calt' off;
        font-size: 3.58974rem;
        font-style: normal;
        font-weight: 400;
        line-height: 130%;
    }
    .landing-style .service-duration{
        display: none;
    }
    .landing-style .service-price, .landing-style .service-duration {
        text-align: right;
        text-transform: uppercase;
    }
    .landing-style .expand-icon {
        width: 5.12821rem;
        height: 5.12821rem;
        aspect-ratio: 1/1;
    }
    .landing-style .add-remove-button, .landing-style .add-remove-button svg{
        width: 5.12821rem;
        height: 5.12821rem;
        aspect-ratio: 1/1;
    }
    .landing-style .service-header {
        padding: 3.07692rem 0;
        display: flex;
        align-items: flex-start;
        gap: 2.5641rem;
        align-self: stretch;
    }
    .landing-style .service-description {
        padding: 3.07692rem 0 3.07692rem 8.20513rem;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        align-self: stretch;

        font-feature-settings: 'calt' off;
        font-size: 3.58974rem;
        font-style: normal;
        font-weight: 400;
        line-height: 130%;
    }
    .landing-style .filters .filter {
        display: flex;
        height: 13.07692rem;
        align-items: center;
        align-self: stretch;
    }
    .landing-style .filter-top-master button {
        display: flex;
        padding: 5.12821rem 0;
        justify-content: center;
        align-items: center;
        gap: 2.5641rem;
        flex: 1 0 0;
        align-self: stretch;
        text-align: center;
        font-feature-settings: 'calt' off;
        font-size: 4.10256rem;
        font-style: normal;
        font-weight: 400;
        line-height: 140%; /* 5.74359rem */
        text-transform: uppercase;
    }
    .landing-style .selected-panel {
        display: none;
    }
    .padding-bg {
        padding-bottom: 0;
    }
    .menu-services {
        display: flex;
        padding: 15.38462rem 6.41026rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 10.25641rem;
        align-self: stretch;
    }
    .landing-style .landing-head .breadcrumbs, .landing-style .landing-head .breadcrumbs a, .landing-style .landing-head .breadcrumbs span {
        color: #0223C6;
        font-size: 3.58974rem;
        font-style: normal;
        font-weight: 400;
        line-height: 140%;
        text-transform: uppercase;
    }
    .landing-style .landing-head {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 3.84615rem;
        align-self: stretch;
    }
    .landing-style h1 {
        color: #0223C6;
        font-feature-settings: 'calt' off;
        font-size: 7.69231rem;
        font-style: normal;
        font-weight: 700;
        line-height: 96%;
        text-transform: uppercase;
    }
    .landing-style .services-panel {
        width: 100%;
        gap: 10.25641rem;
        margin: 0;
    }
    .landing-style .filters {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 2.5641rem;
        align-self: stretch;
    }
    .landing-style .about-service {
        display: flex;
        padding: 15.38462rem 6.41026rem;
        flex-direction: column;
        align-items: flex-start;
        align-self: stretch;
    }
    .landing-style .about-service .about-content {
        width: 100%;
        display: flex;
        padding: 12.82051rem 6.41026rem;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 4.86103rem;
        align-self: stretch;
    }
    .landing-style .about-service .wrap-image {
        flex: none;
    }
    .landing-style .about-service .about-content h2 {
        font-feature-settings: 'calt' off;
        font-size: 7.69231rem;
        font-style: normal;
        font-weight: 700;
        line-height: 120%;
        text-transform: uppercase;
    }
    .landing-style .about-service .about-content p, .landing-style .about-service .about-content li {
        text-align: justify;
        font-feature-settings: 'calt' off;
        font-size: 3.58974rem;
        font-style: normal;
        font-weight: 400;
        line-height: 130%;
    }
    .landing-style .about-service .about-content ol, .landing-style .about-service .about-content ul{
        padding: 0 0 0 2rem;
    }
    .landing-style .masters {
        display: flex;
        padding: 27.17949rem 6.41026rem 15.38462rem 6.41026rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 8.50692rem;
        align-self: stretch;
    }
    .landing-style .masters .master {
        display: flex;
        width: 76.92308rem;
        padding: 10.25641rem 6.41026rem;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 10.25641rem;
        align-self: stretch;
    }
    .landing-style .masters .master .master-name {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 3.84615rem;
        align-self: stretch;
    }
    .landing-style .masters .master .master-about {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 3.84615rem;
        align-self: stretch;
    }
    .landing-style .masters .master .master-image img {
        width: 35.10359rem;
        height: 35.10359rem;
    }
    .landing-style .masters .master .master-rating div{
        display: flex;
        align-items: center;
        gap: 1.28205rem;
    }
    .landing-style .masters .master .master-rating {
        display: inline-flex;
        padding: 1.28205rem 1.79487rem;
        justify-content: center;
        align-items: center;
        gap: 1.28205rem;
    }
    .landing-style .masters .master .master-rating img {
        width: 3.07692rem;
        height: 3.07692rem;
    }
    .landing-style .masters .master .master-rating span {
        font-feature-settings: 'liga' off, 'clig' off;
        font-size: 3.07692rem;
        font-style: normal;
        font-weight: 700;
        line-height: 145%;
    }
    .landing-style .masters .master .master-name p{
        color: #000;
        text-align: center;
        font-feature-settings: 'calt' off;
        font-size: 3.58974rem;
        font-style: normal;
        font-weight: 700;
        line-height: normal;
    }
    .landing-style .masters .master .master-about p {
        color: #000;
        text-align: center;
        font-size: 3.58974rem;
        font-style: normal;
        font-weight: 400;
        line-height: 120%;
    }
    .landing-style .our_works_slider {
        display: flex;
        padding: 15.38462rem 7.69231rem;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        gap: 7.69231rem;
        align-self: stretch;
    }
    .landing-style .our_works_slider .swiper-slide.title {
        display: none;
    }
    .landing-style .our_works_slider h2 {
        font-feature-settings: 'calt' off;
        font-size: 12.82051rem;
        font-style: normal;
        font-weight: 700;
        line-height: 100%;
        text-transform: uppercase;
    }
    .landing-style .our_works_slider .swiper-slide .icon {
        width: 12.7141rem;
        height: 12.7141rem;
        flex-shrink: 0;
        aspect-ratio: 1/1;
        top: 5.88rem;
        left: 7.07rem;
    }
    .landing-style .our_works_slider .swiper-slide {
        width: 79.2308rem;
        height: 137.17949rem;
        padding: 7.07rem 5.88rem;
    }
    .landing-style .our_works_slider .swiper-slide p {
        color: #FFF;
        font-size: 3.58974rem;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
    }

    #leavingSite .modal-dialog .modal-content {
        border-width: 1px;
    }
    #leavingSite .modal-dialog .modal-body {
        width: 87.2rem;
    }
    #leavingSite button.close, #leavingSite button.close svg {
        width: 5.38462rem;
        height: 5.38462rem;
        aspect-ratio: 1/1;
        right: 5.12821rem;
        top: 5.12821rem;
    }
    #leavingSite .wrap-content {
        display: flex;
        padding: 13.84615rem 14.10256rem;
        flex-direction: column;
        align-items: center;
        gap: 8.97436rem;
        align-self: stretch;
    }
    #leavingSite .wrap-content .wrap-text {
        gap: 0.51282rem;
    }
    #leavingSite .wrap-content img {
        width: 10.2rem;
    }
    #leavingSite .wrap-content .wrap-text h3 {
        font-size: 4.10256rem;
        font-style: normal;
        font-weight: 700;
        line-height: 140%;
    }
    #leavingSite .wrap-content .wrap-text p {
        font-size: 4.10256rem;
        font-style: normal;
        font-weight: 400;
        line-height: 140%;
    }
    #leavingSite .buttons {
        height: 17.4359rem;
    }
    #leavingSite .buttons button, #leavingSite .buttons a{
        padding: 0 8.97436rem;
        justify-content: center;
        align-items: center;
        flex: 1 0 0;
        align-self: stretch;
        border-width: 1px;
        font-size: 4.10256rem;
        font-style: normal;
        font-weight: 400;
        line-height: 140%;
    }
    .select-arrow {
        width: 2.82051rem;
        min-width: 2.82051rem;
        height: 2.82051rem;
        margin-top: -1rem;
    }
    .select-dropdown {
        grid-template-columns: repeat(2, 1fr);
        top: 10.25rem;
        gap: 2.5rem;
        row-gap: 2.5rem;
        padding: 2.5rem;
    }
    .select-option {
        font-size: 2.7rem;
        display: flex;
        flex-direction: column;
        gap: 0.7rem;
    }
    .select-option span {
        font-size: 2.4rem;
    }
    #chooseLocation .modal-dialog {
        width: 90%;
    }
    #chooseLocation button.close {
        width: 3.6rem;
        height: 3.6rem;
        right: 3rem;
        top: 3rem;
    }
    #chooseLocation .select-container .select-button {
        padding: 2.5641rem;
        height: 10.25rem;
        width: 26rem;
    }
    #chooseLocation .select-container .select-button .select-text{
        font-size: 3.58974rem;
        line-height: 140%;
    }
    #directions .wrap-list {
        height: auto;
        display: flex;
        flex-wrap: wrap;
        align-items: flex-start;
        gap: 1.53846rem;
        align-self: stretch;
    }
    #directions .wrap-list .slide {
        height: auto;
        width: calc(50% - 1.53846rem);
        display: flex;
        justify-content: space-between;
        align-items: flex-end;
        align-self: stretch;
    }
    #directions .wrap-list .item {
        display: flex;
        justify-content: space-between;
        align-items: flex-end;
        align-self: stretch;
        padding: 2.5641rem !important;
    }
    #directions .wrap-list .item {
        height: 41.7rem;
    }

    .feedbacks .swiper-slide.title {
        display: none;
    }
    .swiper .titleMobile {
        display: block;
    }
    .feedbacks {
        display: flex;
        padding: 15.38462rem 7.69231rem;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        gap: 7.69231rem;
        align-self: stretch;
    }
    .feedbacks .title h2 {
        font-feature-settings: 'calt' off;
        font-size: 10.82051rem;
        font-style: normal;
        font-weight: 400;
        line-height: 100%;
        text-transform: uppercase;
        width: auto;
    }
    .feedbacks .swiper-slide {
        display: flex;
        width: auto !important;
        max-width: 69.23077rem !important;
        height: 154.17949rem;
        padding: 5.88231rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 5.88231rem;
        border-radius: 3.07692rem;
        background: #FFF;
    }
    .feedbacks .feedback-img, .feedbacks .feedback-img img {
        width: 12.7141rem;
        height: 12.7141rem;
        flex-shrink: 0;
    }
    .feedbacks .feedback-text {
        color: #000;
        flex: 1 0 0;
        align-self: stretch;
        font-size: 3.07692rem;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
    }
    .feedbacks .feedback-name {
        color: #000;
        font-size: 3.07692rem;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
    }
    #directions {
        display: flex;
        padding: 15.38462rem 6.41026rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 5.12821rem;
        align-self: stretch;
    }
    #directions .wrap-head {
        flex-direction: column;
        gap: 5.13rem;
    }
    #directions .wrap-head h2 {
        width: 100%;
        color: #0223C6;
        text-align: center;
        font-feature-settings: 'calt' off;
        font-size: 7.69231rem;
        font-style: normal;
        font-weight: 700;
        line-height: 96%;
        text-transform: uppercase;
    }
    .chooseSalon,.chooseSalon span{
        color: #0223C6;
        font-size: 4.10256rem;
        font-style: normal;
        font-weight: 400;
        line-height: 140%;
        text-transform: uppercase;
    }
    .chooseSalon {
        display: flex;
        height: 13.07692rem;
        padding: 2.5641rem;
        justify-content: space-between;
        align-items: center;
        align-self: stretch;
    }
    .chooseSalon img {
        width: 4.35897rem;
        height: 2.82051rem;
    }
    #directions .wrap-list .item h3 {
        color: #FFF;
        text-align: left;
        font-size: 3.58974rem;
        font-style: normal;
        font-weight: 700;
        line-height: 120%;
    }
    #directions .wrap-list .item img {
        width: 13.33333rem;
        height: 4.10256rem;
        flex-shrink: 0;
    }
    section.about {
        display: flex;
        padding: 12.82051rem 6.41026rem;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        gap: 6.41026rem;
        align-self: stretch;
    }
    section.about .about-content, section.about .about-slider {
        width: 100%;
    }
    section.about .about-content, section.about .about-content .wrap-text {
        gap: 6.41026rem;
    }
    section.about h2 {
        color: #0223C6;
        font-feature-settings: 'calt' off;
        font-size: 8.20513rem;
        font-style: normal;
        font-weight: 700;
        line-height: 114%;
        text-transform: uppercase;
    }
    section.about p {
        color: #212121;
        font-size: 3.58974rem;
        font-style: normal;
        font-weight: 400;
        line-height: 140%;
    }
    section.about .slick-next, section.about .slick-prev {
        height: 11.4rem;
        width: 15.6rem;
        background-size: 8.06872rem;
    }
    section.about .slick-dots {
        bottom: -1.28rem;
    }
    section.about .slick-dots li {
        height: 1.28rem;
    }
    section.about .slick-prev {
        right: 15.6rem;
    }
    section.locations {
        display: flex;
        padding: 15.38462rem 6.41026rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 7.69231rem;
        align-self: stretch;
    }
    section.locations .wrap-head {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 7.69231rem;
        align-self: stretch;
    }
    section.locations .wrap-head h2 {
        width: 100%;
        color: #0223C6;
        font-feature-settings: 'calt' off;
        font-size: 7.4359rem;
        font-style: normal;
        font-weight: 700;
        line-height: 114%;
        text-transform: uppercase;
    }
    section.locations .select-container {
        width: 100%;
        display: flex;
        align-items: center;
        gap: 2.5641rem;
        align-self: stretch;
    }
    section.locations .select-button {
        display: flex;
        height: auto;
        padding: 2.5641rem;
        justify-content: space-between;
        align-items: center;
        flex: 1 0 0;
        color: #0223C6;
        font-size: 3.58974rem;
        font-style: normal;
        font-weight: 400;
        line-height: 140%;
        text-transform: uppercase;
    }
    section.locations .select-arrow {
        width: 2.82051rem;
        height: 2.82051rem;
    }
    .gmap {
        height: 111.28205rem;
        align-self: stretch;
    }

    section.testimonials {
        display: flex;
        padding: 12.82051rem 6.41026rem;
        flex-direction: column;
        align-items: flex-end;
        gap: 5.12821rem;
        align-self: stretch;
    }
    section.testimonials .testimonial-text {
        position: relative;
    }
    section.testimonials .testimonial-text.text-1, section.testimonials .testimonial-text.text-2, section.testimonials .testimonial-text.text-3 {
        left: auto;
        right: auto;
        top: auto;
        bottom: auto;
    }
    section.testimonials img.img-7{
        width: auto;
        order: 0;
        height: 32.05128rem;
        align-self: stretch;
    }
    section.testimonials img.img-1 {
        order: 0;
    }
    section.testimonials img.img-2 {
        order: 0;
        height: auto;
        width: 28.71rem;
        flex: 1 0 0;
        align-self: stretch;
    }
    section.testimonials .testimonial-text {
        width: auto;
        display: flex;
        padding: 3.07692rem;
        align-items: flex-start;
        gap: 3.07692rem;
        border-radius: 3.33333rem;
    }
    section.testimonials .testimonial-text p {
        color: #0223C6;
        font-feature-settings: 'calt' off;
        font-size: 3.58974rem;
        font-style: normal;
        font-weight: 400;
        line-height: 120%;
    }
    section.testimonials .testimonial-text .circle {
        width: 7.17949rem;
        height: 7.17949rem;
        flex-shrink: 0;
        background: #0223C6;
    }

    section.testimonials .row-item.row-item-1 {
        width: auto;
        display: flex;
        justify-content: flex-end;
        align-items: stretch;
        gap: 5.12821rem;
        align-self: stretch;
        order: 0;
    }
    section.testimonials .row-item.row-item-2 {
        display: flex;
        align-items: stretch;
        gap: 5.12821rem;
        align-self: stretch;
        width: auto;
        order: 0;
    }
    section.testimonials .testimonial-text.text-2 {
        display: flex;
        width: 58.46154rem;
        padding: 3.07692rem;
        align-items: flex-start;
        gap: 3.07692rem;
    }
    section.testimonials img.img-1 {
        flex: 1 0 0;
        align-self: stretch;
        height: 45.38rem;
        width: 23.58rem;
    }
    section.testimonials img.img-3 {
        order: 0;
        height: 32.05128rem;
        align-self: stretch;
        width: auto;
    }
    section.testimonials img {
        order: 0 !important;
    }
    section.testimonials img.img-6, section.testimonials img.img-8{
        display: none;
    }

    section.testimonials img.img-4 {
        height: 32.05128rem;
        align-self: stretch;
        width: auto;
    }

    section.testimonials img.img-5 {
        flex: 1 0 0;
        align-self: stretch;
        width: 30.51rem;
        height: 23.58rem;
    }
    section.testimonials .row-item.row-item-3 {
        display: flex;
        justify-content: flex-end;
        align-items: stretch;
        gap: 5.12821rem;
        align-self: stretch;
        width: auto;
        order: 0;
    }
    .wrap-table {
        display: flex;
        padding: 12.82051rem 6.41026rem;
        flex-direction: column;
        align-items: flex-start;
        align-self: stretch;
    }
    .wrap-table .wrap {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        align-self: stretch;
    }
    .wrap-table .wrap .wrap-head {
        display: flex;
        padding: 10.25641rem;
        justify-content: center;
        align-items: center;
        gap: 2.5641rem;
        align-self: stretch;
    }
    .wrap-table .wrap .wrap-head h2 {
        color: #0223C6;
        text-align: center;
        font-feature-settings: 'calt' off;
        font-size: 7.94872rem;
        font-style: normal;
        font-weight: 700;
        line-height: 114%;
        text-transform: uppercase;
        height: auto;
    }
    .wrap-table .wrap .wrap-head .chooseSalon {
        display: none;
    }
    .wrap-table .wrap .wrap-content {
        display: flex;
        padding: 10.25641rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 10.25641rem;
        align-self: stretch;
    }
    .wrap-table .wrap .wrap-content img {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        gap: 5.12821rem;
        align-self: stretch;
        height: 61.02564rem;
        order: 2;
    }
    .wrap-table .wrap .wrap-content p {
        color: #212121;
        text-align: center;
        font-size: 3.58974rem;
        font-style: normal;
        font-weight: 400;
        line-height: 140%;
        order: 1;
    }
    .wrap-table .wrap .wrap-button{
        display: flex;
        padding: 10.25641rem;
        justify-content: flex-end;
        align-items: center;
        gap: 2.5641rem;
        align-self: stretch;
    }
    .wrap-table .wrap .wrap-button a{
        display: flex;
        height: 17.4359rem;
        padding: 0 5.87436rem;
        justify-content: space-between;
        align-items: center;
        flex: 1 0 0;
        color: #FFF;
        font-feature-settings: 'calt' off;
        font-size: 3.58974rem;
        font-style: normal;
        font-weight: 400;
        line-height: 140%;
        text-transform: uppercase;
        text-align: center;
    }
    .wrap-table .wrap .wrap-button a img {
        display: none;
    }

    .navigate {
        display: flex;
        padding: 17.94872rem 11.28205rem;
        flex-direction: column;
        align-items: flex-start;
        align-self: stretch;
        justify-content: center;
        gap: 6.41026rem;
    }
    .navigate .item {
        display: flex;
        padding: 2.5641rem;
        justify-content: space-between;
        align-items: flex-end;
        flex: 1 0 0;
        align-self: stretch;
        flex: none;
        height: 30.85rem;
    }
    .navigate .item p {
        color: #FFF;
        text-align: center;
        font-size: 4.10256rem;
        font-style: normal;
        font-weight: 700;
        line-height: 120%;
        text-transform: uppercase;
    }
    .navigate .item img {
        width: 13.33333rem;
        height: 4.10256rem;
    }

    .franchise.wrap-table .wrap .wrap-button a {
        width: 100%;
        max-width: 100%;
        text-align: center;
        display: flex;
        height: 17.4359rem;
        padding: 0 8.97436rem;
        justify-content: center;
        align-items: center;
        flex: 1 0 0;
        color: #FFF;
        font-feature-settings: 'calt' off;
        font-size: 4.10256rem;
        font-style: normal;
        font-weight: 400;
        line-height: 140%;
        text-transform: uppercase;
    }
    #chooseLocation .modal-dialog {
        height: 50%;
    }
    .navigation {
        display: flex;
        height: 15.64rem;
        justify-content: space-between;
        align-items: center;
        background: rgba(2, 35, 198, 0.35);
    }
    .navigation .item {
        display: flex;
        padding: 3.33333rem 0;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 1.79487rem;
        flex: 1 0 0;
    }
    .navigation .item.navigation-record svg {
        width: 3.84615rem;
        min-width: 3.84615rem;
        height: 3.84615rem;
        min-height: 3.84615rem;
        aspect-ratio: 1/1;
    }
    .navigation .item.navigation-app svg {
        width: 17.40385rem;
        min-width: 17.40385rem;
        height: 5.76821rem;
        min-height: 5.76821rem;
        aspect-ratio: 67.88/22.50;
    }
    .navigation .item.navigation-location svg {
        min-width: 2.5641rem;
        width: 2.5641rem;
        height: 3.84615rem;
        min-height: 3.84615rem;
        aspect-ratio: 2/3;
    }
    .navigation .item.navigation-call svg {
        width: 3.84615rem;
        min-width: 3.84615rem;
        height: 3.84615rem;
        min-height: 3.84615rem;
        aspect-ratio: 1/1;
    }
    .navigation .item, .navigation .item span {
        color: #FFF;
        text-align: center;
        font-size: 2.5641rem;
        font-style: normal;
        font-weight: 400;
        line-height: 120%;
    }
}