@font-face {
    font-family: 'a_AvanteInt Bold';
    font-style: normal;
    font-weight: 700;
    font-display: fallback;
    src: local('a_AvanteInt Bold'), local('a_AvanteInt-Bold'),
    url(/src/css/fonts/a_avanteint-bold_931d8eb596be8bd187b2546abec763f7.woff) format('woff'),
    url(/src/css/fonts/a_avanteint-bold_931d8eb596be8bd187b2546abec763f7.ttf) format('truetype');
}

@font-face {
    font-family: 'a_AvanteInt Book';
    font-style: normal;
    font-weight: 400;
    font-display: fallback;
    src: local('a_AvanteInt Book'), local('a_AvanteInt-Book'),
    url(/src/css/fonts/a_avanteint-book_491a7e2f7fd9b68feb7dcc05ac89e365.woff) format('woff'),
    url(/src/css/fonts/a_avanteint-book_491a7e2f7fd9b68feb7dcc05ac89e365.ttf) format('truetype');
}


:root {
    --background-main: #fff;
    --color-violet: #7115d6;
    --color-violet-opacity: #9b3cff59;
    --color-violet-lite: #000; /* #c7a1e5; */
    --color-pink: #f237f5;
    --color-white: #fff;
    --color-black: #21004d;
    --color-developer: #afafaf;
}

* {
    font-family: 'a_AvanteInt Book', arial;
    padding: 0;
    margin: 0;
    text-decoration: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    text-shadow: rgba(0, 0, 0, .01) 0 0 1px;
    border: none;
    outline: none;
    background: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    color: var(--color-black);
}

body {
    min-width: 260px
}

h1 {
    font-size: 50px;
}

.font-light {
}

.font-regular {
    font-family: 'a_AvanteInt Book', arial;
}

.font-medium {
    font-family: 'a_AvanteInt Bold', arial;
}

.text-l {
    text-align: left !important;
}

.text-r {
    text-align: right !important;
}

.text-c {
    text-align: center !important;
}

.text-j {
    text-align: justify !important;
}

.item-main {
    position: relative;
    padding: 0;
    background: url("/src/image/bg/shine.png") center, url("/src/image/bg/line.png") bottom no-repeat;
    background-size: contain, contain;
    background-repeat: no-repeat, repeat-x;
    height: 100vh;
    min-height: 868px;
}

.item-main:before {
    content: " ";
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 404px;
    height: 340px;
    background: url("/src/image/lak_tiny.png") right;
    z-index: 1;
    opacity: 0.9;
}

.item-main__menu {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
}

.item-main__menu ul {
    font-size: 18px;
    opacity: 0.7;
    list-style: none;
    width: 100%;
    text-align: center;
    margin: 30px 0;
}

.item-main__menu ul li {
    color: var(--color-violet-lite);
    display: inline-block;
    text-transform: uppercase
}

.item-main__menu ul li a {
    text-decoration: none;
    color: var(--color-black);
}

.item-main__menu ul li:not(:first-child) {
    padding-left: 20px
}

.item-main__menu ul li:first-letter {
    color: var(--color-pink);
}

.item-main__wrapper {
    height: 100%;
    padding-bottom: 20px;
}

.item-main__wrapper:after {
    content: '';
    position: absolute;
    width: 50%;
    height: 95%;
    min-height: 815px;
    bottom: 0;
    right: 0;
    background: url("/src/image/girl.png") no-repeat bottom right;
    background-size: contain;
    z-index: 10;
}

.item-main__logo {
    margin-top: 12%;
    position: relative;
}

.item-main__logo img {
    max-width: 60%;
}

.item-main__desc {
    margin-top: 5%;
    text-align: left;
    z-index: 1001;
    position: relative;
}

.item-main__desc .desc__item {
    font-size: 34px;
    text-align: right;
    display: inline-block;
    width: 558px;
    margin-bottom: 10px;
}

/* additional */
.no-scroll {
    overflow: hidden !important;
}

.mobile-menu {
}

.mobile-menu .close-btn {
    position: relative;
    padding: 30px 5px;
    padding-bottom: 0;
    margin-right: 20px;
}

.mobile-menu .btn-container {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    position: absolute;
    right: 0;
    top: 0;
}

.mobile-menu .close-btn.open-btn {
    width: auto;
    height: auto;
    padding: 20px 5px;
    padding-top: 30px;
    padding-left: 20px;
    z-index: 4999;
}

.mobile-menu .close-btn .animated-icon {
    width: 30px;
    height: 20px;
    position: relative;
    margin: 0px;
    transform: rotate(0deg);
    transition: .5s ease-in-out;
    cursor: pointer;
    padding-top: 10px;
    padding-bottom: 30px;
}

.mobile-menu .close-btn .animated-icon span {
    background: #7011d6;
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    border-radius: 9px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: .25s ease-in-out;
}

.mobile-menu .close-btn .animated-icon span:nth-child(1) {
    top: 0
}

.mobile-menu .close-btn .animated-icon span:nth-child(2) {
    top: 10px
}

.mobile-menu .close-btn .animated-icon span:nth-child(3) {
    top: 20px
}

.mobile-menu .close-btn .animated-icon.open span:nth-child(1) {
    top: 11px;
    transform: rotate(135deg);
}

.mobile-menu .close-btn .animated-icon.open span:nth-child(2) {
    opacity: 0;
    left: -60px;
}

.mobile-menu .close-btn .animated-icon.open span:nth-child(3) {
    top: 11px;
    transform: rotate(-135deg);
}


