html {
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%
      -webkit-box-sizing: border-box;
  box-sizing: border-box;
    scroll-behavior: smooth;
}
*{
    box-sizing: border-box;
}
abbr,
blockquote,
body,
button,
dd,
dl,
dt,
fieldset,
figure,
form,
h1,
h2,
h3,
h4,
h5,
h6,
hgroup,
input,
legend,
li,
ol,
p,
pre,
ul {
    margin: 0;
    padding: 0
}

address,
caption,
code,
figcaption,
pre,
th {
    font-size: 1em;
    font-weight: 400;
    font-style: normal
}

fieldset,
iframe {
    border: 0
}

caption,
th {
    text-align: left
}

table {
    border-collapse: collapse;
    border-spacing: 0
}

details,
main,
summary {
    display: block
}

audio,
canvas,
progress,
video {
    vertical-align: initial
}

button {
    background: none;
    border: 0;
    box-sizing: initial;
    color: inherit;
    cursor: pointer;
    font: inherit;
    line-height: inherit;
    overflow: visible;
    vertical-align: inherit
}
.button:hover {
    text-decoration: none
}

.button:active {
    outline: none
}

button:disabled {
    cursor: default
}
.button.disabled,
.button:disabled {
    cursor: default;
    pointer-events: none
}

:focus[data-focus-method=mouse]:not(input):not(textarea):not(select),
:focus[data-focus-method=touch]:not(input):not(textarea):not(select) {
    outline: none
}

::-moz-focus-inner {
    border: 0;
    padding: 0
}


html {
    font-family: SF Pro Text, SF Pro Icons, Helvetica Neue, Helvetica, Arial, sans-serif;
    font-size: 106.25%;
    quotes: "“" "”";
    --sk-link-disabled-opacity: 0.42
}
body,
button,
input,
select,
textarea {
    font-synthesis: none;
    -moz-font-feature-settings: "kern";
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    direction: ltr;
    text-align: left
}
ol+*,
p+*,
ul+* {
    margin-top: .8em
}

ol,
ul {
    margin-left: 1.1764705882em
}

ol ol,
ol ul,
ul ol,
ul ul {
    margin-top: 0;
    margin-bottom: 0
}

nav ol,
nav ul {
    margin: 0;
    list-style: none
}

li li {
    font-size: 1em
}

.link,
a {
    color: #06c;
    letter-spacing: inherit
}

.link:link,
.link:visited,
a:link,
a:visited {
    text-decoration: none
}

.link:hover,
a:hover {
    text-decoration: none;
}

.link:active,
a:active {
    text-decoration: none
}

.link.disabled,
.link:disabled,
a.disabled,
a:disabled {
    opacity: var(--sk-link-disabled-opacity)
}


b,
strong {
    font-weight: 600
}


html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

img{
    max-width: 100%;
}
.header{
    position: fixed;
    width: 100%;
    z-index: 1000;
    padding: 10px 0;
    top: 0;
/*    background: rgba(22, 22, 23, 1);*/
}
.header.fixed{
/*
    position: fixed;
    width: 100%;
*/
    background: #F5F5F7;
}
.logo{
    max-width: 54px;
}
.logo.green{
    display: none;
}
.header.fixed .logo.green{
    display: block;
}
.header .logo.green{
    display: none;
}
.header.fixed .logo{
    display: none;
}
.header.fixed .header_social_flex path:nth-child(1){
    stroke: #6B6B6C;
    stroke-width: 1;
}
.header.fixed .header_social_flex path:nth-child(2){
    fill: #6B6B6C;
}
.header.fixed .nav_kabinet svg{
    fill:none;
}
.header .container{
    padding: 0 14px;
}
.header.fixed .svyaz a{
    color: #2F2F2F;
}
.header.fixed .svyaz span{
    color: #2F2F2F;
}
.container-section{
    margin: 0 auto;
    padding: 0 16px;
}
.header_content{
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}


.header.fixed .burger svg.burger-line path{
    fill: #2F2F2F;
    stroke: #2F2F2F;
}

.header_left{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 25%;
    max-width: 100px;
}
.header_right{
    width: 15%;
    max-width: 60px;
}
.header_social_flex{
    display: flex;
    justify-content: space-between;
    width: 100%;
}
.header_social_flex a{
    display: block;
    width: 20px;
    height: 20px;
}
.burger {
  position: relative;
  z-index: 1001;
    cursor: pointer;
}
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  z-index: 1000;
}

.overlay.active {
  opacity: 1;
  visibility: visible;
}

/* sidebar */
.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: #89966F;
  color: #fff;
  transform: translateX(-100%);
    -webkit-transform:translateX(-100%);
  transition: 0.3s ease;
  z-index: 1002;
  padding: 20px 20px;
  max-width: 435px;
}

.sidebar ul {
  list-style: none;
  padding: 0;
}

.sidebar ul li {
  margin: 12px 0;
}

.sidebar ul li a {
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
    font-size: 16px;
    font-weight: 400;
    line-height: 100%;
    letter-spacing: 0%;
}
.sidebar ul li a:hover{
    color: #ffd600;
    transition: .3s;
}
/* active state */
.sidebar.active {
  transform: translateX(0);
    -webkit-transform:translateX(0);
}
.sidebar-close {
    display: block;
    margin-left: auto;
    position: relative;
    margin-right: 1%;

    background: none;
    border: none;

    color: #fff;
    font-size: 36px;
    line-height: 1;

    cursor: pointer;
    padding: 0;
}

.sidebar-close:hover {
    opacity: .7;
}
.nav_buttons{
    display: flex;
    flex-wrap: wrap;
    gap: 17px;
    margin: 20px auto;
}
.nav_booking{
    display: block;
    text-align: center;
    color: black;
    background: white;
    border-radius: 32px;
    width: 100%;
    padding: 12px;
    font-size: 18px;
}
.nav_kabinet{
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 32px;
    width: 100%;
    padding: 12px;
    border: 1px white solid;
    text-align: center;
    font-size: 18px;
    color: white;
    gap: 5px;
}
/*
.nav_kabinet svg, .nav_kabinet stroke{
    fill: white;
}
*/
.stores_btns{
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}
.stores_btns a{
    width: 48%;
    display: block;
}
.stores_btns a img{
    max-width: 100%;
    width: 100%;
}
.desk-hide{
    display: block;
}
.mob-hide{
    display: none;
}
 body {
/*    overflow-x: hidden;*/
    background: #fff;
}

.page{
    position:relative;
}

.container-glavnaya{
    width:min(1280px,calc(100% - 40px));
    height:100%;
    margin:0 auto;
    position:relative;
}

.glavnaya{
    position: -webkit-sticky;
    position: sticky;
    top:0;
    height:100vh;
    overflow:hidden;
    z-index:1;
}

.glavnaya_video{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
}

.glavnaya_overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.35);
    z-index:1;
    pointer-events:none;
}

.glavnaya_content{
    position:relative;
    z-index:2;
    height:100%;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
    will-change:transform;
}

.h1{
    opacity:0;
    transform:translateY(100px);
    -webkit-transform:translateY(100px);
    transition:
        opacity 2s cubic-bezier(.19,1,.22,1),
        transform 2s cubic-bezier(.19,1,.22,1);
    color: white;
    transition-delay: .4s;
    font-size: 30px;
    font-weight: 500;
    line-height: 96%;
}

/* После загрузки страницы */

.glavnaya.loaded .h1,
.glavnaya.loaded .main-btn{
    opacity:1;
    transform:translateY(0);
    -webkit-transform:translateY(0);
}

.glavnaya_video_btn {
    border: none;
    background: none;
    cursor: pointer;
    width: 36px;
    height: 36px;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: auto;
    position: absolute;
    right: 0px;
    z-index: 3;
    bottom: 50px;
    overflow: hidden;
}

.glavnaya_video_btn svg {
    position: absolute;
    opacity: 0;
    transform: scale(.8);
    transition: opacity .3s ease, transform .3s ease;
    pointer-events: none;
}

/* По умолчанию показываем Pause */
.glavnaya_video_btn .svg-pause {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
}

/* Видео на паузе */

.glavnaya_video_btn.paused .svg-play {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
}

