:root {
    --primary-black-color: #15172E;
    --primary-blue-color: #4D55F5;
    --primary-green-color: #DCFF7B;
    --primary-purple-color: #C28CF8;
    --white-color: #FFF;
    --grey-1-color: #F7F7F7;
    --grey-2-color: #E7E8EA;
    --red-color: #FF6A6A;
    --fixel-display-font: FixelDisplay, Helvetica, sans-serif;
    --body-text: 16px;
    --subtitle: 18px;
    --menu-text: 20px;
    --sub-text: 22px;
    --title-h1-mobile: 32px;
    --title-h2-mobile: 28px;
    --title-h3-mobile: 20px;
    --title-h4-mobile: 18px;
    --title-h1-desktop: 72px;
    --title-h2-desktop: 64px;
    --title-h3-desktop: 32px;
    --title-h4-desktop: 24px;
    font-family: var(--fixel-display-font);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    color: var(--primary-black-color);
}

* {
	box-sizing: border-box;
    min-height: 0;
    min-width: 0;
}
a {
	text-decoration: none !important;
}
fieldset {
    all: unset;
}
h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 100%;
}
h1 {
    font-size: var(--title-h1-mobile);
}
h2 {
    font-size: var(--title-h2-mobile);
    line-height: 110%;
}
h3 {
    font-size: var(--title-h3-mobile);
}
h4 {
    font-size: var(--title-h4-mobile);
}
.btn {
    border: 1px solid var(--primary-blue-color);
    border-radius: 40px;
    background-color: var(--primary-blue-color);
    padding: 16px 36px;
    color: var(--white-color);
    font-size: var(--subtitle);
    font-weight: 700;
    line-height: 110%;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
}
.btn:hover {
    color: var(--primary-blue-color);
    background-color: var(--white-color);
}
.btn-arrow {
    width: 60px;
    height: 44px;
    padding: 16px 18px;
    background: url(../images/arrow_green.svg) 50% 50% no-repeat var(--primary-green-color);
    border: none;
    border-radius: 40px;
    -webkit-border-radius: 40px;
    -moz-border-radius: 40px;
    -ms-border-radius: 40px;
    -o-border-radius: 40px;
}
.btn-arrow[disabled] {
    opacity: 0.5;
}
.btn-arrow:hover {
    background: url(../images/arrow_blue.svg) 50% 50% no-repeat var(--primary-blue-color);
}
.btn-arrow[disabled]:hover {
    background: url(../images/arrow_green.svg) 50% 50% no-repeat var(--primary-green-color);
    opacity: 0.5;
}
.no-scroll {
    overflow: hidden;
}
body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    min-width: 375px;
    background-color: var(--white-color);
}
header {
    flex-grow: 0;
    width: 100%;
    min-height: 65px;
    display: flex;
    padding: 20px 16px;
    justify-content: space-between;
    align-items: center;
    border-bottom: solid 1px var(--grey-2-color);
}
.header__logo {
    flex-grow: 1;
    display: flex;
    height: 29px;
    align-items: center;
    justify-content: flex-start;
}
.header__logo a {
    display: inline-block;
    height: 25px;
}
.header__logo img {
    width: 174px;
    height: 25px;
}
.header__menu-toggle {
    width: 24px;
    height: 24px;
    margin-left: 24px;
    order: 1;
}
.header__menu-toggle .is-openned,
.header__menu-toggle .is-closed {
    width: 24px;
    height: 24px;
    cursor: pointer;
}
.header__menu-toggle .is-openned {
    background: url(../images/menu_btn_close.svg) 50% 50% no-repeat transparent;
    display: none;
}
.header__menu-toggle .is-closed {
    background: url(../images/menu_btn.svg) 50% 50% no-repeat transparent;
    display: block;
}
.header__menu-toggle.is-active .is-openned {
    display: block;
}
.header__menu-toggle.is-active .is-closed {
    display: none;
}
.header__phone {
    width: 24px;
    height: 24px;
    background: url(../images/phone.svg) 50% 50% no-repeat transparent;
}
.header__phone a {
    display: block;
    width: 24px;
    height: 24px;
    line-height: 24px;
    opacity: 0;
    text-indent: -9999px;
}
.header__menu-toggle.is-active + .header__phone {
    display: none;
}
.header__menu-holder {
    position: fixed;
    width: 100%;
    height: calc(100% - 66px);
    top: 66px;
    left: 0;
    background-color: var(--white-color);
    padding: 40px 42px;
    display: none;
    flex-direction: column;
    z-index: 999;
}
.header__menu-toggle.is-active ~ .header__menu-holder {
    display: flex;
}
.header__menu-toggle.is-active ~ .header__menu-holder .header__phone {
    background: none;
    width: 100%;
    margin-bottom: 35px;
}
.header__menu-toggle.is-active ~ .header__menu-holder .header__phone a {
    opacity: 1;
    width: 100%;
    color: var(--primary-black-color);
    font-size: var(--menu-text);
    font-weight: 700;
    line-height: 100%;
    text-indent: inherit;
    text-align: center;
}
.header__social-media {
    display: none;
    justify-content: center;
    gap: 16px;
}
.instagram-icon,
.telegram-icon,
.viber-icon {
    display: block;
    width: 64px;
    height: 64px;
    background: url(../images/instagram_icon_gray.svg) 50% 50% no-repeat transparent;
    border: 1px solid var(--grey-2-color);
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}
.telegram-icon {
    background: url(../images/telegram_icon_gray.svg) 50% 50% no-repeat transparent;
}
.viber-icon {
    background: url(../images/viber_icon_gray.svg) 50% 50% no-repeat transparent;
}
.header__social-media li {
    display: flex;
    justify-content: center;
    align-items: center;
}
.header__social-media a {
    display: block;
}
.header__social-media a:hover {
    border: 1px solid var(--primary-blue-color);
}
.header__social-media .instagram-icon:hover {
    background: url(../images/instagram_icon_blue.svg) 50% 50% no-repeat transparent;
}
.header__social-media .telegram-icon:hover {
    background: url(../images/telegram_icon_blue.svg) 50% 50% no-repeat transparent;
}
.header__social-media .viber-icon:hover {
    background: url(../images/viber_icon_blue.svg) 50% 50% no-repeat transparent;
}
nav {
    display: none;
    text-align: center;
    flex-grow: 1;
    flex-shrink: 0;
}
nav li {
    margin-bottom: 40px;
}
nav li a {
    color: var(--primary-black-color);
    font-size: var(--menu-text);
    font-weight: 400;
    line-height: 100%;
    position: relative;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
}
nav li a:hover {
    color: var(--primary-blue-color);
    text-shadow: 0 0 .75px var(--primary-blue-color), 0 0 .75px var(--primary-blue-color);
}
nav li a::after {
    content: "";
    display: block;
    width: 0;
    height: 2px;
    background-color: #4D55F5;
    position: absolute;
    left: 0;
    bottom: -4px;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
}
nav li a:hover::after {
    width: 100%;
}
.header__menu-toggle.is-active ~ .header__menu-holder nav {
    display: block;
}
.header__menu-toggle.is-active ~ .header__menu-holder .header__social-media {
    display: flex;
}
main {
    flex-grow: 1;
}
.online-order {
    padding: 35px 16px 0;
    margin-bottom: -4px
}
.online-order content {
    display: flex;
    flex-direction: column;
}
.online-order__title {
    text-align: center;
    margin-bottom: 24px;
}
.online-order__title h1 {
    margin-bottom: 12px;
    padding: 0 10px;
}
.online-order__title span {
    position: relative;
    color: var(--white-color);
    display: inline-block;
}
.online-order__title span::before {
    content: "";
    display: block;
    position: absolute;
    top: -2px;
    left: -5px;
    width: calc(100% + 10px);
    height: calc(100% + 1px);
    background-color: var(--primary-blue-color);
    transform: rotate(-1.5deg);
    -webkit-transform: rotate(-1.5deg);
    -moz-transform: rotate(-1.5deg);
    -ms-transform: rotate(-1.5deg);
    -o-transform: rotate(-1.5deg);
    z-index: -1;
}
.online-order__title p {
    padding: 0 30px;
    margin-bottom: 24px;
    font-size: var(--body-text);
    font-weight: 400;
    line-height: 130%;
}
.online-order__img {
    padding: 7px 63px 0;
    position: relative;
}
.online-order__img::before{
    content: "";
    display: block;
    box-sizing: border-box;
    min-width: 350px;
    min-height: 350px;
    border-radius: 300px;
    border: 1px solid transparent;
    background: var(--primary-green-color);
    filter: blur(68.30000305175781px);
    -webkit-filter: blur(68.30000305175781px);
    position: absolute;
    top: 50%;
    left: 50%;
    width: 90vw;
    height: 90vw;
    z-index: -2;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
}
.online-order__img img {
    width: 100%;
    max-width: 100%;
}
.promo-slider {
    margin-bottom: 120px;
}
.promo-slider__slide div {
    display: flex;
    justify-content: center;
    margin: 0 4px;
}
.promo-slider__slick .img-desktop {
    display: none;
}
.slick-slider .slick-dots {
    bottom: -54px;
}
.slick-slider .slick-dots li button:before {
    font-size: 9px;
    opacity: 1;
    color: var(--grey-2-color);
}
.slick-slider .slick-dots li.slick-active button:before {
    color: var(--primary-blue-color);
}
.promo-slider .slick-prev, 
.promo-slider .slick-next {
    display: none !important;
}
.info {
    padding: 0 16px;
    margin-bottom: 80px;
}
.info__title {
    text-align: center;
    padding: 0 16px;
    margin-bottom: 24px;
}
.info__title span {
    display: inline-block;
    margin-bottom: 8px;
    position: relative;
}
.info__title span::before {
    content: "";
    display: block;
    position: absolute;
    top: -4px;
    left: -5px;
    width: calc(100% + 10px);
    height: calc(100% + 5px);
    background-color: var(--primary-green-color);
    transform: rotate(-1.5deg);
    -webkit-transform: rotate(-1.5deg);
    -moz-transform: rotate(-1.5deg);
    -ms-transform: rotate(-1.5deg);
    -o-transform: rotate(-1.5deg);
    z-index: -1;
}
.info__list {
    width: 100%;
    margin-bottom: 80px;
}
.info__item {
    display: flex;
    justify-content: space-between;
    background-color: var(--grey-1-color);
    padding: 24px;
    margin-top: 12px;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
}
.info__item:first-child {
    margin-top: 0;
}
.info__item h3 {
    font-size: var(--title-h2-desktop);
    color: var(--primary-purple-color);
    flex-shrink: 0;
    min-width: 38px;
    margin: 0 18px 0 0;
}
.info__item:nth-child(even) h3 {
    order: 1;
    margin: 0 0 0 18px;
} 
.info__item p {
    font-size: var(--body-text);
    line-height: 130%;
}
.info__blocks {
    display: flex;
    flex-direction: column;
    gap: 13px;
}
.info__block {
    width: 100%;
    min-height: 343px;
}
.info__block:first-child {
    padding: 21px 22px 20px;
    background-color: var(--primary-blue-color);
    font-weight: 800;
    line-height: 108%;
    color: var(--white-color);
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
}
.info__block:last-child {
    display: none;
}
.info__block-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    position: relative;
}
.info__block-content::before {
    content: "";
    display: block;
    box-sizing: border-box;
    min-width: 300px;
    min-height: 300px;
    border: 1px solid transparent;
    background: var(--white-color);
    opacity: 0.07;
    filter: blur(35.2952766418457px);
    -webkit-filter: blur(35.2952766418457px);
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}
.info__block:first-child::before,
.info__block:first-child::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 116px;
    width: 148px;
    background: url(../images/vector_info_block_top.svg) 50% 50% no-repeat transparent;
    background-size: 148px 116px;
}
.info__block:first-child::after {
    top: auto;
    left: auto;
    right: 0;
    bottom: 0;
    height: 114px;
    width: 250px;
    background: url(../images/vector_info_block_bottom.svg) 50% 50% no-repeat transparent;
    background-size: 250px 114px;
}
.info__block:first-child h3 {
    font-size: var(--title-h2-mobile);
    font-weight: 800;
    line-height: 108%;
    margin-bottom: 16px;
    text-align: center;
    position: relative;
    z-index: 2;
}
.info__block:first-child h3 span {
    font-size: 36px;
    color: var(--primary-blue-color);
    position: relative;
    display: inline-block;
}
.info__block:first-child h3 span::before {
    content: "";
    display: block;
    position: absolute;
    top: -8px;
    left: -7px;
    width: calc(100% + 12px);
    height: calc(100% + 12px);
    background-color: var(--primary-green-color);
    transform: rotate(-3deg);
    -webkit-transform: rotate(-3deg);
    -moz-transform: rotate(-3deg);
    -ms-transform: rotate(-3deg);
    -o-transform: rotate(-3deg);
    z-index: -1;
}
.info__block:first-child p {
    font-size: var(--subtitle);
    font-weight: 600;
    line-height: 108%;
    text-align: center;
    padding: 0 17px;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}