.mobile-menu .item-main__menu {
    max-width: 100% !important;
    height: 100vh;
    width: 100%;
    padding: 0 !important;
    display: flex;
    justify-content: flex-end;
    position: fixed;
    overflow: hidden;
    overflow-y: scroll;
    right: -9000px;
    left: unset;
    /*right: 0;*/
    top: 0;
    background: rgb(251, 245, 255);
    z-index: 5000;
}

.mobile-menu .item-main__menu .container {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    max-width: 100% !important;
    padding: 0 !important;
}

.mobile-menu .item-main__menu ul {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    margin: 0 !important;
    height: 100vh !important;
}

.mobile-menu .item-main__menu ul li {
    padding: 10px;
    padding-right: 35px;
    font-size: 22px;
    width: 100%;
    text-align: right;
}

.mobile-menu .item-main__menu ul li.active {
    background: rgb(244, 230, 255);
}

.item-training__wrapper:after {
    background: url("/src/image/girl_with_glass.png") no-repeat bottom right;
    background-size: contain;
}

.custom-item {
    margin-top: 8%;
    margin-left: -25%;
}

.item-main__desc .desc__item.head_item {
    text-transform: uppercase;
    padding-bottom: 20px;
    font-size: 50px;
    color: #7011d6;
    text-align: center;
    font-stretch: normal;
    line-height: normal;
    letter-spacing: normal;
    width: 100%;
    margin-bottom: 0;
}

.item-main__desc .desc__item.desc__custom, .item-main__desc .desc__custom-purple {
    font-size: 36px;
    font-stretch: normal;
    line-height: 1.33;
    letter-spacing: normal;
    text-align: center;
    color: #290066;
    width: 100%;
}

.item-main__desc .desc__custom-purple {
    color: #8200e9;
}

.item-main__desc .item-training__up {
    margin-top: 5%;
}

.h1-custom__purple {
    font-size: 48px;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    line-height: normal;
    letter-spacing: normal;
    text-align: center;
    color: #240059;
}

.h1-custom__purple span {
    color: #ec3dfb !important;
}

.head-training-container {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-pack: justify !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
    box-shadow: 0 2px 4px 0 rgba(112, 17, 214, 0.5);
    background-color: #ffffff;
    position: relative;
    margin-top: 32px;
}

.head-training-container .item-image {
    max-width: 445px;
}

.head-training-container .item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.head-training-container .item-desc {
    padding: 35px;
    max-width: 655px;
}

.head-training-container .item-desc .title, .head-training-container .item-desc .title div {
    font-size: 50px;
    line-height: normal;
    letter-spacing: normal;
    color: #7115d6;
    text-align: left;
}

.head-training-container .item-desc .title span {
    display: inline-block;
    color: #21004d;
}

.head-training-container .item-desc .desc {
    color: #290066;
    font-size: 24px;
    line-height: 1.5;
    text-align: left;
}

.head-training-container .item-desc .desc span {
    color: #7011d6;
}

.head-training-container .item-desc .desc div {
    margin-top: 15px;
}

.head-training-container .item-desc .desc div ul li {
    margin-left: 25px;
}

.training-services .card-services__body {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-pack: justify !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
}

.training-services .card-services__body .card-services__description p, .training-services .card-services__body .card-services__description span {
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    line-height: normal;
    letter-spacing: normal;
    font-size: 24px !important;
}

.training-services .card-services__body .card-services__description span {
    color: #7011d6;
}

.training-services .card-services__body .card-services__description p {
    color: #240059;
    margin-top: 15px;
    margin-bottom: 15px;
}

.training-services .card-services__body .card-services__description ul li {
    margin-left: 25px;
    line-height: 1.33;
    font-size: 18px !important;
}

.training-services .card-services__body .card-services__cost {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
    padding: 0 30px !important;
    min-width: 380px;
}

.training-services .card-services__body .card-services__cost div {
    margin-bottom: 20px;
}

.training-services .card-services__body .card-services__cost div:last-child {
    margin-bottom: 0;
}

.training-services .card-services__body .card-services__cost p, .training-services .card-services__body .card-services__cost p strong {
    font-size: 30px !important;
    line-height: 1.2 !important;
    text-align: center !important;
    color: #7a10e0 !important;
}

.training-services .card-services__body .card-services__cost .cost-sale {
    position: relative;
}

.training-services .card-services__body .card-services__cost .cost-sale:before {
    content: "";
    width: 100%;
    height: 2px;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translate(0, -50%);
    background: #7a10e0;
}

.training-services .card-services__body .card-services__cost .sale-block {
    display: flex;
    align-items: center;
    justify-content: center;
}

.training-services .card-services__body .card-services__cost .sale-block .sale-text {
    max-width: 213px;
    margin-right: 1rem;
    margin-bottom: 0;
}

.training-services .card-services__body .card-services__cost .sale-block .sale-text span, .training-services .card-services__body .card-services__cost .sale-block .sale-text p {
    font-size: 24px !important;
    font-weight: bold;
    text-align: right !important;
    font-family: 'a_AvanteInt Bold', arial;
    color: #b620e0 !important;
}

.training-services .card-services__body .card-services__cost .sale-block .sale-text p {
    font-size: 18px !important;
}

.training-services .card-services__body .card-services__cost .sale-block .sale {
    position: relative;
    min-width: 138px;
    min-height: 138px;
}

.training-services .card-services__body .card-services__cost .sale-block .sale .sale-image {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}