/* Видео закончилось */
.glavnaya_video_btn.ended .svg-pause,
.glavnaya_video_btn.ended .svg-play {
    opacity: 0;
    transform: scale(.8);
    pointer-events: none;
}
.glavnaya_video_btn.paused .svg-pause {
    opacity: 0;
    transform: scale(.8);
}

.glavnaya_video_btn.ended .svg-replay {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
}

/*
.glavnaya_video_btn:hover svg {
    --icon-stroke: #000;
    --icon-fill: #000;
    --circle-stroke: #000;
}
*/



/* =========================================
INTRO
========================================= */

.intro{
    position:relative;
    z-index:2;
    margin-top:0;
/*    min-height:100vh;*/
    padding-top: 50px;
    padding-bottom: 60px;
    background:#fff;
/*    border-radius:32px 32px 0 0;*/
/*        transform: translateY(1px);*/
}
.intro::before{
    content:"";
    position:absolute;
    bottom: -2px;
    left:0;
    width:100%;
    height:4px;
    background:#fff;
    z-index:10;
}
.intro_inner{
/*    min-height:100dvh;*/
/*    padding: 70px 0 80px;*/
/*
    display:flex;
    flex-direction:column;
    align-items:center;
*/
    text-align:center;
    will-change:opacity,transform;
    max-width: 330px;
    margin-left: auto;
    margin-right: auto;
}

.intro-line{
    width: 80%;
/*    max-width:600px;*/
    height: 2px;
    margin: 40px auto;
    background:#d9d9d9;
}

.teams_img{
    display:block;
    width:100%;
    max-width: 264px;
}

.mobile{
    margin-bottom:40px;
}

.desktop{
    display:none;
    margin-top:40px;
}

.glavnaya_buttons{
    display: flex;
    flex-wrap: wrap;
}
.glavnaya_buttons a{
    width: 100%;
}
.main-btn{
    display: inline-block;
    padding: 8px 12px;
    color: white;
    font-weight: 400;
    font-size: 12px;
    line-height: 155%;
    letter-spacing: 5%;
    background: #89966F;
    border-radius: 72px;
    margin-top: 16px;
    text-transform: none;
    opacity:0;
    transform:translateY(100px);
    -webkit-transform:translateY(100px);
    transition:
        opacity 2s cubic-bezier(.19,1,.22,1),
        transform 2s cubic-bezier(.19,1,.22,1);
    transition-delay: 1s;
}
a.main-btn:hover{
    background: #74815b;
    transition: .3s;
}
.main-btn.second-btn:hover{
    background: #f7f7f842;
    transition: .3s;
}
.main-btn.second-btn{
    background: #f7f7f821;
}


span.green{
    color: #89966F;
    font-weight: 600;
}
span.green.underline{
    text-decoration: underline;
}
.team{
    margin: 100px 0;
}
.team_player{
    position: relative;
    height: 400px;
    width: 100%;
    max-width: 400px;
    margin: 20px auto;
    border-radius: 30px;
    overflow: hidden;
}
.video-section .team_player{
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
}
.team_player_txt{
    position: relative;
    color: white;
    max-width: 50%;
}
.team_player_title{
    font-size: 28px;
    font-weight: 600;
}
.team_player_subtitle{
    font-size: 14px;
    line-height: 146%;
}
.video-section .team_player_subtitle{
    display: none;
}
.team_video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}
.vid_video {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.vid_video iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 177.77vh; /* 16:9 */
    height: 100vh;
    transform: translate(-50%, -50%);
    pointer-events: none;
}
.vid_video_overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.65) 0%,
        rgba(0, 0, 0, 0.45) 20%,
        rgba(0, 0, 0, 0.25) 40%,
        rgba(0, 0, 0, 0.12) 60%,
        rgba(0, 0, 0, 0.04) 75%,
        rgba(0, 0, 0, 0) 100%
    );

}
.team_player_text{
    position: absolute;
    color: white;
    margin-top: auto;
    font-size: 28px;
    font-weight: 600;
    bottom: 20px;
    left: 20px;
    z-index: 2;
    text-shadow: 0 4px 20px rgba(0,0,0,0.6);
}
.team_video_btn {
    border: none;
    background: none;
    cursor: pointer;
    width: 36px;
    height: 36px;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: auto;
    position: relative;
}
.team_buttons{
    display: flex;
    align-items: center;
    gap: 12px;
    position: absolute;
    right: 20px;
    bottom: 20px;
}
.team_now{
    display: none;
    text-align: center;
    padding: 12px 53px;
    color: black;
    background: white;
    border-radius: 72px;
}
.team_video_btn svg {
    position: absolute;
    transition: opacity .3s ease, transform .3s ease;



    width: 36px;
    height: 36px;

}
.team_plus{
    display: block;
    height: 36px;
    width: 36px;
}
/* По умолчанию показываем Pause */

.team_video_btn .svg-play {
    opacity: 0;
    transform: scale(.8);
    -webkit-transform: scale(.8);
        --circle-fill: #fff;
    --circle-stroke: none;
    --icon-fill: #6E6E73;

}



/* Когда видео на паузе */

.team_video_btn.paused .svg-play {
    opacity: 1;
    transform: scale(1);
    -webkit-transform: scale(1);
}

.team_video_btn.paused .svg-pause {
    opacity: 0;
    transform: scale(.8);
    -webkit-transform: scale(.8);
}
.team_video_btn .svg-pause {
    opacity: 1;
    transform: scale(1);
    -webkit-transform: scale(1);
}


/*
.team_video_btn:hover svg {
    --icon-stroke: #000;
    --icon-fill: #000;
    --circle-stroke: #000;
}
*/

.teams_img{
    display: block;
    margin: 0 auto;
    margin-bottom: 30px;
}
.teams_img.desktop{
    display: none;
}
.intro-line{
    width: 90%;
    height: 2px;
    background: #d1cacab2;
    margin: 24px auto;
}
.overview-educators-miami .massage_img{
    display: block;
    max-width: 100%!important;
}
.h2{
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 16px;
    line-height: 100%;
    letter-spacing: -0.28;
    margin-top: 30px;
}
.h3{
    font-size: 20px;
    font-weight: 500;
    line-height: 100%;
    color: #1D1D1F;
    margin-bottom: 12px;
    letter-spacing: 0;
}
.flex_h2{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-top: 24px;
    margin-bottom: 24px;
}
.flex_h2 .h2{
    max-width: 80%;
    margin: 0;
}
.promo-card .flex_h2{
    justify-content: flex-start;
    gap: 10px;
    font-size: 14px;
}
.promo-card .subtitle{
    color: #2F2F2F;
}
.h2_after{
    padding: 8px 16px;
    color: white;
    text-align: center;
    display: inline-block;
    background: #89966F;
    border-radius: 120px;
}
.view_all{
    display: inline-block;
    font-size: 12px;
    line-height: 100%;
    color: #2F2F2FB2;
    border: 1px solid #2F2F2F1A;
    text-align: center;
    padding: 8px 12px;
    border-radius: 12px;
    margin: 0;
    white-space: nowrap;
}
.subtitle{
    font-size: 16px;
    color: #2F2F2FB2;
    margin-bottom: 24px;
}
/*CERT*/
.certificate{
    background: #F5F5F7;
    padding: 24px 0;
    overflow: hidden;
}
.certificate .h2{
    text-align: center;

}
.certificate .subtitle{
    text-align: center;
}
.certificate_inner{
    margin: 24px auto;
}
.certificate_card{
    position: relative;
    height: 252px;
    width: 100%;
    max-width: 343px;
    margin: 12px auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    border-radius: 16px;
    isolation: isolate;
}

/*
.certificate_card:before{
    position: absolute;
    bottom: 25px;
    right: 25px;
    content: "";
    background: url(../img/plus_white.svg) center center no-repeat;
    width: 16px;
    height: 16px;
    display: block;
    background-size: contain;

    border-radius: 50%;
    text-align: center;
    line-height: 16px;
    color: black;
}
.certificate_card.second:before{
    background: url(../img/plus_black.svg) center center no-repeat;
    background-size: contain;
}
*/
.first .certificate_card_text{
    position:relative;
    z-index:2;
    max-width: 85%;
}
.certificate_card_text{
    margin-top: auto;
}