#callback-form,
#order-form {
    position: relative;
}
#callback-form input::placeholder,
#order-form input::placeholder {
    color: #A1A2AB;
}
#callback-form {
    z-index: 99;
}
#phone,
#order-phone,
#user-name {
    box-sizing: border-box;
    font-family: var(--fixel-display-font);
    font-size: var(--body-text);
    font-weight: 400;
    line-height: 110%;
    width: 100%;
    height: 52px;
    padding: 9px 64px 4px 84px;
    background-color: var(--white-color);
    color: var(--primary-black-color);
    border: none;
    outline: none;
    border-radius: 40px;
    -webkit-border-radius: 40px;
    -moz-border-radius: 40px;
    -ms-border-radius: 40px;
    -o-border-radius: 40px;
}
#callback-form label,
#order-form label {
    width: 52px;
    height: 28px;
    padding-right: 12px;
    position: absolute;
    left: 20px;
    top: 20px;
    color: var(--primary-black-color);
    font-size: var(--body-text);
    font-weight: 400;
    line-height: 110%;
}
#callback-form label::after,
#order-form label::after {
    content: "";
    display: block;
    width: 1px;
    height: 28px;
    position: absolute;
    right: 0;
    top: -7px;
    background-color: var(--grey-2-color);
}
#callback-form .btn-arrow {
    position: absolute;
    right: 4px;
    top: 4px;
}
.info__block img {
    width: 100%;
    max-width: 100%;
}
.price {
    padding: 0 16px;
    margin-bottom: 80px;
}
.price__title {
    margin-bottom: 33px;
}
#price__accordion h3 {
    font-family: var(--fixel-display-font);
    font-size: var(--menu-text);
    font-weight: 600;
    letter-spacing: 0.2px;
    height: 98px;
    display: flex;
    align-items: center;
    padding: 20px 0;
    border-width: 1px 0 1px 0;
    border-style: solid;
    border-color: var(--grey-2-color);
    color: var(--primary-black-color);
    background: transparent;
    position: relative;
    margin: -1px 0 0;
}
#price__accordion.ui-accordion .ui-accordion-content {
    padding: 0;
    border: none;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
}
#price__accordion .ui-accordion-header-active {
    border-bottom: none;
}
#price__accordion .ui-accordion-header-active .ui-icon,
#price__accordion .ui-accordion-header-collapsed .ui-icon {
    background: url(../images/minus_icon.svg) 50% 50% no-repeat transparent;
    background-size: 16px 16px;
    position: absolute;
    right: 0;
    top: 24px;
    width: 56px;
    height: 56px;
    border: 1px solid var(--grey-2-color);
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}
#price__accordion .ui-accordion-header-collapsed .ui-icon {
    background: url(../images/plus_icon.svg) 50% 50% no-repeat transparent;
    background-size: 16px 16px;
}
.price li {
    display: flex;
    justify-content: space-between;
    padding: 20px 0;
    border-bottom: 1px solid var(--grey-2-color);
}
.price li:first-child {
    padding-top: 4px;
}
.price li:last-child {
    padding-bottom: 32px;
}
.price li p {
    font-family: var(--fixel-display-font);
    line-height: 130%;
}
.price li p span {
    font-weight: 700;
    display: block;
}
.price__item-price {
    font-size: var(--subtitle);
    font-weight: 600;
    display: flex;
    align-items: center;
    min-width: 70px;
    justify-content: flex-end;
}
.price__tab-info {
    display: none;
}
.price__placeholder {
    display: none;
}
.feedback-slider {
    padding: 0;
    margin-bottom: 100px;
}
.feedback-slider__title {
    padding: 0 16px;
    margin-bottom: 32px;
}
.feedback-slider__content-holder {
    display: flex;
    justify-content: center;
    margin: 0 4px;
}
.feedback-slider__content {
    background-color: var(--grey-1-color);
    box-sizing: border-box;
    border-radius: 30px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
    padding: 24px 20px 32px;
    min-height: 365px;
}
.feedback-slider__item-title {
    margin-bottom: 4px;
}
.feedback-slider__raiting {
    display: flex;
    align-items: center;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--grey-2-color);
    margin-bottom: 24px;
}
.feedback-slider__raiting span {
    padding: 2px 0 0 10px;
    font-size: var(--menu-text);
}
.feedback-slider__text {
    line-height: 150%;
}
.feedback-slider .slick-prev, 
.feedback-slider .slick-next {
    display: none !important;
}
.wrapper{
	width:100%;
	max-width: 950px;
	padding: 0 25px;
	margin: auto;
}
.privacy{
	margin-top:80px;
	margin-bottom: 140px;
}
.privacy h1{
	font-size: 64px;
	font-weight: 700; 
	margin-bottom: 58px;
	text-align: center;
}
.privacy h2,
.privacy h3,
.privacy h4,
.privacy h5,
.privacy h6{
	font-size: 24px;
	font-weight: 700; 
	margin: 58px 0  20px;
}
.privacy p{
	font-size: 16px;
	font-weight: 400;
	line-height: 1.5;
	margin-bottom: 20px;
}
footer {
    width: 100%;
    flex-grow: 0;
    min-height: 549px;
    padding: 0 16px 32px 16px;
}
footer .content {
    display: flex;
    flex-direction: column;
    background-color: var(--primary-blue-color);
    min-height: 517px;
    padding: 32px 24px 24px;
    position: relative;
    border-radius: 30px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
	-ms-border-radius: 30px;
	-o-border-radius: 30px;
}
footer .content::after {
    content: "";
	position: absolute;
	right: 0;
	bottom: 0;
	height: 338px;
	width: 144px;
	background: url(../images/vector_footer_mobile.svg) 50% 50% no-repeat transparent;
}
.footer__logo {
    margin-bottom: 24px;
}
.footer__logo img {
    width: 225px;
}
.footer__contacts {
    flex-grow: 1;
}
.footer__contacts p {
    font-size: 14px;
    line-height: 150%;
	color: var(--white-color);
	margin-bottom: 8px;
}
.footer__contacts > a {
    display: inline-block;
    color: var(--white-color);
    font-size: var(--title-h4-desktop);
    font-weight: 700;
    margin-bottom: 36px;
}
.footer__contacts .footer__work-schedule {
    font-size: var(--menu-text);
    line-height: 100%;
    margin-bottom: 36px;
}
.footer__work-schedule span {
    font-size: var(--menu-text);
    font-weight: 700;
    text-transform: uppercase;
}
.footer__social-media {
    display: flex;
    gap: 16px;
    position: relative;
    z-index: 5;
}
.footer__social-media a {
    border-color: var(--white-color);
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
}
.footer__social-media .instagram-icon {
    background: url(../images/instagram_icon_white.svg) 50% 50% no-repeat var(--primary-blue-color);
}
.footer__social-media .telegram-icon {
    background: url(../images/telegram_icon_white.svg) 50% 50% no-repeat var(--primary-blue-color);
}
.footer__social-media .viber-icon {
    background: url(../images/viber_icon_white.svg) 50% 50% no-repeat var(--primary-blue-color);
}
.footer__add-info {
    position: relative;
    z-index: 5;
}
.footer__add-info li:first-child {
    margin-bottom: 12px;
}
.footer__social-media .instagram-icon:hover {
    background: url(../images/instagram_icon_blue.svg) 50% 50% no-repeat var(--white-color);
}
.footer__social-media .telegram-icon:hover {
    background: url(../images/telegram_icon_blue.svg) 50% 50% no-repeat var(--white-color);
}
.footer__social-media .viber-icon:hover {
    background: url(../images/viber_icon_blue.svg) 50% 50% no-repeat var(--white-color);
}
.footer__social-media a:hover {
    border-color: var(--primary-blue-color);
}
.footer__add-info a {
    display: inline-block;
    font-size: 12px;
    font-weight: 500;
    line-height: 100%;
    color: #B8BBFB;
}
.fancybox__backdrop {
    background: var(--primary-black-color);
    opacity: 0.6;
    backdrop-filter: blur(11.05px);
}
.is-compact .fancybox__content>.f-button.is-close-btn,
.fancybox__content>.f-button.is-close-btn {
    --f-button-color: var(--primary-black-color);
    --f-button-hover-color: var(--primary-blue-color);
    --f-button-outline-color: transparent;
    --f-button-bg: transparent;
    --f-button-active-bg: transparent;
    --f-button-hover-bg: transparent;
    --f-button-svg-width: 16px;
    --f-button-svg-height: 16px;
    top: 16px;
    right: 16px;
}
#number-sent-popup,
#order-send-popup {
    max-width: 636px;
    min-height: 488px;
    margin: 0 16px;
    padding: 56px 24px;
    text-align: center;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
}
#number-sent-popup .content-holder {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    gap: 24px;
}
#number-sent-popup img,
#order-send-popup img {
    width: 150px;
    height: 150px;
}
.content-text {
    flex-grow: 1;
}
#number-sent-popup h2 {
    line-height: 120%;
    margin-bottom: 12px;
}
#number-sent-popup p,
#order-send-popup p {
    font-size: 14px;
    line-height: 150%;
    padding: 0 20px;
}
#number-sent-popup a,
#order-send-popup .btn {
    display: inline-block;
    width: 100%;
}
#order-send-popup {
    padding: 56px 20px;
    min-height: 451px;
}
#order-send-popup .content-text {
    margin-bottom: 24px;
}
#order-send-popup h2 {
    margin-bottom: 8px;
}
#order-form {
    max-width: none;
}
#order-phone,
#user-name {
    border: 1px solid var(--grey-2-color);
}
#order-form label {
    top: 96px;
}
#user-name {
    padding: 9px 20px 4px 20px;
    margin-bottom: 24px;
} 
#order-send-popup .btn {
    margin-top: 36px;
}
#order-send-popup .btn[disabled],
#order-send-popup .btn[disabled]:hover {
    background: var(--grey-2-color);
    border-color: var(--grey-2-color);
    color: var(--white-color);
}
@media screen and (min-width: 920px) {
    h1 {
        font-size: var(--title-h1-desktop);
	}
    h2 {
        font-size: var(--title-h2-desktop);
        line-height: 100%;
	}
    h3 {
        font-size: var(--title-h3-desktop);
	}
    h4 {
        font-size: var(--title-h4-desktop);
	}
    .btn {
        padding: 22px 56px;
        font-size: var(--sub-text);
        font-weight: 700;
        line-height: 110%;
	}
    .btn-arrow {
        width: 98px;
        height: 56px;
        padding: 16px 32px;
	}
    header {
        flex-grow: 0;
        height: 82px;
        width: 100%;
        max-width: 1440px;
        display: flex;
        padding: 20px 48px;
        position: relative;
        border-bottom: none;
        gap: 16px;
        align-self: center;
	}
    header::after {
        content: "";
        position: absolute;
        display: block;
        width: calc(100% - 96px);
        height: 1px;
        top: 82px;
        left: 48px;
        background-color: var(--grey-2-color);
	}
    .header__logo {
        flex-shrink: 0;
        height: auto;
	}
    .header__logo a {
        height: auto;
	}
    .header__logo img {
        width: 224px;
        height: 32px;
	}
    .header__menu-toggle {
        display: none;
	}
    .header__menu-toggle + .header__phone {
        display: none;
	}
    .header__menu-holder {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 64px;
        position: static;
        width: auto;
        height: auto;
        padding: 0;
        background-color: transparent;
	}
    nav {
        display: block;
        flex-grow: 0;
        flex-shrink: 1;
	}
    nav ul {
        display: flex;
        gap: 64px;
	}
    nav li {
        font-size: var(--body-text);
        font-weight: 500;
        line-height: 110%;
        margin-bottom: 0;
	}
    .header__menu {
        flex-shrink: 0;
	}
    .header__menu .header__phone {
        background: none;
        width: auto;
        height: auto;
        margin-bottom: 0 !important;
	}
    .header__menu .header__phone a {
        width: 100%;
        height: auto;
        font-size: 22px;
        font-weight: 700;
        line-height: 110%;
        opacity: 1;
        text-indent: inherit;
        color: var(--primary-black-color);
        padding-top: 5px;
	}
    .header__social-media {
        display: none !important;
	}
    main {
        display: flex;
        flex-direction: column;
	}
    .online-order {
        max-width: 1440px;
        padding: 14px 48px 0;
        align-self: center;
	}
    .online-order .content {
        display: flex;
        justify-content: space-between;
	}
    .online-order__title {
        width: 70%;
        text-align: left;
        margin-bottom: 0;
	}
    .online-order__img {
        padding: 0;
        width: 325px;
        margin-right: 5%;
        flex-shrink: 0;
	}
    .online-order__img::before {
        max-width: 540px;
        max-height: 540px;
        width: 40vw;
        height: 40vw;
	}
    .online-order__title h1 {
        font-size: 58px;
        margin: 66px 0 16px;
        padding: 0;
	}
    .online-order__title span::before {
        width: calc(100% + 8px);
        transform: rotate(-2deg);
        -webkit-transform: rotate(-2deg);
        -moz-transform: rotate(-2deg);
        -ms-transform: rotate(-2deg);
        -o-transform: rotate(-2deg);
	}
    .online-order__title p {
        font-size: var(--title-h4-desktop);
        padding: 0;
        margin-bottom: 48px;
	}
    .promo-slider {
        margin-bottom: 126px;
	}
    .promo-slider .slick-slider .slick-dots {
        bottom: -60px;
	}
    .promo-slider__slide div {
        margin: 0 8px;
	}
    .promo-slider__slick .img-mobile {
        display: none;
	}
    .promo-slider__slick .img-desktop {
        display: block;
	}
    .promo-slider .slick-prev, 
    .promo-slider .slick-next {
        display: block !important;
        width: 80px;
        height: 80px;
        left: 48px;
        z-index: 999;
        border-radius: 50%;
        -webkit-border-radius: 50%;
        -moz-border-radius: 50%;
        -ms-border-radius: 50%;
        -o-border-radius: 50%;
        overflow: hidden;
    }
    .promo-slider .slick-next {
        left: auto;
        right: 48px;
    }
    .promo-slider .slick-prev:before, 
    .promo-slider .slick-next:before {
        content: "";
        display: block;
        width: 80px;
        height: 80px;
        background-color: var(--white-color);
        opacity: .7;
    }
    .promo-slider .slick-prev:after, 
    .promo-slider .slick-next:after {
        content: url(../images/arrow_left_icon.svg);
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        -webkit-transform: translate(-50%, -50%);
        -moz-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        -o-transform: translate(-50%, -50%);
    }
    .promo-slider .slick-next:after {
        content: url(../images/arrow_right_icon.svg);
    }
    .info {
        max-width: 1440px;
        padding: 0 48px;
        margin-bottom: 130px;
        align-self: center;
	}
    .info .content {
        display: flex;
        flex-wrap: wrap;
        position: relative;
	}
    .info .content::before {
        content: "";
        position: absolute;
        right: calc(50% - 115px);
        top: 300px;
        height: 172px;
        width: 100%;
        background: url(../images/vector_main_top.svg) 100% 50% no-repeat transparent;
        z-index: -1;
	}
    .info__title {
        text-align: left;
        padding: 0 0 0 27px;
        margin-bottom: 0;
        width: 50%;
	}
    .info__title span {
        margin-bottom: 24px;
	}
    .info__title span::before {
        top: -25px;
        left: -14px;
        width: calc(100% + 27px);
        height: calc(100% + 30px);
        transform: rotate(-2deg);
        -webkit-transform: rotate(-2deg);
        -moz-transform: rotate(-2deg);
        -ms-transform: rotate(-2deg);
        -o-transform: rotate(-2deg);
	}
    .info__list {
        width: 50%;
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        margin-bottom: 130px; 
	}
    .info__item {
        width: 90%;
        max-width: 600px;
        padding: 30px 57px 11px;
        margin-top: 24px;
        border-radius: 30px;
        -webkit-border-radius: 30px;
        -moz-border-radius: 30px;
        -ms-border-radius: 30px;
        -o-border-radius: 30px;
    }
    .info__item:first-child {
        margin-top: -26px;
    }
    .info__item h3 {
        font-size: 100px;
        margin: 0 32px 0 0;
	}
    .info__item:nth-child(even) h3 {
        margin: 0 0 0 25px;
    }
    .info__item p {
        font-size: var(--subtitle);
        line-height: 140%;
	}
    .info__item:nth-child(even) p {
        margin-top: 10px;
    }
    .info__blocks {
        width: 100%;
        flex-direction: row;
        gap: 16px
	}
    .info__block {
        width: 50%;
        max-height: 656px;
        border-radius: 53px;
        -webkit-border-radius: 53px;
        -moz-border-radius: 53px;
        -ms-border-radius: 53px;
        -o-border-radius: 53px;
	}
    .info__block:first-child {
        min-height: 656px;
        padding: 29px 33px;
        border-radius: 53px;
        align-items: center;
        -webkit-border-radius: 53px;
        -moz-border-radius: 53px;
        -ms-border-radius: 53px;
        -o-border-radius: 53px;
	}
    .info__block-content::before {
        width: 598px;
        height: 598px;
	}
    .info__block:first-child::before,
    .info__block:first-child::after {
        height: 223px;
        width: 286px;
        background-size: 286px 223px;
	}
    .info__block:first-child::after {
        height: 217px;
        width: 481px;
        background-size: 481px 217px;
	}
    .info__block:first-child h3 {
        font-size: 48px;
        margin-bottom: 26px;
	}
    .info__block:first-child h3 span {
        font-size: var(--title-h1-desktop);
	}
    .info__block:first-child h3 span::before {
        top: -22px;
        left: -15px;
        width: calc(100% + 22px);
        height: calc(100% + 30px);
        transform: rotate(-3.299deg);
        -webkit-transform: rotate(-3.299deg);
        -moz-transform: rotate(-3.299deg);
        -ms-transform: rotate(-3.299deg);
        -o-transform: rotate(-3.299deg);
	}
    .info__block:first-child p {
        font-size: 36px;
        padding: 0 25px;
        margin-bottom: 72px;
	}
    .info__block:last-child {
        display: block;
        overflow: hidden;
	}
    .info__block img {
        height: 100%;
	}
    #callback-form {
        width: 100%;
        max-width: 434px;
	}
    #phone,
    #order-phone,
    #user-name {
        height: 68px;
        padding: 14px 116px 12px 102px;
        font-size: var(--menu-text);
	}
    #callback-form .btn-arrow {
        right: 6px;
        top: 6px;
	}
    #callback-form label,
    #order-form label  {
        width: 66px;
        font-size: var(--menu-text);
        padding: 4px 16px 0 0;
	}
    #callback-form label::after,
    #order-form label::after {
        height: 44px;
        top: -8px;
	}
    .price {
        width: 100%;
        max-width: 1440px;
        padding: 0 48px;
        margin-bottom: 174px;
        align-self: center;
	}
    .price__accordion-holder {
        display: flex;
        position: relative;
        justify-content: space-between;
	}
    .price__title {
        margin-bottom: 37px;
	}
    .price__tab-info {
        display: flex;
        justify-content: center;
        align-items: center;
        position: absolute;
        right: 0;
        top: 0;
        width: 397px;
        min-height: 960px;
	}
    .price__tab-info-content {
        font-family: var(--fixel-display-font);
        display: flex;
        flex-direction: column;
        width: 301px;
        min-height: 359px;
        background: var(--white-color);
        box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.06);
        z-index: 9;
        border-radius: 30px;
        -webkit-border-radius: 30px;
        -moz-border-radius: 30px;
        -ms-border-radius: 30px;
        -o-border-radius: 30px;
	}
    .price__tab-info-text {
        flex-grow: 1;
        padding: 24px 24px 0;
	}
    .price__tab-info-text p {
        margin-top: 8px;
        line-height: 150%;
        min-height: 67px;
	}
    .price__tab-info-content > p {
        font-weight: 700;
        padding: 0 24px;
        margin-bottom: 24px;
	}
    #price__accordion {
        max-width: 891px;
        min-height: 960px;
        flex-grow: 1;
	}
    #price__accordion h3 {
        height: 120px;
        padding: 24px 0;
        font-size: var(--title-h3-desktop);
        letter-spacing: 0.32px;
	}
    #price__accordion .ui-accordion-header-active .ui-icon,
    #price__accordion .ui-accordion-header-collapsed .ui-icon {
        top: 33px;
        width: 72px;
        height: 72px;
        background-size: 26px 26px;
	}
    .price ul {
        margin-left: 36px;
	}
    .price li {
        padding: 24px 0;
	}
    .price li:first-child {
        padding-top: 8px;
	}
    .price li:last-child {
        padding-bottom: 48px;
	}
    .price li p {
        font-size: var(--menu-text);
        line-height: 100%;
	}
    .price li p:first-child {
        padding-right: 10px;
	}
    .price li p span {
        font-size: var(--menu-text);
	}
    .price li .price__item-price {
        font-size: var(--title-h4-desktop);
        min-width: 87px;
	}
    .price__placeholder {
        display: block;
        width: 397px;
        max-height: 960px;
        margin-left: 1%;
        flex-shrink: 0;
        background: url(../images/green_bkg.png) 0% 0% no-repeat var(--primary-green-color);
        background-size: 397px 960px;
        overflow: hidden;
        border-radius: 30px;	;
        -webkit-border-radius: 30px;
        -moz-border-radius: 30px;
        -ms-border-radius: 30px;
        -o-border-radius: 30px;
    }
    .price__placeholder .price__tab-info-content {
        z-index: 1;
    }
    .feedback-slider {
        padding: 0;
        margin-bottom: 147px;
        position: relative;
	}
    .feedback-slider::before {
        content: "";
        position: absolute;
        right: 0;
        top: -45px;
        height: 514px;
        width: 100%;
        background: url(../images/vector_main_bottom.svg) 100% 50% no-repeat transparent;
        z-index: -1;
	}
    .feedback-slider__content-holder {
        margin: 0 8px;
	}
    .feedback-slider__title-holder {
        max-width: 1440px;
        padding: 0 48px;
        margin: 0 auto;
	}
    .feedback-slider__title {
        max-width: 620px;
        margin-bottom: 36px;
        padding: 0;
	}
    .feedback-slider__content {
        min-height: 329px;
        padding: 32px;
	}
    .feedback-slider .slick-prev, 
    .feedback-slider .slick-next {
        display: block !important;
        top: -77px;
        left: auto;
        right: 144px;
        width: 80px;
        height: 80px;
        z-index: 999;
        border: 1px solid var(--grey-2-color);
        background-color: var(--white-color);
        overflow: hidden;
        border-radius: 50%;
        -webkit-border-radius: 50%;
        -moz-border-radius: 50%;
        -ms-border-radius: 50%;
        -o-border-radius: 50%;
    }
    .feedback-slider .slick-next {
        right: 48px;
    }
    .feedback-slider .slick-prev:before, 
    .feedback-slider .slick-next:before {
        content: url(../images/arrow_left_icon.svg);
        font-size: 32px;
        opacity: 1;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        -webkit-transform: translate(-50%, -50%);
        -moz-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        -o-transform: translate(-50%, -50%);
    }
    .feedback-slider .slick-next:before {
        content: url(../images/arrow_right_icon.svg);
    }
    footer {
        max-width: 1440px;
        padding: 0 48px 48px;
        align-self: center;
	}
    footer .content {
        padding: 48px 64px;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
	}
    footer .content::after {
        right: auto;
        left: 0;
        max-width: 971px;
        width: 100%;
        height: 434px;
        background: url(../images/vector_footer_desktop.svg) 50% 50% no-repeat transparent;
	}
    .footer__logo img {
        width: 374px;
	}
    .footer__contacts {
        flex-grow: 0;
        margin-right: 57px;
	}
    .footer__contacts p {
        font-size: var(--body-text);
	}
    .footer__contacts > a {
        font-size: 36px;
	}
    .footer__contacts .footer__work-schedule, 
    .footer__work-schedule span {
        font-size: var(--title-h4-desktop);
	}
    .footer__social-media a[class*='icon']  { 
        width: 80px;
        height: 80px;
        background-size: 32px 32px;
	}
    .footer__add-info {
        width: 100%;
        align-self: end;
	}
    .footer__add-info ul {
        display: flex;
        gap: 42px;
	}
    .footer__add-info a {
        font-size: var(--body-text);
	}
    .fancybox__content>.f-button.is-close-btn {
        --f-button-svg-width: 24px;
        --f-button-svg-height: 24px;
        top: 32px;
        right: 32px;
	}
    #number-sent-popup {
        padding: 64px 80px;
        min-height: 629px;
	}
    #number-sent-popup img,
    #order-send-popup img {
        width: 199px;
        width: 199px;
	}
    #number-sent-popup .content-holder {
        gap: 36px;
	}
    #number-sent-popup h2,
    #order-send-popup h2 {
        font-size: 40px;
	}
    #number-sent-popup p,
    #order-send-popup p {
        font-size: var(--menu-text);
        line-height: 150%;
        padding: 0 30px;
	}
    #number-sent-popup a,
    #order-send-popup a {
        line-height: 110%;
        max-width: inherit;
	}
    #order-send-popup {
        min-height: 593px;
        padding: 80px 64px;
	}
    #order-send-popup h2 {
        font-size: 48px;
        margin-bottom: 16px;
	}
    #order-send-popup p {
        font-size: var(--subtitle);
        margin-bottom: 40px;
	}
    #order-form label {
        top: 116px
	}
    #user-name {
        padding: 14px 24px 12px 24px;
        margin-bottom: 28px;
	}
    #order-send-popup .btn {
        margin-top: 48px;
	}
    #order-send-popup p {
        padding: 0 50px;
        margin-bottom: 0;
	}
}
@media screen and (min-width: 1200px) {
    .online-order__img {
        width: 418px;
        margin-right: 120px;
	}
    .online-order__title h1 {
        font-size: var(--title-h1-desktop);
        padding: 0;
	}
    .online-order__title p {
        margin-bottom: 56px;
	}
    .price li p span {
        display: inline-block;
	}
}
#phone.error, #order-phone.error, #phone.error, #user-name.error{
	background: #fbbebe;
}

@media (max-width: 700px) {
	.privacy {
		margin-top: 48px;
		margin-bottom: 100px;
	}
	.privacy h1 {
		font-size: 28px;
		margin-bottom: 48px;
	}
	.privacy h2, .privacy h3, .privacy h4, .privacy h5, .privacy h6 {
		font-size: 20px;
		margin: 48px 0 20px;
	}
}