.training-services .card-services__body .card-services__cost .sale-block .sale .real-cost {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mt-8 {
    margin-top: 8rem
}

.training-services .card-services__body .card-services__cost .sale-block .sale .real-cost strong {
    font-size: 36px;
    line-height: 1;
    font-weight: bold;
    color: #fff !important;
    font-family: 'a_AvanteInt Bold', arial;
}

.fw-normal {
    font-weight: normal !important;
}


.training-services .card-services__body .card-services__cost p strong {
    font-weight: bold;
}

.training-services .card-services__body .card-services__description {
    padding: 30px 22px !important;
    padding-bottom: 50px !important;
    text-align: left;
}

.training-services {

}

.item-stock__training {
    overflow-x: unset !important;
    background: #FFFFFF !important
}

.item-stock__training::before {
    content: none !important;
}

.item-stock__training::after {
    content: " ";
    position: absolute;
    top: -100px;
    right: 0;
    width: 294px;
    height: 360px;
    background: url(/src/image/Gift.png);
    transform: rotate(-180deg);
    z-index: 1;
}

.item-stock__training p, .item-stock__training span {
    font-size: 36px;
    line-height: 1.67;
    text-align: center;
    color: #240059;
}

.item-stock__training span {
    color: #7115d6;
}

.item-stock__training .h1-custom__purple {
    margin-top: 30px;
    margin-bottom: 0;
}

.item-stock__training .small {
    font-size: 24px;
    margin-top: 10px;
}

.mt-50 {
    margin-top: 50px;
}

.developer img {
    width: 103px;
    height: 38px;
    object-position: center;
    margin-left: 10px;
}

/**/
.item-main__desc .desc__item.up {
    text-transform: uppercase;
    padding-bottom: 20px;
    font-size: 34px;
}

.item-main__stock {
    margin-top: 5%;
}

.item-main__stock .item-main__left {
    margin-top: 5%
}

.item-main__stock .stock__item {
    font-size: 26px;
}

.item-main__stock .stock__item2 {
    font-size: 26px;
    display: none!important;
}

.item-main__stock .stock__item2 .stock__item {
    margin-left: 10px
}

.item-main__stock .stock__item.conditions {
    font-size: 20px;
}

.item-main__stock .stock__item.stock__syllable {
    font-size: 28px;
    text-transform: uppercase;
    margin: -4px 5px 0 0;
}

.item-main__stock .stock__item .stock__procent {
    background: url("/src/image/90.png") no-repeat;
    width: 166px;
    height: 60px;
    display: inline-block;
}

.item-main__stock .stock__item2 .stock__procent {
    background: url("/src/image/20.png") no-repeat;
    width: 166px;
    height: 60px;
    display: inline-block;
}

.item-main__right {
    margin: 30px auto 0;
    text-align: center;
}

.item-main__right a {
    display: flex;
    width: 100%;
}

.item-main__right .item-main__button {
    font-size: 30px;
    width: 348px;
    color: var(--color-white);
    height: 56px;
    text-align: center;
    background: url(/src/image/btn-mail.png) no-repeat, url(/src/image/btn-hover.png) no-repeat;
    background-size: contain;
    background-position: center;
    z-index: 102;
    margin: 0 auto;
    cursor: pointer;
}

.item-main__right .item-main__button:hover {
    background-image: url("/src/image/btn-hover.png");
    background-size: contain;
}

.item-map {
    min-height: 320px
}

.item-about {
    padding-top: 40px;
    position: relative;
    padding-bottom: 67px;
    text-align: center;
    background: url("/src/image/bg/about.jpg");
    background-size: cover
}

.item-about:before {
    content: " ";
    position: absolute;
    bottom: -50px;
    right: 0;
    width: 360px;
    height: 489px;
    background: url("/src/image/Kljaks-1.png") right;
    z-index: 1;
    opacity: 0.7;
}

.item-about h1 {
    text-transform: uppercase;
}

.item-about .item-about__desc {
    padding-top: 30px;
    margin-bottom: 60px;
    font-size: 26px;
    line-height: 2;
}

.item-about .card-conditions {
}

.item-about .card-conditions .card-conditions__items {
}

.item-about .card-conditions .card-conditions__icon {
    background: url("/src/image/cards_conditions.png");
    width: 126px;
    height: 126px;
    margin: 0 auto;
}

.item-about .card-conditions .card-conditions__icon.order1 {
    background-position-x: 0
}

.item-about .card-conditions .card-conditions__icon.order2 {
    background-position-x: -126px;
}

.item-about .card-conditions .card-conditions__icon.order3 {
    background-position-x: -252px;
}

.item-about .card-conditions .card-conditions__icon.order4 {
    background-position-x: -378px;
}

.item-about .card-conditions .card-conditions__icon.order5 {
    background-position-x: -504px;
}

.item-about .card-conditions .card-conditions__title {
    margin-top: 60px;
    margin-bottom: 20px;
}

.item-about .card-conditions .card-conditions__title h4 {
    font-size: 18px
}

.item-about .card-conditions .card-conditions__description {
    padding: 8px
}

.item-about .card-conditions .card-conditions__description p {
    font-size: 16px
}


.item-service {
    position: relative;
    padding-top: 40px;
    padding-bottom: 90px;
    text-align: center;
    background: url("/src/image/bg/french.png") no-repeat bottom, url("/src/image/bg/line2.png") bottom no-repeat;
    background-repeat: no-repeat, repeat-x;
    background-size: contain;
}

.item-service:before {
    content: " ";
    position: absolute;
    bottom: 50px;
    left: 0;
    width: 128px;
    height: 348px;
    background: url("/src/image/Kljaks-2.png") left;
    opacity: 0.7;
}

.item-service h1 {
    text-transform: uppercase;
    color: var(--color-black);
    margin-bottom: 40px;
}

.item-service h1 span {
    color: var(--color-violet);
}

.item-service .card-services {
}

.item-service .card-services .card-services__item {
    padding: 10px;
}

.item-service .card-services .card-services__body {
    background: var(--color-white);
    box-shadow: 0 0 10px rgba(249, 175, 249, 0.3);
}

.item-service .card-services .card-services__body .card-services__icon {
    width: auto;
}

.item-service .card-services .card-services__body .card-services__icon img {
    width: 100%;
}

.item-service .card-services .card-services__body .card-services__title {
    margin-top: 10px;
    margin-bottom: 10px;
    text-transform: uppercase;
    color: var(--color-violet);
}

.item-service .card-services .card-services__body .card-services__title h4 {
    font-size: 19px;
}

.item-service .card-services .card-services__body .card-services__description {
    padding: 8px;
    min-height: 145px;
}

.item-service .card-services .card-services__body .card-services__description p {
    font-size: 16px;
}

.item-service .card-services .card-services__body .card-services__cost {
    font-size: 16px;
    padding: 20px;
    background: #fef8fc;
    text-align: right;
}

.item-service .card-services .card-services__body .card-services__cost p {
    font-size: 22px;
    text-align: center;
    color: var(--color-pink)
}

.item-works {
    position: relative;
    padding-top: 40px;
    padding-bottom: 90px;
    text-align: center;
    background: url("/src/image/bg/works.jpg") no-repeat;
    background-size: cover;
}

.item-works:before {
    content: " ";
    position: absolute;
    bottom: -60px;
    right: 0;
    width: 226px;
    height: 291px;
    background: url("/src/image/Kljaks-3.png") right;
    z-index: 1;
    opacity: 0.7;
}

.item-works h1 {
    text-transform: uppercase;
    color: var(--color-black);
    margin-bottom: 40px;
}

.item-works h1 span {
    color: var(--color-pink);
}

.item-works #links {
    font-size: 0; /* text-align: left; */
    padding: 0;
    margin: 0;
    z-index: 10;
}