.certificate_card.first .certificate_card_backside .certificate_card_text,.certificate_card_backside .certificate_card_text{
    margin-top: 0;
}
.certificate_card_title{
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 4px;
}
.certificate_card_subtitle{
    font-size: 16px;
}

.certificate_card.first{
    color: white;
}
.certificate_card_img{
    display: none;
}
/*
.certificate_card.second{
    background: white;
}
.certificate_card.third{
    background: #1D1D1F;
    color: white;
}
*/
.certificate_card{
    position:relative;
    height:400px;
    width:100%;
    max-width:343px;
    margin:12px auto;

    perspective:1200px;
    cursor:pointer;

    padding:0;
    background:none;
}
.certificate_card_inner{
    width:100%;
    height:100%;
    position:relative;
    transform-style:preserve-3d;
    transition:transform .8s cubic-bezier(.4,.2,.2,1);

}

.certificate_card.flipped .certificate_card_inner{
    transform:rotateX(179deg);
    -webkit-transform: rotateX(179deg);
}
.certificate_card_frontside,
.certificate_card_backside{

    position:absolute;
    inset:0;

    display:flex;
    flex-direction:column;
    justify-content:flex-start;

    padding:20px;

    border-radius:30px;

    overflow:hidden;

    backface-visibility:hidden;
    -webkit-backface-visibility:hidden;
    transform: rotateY(0deg);
}

.certificate_card_backside { transform: rotateY(180deg); }
.certificate_video{
    display: block;
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
    transform: translateZ(0);
    z-index:0;
}



.certificate_card_frontside {
position: absolute;
inset: 0;
padding: 20px;
border-radius: 30px;
overflow: hidden;
}

.certificate_bg {
position: absolute;
inset: 0;
z-index: 0;
overflow: hidden;
}

.certificate_video {
width: 100%;
height: 100%;
object-fit: cover;
backface-visibility: hidden;
-webkit-backface-visibility: hidden;
transform: translateZ(0);
}

.certificate_overlay {
position: absolute;
inset: 0;
z-index: 1;
}

.certificate_card_text {
position: relative;
z-index: 2;
}


.certificate_overlay{
    position:absolute;
    inset:0;

    background:linear-gradient(
        transparent 30%,
        rgba(0,0,0,.45)
    );

    z-index:1;
}
.cert_phone{
    margin-top: 20px;
}
.first .certificate_card_frontside{
    background:#98A07B;
}
.first .certificate_card_frontside:before{
/*    top: 12px;*/
}
.second .certificate_card_frontside{
    background:#fff;
}

.third .certificate_card_frontside{
    background:#222;
    color:#fff;
}
.certificate_card_backside{

    transform:rotateX(179deg);
    -webkit-transform: rotateX(179deg);

/*
    background:#1d1d1d;
    color:#fff;
*/
    background: white;
    color: black;
}
.certificate_card_frontside:before{
    position:absolute;
    bottom:25px;
    right:25px;

    content:"";

    width:36px;
    height:36px;

    background:url(../img/plus_white.svg) center center no-repeat;
    background-size:contain;

    z-index: 10;
}
.second .certificate_card_frontside::before{
    background:url(../img/plus_black.svg) center center no-repeat;
    background-size:contain;
}
.certificate_card_frontside::before:hover{
    opacity: .3;
}

/*
.certificate_card_backside:before{

    position:absolute;
    top:25px;
    right:25px;

    content:"✕";

    width:20px;
    height:20px;

    font-size:16px;
    line-height:18px;
    text-align:center;
}
*/

/* АНИМАЦИЯ ПОЯВЛЕНИЯ  */

.certificate_card{

    opacity: 0;
    transform: translateY(130px);
    -webkit-transform: translateY(130px);
    transition:
        transform 1.5s cubic-bezier(.22,1,.36,1),
        opacity 1.5s cubic-bezier(.22,1,.36,1);
}

.certificate_card.show{
    opacity: 1;
    transform: translateY(0);
    -webkit-transform: translateY(0);
}

.certificate_card_title,
.certificate_card_subtitle{

    opacity:0;
    transform:translateY(50px);
    -webkit-transform: translateY(50px);

    transition:
        transform 1.5s cubic-bezier(.22,1,.36,1),
        opacity 1.5s cubic-bezier(.22,1,.36,1);
}

.certificate_card.show .certificate_card_title{

    opacity:1;
    transform:none;
    -webkit-transform: none;

    transition-delay:.45s;
}

.certificate_card.show .certificate_card_subtitle{

    opacity:1;
    transform:none;
    -webkit-transform: none;
    transition-delay:.58s;

}


/* Начальное состояние */
.glavnaya-page .articles .flex_h2,
.glavnaya-page .articles .subtitle,
.glavnaya-page .articles_card {
    opacity: 0;
    transform: translateY(40px);
    transition:
        opacity .8s cubic-bezier(.22, 1, .36, 1),
        transform .8s cubic-bezier(.22, 1, .36, 1);
    will-change: opacity, transform;
}

/* Конечное состояние */
.glavnaya-page .articles .flex_h2.show,
.glavnaya-page .articles .subtitle.show,
.glavnaya-page .articles_card.show {
    opacity: 1;
    transform: translateY(0);
}




.articles{
    margin: 60px 0;
}
.articles-page{
    margin: 180px 0;
}
.articles_card{
    position: relative;
    height: 200px;
    width: 100%;
    overflow: hidden;

    margin: 12px auto;
    display: flex;
    flex-direction: column;
    padding: 20px;
    border-radius: 30px;
    background: #1D1D1F;
    color: white;
}
.articles_card.fourth{
    display: none;
}
.articles_bg{
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    filter: brightness(.8);
}

.glavnaya-page .articles_card_metka, .glavnaya-page .articles_card_title, .glavnaya-page .articles_card_date{
    opacity: 0;
    transform: translateY(50px);
    -webkit-transform: translateY(50px);
    transition: transform 1.5s cubic-bezier(.22, 1, .36, 1), opacity 1.5s cubic-bezier(.22, 1, .36, 1);
}
.glavnaya-page .show .articles_card_metka, .glavnaya-page .show .articles_card_title, .glavnaya-page .show .articles_card_date{
    opacity: 1;
    transform: none;
    -webkit-transform: none;
    transition-delay: .4s;
}
.articles_card_metka{
    display: inline-block;
    background: #1D7F9D;
    font-size: 12px;
    text-align: center;
    padding: 5px 12px;
    border-radius: 20px;
}
.articles_card_text{
    margin-top: auto;
}
.articles_card_title{
    font-size: 18px;
    font-weight: 600;
    margin: 10px 0;
}
.article_content{
    font-size: 20px;
}
.article_content li, .article_content p{
    color: #2F2F2F;
/*    line-height: 200%;*/
}
.article_content li{
    margin: 10px 0 10px 15px;
}
.article_show{
    font-weight: 600;
    color: #2F2F2F;
    display: block;
    text-decoration: underline;
    margin-left: auto;
}
.article img{
    border-radius: 30px;
}
.article figure{
    margin: 20px 0;
}
.article figcaption {
    margin-top: 8px;
    font-size: 12px;
    color: #2F2F2FB2;
    text-align: center;
}
.article .studio_buttons {
    margin: 20px 0;
}
.app{
    padding: 24px 0;
    background: #89966F;
}
.app .h2{
    margin-top: 0;
}
.app_inner{
    background: white;
    border-radius: 30px;
    position:relative;
    perspective:1200px;
    cursor:pointer;
/*    height: 260px;*/
    height: 400px;
    transform-style:preserve-3d;
    transition:transform .8s cubic-bezier(.4,.2,.2,1);
}
.app_inner_text{
    max-width: 70%;
}

.app_inner.flipped{
    transform:rotateY(180deg);
    -webkit-transform: rotateY(180deg);
}
.app_inner_img{
    display: block;
    margin: 10px auto 0;
}
.app_backside .app_inner_img{
    display: none;
}
.app_frontside, .app_backside{
    position:absolute;
    inset:0;
    backface-visibility:hidden;
    -webkit-backface-visibility:hidden;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 32px;
}


.app_frontside {
    transform: rotateX(0deg) translateZ(2px);
    flex-wrap: wrap;
    overflow: hidden;
}

.app_backside {
transform: rotateX(180deg) translateZ(2px);
}

.app_backside {
transform: rotateY(180deg);
}


.app_bg {
    position:absolute;
    bottom:25px;
    right:25px;
    content:"";
    width:36px;
    height:36px;
    background:url(../img/plus_black.svg) center center no-repeat;
    background-size:contain;
    z-index: 10;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transform-style: preserve-3d;
    -webkit-transform-style: preserve-3d;
}
.app_bg:hover{
    opacity: .3;
    transition: .3s;
}

.footer{
    padding: 12px 0;
    background: #F7F7F8;
}
.footer_bottom{
    display: none;
}
.footer .stores_btns{
    max-width: 70%;
}
.footer .header_social_flex a{
    width: 32px;
    height: 32px;
}
.footer .header_social_flex{
    display: flex;
    justify-content: center;
    width: 100%;
    gap: 10px;
    margin-top: 10px;
}
.footer_logo{
    max-width: 60%;
}
.footer_inner{
    padding-bottom: 12px;
    border-bottom: 1px solid #EFEFF0;
}
.footer_nav a{
    color: #2F2F2FB2;
    display: block;
    text-align: center;
    font-size: 14px;
    font-weight: 400;
    line-height: 155%;
    margin: 16px 0;
}
.footer_right{
    display: none;
}
.trust{
    margin-bottom: 30px;
}
.trust p{
    font-size: 14px;
    color: #2F2F2FB2;
}
.trust_inner{
    background: #F7F7F8;
    padding: 16px;
    margin-bottom: 16px;
    border-radius: 30px;
}
.trustSwiper {
    width: 100%;
    overflow: hidden;
}

.trustSwiper .swiper-wrapper {
    transition-timing-function: linear !important;
    align-items: center;
}

.trust_item {
    display: flex;
    justify-content: center;
    align-items: center;
}

.trust_item img {
    width: 100%;
    max-width: 150px;
    height: 50px;
    display: block;
    object-fit: contain;
}
.help_item{
    position: relative;
    background: #EEF9FF;
    padding: 15px;
    border-radius: 30px;
    max-width: 300px;
    width: 100%;
    height: 400px;
    overflow: hidden;
    cursor: pointer;
    transition:
        transform 1s cubic-bezier(.22,1,.36,1),
        box-shadow 1s cubic-bezier(.22,1,.36,1);
}
.help_bg{
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    filter: brightness(.8);
}
.help_advantages{
    color: #ffff;;
}
.help_advantages_black{
    color: #2F2F2F;
    font-size: 18px;
}
.help_title{
    font-size: 28px;
    font-weight: 600;
    color: #ffff;
    margin-top: 7px;
    line-height: 0.9
}
.help_title_black{
    font-size: 28px;
    font-weight: 600;
    color: #2F2F2F;
    margin-top: 7px;
    line-height: 0.9
}

.help_item::before{
    position:absolute;
    bottom:20px;
    right:20px;

    content:"";

    width:36px;
    height:36px;

    background:url(../img/plus_black.svg) center center no-repeat;
    background-size:contain;

    z-index: 10;
}

@media (hover:hover){

    .help_item:hover{
        transform: scale(1.03);
        -webkit-transform: scale(1.03);

        box-shadow: 0 20px 40px rgba(0,0,0,.15);
    }

}

.help_navigation{
    display:flex;
    justify-content: flex-end;
    gap:12px;
}

.helpPrev,
.helpNext{
    width:36px;
    height:36px;
    border:none;
    cursor:pointer;
    border-radius:50%;
    font-size:20px;
    margin-top: 10px;
}
.helpPrev svg{
    transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
}
.swiper-button-disabled svg{
    opacity: .5;
}
.helpSwiper{
    overflow:hidden;
}

.help_item{
    box-sizing:border-box;
}

/* ======================================
   MODAL
====================================== */

.help_modal{
    position:fixed;
    inset:0;

    display:flex;
    justify-content:center;
    align-items:center;

    padding:16px;

    background:rgba(0,0,0,.45);

    backdrop-filter:blur(10px);
    -webkit-backdrop-filter:blur(10px);

    opacity:0;
    visibility:hidden;

    transition:
        opacity .35s ease,
        visibility .35s ease;

    z-index:9999;
}

.help_modal.active{
    opacity:1;
    visibility:visible;
}


.help_modal_window {
    position: relative;
    width: 100%;
    max-width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    background: white;
    color: black;
    border-radius: 24px;
    padding: 56px 24px 32px;
    transform: translateY(40px) scale(.96);
    -webkit-transform: translateY(40px) scale(.96);
    opacity: 0;
    transition: transform .55s cubic-bezier(.22, 1, .36, 1), opacity .45s ease;
    box-shadow: 0 24px 70px rgba(0, 0, 0, .35);
}

.help_modal.active .help_modal_window {
    transform: none;
    -webkit-transform: none;
    opacity: 1;
}


.help_modal_close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
/*
    border-radius: 50%;
    background: black;
    color: white;
*/
    font-size: 24px;
    cursor: pointer;
    transition: transform .3s, background .3s;
    text-align: center;
    line-height: 100%;
}

.help_modal_text {
    color: #d5d5d5;
    font-size: 16px;
    line-height: 1.7;
}
.help_modal_window::-webkit-scrollbar {
    width: 8px;
}

.help_modal_window::-webkit-scrollbar-thumb {
    background: #555;
    border-radius: 20px;
}


@media(min-width:768px) {
    .help_modal {
        padding: 32px;
    }
    .help_modal_window {
        max-width: 760px;
        padding: 64px;
    }
    .help_modal_title{
        font-size: 30px;
    }
}
@media (min-width: 992px) {

    .trust_item img {
        max-width: 160px;
    }



}


@media(min-width:1200px) {
    .help_modal_window {
        max-width: 840px;
    }
}


/*TYPES*/
.types{
    margin-bottom: 60px;
}

.types_item{
    display: flex;
    flex-direction: column-reverse;
    position: relative;
    background: #EEF9FF;
    padding: 12px;
    border-radius: 30px;
/*    max-width: 180px;*/
    width: 100%;
    height: 400px;
    overflow: hidden;
    cursor: pointer;
    transition:
        transform 1s cubic-bezier(.22,1,.36,1),
        box-shadow 1s cubic-bezier(.22,1,.36,1);
    opacity: .45;
}
.types_item.swiper-slide-active{
    opacity: 1;
}
.types_text{
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: flex-end;
}
.types_bg{
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}
.types_price{
    display: none;
    color: white;
    font-size: 16px;
    width: 100%;
    margin: 0;
}
.swiper-slide-active .types_price{
    display: block;
}
.types_title{
    font-size: 28px;
    font-weight: 600;
    width: 100%;
    color: white;
    margin-bottom: 20px;
}

.types_item::before{
    position:absolute;
    bottom:12px;
    right:12px;

    content:"";

    width:36px;
    height:36px;

    background:url(../img/plus_white.svg) center center no-repeat;
    background-size:contain;

    z-index: 10;
}

/*
@media (hover:hover){

    .types_item:hover{
        transform: scale(1.03);
        box-shadow: 0 20px 40px rgba(0,0,0,.15);
    }

}
*/

.types_navigation{
    display:flex;
    justify-content: flex-end;
    gap:12px;
}

.typesPrev,
.typesNext{
    width:36px;
    height:36px;
    border:none;
    cursor:pointer;
    border-radius:50%;
    font-size:20px;
    margin-top: 10px;
}
.typesPrev svg{
    transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
}
.swiper-button-disabled svg{
    opacity: .5;
}
.typesSwiper{
/*    overflow:hidden;*/
}

.types_item{
    box-sizing:border-box;
}
.typesPlayPause{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: transparent;
    border: 0;
    cursor: pointer;
}

.types-svg-play{
    display: none;
}

.typesPlayPause.paused .types-svg-play{
    display: block;
}

.typesPlayPause.paused .types-svg-pause{
    display: none;
}
.types_niz{
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}
.types-progress{
    fill: none;
    stroke: #86868b;
    stroke-width: 2;
    stroke-linecap: round;

    stroke-dasharray: 1;
    stroke-dashoffset: 1;

    transform: rotate(0deg);
    transform-origin: center;
}
/* ======================================
   MODAL
====================================== */