.item-works #links a {
    display: inline-block;
    padding: 0px 1px 1px 0;
    margin: 0;
}

.item-works #links a img {
    width: 141px;
    height: 141px;
}

.item-works .small {
    height: auto;
    width: 100%; /* padding: 1px; */
}

.item-works .master__body {
    align-items: normal;
}

.item-works .master__photo {
    width: auto;
    height: auto;
    border-radius: 50%;
    border: 10px solid var(--color-violet-opacity);
    background-size: calc(100% + 20px);
    background-position: center;
    background-repeat: no-repeat;
    padding: calc(50% - 10px);
}


.item-works .master__photo.k {
    background-image: url(/src/image/master/k.png);
}

.item-works .master__photo.i {
    background-image: url(/src/image/master/i.png);
}

.item-works .master__photo.e {
    background-image: url(/src/image/master/e.png);
}

.item-works .master__photo.k2 {
    background-image: url(/src/image/master/k2.png);
}

.item-works .master__photo.v {
    background-image: url(/src/image/master/v.png);
}

.item-works .master__photo.m {
    background-image: url(/src/image/master/m.png);
}

.item-works .master__photo.dr {
    background-image: url(/src/image/master/dr.png);
}

.item-works .master__photo.an {
    background-image: url(/src/image/master/an.png);
}

.item-works .master__photo.ti {
    background-image: url(/src/image/master/ti.png);
}


.item-works .master__description p {
    text-align: left; /* padding-right: 20px; */
}

.item-works .master__description .master__name {
    text-transform: uppercase;
    color: var(--color-pink);
    font-size: 24px;
    margin-bottom: -8px;
    padding-top: 27px;
}

.item-works .master__description .master__title {
    font-size: 14px;
    margin-bottom: 12px;
    margin-top: 5px;
}

.item-works .master__description .master__experience { /* font-size: 18px; *//* margin-bottom: 12px; */
}

.item-works .master__description .master__like {
    font-size: 18px;
    padding-bottom: 8px;
    line-height: 1.8;
    padding-right: 0px;
}

.item-works .master__description ul {
    list-style: none
}

.item-works .master__description ul li {
    text-align: left;
    padding-left: 20px;
    font-size: 18px;
    line-height: 1.5;
    position: relative;
}

.item-works .master__description ul li:before {
    content: '-';
    position: absolute;
    top: 0;
    left: 0;
}

.item-works .master__description span {
    color: var(--color-violet);
}

.menu-height-margin {
    height: 141px;
}

.item-price {
    position: relative;
    padding: 0;
    background-size: contain;
    overflow-x: hidden;
}

.item-price .price-block-container {
    padding-top: 141px;
    position: relative;
    overflow: hidden;
}

.item-price .price-block-container .item-main__logo {
    text-align: center;
    margin-bottom: 60px;
    margin-top: 0;
}

.item-price .price-block-container .item-main__logo img {
    max-width: 540px;
}

.item-price .decoration-element {
    position: absolute;
}

.item-price .decoration-element.img-1 {
    width: 360px;
    height: 489px;
    background: url(../image/price-list/price-list-1st.png) center no-repeat;
    background-size: contain;
    top: 290px;
    right: 0;
}
.item-price .decoration-element.img-2 {
    width: 128px;
    height: 348px;
    background: url(../image/price-list/price-list-second.png) center no-repeat;
    background-size: contain;
    top: 30%;
    left: 0;
}
.item-price .decoration-element.img-3 {
    width: 226px;
    height: 291px;
    background: url(../image/price-list/price-list-third.png) center no-repeat;
    background-size: contain;
    right: 0;
    top: 42%;
}