.types_modal{
    position:fixed;
    inset:0;

    display:flex;
    justify-content:center;
    align-items:center;

    padding: 5px;

    background:rgba(0,0,0,.45);

    backdrop-filter:blur(10px);
    -webkit-backdrop-filter:blur(10px);

    opacity:0;
    visibility:hidden;

/*
    transition:
        opacity .35s ease,
        visibility .35s ease;
*/

    z-index:9999;
}


.types_modal.active{
    opacity:1;
    visibility:visible;
}


.types_modal_window {
    position: relative;
    width: 100%;
    max-width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    background: #f7f7f8;
    color: black;
    border-radius: 30px;
    padding: 50px 20px 20px 20px;
    transform: translateY(40px) scale(.96);
    -webkit-transform: translateY(40px) scale(.96);
    opacity: 0;
    transition: transform .55s cubic-bezier(.22, 1, .36, 1), opacity .45s ease;
    box-shadow: 0 24px 70px rgba(0, 0, 0, .35);
    max-width: 600px;
}

.types_modal.active .types_modal_window {
    transform: none;
    -webkit-transform: none;
    opacity: 1;
}


.types_modal_close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;

    line-height: 100%;
    text-align: center;
    color: white;
    font-size: 23px;
    cursor: pointer;
    transition: transform .3s, background .3s;
}

.types_modal_close:hover{
    opacity: .5;
    transition: .3s;
}
.types_modal_text {
    color: #d5d5d5;
    font-size: 16px;
    line-height: 1.7;
}
.types_modal_window::-webkit-scrollbar {
    width: 8px;
}

.types_modal_window::-webkit-scrollbar-thumb {
    background: #555;
    border-radius: 20px;
}
.massage-card-page .article{
    margin: 100px 0;
}
.massage-card-page .article_content{
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.massage-card-page .article_content.active {
    -webkit-line-clamp: unset;
}

.massage-card_types_modal{
    background: #F7F7F8;
    padding: 15px 8px;
    border-radius: 30px;
    margin: 30px auto;
}

.types_sort{
    position: relative;
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    background: rgba(247,247,248,1);
    padding:5px 6px;
    border-radius:120px;
    scrollbar-width:none;
    height: 48px;
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 155%;
    border: 1px solid #2F2F2F1A;
}

.types_wrapper {
position: relative;
}

.types_wrapper .fade {
position: absolute;
top: 0;
height: 100%;
width: 100px;
pointer-events: none;
z-index: 10;
opacity: 0;
transition: opacity 0.2s ease;
}

.types_wrapper .fade.right {
right: -1px;
background: linear-gradient(
to left,
rgba(247, 247, 248, 1) 0px,
rgba(247, 247, 248, 1) 5px,
rgba(247, 247, 248, 0.7) 10px,
rgba(247, 247, 248, 0.3) 15px,
rgba(247, 247, 248, 0) 20px
);
border-radius: 0 120px 120px 0;
}

.types_wrapper .fade.left {
left: -1px;
background: linear-gradient(
to right,
rgba(247, 247, 248, 1) 0px,
rgba(247, 247, 248, 1) 5px,
rgba(247, 247, 248, 0.7) 10px,
rgba(247, 247, 248, 0.3) 15px,
rgba(247, 247, 248, 0) 20px
);
border-radius: 120px 0 0 120px;
}

.types_wrapper.show-left .fade.left {
opacity: 1;
}

.types_wrapper.show-right .fade.right {
opacity: 1;
}

.types_sort::before{
    content:"";
    position:absolute;
    left:0;
    top:0;
    width:0;
    height:0;
    background:#89966F;
    border-radius:30px;
    transform:translateX(0);
    transition:.3s;
    pointer-events:none;
}

.types_btn{
    position:relative;
    z-index:1;
    white-space:nowrap;
    padding:8px 16px;
    border-radius:30px;
    background:none;
}

.types_btn.active{
    color:#fff;
    background:transparent; /* фон теперь рисует ::before */
}

/*TYPES MODAL INNER*/

.types_modal_sort_top{
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}
.types_modal_sort_top_btn{
    color: #2F2F2FB2;
}
.types_modal_sort_top_btn.active{
    color: black;
    position: relative;
}
.types_modal_sort_top_btn.active:before{
    display: block;
    content: "";
    background: black;
    position: absolute;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    bottom: -3px;
    left: 50%;
    width: 30%;
    height: 2px;
}
.types_h1{
    text-align: center;
    font-size: 30px;
    font-weight: 500;
    margin-bottom: 20px;
    color: #1D1D1F;
}
.types_modal_sort_rank{
    display: flex;
    justify-content: center;
    max-width: max-content;
    margin: 0 auto;
    margin-bottom: 20px;
    background: #F7F7F8;
    padding: 5px 6px;
    border-radius: 120px;
    background: white;
}
.types_modal_bottom_row:last-child{
    border: none;
    padding-bottom: 0;
}
.types_modal_sort_rank_btn{
    display: inline-block;
    white-space: nowrap; /* Запрещает перенос текста */
      padding: 8px 16px;

    border-radius: 30px;

    font-size: 14px;
    font-weight: 400;
}
.types_modal_sort_rank_btn.active{
    color: white;
    background: #89966F;
}
.types_modal_bottom_row{
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-size: 12px;
        padding: 20px 0;
        border-bottom: 1px solid #2F2F2F0D;
}
.types_modal_bottom_row_left{
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 55%;
        gap: 5px;
        max-width: 200px;
}
.types_modal_bottom_row_right{
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 20px;
}
.types_h1 {

    font-size: 20px;

}

.types_modal_bottom_time{
    display: flex;
    gap: 3px;
    align-items: center;
    color: #2F2F2F;
    padding: 8px 15px;
    border: 1px solid #6C6C6C;
    border-radius: 28px;
}
.select-wrap {
    position: relative;
    display: inline-block;
}
select#seans{
    position: relative;
    border-radius: 120px;
   padding: 8px 18px 8px 12px;
    border: 1px solid #2F2F2F1A;
    background: white;
    font-size: 12px;
    -webkit-appearance: none; /* Убирает стандартную стилизацию Safari */
    appearance: none;
    color: black;
}
.select-arrow {
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    pointer-events: none;
}
.oformit{
    color: white;
    background: #89966F;
    text-align: center;
    border-radius: 30px;
    padding: 8px 15px;
    font-size: 12px;
}
.oformit span{
    display: none;
}
.types_modal_bottom_price{
    display: flex;
    flex-wrap: wrap;
}
.types_modal_bottom_price_black{
    font-size: 14px;
    font-weight: 500;
    line-height: 155%;
}
.types_modal_bottom_price_red{
    color: #D5312C;
    font-size: 10px;
    text-decoration: line-through;
    margin-left: 2px;
    display: none;
}
.types_modal_bottom_name{
    color: #2F2F2F;
}
.types_podrobnee{
    display: block;
    margin: 20px auto;
    width: 100%;
    max-width: 250px;
    text-align: center;
    font-size: 14px;
    color: #2F2F2F;
    text-decoration: underline!important;
    text-decoration-style: dotted!important;
    text-decoration-color: #2F2F2F!important;
}

.info_card{
    position: relative;
    display: flex;
    height: 190px;
    width: 100%;
    max-width: 400px;
    perspective: 1200px;
    cursor: pointer;
    margin: 12px auto;
    padding: 0px;
    border-radius: 30px;
    overflow: hidden;
    padding: 20px;
    background: #EEF9FF;
}
.info_card_img{
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    inset: 0px;
    filter: brightness(0.7);
}
.info_card:before {
    position: absolute;
    bottom: 20px;
    right: 20px;
    content: "";
    width: 36px;
    height: 36px;
    z-index: 10;
    background: url(../img/plus_black.svg) center center / contain no-repeat;
}
.info_card_title{
    font-size: 20px;
    font-weight: 500;
    line-height: 120%;
    color: white;
    margin-top: auto;
}
.gift-card .info_card_title{
    color: black;
}
.gift-card .intro_inner{
    padding-top: 0;
}
/*FAQ*/
.faq{
/*    margin-bottom: 80px;*/
}
.faq_question{
    padding: 20px 0;
    border-bottom: 1px solid #2F2F2F1A;
}
.faq_title {
    font-size: 16px;
    line-height: 155%;
    font-weight: 400;
    display: flex;
    justify-content: space-between;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    gap: 10px;
}
.faq_answer {
    font-size: 16px;
    line-height: 155%;
    font-weight: 400;
    color: #2F2F2FB2;
    max-height: 0;
    overflow: hidden;
    padding: 0;
    transition:
        max-height 0.3s ease,
        padding 0.3s ease;
}