.item-price .price-block-container:before {
    content: '';
    display: block;
    position: absolute;
    background: url("/src/image/bg/squared-bg-line.svg") top right no-repeat repeat;
    width: 100%;
    height: 76%;
    top: 0;
    right: -223px;
}

.item-price h1 {
    text-transform: uppercase;
    text-align: center;
    color: var(--color-black);
    margin-bottom: 60px;
}

.item-price h1 span {
    color: var(--color-violet);
}

.item-price h2.price-subtitle {
    font-size: 36px;
    line-height: 42px;
    color: var(--color-violet);
    text-transform: uppercase
}

.item-price .manicure-list {
    margin-bottom: 60px;
}

.item-price .manicure-list ul {
    list-style: none;
    margin-top: 15px;
    padding-left: 200px;
}

.item-price .manicure-list ul li {
    position: relative;
    margin-bottom: 40px;
    padding-left: 24px;
    font-size: 24px;
    line-height: 28px;
    color: #240059;
    max-width: 698px;
}

.item-price .manicure-list ul li:before {
    content: '';
    display: block;
    width: 8px;
    height: 8px;
    position: absolute;
    left: -10px;
    top: 10px;
    background: url(../image/bg/list-style-icon.png) center no-repeat;
    background-size: contain
}

.item-price .price-subtitle span.lowercase {
    text-transform: lowercase;
    color: #7115D6
}

.item-stock {
    overflow-x: hidden;
    -ms-overflow-x: hidden;
    padding-top: 40px;
    padding-bottom: 90px;
    position: relative;
    text-align: center;
    background: rgba(250, 245, 255, 0.5) url(/src/image/bg/sales.png) no-repeat left center;
    background-position-x: 50%;
}

.item-stock:before {
    content: " ";
    position: absolute;
    bottom: 0;
    right: -400px;
    width: calc(37% + 400px);
    height: 100%;
    background: rgba(243, 223, 249, 0.4);
    -moz-transform: scaleX(1) scaleY(1) scaleZ(1) skewX(-10deg);
    -webkit-transform: scaleX(1) scaleY(1) scaleZ(1) skewX(-10deg);
    transform: scaleX(1) scaleY(1) scaleZ(1) skewX(-10deg);
}

.item-stock .container {
}

.item-stock h1 {
    text-transform: uppercase;
    color: var(--color-black);
    margin-bottom: 40px;
}

.item-stock h1 span {
    color: var(--color-violet);
}

.item-stock .card-stocks {
    z-index: 10;
}

.item-stock .card-stocks .card-stock__item {
    z-index: 100;
}

.item-stock .card-stocks .card-stocks__title {
    font-size: 24px;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.item-stock .card-stocks .card-stocks__title.text-r {
    padding-right: 80px;
}
.item-stock .card-stocks .card-stocks__title.text-l {
    padding-left: 80px;
}

.item-stock .card-stocks .card-stocks__title div {
    color: var(--color-pink);
    font-size: 35px;
    display: inline-block;
}

.item-stock .card-stocks .card-stocks__description {
    margin-bottom: 20px;
}


.item-order {
    text-align: center;
    padding-top: 40px;
    position: relative;
    padding-bottom: 90px;
}

.item-order:before {
    content: " ";
    position: absolute;
    top: -300px;
    left: 0;
    width: 294px;
    height: 360px;
    background: url("/src/image/Gift.png");
    z-index: 1;
}


.item-order h1 {
    text-transform: uppercase;
    color: var(--color-black);
    margin-bottom: 40px;
}

.item-order h1 span {
    color: var(--color-pink);
}

.item-order p.press {
    font-size: 28px
}

.item-order p {
    color: var(--color-black);
    font-size: 22px
}

.item-order button {
    font-size: 30px;
    width: 348px;
    color: var(--color-white);
    height: 56px;
    text-align: center;
    background: url(/src/image/btn-mail.png) no-repeat;
    background-size: contain;
    background-position: center;
    z-index: 102;
    margin: 30px;
    cursor: pointer;
}

.item-order a {
    display: flex;
    justify-content: center;
}


.item-contact {
    text-align: center;
    padding-top: 40px;
    position: relative;
    padding-bottom: 40px;
    background: #fbf7ff;
}

.item-contact h1 {
    text-transform: uppercase;
    color: var(--color-black);
    margin-bottom: 40px;
}

.item-contact h1 span {
    color: var(--color-violet);
}

/*.item-contact .card-contacts {padding-right: 20px}*/
.item-contact .card-contacts .card-contacts__title {
    text-align: left;
    margin: 20px 0 30px 0;
    font-size: 20px;
}

.item-contact .card-contacts .card-contacts__desc {
    text-align: left;
    margin: 20px 0 30px 0;
    font-size: 24px;
}

.item-contact .card-contacts .card-contacts__desc .card-contacts__phone a {
    text-decoration: none;
    color: var(--color-black);
    cursor: pointer;
}

.item-contact .card-contacts .card-contacts__desc .card-contacts__soc {
    display: inline-block;
    position: relative;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin: 10px 10px 0 0;
}

.item-contact .card-contacts .card-contacts__desc .card-contacts__soc:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    display: block;
    background-position: center;
    background-size: 60%;
    background-repeat: no-repeat;
    height: 100%;
    filter: invert(100%);
}


.item-contact .card-contacts .card-contacts__desc .card-contacts__soc.vk {
    background-color: #4c75a3;
}

.item-contact .card-contacts .card-contacts__desc .card-contacts__soc.vk:before {
    background-image: url(/src/image/brands/vk.svg);
}

.item-contact .card-contacts .card-contacts__desc .card-contacts__soc.wa {
    background-color: #25D366;
}