.faq_title.active + .faq_answer {
    padding-top: 12px;
}
.faq_title:after {
    content: "";
    background-image: url(../img/arrow.svg);
    width: 24px;
    height: 24px;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 0.25s ease;
}

.faq_title.active:after {
    transform: rotate(180deg);
}

.profesional_inner{
    padding: 24px 24px 54px;
    background: #89966F;
    border-radius: 16px;
    color: white;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: space-between;
    gap: 24px;
    text-align: center;
    max-width: 400px;
    margin: 60px auto;
}
.profesional_left, .profesional_right{
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: space-between;
    gap: 24px;
}
.profesional_title{
    font-size: 32px;
    font-weight: 600;
    line-height: 100%;
}
.profesional_text{
    font-size: 14px;
    line-height: 155%;
}
.profesional_img{
    max-width: 264px;
    display: block;
    margin: 0 auto;
}
.profesional_btn{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    justify-content: center;
    border: 1px solid white;
    border-radius: 120px;
    padding: 9px 16px;
    color: white;
    max-width: 200px;
    font-size: 14px;
    margin: 0 auto;
}
/*PRICES*/
.prices{
    margin-top: 80px;
    margin-bottom: 30px;
}
.prices_btns_inner{
    max-width: 600px;
    margin: 0px auto;
}
.prices_btns{
    display: flex;
    gap: 10px;
    background: #F7F7F8;
    /* max-width: 330px; */
    width: 100%;
    justify-content: space-between;
    margin: 10px auto;
    padding: 8px;
    border-radius: 120px;
    border: 1px solid #2F2F2F1A;
}
.prices_btn {
    padding: 8px;
    font-size: 14px;
    width: 32%;
    text-align: center;
    color: #2F2F2F;
}
.prices_btn.active {
    background: #89966F;
    color: white;
    border-radius: 120px;
    transition: .5s;
}
.prices_more{
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    gap: 17px;
    background: #F7F7F8;
    padding: 14px;
    border: 1px solid #2F2F2F1A;
    font-size: 16px;
    line-height: 100%;
    border-radius: 72px;
    color: #2F2F2F;
}
.prices_card_inner{
    margin: 30px 0;
}
.prices_item{
    display: flex;
    flex-direction: column-reverse;
    position: relative;
/*    background: #EEF9FF;*/
    padding: 12px;
    border-radius: 12px;
    /* max-width: 180px; */
    width: 100%;
    height: 200px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 1s cubic-bezier(.22, 1, .36, 1), box-shadow 1s cubic-bezier(.22, 1, .36, 1);
    margin: 10px auto;
}
.prices_bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}
.prices_item::before {
    position: absolute;
    bottom: 12px;
    right: 12px;
    content: "";
    width: 20px;
    height: 20px;
    background: url(../img/plus_white.svg) center center no-repeat;
    background-size: contain;
    z-index: 10;
}
.prices_text {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: flex-end;
}
.prices_title {
    font-size: 20px;
    font-weight: 600;
    width: 100%;
    color: white;
}
.prices_price {
    color: white;
    font-size: 16px;
    width: 100%;
    margin: 0;
}
.prices_show-all{
    display: none;
}
.promo-page{
    margin-top: 80px;
}
.promo-card .container-section{
    max-width: 600px;
    margin: 0 auto:;
}
.promo-card_content{
    margin: 20px 0;
    color: #2F2F2FB2;
}
.promo-card_text{
    margin: 25px 25px;
}
.promo-card_content img{
    display: block;
    margin: 20px auto;
    width: 100%;
}
.promo-card_content li{
    margin-left: 20px;
}

/*COPYPASTA*/

.copypasta{
    padding: 24px 0;
    overflow: hidden;
}

.copypasta_inner{
    margin: 24px auto;
    display: flex;
}
.copypasta_card{
    position: relative;
    width: 100%;
    max-width: 343px;
    height: 400px;
    cursor: pointer;
    margin: 0;
}
.copypasta_card_inner{
    position: relative;
    width: 100%;
    height: 100%;

    transform-style: preserve-3d;
    -webkit-transform-style: preserve-3d;
    transition: transform 1s cubic-bezier(.22,1,.36,1);
}

.copypasta_card.flipped .copypasta_card_inner{
    transform: rotateX(179deg);
    -webkit-transform: rotateX(179deg);
}

.copypasta_card_frontside,
.copypasta_card_backside{
    position:absolute;
    inset:0;
    display:flex;
    flex-direction:column;
    justify-content:flex-start;
    padding:20px;
    border-radius:16px;
    overflow:hidden;
    backface-visibility:hidden;
    -webkit-backface-visibility:hidden;
}

.copypasta_card_frontside{
    background:#EEF9FF;
}

.copypasta_card_backside{
    background:#1D1D1D;
    color:#fff;
    transform:rotateX(179deg);
    -webkit-transform:rotateX(179deg);
}

.copypasta_card_frontside::before{
    position:absolute;
    bottom:12px;
    right:12px;
    content:"";
    width:36px;
    height:36px;
    background:url(../img/plus_black.svg) center center no-repeat;
    background-size:contain;
}

.copypasta_card_backside::before{

    position:absolute;
    top:20px;
    right:20px;

    content:"✕";

    width:20px;
    height:20px;

    display:flex;
    justify-content:center;
    align-items:center;

    font-size:18px;
    font-weight:300;
}
.copypasta_card_title{
    font-size: 16px;
    font-weight: 600;
    line-height: 100%;
}
.copypasta_card_subtitle{
    font-size: 12px;
    line-height: 100%;
    margin-bottom: 4px;
}
.copypasta_navigation{
    display:flex;
    justify-content: flex-end;
    gap:12px;
}

.copypastaPrev,
.copypastaNext{
    width:36px;
    height:36px;
    border:none;
    cursor:pointer;
    border-radius:50%;
    font-size:20px;
    margin-top: 10px;
}
.copypastaPrev svg{
    transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
}

@media (min-width: 380px){
    .oformit span{
        display: block;
    }
    .oformit svg{
        display: none;
    }

}

@media (min-width: 480px){
    .types_modal_bottom_price{
        gap: 5px;
    }
    .oformit{
        padding: 6px 12px;
        font-size: 12px;
    }
    .types_modal_bottom_row_left{
        width: 60%;
    }
    .types_modal_bottom_price_black{
        font-size: 14px;
    }
    select#seans{
        font-size: 12px;
    }
    .types_modal{
        padding: 20px;
    }
    .types_modal_bottom_row_right{
        justify-content: flex-end;
        gap: 20px;
    }

}



@media (min-width: 768px){

    .desk-hide{
        display: none;
    }
    .mob-hide{
        display: block;
    }
    .h2{
        font-size: 56px;
        margin-top: 60px;
        margin-bottom: 48px;
    }
    .h3{
        font-size: 40px;
        margin-bottom: 24px;
    }
    .flex_h2{
        margin-top: 60px;
        margin-bottom: 24px;
    }
    .promo-card .flex_h2{
        gap: 24px;
    }
    .view_all{
        font-size: 14px;
    }
    .subtitle{
        font-size: 32px;
        margin-bottom: 40px;
        line-height: 36px;
        letter-spacing: 0.13;
    }
    .container, .container-section{
        max-width: 1180px;
        margin: 0 auto;
    }
    .main-btn{
        padding: 20px 48px;
        font-size: 32px;
        line-height: 155%;
        letter-spacing: 0%;
        border-radius: 72px;
        margin-top: 42px;
    }
    .teams_img.mobile{
        display: none;
    }
    .teams_img.desktop{
        display: block;
        margin-top: 30px;
    }
    .header{
        padding: 20px 0;
    }
    .header.fixed{
        transition: .7s;
        padding: 10px 0;
    }
    .header_right{
        display: flex;
        justify-content: space-between;
        align-items: center;
        max-width: 550px;
        width: 72%;
    }
    .svyaz{
        display: flex;
        flex-wrap: wrap;
        color: white;
        max-width: 130px;
    }
    .svyaz a{
        display: block;
        width: 100%;
        color: white;
        font-size: 16px;
    }
    .svyaz span{
        font-size: 12px;
        color: #fff;
        opacity: 50%;
        margin-left: auto;
        margin-right: 5px;
    }
    .header_social_flex{
        width: 120px;
    }
    .header_social_flex a{
        width: 32px;
        height: 32px;
    }
    .header_booking{
        display: inline-block;
        padding: 12px 16px;
        background: #89966F;
        text-align: center;
        color: white;
        border-radius: 48px;
        font-size: 17px;
    }
    .header_contacts{
        display: flex;
        justify-content: space-between;
    }
    .header_left{
        max-width: 200px;
        align-items: center;
    }
    .logo{
        max-width: 120px;
    }
    .header .logo.green{
        display: none;
    }
    .header.fixed .logo.green{
        display: block;
    }
    .sidebar ul{
        margin: 56px 0;
    }
    .sidebar ul li{
        margin: 24px 0;
    }
    .sidebar ul li a{
        font-size: 24px;
    }
    .intro{
        min-height: auto;
    }
    .intro-line{
        margin: 48px auto;
    }
    .glavnaya_content{
    justify-content:flex-end;
    align-items:flex-start;
    text-align:left;
/*    padding-bottom:80px;*/
}
    .intro::before{
        display: none;
    }
.intro_inner{
    padding-top: 120px;
    max-width: none;
}
    .h1{
        width: 100%;
        text-align: center;
        font-size: 56px;
    }
    .glavnaya_buttons{
        gap: 24px;
        margin: 42px auto;
        flex-wrap: nowrap;
    }
    .glavnaya_buttons a{
        width: 49%;
        margin: 0;
    }
    .main-btn{
        margin: 0 auto;
        margin-top: 42px;
        margin-bottom: 60px;
        font-size: 32px;
    }
    .copy{
    font-weight: 400;
    font-size: 32px;
    line-height: 42px;
    text-align: center;
    vertical-align: middle;
    color: #000;
    }
    .certificate_inner{
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 10px;
    }
    .certificate_card_frontside, .certificate_card_backside{
        padding: 48px;
    }
    .first .certificate_card_frontside, .first .certificate_card_backside{
        padding: 64px;
    }
    .certificate_card.first{
        width: 100%;
    }
    .certificate_card.first .certificate_card_text{
        margin-top: auto;
    }
    .certificate_card.first .certificate_card_backside{
        margin-top: 0;
    }
    .certificate_card.first .certificate_card_backside{
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
        flex-direction: row;
        justify-content: space-between;
    }
    .certificate_card.first .certificate_card_backside .certificate_card_text{
        width: 40%;
    }
    .certificate_card_text{
        margin-top: 0;
    }
    .certificate_card{
        width: 49%;
        max-width: none;
        margin: 0;
        height: 720px;
        box-sizing: border-box;
        border-radius: 30px;
        position: relative;
    }
    .certificate_card_title{
        font-size: 34px;
        line-height: 52px;
        letter-spacing: -0.14px;
        margin-bottom: 16px;
    }
    .certificate_card_subtitle{
        font-size: 20px;
        opacity: .8;
    }
    .certificate_card_frontside, .certificate_card_backside{
        justify-content: flex-start;
    }
    .certificate_card_img{
        display: block;
        width: 45%;
    }
    .certificate_card .cert_phone{
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        -webkit-transform:translateX(-50%);
    }
    .certificate_card_frontside::before{
        width: 36px;
        height: 36px;
    }
    .team{
        margin-bottom: 100px;
    }
    .video-section{
        margin: 48px 0;
    }
    .team_player{
        height: 600px;
        max-width: 100%;
        border-radius: 30px;
    }
    .video-section .team_player{
        margin: 24px 0;
    }
    .team_now{
        display: inline-block;
    }
    .team_buttons{
        right: 32px;
        bottom: 32px;
    }
    .team_player_title{
        font-size: 57px;
    }
    .team_player_subtitle{
        font-size: 16px;
    }
    .video-section .team_player_subtitle{
        display: block;
    }
    .team_player_text{
        font-size: 57px;
        left: 32px;
        bottom: 32px;
    }
    .articles_inner{
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 10px;
    }
    .articles_card.first{
        width: 100%;
        height: 516px;
    }
    .articles_card{
        width: 32%;
        max-width: none;
        margin: 0;
        height: 420px;
        padding: 32px;
        box-sizing: border-box;
        border-radius: 30px;
    }
    .articles_card_title{
        font-size: 22px;
    }
    .articles_card.first .articles_card_title{
        font-size: 56px;
        font-weight: 600;
        line-height: 60px;
    }
    .articles_card.fourth{
        display: flex;
    }
    .articles_card_metka{
        font-size: 16px;
    }
    .article_content li{
        margin: 20px 0 20px 15px;
    }
    .article{
        margin-bottom: 60px;
    }
    .article .studio_buttons{
        flex-direction: row;
        margin: 30px 0;
    }
    .article .studio_buttons a{
        width: 49%;
    }
    .app{
        padding: 60px 0;
    }
    .app_inner{
        padding: 0;
        border-radius: 30px;
        position: relative;
        height: 770px;
    }
    .app_inner .stores_btns{
        margin-top: 48px;
    }
    .app_frontside, .app_backside{
        padding: 100px 40px;
    }
    .app_inner_text{
        max-width: 40%;
    }
    .app_inner_img{
        margin: 0;
        display: block;
    }
    .app_backside .app_inner_img{
        display: block;
    }
    .footer{
        padding: 24px 0;
    }
    .footer_logo{
        width: 20%;
    }

    .footer_inner{
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding-bottom: 26px;
    }
    .footer .header_social_flex{
        justify-content: left;
        gap: 10px;
    }
    .footer_center{
        width: 30%;
    }
    .footer_right{
        display: flex;
        gap: 20px;
    }
    .footer_right a{
        color: #212121;
        font-size: 14px;
        display: flex;
        align-items: center;
        gap: 5px;
    }
    .footer_bottom{
        display: flex;
        justify-content: space-between;
        align-items: baseline;
        padding-top: 24px;
    }
    .footer_col{
        width: 23%;
    }
    .footer_col a{
        display: block;
        width: 100%;
        color: #2F2F2FB2;
        font-size: 14px;
        margin-bottom: 12px;
    }
    .footer_col a:first-child{
        color: #2F2F2F;
    }
    .footer_col.col-1 a{
        margin-bottom: 24px;
    }
    .footer_col.col-1 a, .footer_col.col-5 a{
        color: #2F2F2F;
    }
    .trust{
        margin-bottom: 100px;
    }
    .trust .h2{
        font-size: 32px;
    }
    .trust_inner{
        padding: 42px 24px;
    }
    .help_item{
        padding: 32px;
        height: 600px;
    }
    .help_advantages{
        font-size: 18px;
    }
    .help_title {
        font-size: 28px;
        font-weight: 600;
        line-height: 100%;
        margin-top: 10px;
    }
    .help_title_black {
        font-size: 28px;
        font-weight: 600;
        line-height: 100%;
        margin-top: 10px;
    }
    .help{
        overflow: hidden;
        margin-bottom: 90px;
        padding-bottom: 30px;
    }
    .help .helpSwiper{
        overflow: visible;
        max-width: 1600px;
        margin: 60px 0 0;
    }
    .help_item::before{
        width: 36px;
        height: 36px;
        bottom: 25px;
        right: 25px;
    }
/* TYPES   */
    .types_item{
        padding: 32px;
        height: 500px;
        border-radius: 30px;
    }
    .types_price{
        font-size: 20px;
    }
    .types_title {
        font-size: 33px;
        font-weight: 600;
        line-height: 100%;
        margin-top: 10px;
        margin-bottom: 10px;
    }
    .types{
        overflow: hidden;
    }
    .types .typesSwiper{
        overflow: visible;
        max-width: 1600px;
        margin: 60px 0;
    }
    .types_item::before{
        width: 36px;
        height: 36px;
        bottom: 25px;
        right: 25px;
    }
    .types_sort{
        padding: 12px;
        border-radius: 120px;
        cursor: grab;
        user-select: none;
        -webkit-overflow-scrolling: touch;
        height: 85px;
        /* border-right: 12px solid #F7F7F8; */
    }
    .types_sort.dragging {
    cursor: grabbing;
}
    .massage-card_types_modal{
        padding: 32px;
    }
    .types_btn{
        font-size: 20px;
        padding: 16px 32px;
    }
    .types_modal_bottom_time{
        gap: 10px;
        padding: 12px 15px;
        border: 1px solid #6C6C6C;
        border-radius: 28px;
        font-size: 14px;
    }
    .types_modal_bottom_time svg{
        width: 18px;
        height: 18px;
    }
    .types_modal{
        padding: 20px;
    }
    .types_modal_window {
        max-width: 760px;
        padding: 30px;
    }
    .types_modal_bottom_name{
        font-size: 16px;
    }
    select#seans{
        font-size: 14px;
        padding: 12px 40px 12px 12px;
        border-radius: 120px;
    }
    .types_h1{
        font-size: 40px;
        margin-bottom: 20px;
    }
    .types_modal_bottom_row_right{
        width: 38%;
    }
    .oformit{
        padding: 12px 22px;
        font-size: 14px;
    }
    .types_modal_bottom_price_black{
        font-size: 20px;
    }
    .types_modal_bottom_price_red{
        font-size: 14px;
    }
    .types_modal_sort_top{
        font-size: clamp(24px,26px,32px);
        gap: 30px;
    }
    .types_modal_sort_rank_btn{
        font-size: 16px;
    }
    .types_modal_sort_rank{
        padding: 10px 10px;
        border-radius: 30px;
    }
    .types_modal_bottom_row_left{
        width: 55%;
        max-width: 270px;
    }
    .types_podrobnee{
        max-width: 330px;
        font-size: 20px;
        line-height: 100%;
        margin: 40px auto 20px;
    }
    .info{
        margin-bottom: 120px;
    }
    .info_inner{
        display: flex;
        justify-content: space-between;
        gap 24px;
    }
    .info_card{
        width: 32%;
        max-width: none;
        height: 520px;
        padding: 24px;
        margin: 0;
    }
    .info_card_title{
        margin-top: 0;
        font-size: 30px;
        font-weight: 500;
    }
    .info_card:before {
        width: 36px;
        height: 36px;
        bottom: 25px;
        right: 25px;
    }
    .faq_question{
        padding: 30px 15px;
    }
    .faq_title{
        font-size: 24px;
        line-height: 100%;
        font-weight: 500;
    }
    .faq_answer{
        font-size: 20px;
        line-height: 155%;
        font-weight: 400;
    }
    .faq_title.active + .faq_answer {
        padding-top: 20px;
    }

    .profesional_inner{
        flex-direction: row;
        max-width: none;
        flex-wrap: nowrap;
        padding: 40px;
        text-align: left;
    }
    .profesional_left{
        width: 50%;
    }
    .profesional_right{
        width: 40%;
    }
    .profesional_title{
        font-size: 48px;
    }
    .profesional_text{
        font-size: 20px;
        line-height: 155%;
    }
    .profesional_btn{
        margin: 0;
        margin-left: auto;
    }
    .profesional_img{
        margin: 0;
        margin-left: auto;
    }
    .prices{
        margin-top: 200px;
        margin-bottom: 80px;
    }
    .prices_item {
        padding: 32px;
        height: 500px;
        border-radius: 30px;
        margin: 20px auto;
    }
    .prices_title {
        font-size: 33px;
        font-weight: 600;
        line-height: 100%;
        margin-top: 10px;
        margin-bottom: 10px;
    }
    .prices_price {
        font-size: 20px;
    }
    .prices_item::before{
        content: none;
    }
    .prices_show-all {
        display: inline-block;
        text-align: center;
        padding: 12px 53px;
        color: black;
        background: white;
        border-radius: 72px;
        white-space: nowrap;
    }
    .prices_bottom{
        display: flex;
        align-items: flex-end;
        justify-content: space-between;
    }
    .promo-page{
        margin-top: 200px;
    }
    .promo-page .subtitle{
        font-size: 20px;
        line-height: 146%;
    }
    .copypasta_card{
        height: 700px;
        margin: 0;
        max-width: none;
    }
    .copypasta_card_frontside, .copypasta_card_backside{
        padding: 32px;
    }
    .copypasta_card_title{
        font-size: 32px;
        font-weight: 600;
        line-height: 100%;
    }
    .copypasta_card_subtitle{
        font-size: 20px;
        font-weight: 500;
        line-height: 100%;
        margin-bottom: 20px;
    }
    .copypasta_card_frontside::before{
        right: 32px;
        bottom: 32px;
    }
    .app .h2 {
        font-size: 42px;
    }

}