.item-contact .card-contacts .card-contacts__desc .card-contacts__soc.wa:before {
    background-image: url(/src/image/brands/whatsapp.svg);
}

.item-contact .card-contacts .card-contacts__desc .card-contacts__soc.vb {
    background-color: #8f5db7;
}

.item-contact .card-contacts .card-contacts__desc .card-contacts__soc.vb:before {
    background-image: url(/src/image/brands/viber.svg);

}

.item-contact .card-contacts .card-contacts__desc .card-contacts__soc.ig {
    background-color: #c13584;
}

.item-contact .card-contacts .card-contacts__desc .card-contacts__soc.ig:before {
    background-image: url(/src/image/brands/instagram.svg);

}


.developer p {
    text-align: center;
    margin: 20px 0;
    font-size: 16px;
    color: var(--color-developer);
}

.developer p a {
    text-decoration: underline;
    color: var(--color-developer);
}

@media screen and (max-width: 1630px) {
    .item-main:before {
        opacity: 0.5
    }

}

@media screen and (max-width: 1530px) {
    .item-main:before {
        display: none
    }

    .item-about:before {
        display: none
    }

    .item-order:before {
        display: none
    }

    .item-stock__training::after {
        content: none !important;
    }

}

@media screen and (max-width: 1200px) {
    .item-stock:before {
        width: calc(50% + 400px);
    }

    .custom-item {
        margin-left: -10%;
        width: 85%;
    }

    .item-main__desc .desc__item.head_item {
        font-size: 38px;
    }

    .item-main__desc .desc__item.desc__custom, .item-main__desc .desc__custom-purple {
        font-size: 28px;
    }

    .head-training-container .item-desc .title, .head-training-container .item-desc .title div {
        font-size: 42px;
    }

    .head-training-container .item-desc .desc {
        font-size: 22px;
    }

    .training-services .card-services__body .card-services__cost {
        min-width: 280px;
    }
}

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

    .item-main__logo {
        margin-top: 100px;
        margin-left: 40px;
    }

    .item-main {
        height: auto;
        min-height: 768px;
    }

    .item-main__stock {
        margin-top: 2%
    }

    .item-main__stock .item-main__left {
        margin-top: 0;
    }

    .custom-item {
        margin-left: -10%;
        width: 85%;
    }

    .item-main__desc .desc__item.head_item {
        font-size: 32px;
    }

    .item-main__desc .desc__item.desc__custom, .item-main__desc .desc__custom-purple {
        font-size: 24px;
    }

    .item-stock__training p, .item-stock__training span {
        font-size: 32px;
    }

    .item-stock__training .small {
        font-size: 24px;
    }

}

@media screen and (max-width: 991px) {
    .item-main {
        height: 100vh;
    }

    .item-main__menu {
        display: none
    }

    .item-works:before {
        display: none
    }


    .wow.no-mobile {
        animation-name: none !important;
        visibility: visible !important;
    }

    .item-about .item-about__desc {
        font-size: 20px;
        line-height: 1.5;
    }

    .custom-item {
        max-width: inherit;
        margin-left: -10%;
        width: 82%;
    }

    .item-main__desc .desc__item.head_item {
        font-size: 32px;
    }

    .item-main__desc .desc__item.desc__custom, .item-main__desc .desc__custom-purple {
        font-size: 24px;
    }

    .head-training-container .item-desc .title, .head-training-container .item-desc .title div {
        font-size: 32px;
    }

    .head-training-container .item-desc .desc {
        font-size: 20px;
    }

    .training-services .card-services__body .card-services__cost {
        min-width: 180px;
    }

    .training-services .card-services__body .card-services__description p, .training-services .card-services__body .card-services__description span {
        font-size: 20px !important;
    }

}

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

    .item-price .decoration-element.img-1 {
        width: 160px;
        height: 300px;
        top: 300px;
    }
    .item-price .decoration-element.img-2 {
        width: 45px;
        height: 238px;
        top: 37%;
    }
    .item-price .decoration-element.img-3 {
        width: 116px;
        height: 241px;
        top: 45%;
    }
}
@media screen and (max-width: 1023px){
    .item-price .price-block-container:before {
        content: none;
    }
}


@media screen
and (max-width: 991px)
and (min-width: 840px) {
    .item-main {
        height: auto !important;
        min-height: 700px;
    }

    .item-main__desc .desc__item {
        width: 500px
    }

    .item-main__logo {
        margin-top: 10%
    }

    .item-main__logo img {
        max-width: 60%;
    }

    .item-main__desc {
        max-width: 60%;
        margin-top: 10%;
    }

    .item-main__desc .desc__item.up {
        display: inline-block;
        width: 100%;
        text-align: left;
        font-size: 26px
    }

    .item-main__stock {
        margin-top: -7%;
    }

    .item-main__stock .item-main__left {
        margin-top: 10%;
    }

    .item-main__right {
        margin-top: 50px;
    }

    .item-stock .card-stocks .card-stocks__title {
        font-size: 20px;
    }

    .item-stock .card-stocks .card-stocks__title div {
        font-size: 26px;
    }

    .custom-item {
        max-width: inherit;
        margin-left: -10%;
        width: 82%;
    }

    .item-main__desc .desc__item.head_item {
        font-size: 32px;
    }

    .item-main__desc .desc__item.desc__custom, .item-main__desc .desc__custom-purple {
        font-size: 24px;
    }

    .custom-item.item-main__desc .desc__item {
        width: 100%;
    }

    .training-services .card-services__body .card-services__cost .sale-block .sale {
        min-width: 106px;
        min-height: 106px;
    }

    .training-services .card-services__body .card-services__cost .sale-block .sale-text p {
        display: inline-block;
        font-size: 14px !important;
    }

    .training-services .card-services__body .card-services__cost .sale-block .real-cost strong {
        font-size: 26px !important;
    }

    .training-services .card-services__body .card-services__cost p, .training-services .card-services__body .card-services__cost p strong {
        font-size: 22px !important;
    }

}