@media (min-width: 1200px){
    .header_right{
        width: 55%;
    }
    .types_modal_bottom_price_black{
        font-size: 24px;
    }
    .types_modal_sort_top{
        margin-bottom: 32px;
    }
    .types_modal_sort_rank{
        margin-bottom: 30px;
    }
    .types_modal_bottom_price{
        gap: 5px;
    }
    .types_modal_bottom_row{
        padding: 20px 0;
    }
    .types_modal_window{
        max-width: 1000px;
        padding: 50px;
    }
    .types_modal{
        padding: 80px;
    }
    .types_modal_bottom_time{
        font-size: 16px;
    }
    .types_modal_bottom_name{
        font-size: 20px;
    }
    select#seans{
        font-size: 16px;
        padding: 12px 40px 12px 12px;
        border-radius: 120px;
    }
    .oformit {
        padding: 12px 32px;
        font-size: 16px;
    }
    .types_modal_bottom_row_right {
        width: 35%;
    }
    .articles_inner{
        gap: 20px;
    }
    .certificate_inner{
        gap: 20px;
    }
        .prices_btns_inner{
        max-width: none;
        display: flex;
        justify-content: space-between;
    }
    .prices_btns{
        width: 60%;
        margin: 0;
    }
    .prices_btn{
        padding: 16px;
        font-size: 18px;
    }
    .prices_more{
        width: 35%;
        font-size: 18px;
    }
    .promo-card .container-section{
        max-width: 800px;
    }
    .certificate_card_subtitle{
        font-size: 28px;
    }

}

@media (max-height: 700px) {
  .glavnaya_video_btn  {
     bottom: 100px;
  }
}

@media (max-width: 320px){
    .types_modal_bottom_time{
        padding: 0;
    }

    .types_modal_window{
        padding-left: 10px;
        padding-right: 10px;
    }
    .types_modal_bottom_row_left{
        width: 65%;
    }
    .types_modal_sort_rank_btn{
        font-size: 10px;
    }
    .types_modal_sort_top_btn{
        font-size: 12px;
    }
    .types_h1{
        font-size: 16px;
    }

}
@media (max-width: 340px){
    .header_left{
        width: 30%;
    }
    .header_right{
        width: 19%;
    }
    .flex_h2 .view_all{
        display: none;
    }
    .oformit{
        padding: 2px;
    }
    .types_modal_bottom_row_left{
        width: 65%;
    }
    select#seans{
        padding-right: 8px;
    }
}
/*
@media (max-width: 768px) {
  .sidebar {
    width: 100%;
  }
}
*/
@media (min-width: 950px){
    .app_inner_img{
/*
        position: absolute;
        right: 10%;
        bottom: 0;
        display: block;
        max-width: 100%;
*/
    }
    .app_frontside, .app_backside{
        padding: 100px 80px;
    }
    .app .h2 {
        font-size: 56px;
    }
    .certificate_card_title{
        font-size: 56px;
    }

}

@media(min-width: 1400px){
    .h1{
        font-size: 72px;
    }
}
@media(min-width: 1600px){
    .glavnaya_video_btn{
        right: -10%;
        bottom: 30px;
    }
}
@media(min-width: 1800px){
    .glavnaya_video_btn{
        right: -20%;
        bottom: 30px;
    }
}

@media(max-width: 420px){
.types_modal_bottom_time {
    padding: 8px;
}
.types_modal_bottom_row_right {

    gap: 10px;
}
.types_modal_bottom_row {

    padding: 10px 0;

}


}