@media screen and (max-width: 839px) {
    h1 {
        font-size: 42px
    }

    .item-main {
        height: auto;
        min-height: 550px;
    }

    .item-main__logo {
        margin-top: 40px;
        margin-left: 25px;
    }

    .item-main__logo img {
        max-width: 50%;
    }

    .item-main__desc .desc__item {
        font-size: 22px;
        width: 454px;
        margin-bottom: 5px
    }

    .item-main__desc .desc__item.up {
        font-size: 28px;
        margin-bottom: 0;
    }

    .item-main__stock .item-main__left {
        padding-left: 30px;
        padding-right: 30px;
    }

    .item-stock .card-stocks .card-stocks__title {
        font-size: 18px;
    }

    .item-stock .card-stocks .card-stocks__title div {
        font-size: 24px;
    }

    .custom-item.item-main__desc .desc__item {
        width: 100%;
    }

    .custom-item {
        max-width: inherit;
        margin-left: -10%;
        width: 82%;
    }

    .item-main__desc .desc__item.head_item {
        font-size: 32px;
    }

    .item-main__desc .desc__item.desc__custom, .item-main__desc .desc__custom-purple {
        font-size: 20px;
    }

    .item-main__desc.custom-item {
        margin-top: 10% !important;
    }

    .training-services .card-services__body .card-services__cost .sale-block .sale {
        min-width: 106px;
        min-height: 106px;
    }

    .training-services .card-services__body .card-services__cost .sale-block .real-cost strong {
        font-size: 26px !important;
    }

    .training-services .card-services__body .card-services__cost p, .training-services .card-services__body .card-services__cost p strong {
        font-size: 22px !important;
    }

    .training-services .card-services__body .card-services__cost .sale-block .sale-text p {
        display: inline-block;
        font-size: 14px !important;
    }

    .item-price .manicure-list ul {
        padding-left: 20px;
    }

}

@media screen and (max-width: 839px)
and (orientation: landscape) {
    .item-main {
        height: auto;
        min-height: 375px;
    }

    .item-main__logo {
        margin-top: 2%;
    }

    .item-main__logo img {
        max-width: 40%;
    }

    .item-main__desc {
        margin-top: 7px;
    }

    .item-main__desc .desc__item {
        font-size: 20px;
        width: 450px
    }

    .item-main__desc .desc__item.up {
        display: inline-block;
        text-align: left;
        font-size: 26px;
        padding-bottom: 10px;
    }

    .item-main__stock {
        margin-top: 0;
    }

    .item-main__stock .item-main__left {
        margin-top: 0;
    }

    .item-main__stock .stock__item .stock__procent {
        width: 85px;
        height: 30px;
        background-size: contain;
    }

    .item-main__stock .stock__item2 .stock__procent {
        width: 166px;
        height: 60px;
        background-size: contain;
    }

    .item-main__right {
        margin-top: 15px;
    }

    .item-main__stock .stock__item.stock__syllable {
        font-size: 22px;
        margin: 0 -10px 0 0;
    }

    .item-main__desc.custom-item {
        margin-top: 10% !important;
    }

    .training-services .card-services__body .card-services__cost .sale-block .sale {
        min-width: 106px;
        min-height: 106px;
    }

    .training-services .card-services__body .card-services__cost .sale-block .real-cost strong {
        font-size: 26px !important;
    }

    .training-services .card-services__body .card-services__cost p, .training-services .card-services__body .card-services__cost p strong {
        font-size: 22px !important;
    }

    .training-services .card-services__body .card-services__cost .sale-block .sale-text p {
        display: inline-block;
        font-size: 14px !important;
    }
}

@media screen and (max-width: 767px) {
    .item-main {
        height: auto;
        min-height: 460px;
    }

    .item-main__wrapper:after {
        display: none;
    }

    .item-main__right {
        margin-top: 30px;
        margin-bottom: 10px;
        margin-left: 0;
    }

    .item-main__right .item-main__button {
        margin: 0 auto;
    }

    .item-stock .card-stocks .card-stocks__title {
        font-size: 16px;
    }

    .item-stock .card-stocks .card-stocks__title span {
        font-size: 20px;
    }

    .item-works .master__description .master__experience {
        margin-bottom: 0;
    }

    .item-works .master__description .master__title {
        margin-bottom: 10px;
    }

    .custom-item.item-main__desc .desc__item {
        width: 100%;
    }

    .mt-8 {
        margin-top: 0;
    }

    .custom-item {
        max-width: inherit;
        margin-left: 0;
        width: 100%;
    }

    .item-main__desc .desc__item.head_item {
        font-size: 32px;
    }

    .item-main__desc .desc__item.desc__custom, .item-main__desc .desc__custom-purple {
        font-size: 22px;
    }

    .training-services .card-services__body {
        -webkit-box-pack: justify !important;
        -ms-flex-pack: justify !important;
        justify-content: space-between !important;
        -webkit-box-orient: vertical !important;
        -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
        flex-direction: column !important;
    }

    .training-services .card-services__body .card-services__cost {
        padding-top: 20px !important;
        padding-bottom: 20px !important;
    }

    .item-stock__training p, .item-stock__training span {
        font-size: 28px;
    }

    .item-stock__training .small {
        font-size: 20px;
        margin-top: 10px;
    }

    .head-training-container {
        -webkit-box-orient: vertical !important;
        -webkit-box-direction: reverse !important;
        -ms-flex-direction: column-reverse !important;
        flex-direction: column-reverse !important;
    }

    .head-training-container .item-desc .title {
        margin-bottom: 10px;
    }

    .head-training-container .item-image {
        max-width: 100%;
        width: 100%;
        height: 100%;
        margin-bottom: -5px;
    }

    .item-stock__training p, .item-stock__training span {
        font-size: 26px;
    }

    .item-stock__training .small {
        font-size: 20px;
    }

    .training-services .card-services__body .card-services__cost .sale-block .sale-text p {
        display: block;
        font-size: 16px !important;
    }

    .item-price .manicure-list ul {
        padding-left: 10px;
    }

    .item-price .decoration-element.img-1 {
        width: 160px;
        height: 300px;
        top: 345px;
    }
    .item-price .decoration-element.img-2 {
        width: 45px;
        height: 238px;
        top: 36%;
    }
    .item-price .decoration-element.img-3 {
        width: 116px;
        height: 241px;
        top: 46%;
    }
}

@media screen and (max-width: 640px) {
    .item-main {
        height: auto;
        min-height: 340px;
    }

    .item-main__desc.custom-item {
        margin-top: 0 !important;
    }

    .item-training__wrapper .desc__item.head_item {
        padding-top: 20px !important;
    }

    .item-price .manicure-list ul {
        padding-left: 10px;
    }

    .item-price .decoration-element.img-1 {
        width: 160px;
        height: 300px;
        top: 350px;
    }
    .item-price .decoration-element.img-2 {
        width: 45px;
        height: 238px;
        top: 36%;
    }
    .item-price .decoration-element.img-3 {
        width: 116px;
        height: 241px;
        top: 45%;
    }
}

@media (max-width: 575px) {
    h1 {
        font-size: 28px
    }

    .item-price .price-block-container:before {
        content: none;
    }

    .item-price h2.price-subtitle {
        font-size: 24px;
    }

    .item-price .manicure-list ul {
        padding-left: 15px;
    }

    .item-price .manicure-list ul li {
        margin-bottom: 10px;
        padding-left: 6px;
        font-size: 16px;
    }

    .item-main__logo {
        margin-top: 10%;
    }

    .item-main__desc .desc__item {
        display: block;
        width: auto;
        font-size: 20px;
        padding: 0 25px;
    }

    .item-main__stock .item-main__right .item-main__button {
        width: 100% !important;
        font-size: 22px;
        height: 48px;
    }

    .item-main__right {
        margin: 30px auto 15px;
    }

    .item-stock .card-stocks .card-stocks__title {
        margin-bottom: 10px
    }

    .item-works .master__photo {
        padding: 0;
        width: 160px;
        height: 160px;
        margin: 0 auto;
    }

    .item-works .master__description p {
        text-align: center;
    }

    .item-works .master__description p.master__name {
        padding-top: 5px
    }

    .item-stock__training p, .item-stock__training span {
        font-size: 22px;
    }

    .training-services .card-services__body .card-services__cost .sale-block .sale {
        min-width: 106px;
        min-height: 106px;
    }

    .training-services .card-services__body .card-services__cost .cost-sale {
        font-size: 24px !important;
    }

    .training-services .card-services__body .card-services__cost .sale-block .real-cost strong {
        font-size: 26px !important;
    }

    .item-stock__training .small {
        font-size: 18px;
        margin-top: 10px;
    }

    .h1-custom__purple {
        font-size: 28px;
    }

    .item-training__up button {
        width: 280px !important;
    }

    .item-main__desc .desc__item.desc__custom, .item-main__desc .desc__custom-purple {
        font-size: 22px;
        margin: 10px 0;
    }

    .item-main__desc .desc__custom-purple {
        margin-bottom: 40px;
    }

    .item-price .decoration-element.img-1 {
        width: 120px;
        height: 270px;
        top: 340px;
    }
    .item-price .decoration-element.img-2 {
        width: 45px;
        height: 118px;
        top: 37%;
    }
    .item-price .decoration-element.img-3 {
        width: 96px;
        height: 121px;
        top: 46%;
    }
}

@media (max-width: 420px) {
    .training-services .card-services__body .card-services__cost .sale-block {
        flex-direction: column-reverse;
        align-items: center;
        justify-content: center;
        text-align: center !important;
        margin-top: 1rem;
    }

    .training-services .card-services__body .card-services__cost .sale-block .sale-text {
        margin-right: 0;
    }

    .training-services .card-services__body .card-services__cost .sale-block .sale-text p {
        display: block;
        font-size: 14px !important;
        text-align: center !important;
    }

    .item-price .decoration-element.img-1 {
        width: 120px;
        height: 270px;
        top: 340px;
    }
    .item-price .decoration-element.img-2 {
        width: 45px;
        height: 118px;
        top: 37%;
    }
    .item-price .decoration-element.img-3 {
        width: 96px;
        height: 121px;
    }
}

@media (max-width: 410px) {

    .item-price .decoration-element.img-1 {
        display: none;
    }
    .item-price .decoration-element.img-2 {
        display: none;
    }
    .item-price .decoration-element.img-3 {
        display: none;
    }

    .item-main__stock .stock__item2 {
        display: block;
    }

    .developer img {
        width: 90px;
    }

    .item-main__desc .desc__item.desc__custom, .item-main__desc .desc__custom-purple {
        /*text-align: left;*/
    }
}

@media (max-width: 361px) {
    .item-contact .card-contacts .card-contacts__desc .card-contacts__soc {
        margin: 10px 0 0 0;
    }
}