@media (min-width: 1600px) { :root {
	--column-width: 1240px;
	--offset: calc(50% - (var(--column-width) / 2));
	--color-black: #2E2D2C;
	--color-bodily: #D9CEB8;
	--color-grey: #ADB0B2;
	--color-white: #FFFFFF;
	--color-line: #E7E9ED;
	--color-stroke-card: #F8F8F8;
	--color-stroke: #E6E6E6;
	--color-back: #F2F2F2;
	--color-stroke-brands: #DBDBDB;
}

body, input, textarea, select {
	font-family: 'Roboto', sans-serif;
	font-size: 18px;
	line-height: 28px;
	-webkit-text-size-adjust: none;
	color: var(--color-black);
}

body {
	background: var(--color-white);
	position: relative;
}

html {
	scroll-behavior: smooth;
}

img, svg {
	max-width: 100%;
	display: block;
}

* {
	box-sizing: border-box;
	outline: none !important;
	-webkit-tap-highlight-color: transparent;
	-webkit-appearance:none;
}

#transition_disabled * {
    -webkit-transition: none !important;
    -moz-transition: none !important;
    -ms-transition: none !important;
    -o-transition: none !important;
}

body, dl, dt, dd, ul, ol, li, form, table, tr, td, h1, h2, h3, h4, h5, h6, pre, p, span, b, i, input, textarea, fieldset {
	margin: 0;
	padding: 0;
}

.none {
	display: none;
}

.fade-out {
	opacity: 1;
	transition: 0.3s;
	pointer-events: auto;
}

.fade-out.active {
	opacity: 0;
	pointer-events: none;
}

.fade-in {
	opacity: 0;
	transition: 0.3s;
	pointer-events: none;
}

.fade-in.active {
	opacity: 1;
	pointer-events: auto;
}

.container {
	padding-left: var(--offset);
	padding-right: var(--offset);
}

.container-offset {
	width: var(--column-width);
	margin-left: auto;
	margin-right: auto;
}

img[srcset] {
    object-fit: scale-down !important;
    object-position: center !important;
}

#loader {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.7);
    z-index: 10001;
    opacity: 0;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s;
}

#loader.active {
    opacity: 1;
    pointer-events: auto;
}

#loader path {
    fill: var(--color-second);
}

h1,
.h1 {
	font-style: normal;
	font-weight: 400;
	font-size: 46px;
	line-height: 56px;
	letter-spacing: 0.01em;
	text-transform: uppercase;
}

h2,
.h2 {
	font-family: 'STIX Two Text';
	font-style: normal;
	font-weight: 500;
	font-size: 36px;
	line-height: 46px;
	text-transform: uppercase;
}

h3,
.h3 {
	font-family: 'STIX Two Text';
	font-style: normal;
	font-weight: 500;
	font-size: 24px;
	line-height: 34px;
	text-transform: uppercase;
}

h4,
.h4 {
	font-family: 'STIX Two Text';
	font-style: normal;
	font-weight: 500;
	font-size: 20px;
	line-height: 30px;
	text-transform: uppercase;
}

h5,
.h5 {
	font-family: 'STIX Two Text';
	font-style: normal;
	font-weight: 600;
	font-size: 18px;
	line-height: 28px;	
}

.numbers {
	font-style: normal;
	font-weight: 500;
	font-size: 60px;
	line-height: 72px;
	letter-spacing: -0.02em;
}

.price {
	font-style: normal;
	font-weight: 600;
	font-size: 36px;
	line-height: 46px;
	letter-spacing: -0.02em;
}

.price-small {
	font-style: normal;
	font-weight: 600;
	font-size: 30px;
	line-height: 40px;
	letter-spacing: -0.02em;
}

.tariff-name {
	font-style: normal;
	font-weight: 600;
	font-size: 20px;
	line-height: 30px;
}

.main-text,
p,
li {
	font-style: normal;
	font-weight: 400;
	font-size: 16px;
	line-height: 26px;
}

.main-text-medium {
	font-style: normal;
	font-weight: 500;
	font-size: 16px;
	line-height: 26px;
}

.small-text {
	font-style: normal;
	font-weight: 400;
	font-size: 14px;
	line-height: 20px;
}

.tab {
	font-style: normal;
	font-weight: 600;
	font-size: 17px;
	line-height: 17px;
	text-transform: uppercase;
}

.extra-text {
	font-style: normal;
	font-weight: 500;
	font-size: 15px;
	line-height: 20px;
}

.reviews {
	font-style: normal;
	font-weight: 600;
	font-size: 16px;
	line-height: 22px;
	text-transform: uppercase;
}

.body {
	font-style: normal;
	font-weight: 400;
	font-size: 18px;
	line-height: 28px;
}

.body-medium {
	font-style: normal;
	font-weight: 500;
	font-size: 18px;
	line-height: 28px;
} 

.body-light {
	font-style: normal;
	font-weight: 300;
	font-size: 18px;
	line-height: 26px;
}

.color-black {
	color: var(--color-black);
}

.color-white {
	color: var(--color-white);
}

.color-grey {
	color: var(--color-grey);
}

.flex {
	display: flex;
}

.section {
	padding: 120px 0;
}

.top {
	padding-top: 120px;
}

::-webkit-scrollbar {
	width: 2px;
}

::-webkit-scrollbar-track {
	background: var(--color-stroke);
}

::-webkit-scrollbar-thumb {
	background: var(--color-black);
}

.content h2 {
	margin-bottom: 12px;
}

.content h3 {
	margin-bottom: 15px;
}

.content h4 {
	margin-bottom: 10px;
}

.content li {
	margin-bottom: 14px;
}

.content ul {
    list-style: none;
    padding: 0;
}

.content ol {
    padding-left: 15px;
}

.content ul li::before {
    content: '';
    display: block;
    flex-shrink: 0;
    width: 18px;
    height: 18px;   
    background: url(/photos/1/setting/marker.svg) no-repeat;
    background-size: contain;
    margin-right: 12px;
	margin-top: 6px;
}

.content img {
	width: 100%;
	height: 500px;
	object-fit: cover;
}

.content ul li {
    display: flex;
    align-items: flex-start;
}

.content li:last-child {
    margin-bottom: 10px;
}

.content table {
	width: 100%;
}

.content table tr {
	display: flex;
	justify-content: space-between;
}

.content table td {
	width: 48%;
}

.mobile {
	display: none !important;
}

.error {
	display: none;
}

.success {
	display: none;
}

.message.active {
	display: flex;
} 


    .btn {
        display: flex;
        font-style: normal;
        font-weight: 500;
        font-size: 18px;
        line-height: 28px;
        color: var(--color-black);
        background: var(--color-white);
        border-radius: 50px;
        transition: .3s;
        text-decoration: none;
        width: fit-content;
        position: relative;
        cursor: pointer;
        padding: 14px 40px;
        justify-content: center;
    }   

    .btn:hover {
        background: #F4F4F4;
    }

    .btn-svg {
        color: var(--color-white);
        background: none;
        padding: 0;
        align-items: center;
        height: fit-content;
    }

    .btn-svg-black {
        color: var(--color-black);
    }

    .btn-svg:hover {
        background: none;
    }

    .btn-svg:hover::after {
        width: 100%;
    }

    .btn-svg::after {
        display: block;
        position: absolute;
        left: 0;
        width: 0;
        bottom: 0;
        height: 1px;
        background-color: var(--color-white);
        content: "";
        transition: width 0.3s ease-out;
    }

    .btn-svg-black::after {
        background-color: var(--color-black);
    }

    .btn-svg-icon {
        flex-shrink: 1;
        width: 14px;
        height: 14px;
        margin-left: 9px;
    }

    .btn-svg-black .btn-svg-icon path {
        fill: var(--color-black);
    }

    .btn-empty {
        border: 1px solid var(--color-gold);
        padding: 10px 25px;
        width: 250px;
        color: var(--color-gold);
        justify-content: center;
        text-decoration: none;
        cursor: pointer;
    }

    .btn-black {
        border: 1px solid var(--color-black);
        padding: 10px 25px;
        width: 250px;
        color: var(--color-white);
        justify-content: center;
        text-decoration: none;
        background: var(--color-black);
    }

    .btn-black:hover {
        background: #111010;
    }

    .btn-submit {
        width: 320px;
        cursor: pointer;
        margin-bottom: 20px;
        border: none;
    }



 

    .main-banner {
        height: 650px;
    }

    .main-banner-fon {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 740px;
        object-fit: cover;
        z-index: -1;
    }

    .main-banner-content {
        display: flex;
        flex-direction: column;
        width: 597px;
        padding-top: 150px;
    }

    .main-banner-title {
        margin-bottom: 50px;
        font-weight: 500;
        white-space: pre-wrap;
    }

    .main-banner-btns {
        display: flex;
        align-items: center;
    }

    .btn-main-banner {
        margin-right: 50px;
    }

 
    .numbers-items {
        justify-content: center;
    }

    .number-item {
        width: 266px;
        text-align: center;
        padding: 0 16px;
        border-right: 1px solid var(--color-line); 
    }

    .number-item:last-child {
        border: none;
    }

    .number-item-title {
        margin-bottom: 12px;
    }

    .number-item-desc {
        white-space: pre-wrap;
    }

 

    /* Slider */
    .slick-slider
    {
        position: relative;

        display: block;
        box-sizing: border-box;

        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;

        -webkit-touch-callout: none;
        -khtml-user-select: none;
        -ms-touch-action: pan-y;
        touch-action: pan-y;
        -webkit-tap-highlight-color: transparent;
    }

    .slick-list
    {
        position: relative;
        display: block;
        overflow: hidden;
        margin: 0;
        padding: 20px;
    }

    .slick-list:focus
    {
        outline: none;
    }

    .slick-list.dragging
    {
        cursor: pointer;
        cursor: hand;
    }

    .slick-slider .slick-track,
    .slick-slider .slick-list
    {
        -webkit-transform: translate3d(0, 0, 0);
        -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
        -o-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    .slick-track
    {
        position: relative;
        top: 0;
        left: 0;
        display: block;
        margin-left: auto;
        margin-right: auto;
    }

    .slick-track:before,
    .slick-track:after
    {
        display: table;
        content: '';
    }

    .slick-track:after
    {
        clear: both;
    }

    .slick-loading .slick-track
    {
        visibility: hidden;
    }

    .slick-slide
    {
        display: none;
        float: left;
        height: 100%;
        min-height: 1px;
    }

    [dir='rtl'] .slick-slide
    {
        float: right;
    }

    .slick-slide img
    {
        display: block;
    }

    .slick-slide.slick-loading img
    {
        display: none;
    }

    .slick-slide.dragging img
    {
        pointer-events: none;
    }

    .slick-initialized .slick-slide
    {
        display: block;
    }

    .slick-loading .slick-slide
    {
        visibility: hidden;
    }

    .slick-vertical .slick-slide
    {
        display: block;
        height: auto;
        border: 1px solid transparent;
    }

    .slick-arrow.slick-hidden {
        display: none;
    }


    /* Dots */
    .slick-dotted.slick-slider {
        margin-bottom: 19px;
    }

    .slick-dots {
        position: absolute;
        bottom: 20px;
        display: flex;
        width: 100%;
        padding: 0;
        margin: 0;
        list-style: none;
        text-align: center;
        align-items: center;
        justify-content: center;
        height: 4px;
    }

    .slick-dots li {
        position: relative;
        display: inline-block;
        margin: 0 5px;
        padding: 0;
        border-radius: 0;
        cursor: pointer;
        width: 12px;
    }

    .slick-dots li.slick-active {
        width: 40px;
    }

    .slick-dots li button {
        font-size: 0;
        line-height: 0;
        display: block;
        width: 12px;
        height: 2px;
        border-radius: 2px;
        border-radius: 0;
        cursor: pointer;
        color: transparent;
        border: 0;
        outline: none;
        background: rgba(255, 255, 255, 0.6);
    }

    .slick-dots li button:hover,
    .slick-dots li button:focus {
        outline: none;
    }

    .slick-dots li button:hover:before,
    .slick-dots li button:focus:before {
        opacity: 1;
    }

    .slick-dots li button:before {
        font-family: 'slick';
        position: absolute;
        top: 0;
        left: 0;
        width: 12px;
        border-radius: 2px;
        height: 2px;
        border-radius: 0;
        content: '\2022';
        text-align: center;
        background: transparent;
        transition: .3s;
    }

    .slick-dots li.slick-active button:before {
        background: #FFFFFF;
        width: 40px;
        border-radius: 2px;
        height: 2px;
    }

    .slick-dots li:hover button:before {
        background: #FFFFFF;
    }





    .reviews-block {
        position: relative;
        height: 800.51px;
    }

    .reviews-back {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: -1;
    }

    .reviews-inner {
        padding: 140px 0 144px var(--offset);
    }

    .reviews-title {
        margin-bottom: 15px;
        width: 570px;
    }

    .reviews-item {
        display: flex;
        flex-direction: column;
        background: var(--color-white);
        box-shadow: 0px 0px 20px 2px rgba(0, 0, 0, 0.08), 0px 12px 16px -4px rgba(16, 24, 40, 0.08);
        border-radius: 20px;
        padding: 40px 50px;
        width: 605px!important;
        height: 388px;
        margin-right: 30px;
    }

    .reviews-item-inner {
        display: flex;
        align-items: center;
        margin-bottom: 30px;
    }

    .reviews-item-icon {
        margin-right: 20px;
        width: 70px;
        height: 70px;
        border-radius: 50%; 
    }

    .reviews-item-title {
        text-transform: uppercase;
        width: 199px;
        margin-right: 45px;
    }

    .reviews-item-link {
        display: flex;
        align-items: center;
        margin-bottom: 3px;
        text-decoration: none;
    }

    .reviews-item-text {
        height: 208px;
        max-height: auto;
        overflow-y: auto;
        padding-right: 20px;
    }

    .reviews-slider {
        margin-left: -20px;
    }

    .reviews-slider-btn {
        position: absolute;
        right: var(--offset);
        top: 176px;
        display: flex;
    }

    .reviews-slider-btn-svg {
        margin-left: 100px;
        cursor: pointer;
    }

    .slick-disabled {
        cursor: default;
    }

    .slick-disabled path {
        fill: var(--color-grey);
    }

 

    .about-inner {
        justify-content: space-between;
        margin-bottom: 80px;
    }

    .about-content {
        width: 570px;
    }

    .about-img {
        width: 570px;
        height: auto;
        border-radius: 20px;
        object-fit: cover;
    }

    .about-educ {
        justify-content: space-between;
    }

    .about-educ-item {
        height: 190px;
        padding: 35px 39px;
        background: var(--color-back);
        border: 2px solid var(--color-back);
        border-radius: 10px;
        transition: .3s;
    }

    .about-educ-item:hover {
        border: 2px solid #DBDBDB;
    }

    .about-educ-item-img {
        width: 150px;
        height: 120px;
        object-fit: contain;
    }

 
    .sertificat-inner {
        justify-content: space-between;
    }

    .sertificat-images-slider-inner {
        position: relative;
        width: 570px;
    }

    .sertificat-content {
        width: 570px;
    }

    .sertificat-images-slider .slick-list {
        padding: 0;
    }

    .sertificat-image {
        width: 570px;
        height: 420px;
        object-fit: contain;
    }

    .sertificat-slider-btn {
        display: flex;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        left: 20px;
        width: 530px;
        justify-content: space-between;
    }

    .sertificat-slider-btn-svg {
        cursor: pointer;
    }

 
    .title {
        background: var(--color-white);
        box-shadow: 0px 2px 20px 4px rgba(0, 0, 0, 0.06), 0px 2px 20px 4px rgba(0, 0, 0, 0.06);
        border-radius: 30px;
        transform: rotate(-3deg);
        position: absolute;
        padding: 18px 35px;
    }

    .title-mentoring-result {
        top: -30px;
        left: 275px;
    }

 

    .about-inner {
        justify-content: space-between;
        margin-bottom: 80px;
    }

    .about-content {
        width: 570px;
    }

    .about-img {
        width: 570px;
        height: auto;
        border-radius: 20px;
        object-fit: cover;
    }

    .mentoring-result-content {
        position: relative;
    }

    .mentoring-result-content {
        background: var(--color-bodily);
        border-radius: 20px;
        padding: 55px 70px 50px;
    }

 

    .faq-block-inner {
        width: 768px;
        margin: 0 auto;
    }

    .faq-questions {
        display: none;
    }

    .faq-questions.active {
        display: block;
    }

    .faq-block-item {
        padding: 25px 0;
        border-bottom: 1px solid var(--color-line);
    }

    .faq-block-item:first-child {
        padding-top: 0;
    }

    .faq-block-item:last-child {
        border: none;
        padding-bottom: 0;
    }

    .faq-item-header {
        justify-content: space-between;
    }

    .faq-item-title {
        transition: .3s;
    }

    .faq-block-item.active .faq-item-title {
        color: var(--color-blue);
    }

    .faq-item-answer {
        margin-top: 10px;
        transition: .5s ease-in-out;
        overflow: hidden;
    }
    
    .faq-item-answer:not(.active) {
        display: none;
        margin-top: 0;
    }

    .faq-item-header {
        cursor: pointer;
        user-select: none;
    }

    .faq-item-arrow {
        display: block;
        transition: .3s;
    }

    .faq-block-item.active .faq-item-arrow {
        transform: rotate(180deg);
    }

    .faq-item-arrow-svg {
        width: 24px;
        height: 26px;
        object-fit: contain;
    }

    


 
    .process-title {
        text-align: center;
        margin-bottom: 12px;
    }

    .process-desc {
        text-align: center;
        margin-bottom: 40px;
    }

    .process-photo {
        position: relative;
        margin: 0 auto;
        width: 1037px;
    }

    .process-img {
        width: 100%;
        height: 650px;
        border-radius: 20px;
        object-fit: cover;
    }

    .title-process {
        right: 35px;
        top: 95px;
        transform: rotate(3.45deg);
        padding: 10px 25px;
    }

 
    .education-inner {
        justify-content: space-between;
        margin-bottom: 80px;
        align-items: center;
    }

    .education-img {
        width: 600px;
        height: 350px;
        border-radius: 20px;
        object-fit: cover;
    }

    .education-content {
        width: 550px;
    }

    .education-other {
        border-radius: 20px;
        background: var(--color-black);
        padding: 62px 70px 50px;
        position: relative;
    }

    .title-education {
        top: -32px;
        left: 456px;
    }

    .education-other li::before {
        background: url(/photos/1/setting/educationmarker.svg) no-repeat !important;
        background-size: contain !important;
        margin-top: 3px !important;
    }

 

    .faq-program-block-inner {
        width: 1100px;
        margin: 0 auto;
    }

    .faq-program-questions {
        display: none;
    }

    .faq-program-questions.active {
        display: block;
    }

    .faq-program-block-item {
        margin-bottom: 25px;
    }

    .faq-program-block-item:first-child {
        padding-top: 0;
    }

    .faq-program-block-item:last-child {
        margin-bottom: 0;
    }

    .faq-program-item-header {
        justify-content: space-between;
        background: var(--color-bodily);
        border-radius: 10px;
        padding: 15px 30px;
    }

    .faq-program-item-title {
        transition: .3s;
    }

    .faq-program-block-item.active .faq-program-item-title {
        color: var(--color-blue);
    }

    .faq-program-item-answer {
        margin-top: 10px;
        transition: .5s ease-in-out;
        overflow: hidden;
        background: #FFFFFF;
        box-shadow: 0px 2px 20px 4px rgba(0, 0, 0, 0.08);
        border-radius: 8px;
        padding: 30px;
    }
    
    .faq-program-item-answer:not(.active) {
        display: none;
        margin-top: 0;
    }

    .faq-program-item-header {
        cursor: pointer;
        user-select: none;
    }

    .faq-program-item-arrow {
        display: block;
        transition: .3s;
    }

    .faq-program-block-item.active .faq-program-item-arrow {
        transform: rotate(180deg);
    }

    .faq-program-item-arrow-svg {
        width: 24px;
        height: 26px;
        object-fit: contain;
    }

    .faq-program-item-answer li::before {
        background: url(/photos/1/setting/programmarker.svg) no-repeat !important;
        background-size: contain !important;
        margin-top: 3px !important;
    }

    .faq-program-item-answer tr {
        justify-content: space-between;
    }

    .faq-program-item-answer td {
        width: 48%;
    }


 

    .price-block {
        position: relative;
    }

    .price-back {
        position: absolute;
        z-index: -1;
        top: 408px;
        left: 0;
        width: 100%;
        height: 1545.68px;
        object-fit: cover;
    }
    .price-title {
        text-align: center;
        margin-bottom: 70px;
    }

    .price-items {
        justify-content: space-between;
        align-items: flex-end;
        margin-bottom: 35px;
    }

    .price-item {
        display: flex;
        flex-direction: column;
        background: var(--color-white);
        border: 1px solid #F8F8F8;
        box-shadow: 0px 4px 6px -2px rgba(16, 24, 40, 0.03), 0px 12px 16px -4px rgba(16, 24, 40, 0.08);
        border-radius: 20px;
        padding: 35px 32px;
        min-height: 703px;
        height: auto;
        position: relative;
    }

    .price-item:nth-child(2n) {
        min-height: 723px;
        height: auto;
        background: var(--color-black);
        box-shadow: 0px 4px 6px -2px rgba(16, 24, 40, 0.03), 0px 12px 36px -4px rgba(16, 24, 40, 0.1);
        color: var(--color-white);
    }

    .price-item-name {
        text-align: center;
        margin-bottom: 3px;
    }

    .price-item-count {
        text-align: center;
        margin-bottom: 15px;
    }

    .price-item-price {
        text-align: center;
        margin-bottom: 30px;
    }

    .price-item:nth-child(2n) li::before {
        background: url(/photos/1/setting/educationmarker.svg) no-repeat !important;
        background-size: contain !important;
        margin-top: 3px !important;
    }

    .btn-price {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    .price-item:first-child .btn-price,
    .price-item:last-child .btn-price {
        background: var(--color-black);
        color: var(--color-white);
    }

    .price-item-inner {
        flex: 1;
    }

    .title-price {
        top: -28px;
        left: 32px;
        padding: 9px 25px;
    }

    .price-parts {
        display: flex;
        position: relative;
        align-items: center;
    }

    .price-parts-svg {
        flex-shrink: 1;
        width: 24px;
        height: 24px;
        margin-left: 8px;
        cursor: pointer;
    }

    .price-parts-content {
        display: none;
        transition: .3s;
        top: 30px;
        left: 100px;
        padding: 25px 30px;
        background: var(--color-white);
        box-shadow: 0px 4px 6px -2px rgba(16, 24, 40, 0.03), 0px 12px 16px -4px rgba(16, 24, 40, 0.08);
        border-radius: 20px;
        width: 350px;
        position: absolute;
    }

    .price-parts-inner:hover ~.price-parts-content {
        display: flex;
        position: absolute;
    }

    .price-parts-inner {
        display: flex;
    }

 
    .services-title {
        margin-bottom: 40px;
    }

    .service {
        background: var(--color-white);
        border: 1px solid var(--color-stroke-card);
        box-shadow: 0px 4px 6px -2px rgba(16, 24, 40, 0.03), 0px 12px 16px -4px rgba(16, 24, 40, 0.08);
        border-radius: 20px;
        padding: 50px 70px;
        margin-bottom: 35px;
        height: 342px;
        overflow: hidden;
        transition: .5s ease-in-out;
    }

    .service.active {
        height: auto;
    }

    .service:last-child {
        margin: 0;
    }

    .service-title {
        margin-bottom: 15px;
    }

    .service-price {
        margin-bottom: 15px;
    }

    .service-text {
        margin-bottom: 40px;
    }

    .service-btns {
        display: flex;
        align-items: center;
    }

    .btn-service-black {
        width: 320px;
        margin-right: 40px;
    }

    .service-more {
        display: flex;
        align-items: center;
        cursor: pointer;
    }

    .service-more-text {
        margin-right: 10px;
    }

    .service-more-svg {
        transition: .3s;
    }

    .service-more.active .service-more-svg {
        transform: rotate(180deg);
    }

    .service-inner {
        display: none;
        margin-top: 50px;
        border-top: 1px solid #E7E9ED;
        padding-top: 50px;
    }

    .service-inner.active {
        display: flex;
        flex-direction: column;
    }

    .service-inner-content .table {
        margin: 0;
    }

    .service-inner-content td {
        width: 33% !important;
        padding: 0 30px;
    }

    .service-inner-content td:not(:last-child) {
        border-right: 1px solid #E7E9ED;
    }

    .service-inner-content td p {
        font-weight: 500;
        font-size: 16px;
        line-height: 26px;
        margin-bottom: 25px;
    }

    .service-hours {
        width: 649px;
        margin-bottom: 60px;
        display: flex;
        flex-direction: column;
        box-shadow: 0px 0px 20px 2px rgba(0, 0, 0, 0.08), 0px 12px 16px -4px rgba(16, 24, 40, 0.08);
        border-radius: 0px 0px 20px 20px;
    }

    .service-hours-titles {
        background: var(--color-black);
        border-radius: 20px 20px 0px 0px;
        padding: 15px 40px 15px 280px;
        display: flex;
        justify-content: space-between;
    }

    .service-hours-inner {
        background: var(--color-white);
        border-radius: 0px 0px 20px 20px;
        display: flex;
        flex-direction: column;
    }

    .service-hour {
        display: flex;
        padding: 20px 0;
        margin: 0 40px;
        border-bottom: 1px solid var(--color-back);
    }

    .service-hour:last-child {
        border: none;
        border-radius: 0px 0px 20px 20px;
    }

    .service-hours-text {
        width: 161px;
        margin-right: 85px;
    }

    .service-hours-price {
        width: 119px;
        margin-right: 85px;
        text-align: center;
    }

    .service-hours-price:last-child {
        margin: 0;
    }



 
    .community-block {
        background: var(--color-bodily);
    }

    .community-inner {
        padding: 80px 0;
        justify-content: space-between;
        align-items: center;
    }

    .community-content {
        width: 570px;
    }

    .community-title {
        margin-bottom: 12px;
    }

    .community-text {
        margin-bottom: 30px;
    }

    .community-btns {
        display: flex;
        align-items: center;
    }    

    .btn-community-black {
        margin-right: 50px;
        width: 320px;
        justify-content: center;
    }

    .community-img {
        border-radius: 20px;
        width: 570px;
        height: 400px;
        object-fit: cover;
    }

 

	.header-inner  {
		justify-content: space-between;
		padding: 25px 0;
		align-items: center;
	}

	.header-logo {
		width: 178px;
		height: 37px;
	}

	.header-logo-img {
		width: 100%;
		height: 100%;
		object-fit: contain;
	}

	.header-link {
		margin-right: 55px;
		text-decoration: none;
		width: fit-content;
		position: relative;
	}

	.header-link:hover::after {
		width: 100%;
	}

	.header-link::after {
		display: block;
		position: absolute;
		left: 0;
		width: 0;
		bottom: 0;
		height: 1px;
		background-color: var(--color-white);
		content: "";
		transition: width 0.3s ease-out;
	}

	.header-link:last-child {
		margin-right: 0;
	}


 

    .modal {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.6);;
        align-items: center;
        justify-content: center;
        display: flex;
        z-index: 100;
    }

    .modal.active {
        height: 100%;
    }

    .container-modal {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 50px;
        left: 50%;
        transform: translateX(-50%);
    }

    .container-modal-popup {
        width: 1240px !important;
        padding: 60px !important;
        background: #FFFFFF;
        border-radius: 20px;
    }

    .modal .close {
        cursor: pointer;
        position: absolute;
        top: 25px;
        right: 25px;
    }

    .modal .close svg {
        width: 14.41px;
        height: 14.41px;
    }

    .popup-title {
        margin-bottom: 40px;
    }

    .popup-items {
        display: flex;
        justify-content: space-between;
        margin-bottom: 60px;
    }

    .popup-item {
        border-radius: 20px;
        background: var(--color-bodily);
        padding: 40px 25px;
        width: 354px;
        height: auto;
    }

    .popup-item-title {
        margin-bottom: 25px;
        text-align: center;
    }

    .popup-price-title {
        margin-bottom: 30px;
    }

    .popup-prices {
        display: flex;
        align-items: center;
        border-radius: 20px; 
        margin-bottom: 50px;
        width: 984px;
        box-shadow: 0px 0px 20px 2px rgba(0, 0, 0, 0.08), 0px 12px 16px -4px rgba(16, 24, 40, 0.08);
    }

    .popup-price {
        width: 250px;
    }

    .popup-price-mounth {
        padding: 20px;
        display: flex;
        justify-content: center;
        background: var(--color-black);
    }

    .popup-price:first-child .popup-price-mounth {
        border-radius: 20px 0 0 0; 
    }

    .popup-price:last-child .popup-price-mounth {
        border-radius: 0 20px 0 0; 
    }

    .popup-price:first-child .popup-price-price {
        border-radius: 0 0 0 20px; 
    }

    .popup-price:last-child .popup-price-price {
        border-radius: 0 0 20px 0; 
    }

    .popup-price-price {
        padding: 20px;
        display: flex;
        justify-content: center;
        background: var(--color-white);
    }




 

    .input-wrapper {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        position: relative;
    }

    .input-wrapper-100 {
        width: 100%;
    }

    .input {
        width: 350px;
        color: var(--color-white);
        background: none;
        border: 1px solid var(--color-stroke);
        height: 65px;
        border-radius: 8px;
        padding: 16px 20px;
        margin-bottom: 35px;
    }

    .input::placeholder {
        color: var(--color-grey);
    }

    .textarea {
        height: 145px;
        border-radius: 8px;
        resize: none;
        padding: 20px 20px;
        width: 1120px;
    }

    .textarea-wrapper {
        height: 145px;
    }

    .textarea::-webkit-input-placeholder {
        color: var(--color-grey);
    }

    .input-label {
        position: absolute;
        top: -11px;
        left: 20px;
        padding: 0 5px;
        background: var(--color-black);
    }

    .input-grey, 
    .textarea-grey {
        border: 1px solid var(--color-stroke);
    }

    .input-wrapper-grey .input-label {
        color: var(--color-dark-blue);
    }


 

    .input-select-hidden {
        width: 1px;
        height: 1px;
        opacity: 0;
    }

    .select-wrapper {
        position: relative;
    }

    .select-label {
        display: block;
        position: absolute;
        left: 20px;
        top: -11px;
        padding: 0 5px;
        z-index: 2;
        background: var(--color-black);
    }

    .select {
        position: relative;
        /* min-width: 133px; */
        width: 543px;
        height: 65px;
        cursor: pointer;
        margin-bottom: 35px;
    }

    .select-title {
        display: flex;
        align-items: center;
        border: 1px solid var(--color-stroke);
        border-radius: 8px;
        padding: 20px;
        height: 100%;
        position: relative;
        user-select: none;
    }

    .select-title::after {
        position: absolute;
        right: 20px;
        top: 50%;
        display: block;
        content: "";
        width: 6px;
        height: 6px;
        border: 1px solid var(--color-grey);
        transform: translateY(-50%) rotate(45deg);
        transition: .3s;
        border-left: none;
        border-top: none;
        margin-top: -2px;
    }

    .select.active .select-title::after {
        margin-top: 1px;
        transform: translateY(-50%) rotate(225deg);
    }

    .select-title.active {
        color: var(--color-white);
    }

    .select-items {
        position: absolute;
        top: calc(100% + 5px);
        left: 0;
        width: 100%;
        z-index: 100;
        background: var(--color-black);
        border: 1px solid #E2E2E2;
        border-radius: 12px;
        /* box-shadow: 0px 4px 30px rgba(0, 0, 0, 0.07); */
        padding: 15px 20px;
        padding-right: 10px;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: .3s;
    }

    .select.active .select-items {
        opacity: 1;
        visibility: visible;
        pointer-events: all;
    }

    .select-item {
        margin-bottom: 5px;
        transition: .3s;
    }

    .select-item:last-child{
        margin-bottom: 0;
    }

    .select-items-inner {
        max-height: 244px;
        overflow: auto;
    }

    .select-items-inner::-webkit-scrollbar {
		width: 2px;
	}

	.select-items-inner::-webkit-scrollbar-track {
		background-color: var(--color-back);
	}

	.select-items-inner::-webkit-scrollbar-thumb {
		background-color: var(--color-black);
	}



 

    .modal-form {
        z-index: 10000;
    }

    .container-modal-form {
        width: 1240px !important;
        padding: 60px !important;
        background: var(--color-black);
        border-radius: 20px;
    }

    .modal .close {
        cursor: pointer;
        position: absolute;
        top: 25px;
        right: 25px;
    }

    .modal .close svg {
        width: 14.41px;
        height: 14.41px;
    }

    .form-title {
        margin-bottom: 40px;
    }

    .form {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }

   .form-text {
        width: 770px;
   }



 

	footer {
		background: var(--color-black);
		padding: 60px 0;
	}

	.footer-top {
		border-bottom: 1px solid #ADB0B2;
		padding-bottom: 50px;
		display: flex;
		justify-content: space-between;
		align-items: center;
	}

	.footer-logo-img {
		width: 205px;
		height: 43px;
		object-fit: contain;
	}

	.footer-socials {
		display: flex;
		align-items: center;
	}

	.footer-social-link {
		width: 32px;
		height: 32px;
		margin-left: 15px;
		border-radius: 50%;
		background: var(--color-white);
		padding: 8px;
		transition: .3s;
	}

	.footer-social-link:hover {
		background: var(--color-stroke);
	}

	.footer-social-link-img {
		width: 100%;
		height: 100%;
		object-fit: contain;
	}

	.footer-bottom {
		margin-top: 40px;
		display: flex;
		justify-content: space-between;
		align-items: center;
	}

	.footer-made a {
		text-transform: uppercase;
		text-decoration: none;
		color: var(--color-white);
	}
	

 }@media (max-width: 1600px) and (min-width: 1000px) { :root {
	--column-width: 86.1111vw;
	--offset: calc(50% - (var(--column-width) / 2));
	--color-black: #2E2D2C;
	--color-bodily: #D9CEB8;
	--color-grey: #ADB0B2;
	--color-white: #FFFFFF;
	--color-line: #E7E9ED;
	--color-stroke-card: #F8F8F8;
	--color-stroke: #E6E6E6;
	--color-back: #F2F2F2;
	--color-stroke-brands: #DBDBDB;
}

body, input, textarea, select {
	font-family: 'Roboto', sans-serif;
	font-size: 1.25vw;
	line-height: 1.9444vw;
	-webkit-text-size-adjust: none;
	color: var(--color-black);
}

body {
	background: var(--color-white);
	position: relative;
}

html {
	scroll-behavior: smooth;
}

img, svg {
	max-width: 100%;
	display: block;
}

* {
	box-sizing: border-box;
	outline: none !important;
	-webkit-tap-highlight-color: transparent;
	-webkit-appearance:none;
}

#transition_disabled * {
    -webkit-transition: none !important;
    -moz-transition: none !important;
    -ms-transition: none !important;
    -o-transition: none !important;
}

body, dl, dt, dd, ul, ol, li, form, table, tr, td, h1, h2, h3, h4, h5, h6, pre, p, span, b, i, input, textarea, fieldset {
	margin: 0;
	padding: 0;
}

.none {
	display: none;
}

.fade-out {
	opacity: 1;
	transition: 0.3s;
	pointer-events: auto;
}

.fade-out.active {
	opacity: 0;
	pointer-events: none;
}

.fade-in {
	opacity: 0;
	transition: 0.3s;
	pointer-events: none;
}

.fade-in.active {
	opacity: 1;
	pointer-events: auto;
}

.container {
	padding-left: var(--offset);
	padding-right: var(--offset);
}

.container-offset {
	width: var(--column-width);
	margin-left: auto;
	margin-right: auto;
}

img[srcset] {
    object-fit: scale-down !important;
    object-position: center !important;
}

#loader {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.7);
    z-index: 10001;
    opacity: 0;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s;
}

#loader.active {
    opacity: 1;
    pointer-events: auto;
}

#loader path {
    fill: var(--color-second);
}

h1,
.h1 {
	font-style: normal;
	font-weight: 400;
	font-size: 3.1944vw;
	line-height: 3.8889vw;
	letter-spacing: 0.01em;
	text-transform: uppercase;
}

h2,
.h2 {
	font-family: 'STIX Two Text';
	font-style: normal;
	font-weight: 500;
	font-size: 2.5vw;
	line-height: 3.1944vw;
	text-transform: uppercase;
}

h3,
.h3 {
	font-family: 'STIX Two Text';
	font-style: normal;
	font-weight: 500;
	font-size: 1.6667vw;
	line-height: 2.3611vw;
	text-transform: uppercase;
}

h4,
.h4 {
	font-family: 'STIX Two Text';
	font-style: normal;
	font-weight: 500;
	font-size: 1.3889vw;
	line-height: 2.0833vw;
	text-transform: uppercase;
}

h5,
.h5 {
	font-family: 'STIX Two Text';
	font-style: normal;
	font-weight: 600;
	font-size: 1.25vw;
	line-height: 1.9444vw;	
}

.numbers {
	font-style: normal;
	font-weight: 500;
	font-size: 4.1667vw;
	line-height: 5vw;
	letter-spacing: -0.02em;
}

.price {
	font-style: normal;
	font-weight: 600;
	font-size: 2.5vw;
	line-height: 3.1944vw;
	letter-spacing: -0.02em;
}

.price-small {
	font-style: normal;
	font-weight: 600;
	font-size: 2.0833vw;
	line-height: 2.7778vw;
	letter-spacing: -0.02em;
}

.tariff-name {
	font-style: normal;
	font-weight: 600;
	font-size: 1.3889vw;
	line-height: 2.0833vw;
}

.main-text,
p,
li {
	font-style: normal;
	font-weight: 400;
	font-size: 1.1111vw;
	line-height: 1.8056vw;
}

.main-text-medium {
	font-style: normal;
	font-weight: 500;
	font-size: 1.1111vw;
	line-height: 1.8056vw;
}

.small-text {
	font-style: normal;
	font-weight: 400;
	font-size: 0.9722vw;
	line-height: 1.3889vw;
}

.tab {
	font-style: normal;
	font-weight: 600;
	font-size: 1.1806vw;
	line-height: 1.1806vw;
	text-transform: uppercase;
}

.extra-text {
	font-style: normal;
	font-weight: 500;
	font-size: 1.0417vw;
	line-height: 1.3889vw;
}

.reviews {
	font-style: normal;
	font-weight: 600;
	font-size: 1.1111vw;
	line-height: 1.5278vw;
	text-transform: uppercase;
}

.body {
	font-style: normal;
	font-weight: 400;
	font-size: 1.25vw;
	line-height: 1.9444vw;
}

.body-medium {
	font-style: normal;
	font-weight: 500;
	font-size: 1.25vw;
	line-height: 1.9444vw;
} 

.body-light {
	font-style: normal;
	font-weight: 300;
	font-size: 1.25vw;
	line-height: 1.8056vw;
}

.color-black {
	color: var(--color-black);
}

.color-white {
	color: var(--color-white);
}

.color-grey {
	color: var(--color-grey);
}

.flex {
	display: flex;
}

.section {
	padding: 8.3333vw 0;
}

.top {
	padding-top: 8.3333vw;
}

::-webkit-scrollbar {
	width: 2px;
}

::-webkit-scrollbar-track {
	background: var(--color-stroke);
}

::-webkit-scrollbar-thumb {
	background: var(--color-black);
}

.content h2 {
	margin-bottom: 0.8333vw;
}

.content h3 {
	margin-bottom: 1.0417vw;
}

.content h4 {
	margin-bottom: 0.6944vw;
}

.content li {
	margin-bottom: 0.9722vw;
}

.content ul {
    list-style: none;
    padding: 0;
}

.content ol {
    padding-left: 1.0417vw;
}

.content ul li::before {
    content: '';
    display: block;
    flex-shrink: 0;
    width: 1.25vw;
    height: 1.25vw;   
    background: url(/photos/1/setting/marker.svg) no-repeat;
    background-size: contain;
    margin-right: 0.8333vw;
	margin-top: 0.4167vw;
}

.content img {
	width: 100%;
	height: 34.7222vw;
	object-fit: cover;
}

.content ul li {
    display: flex;
    align-items: flex-start;
}

.content li:last-child {
    margin-bottom: 0.6944vw;
}

.content table {
	width: 100%;
}

.content table tr {
	display: flex;
	justify-content: space-between;
}

.content table td {
	width: 48%;
}

.mobile {
	display: none !important;
}

.error {
	display: none;
}

.success {
	display: none;
}

.message.active {
	display: flex;
} 


    .btn {
        display: flex;
        font-style: normal;
        font-weight: 500;
        font-size: 1.25vw;
        line-height: 1.9444vw;
        color: var(--color-black);
        background: var(--color-white);
        border-radius: 3.4722vw;
        transition: .3s;
        text-decoration: none;
        width: fit-content;
        position: relative;
        cursor: pointer;
        padding: 0.9722vw 2.7778vw;
        justify-content: center;
    }   

    .btn:hover {
        background: #F4F4F4;
    }

    .btn-svg {
        color: var(--color-white);
        background: none;
        padding: 0;
        align-items: center;
        height: fit-content;
    }

    .btn-svg-black {
        color: var(--color-black);
    }

    .btn-svg:hover {
        background: none;
    }

    .btn-svg:hover::after {
        width: 100%;
    }

    .btn-svg::after {
        display: block;
        position: absolute;
        left: 0;
        width: 0;
        bottom: 0;
        height: 1px;
        background-color: var(--color-white);
        content: "";
        transition: width 0.3s ease-out;
    }

    .btn-svg-black::after {
        background-color: var(--color-black);
    }

    .btn-svg-icon {
        flex-shrink: 1;
        width: 0.9722vw;
        height: 0.9722vw;
        margin-left: 0.625vw;
    }

    .btn-svg-black .btn-svg-icon path {
        fill: var(--color-black);
    }

    .btn-empty {
        border: 1px solid var(--color-gold);
        padding: 0.6944vw 1.7361vw;
        width: 17.3611vw;
        color: var(--color-gold);
        justify-content: center;
        text-decoration: none;
        cursor: pointer;
    }

    .btn-black {
        border: 1px solid var(--color-black);
        padding: 0.6944vw 1.7361vw;
        width: 17.3611vw;
        color: var(--color-white);
        justify-content: center;
        text-decoration: none;
        background: var(--color-black);
    }

    .btn-black:hover {
        background: #111010;
    }

    .btn-submit {
        width: 22.2222vw;
        cursor: pointer;
        margin-bottom: 1.3889vw;
        border: none;
    }



 

    .main-banner {
        height: 45.1389vw;
    }

    .main-banner-fon {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 51.3889vw;
        object-fit: cover;
        z-index: -1;
    }

    .main-banner-content {
        display: flex;
        flex-direction: column;
        width: 41.4583vw;
        padding-top: 10.4167vw;
    }

    .main-banner-title {
        margin-bottom: 3.4722vw;
        font-weight: 500;
        white-space: pre-wrap;
    }

    .main-banner-btns {
        display: flex;
        align-items: center;
    }

    .btn-main-banner {
        margin-right: 3.4722vw;
    }

 
    .numbers-items {
        justify-content: center;
    }

    .number-item {
        width: 18.4722vw;
        text-align: center;
        padding: 0 1.1111vw;
        border-right: 1px solid var(--color-line); 
    }

    .number-item:last-child {
        border: none;
    }

    .number-item-title {
        margin-bottom: 0.8333vw;
    }

    .number-item-desc {
        white-space: pre-wrap;
    }

 

    /* Slider */
    .slick-slider
    {
        position: relative;

        display: block;
        box-sizing: border-box;

        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;

        -webkit-touch-callout: none;
        -khtml-user-select: none;
        -ms-touch-action: pan-y;
        touch-action: pan-y;
        -webkit-tap-highlight-color: transparent;
    }

    .slick-list
    {
        position: relative;
        display: block;
        overflow: hidden;
        margin: 0;
        padding: 1.3889vw;
    }

    .slick-list:focus
    {
        outline: none;
    }

    .slick-list.dragging
    {
        cursor: pointer;
        cursor: hand;
    }

    .slick-slider .slick-track,
    .slick-slider .slick-list
    {
        -webkit-transform: translate3d(0, 0, 0);
        -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
        -o-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    .slick-track
    {
        position: relative;
        top: 0;
        left: 0;
        display: block;
        margin-left: auto;
        margin-right: auto;
    }

    .slick-track:before,
    .slick-track:after
    {
        display: table;
        content: '';
    }

    .slick-track:after
    {
        clear: both;
    }

    .slick-loading .slick-track
    {
        visibility: hidden;
    }

    .slick-slide
    {
        display: none;
        float: left;
        height: 100%;
        min-height: 1px;
    }

    [dir='rtl'] .slick-slide
    {
        float: right;
    }

    .slick-slide img
    {
        display: block;
    }

    .slick-slide.slick-loading img
    {
        display: none;
    }

    .slick-slide.dragging img
    {
        pointer-events: none;
    }

    .slick-initialized .slick-slide
    {
        display: block;
    }

    .slick-loading .slick-slide
    {
        visibility: hidden;
    }

    .slick-vertical .slick-slide
    {
        display: block;
        height: auto;
        border: 1px solid transparent;
    }

    .slick-arrow.slick-hidden {
        display: none;
    }


    /* Dots */
    .slick-dotted.slick-slider {
        margin-bottom: 1.3194vw;
    }

    .slick-dots {
        position: absolute;
        bottom: 1.3889vw;
        display: flex;
        width: 100%;
        padding: 0;
        margin: 0;
        list-style: none;
        text-align: center;
        align-items: center;
        justify-content: center;
        height: 0.2778vw;
    }

    .slick-dots li {
        position: relative;
        display: inline-block;
        margin: 0 0.3472vw;
        padding: 0;
        border-radius: 0;
        cursor: pointer;
        width: 0.8333vw;
    }

    .slick-dots li.slick-active {
        width: 2.7778vw;
    }

    .slick-dots li button {
        font-size: 0;
        line-height: 0;
        display: block;
        width: 0.8333vw;
        height: 2px;
        border-radius: 2px;
        border-radius: 0;
        cursor: pointer;
        color: transparent;
        border: 0;
        outline: none;
        background: rgba(255, 255, 255, 0.6);
    }

    .slick-dots li button:hover,
    .slick-dots li button:focus {
        outline: none;
    }

    .slick-dots li button:hover:before,
    .slick-dots li button:focus:before {
        opacity: 1;
    }

    .slick-dots li button:before {
        font-family: 'slick';
        position: absolute;
        top: 0;
        left: 0;
        width: 0.8333vw;
        border-radius: 2px;
        height: 2px;
        border-radius: 0;
        content: '\2022';
        text-align: center;
        background: transparent;
        transition: .3s;
    }

    .slick-dots li.slick-active button:before {
        background: #FFFFFF;
        width: 2.7778vw;
        border-radius: 2px;
        height: 2px;
    }

    .slick-dots li:hover button:before {
        background: #FFFFFF;
    }





    .reviews-block {
        position: relative;
        height: 55.591vw;
    }

    .reviews-back {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: -1;
    }

    .reviews-inner {
        padding: 9.7222vw 0 10vw var(--offset);
    }

    .reviews-title {
        margin-bottom: 1.0417vw;
        width: 39.5833vw;
    }

    .reviews-item {
        display: flex;
        flex-direction: column;
        background: var(--color-white);
        box-shadow: 0vw 0vw 1.3889vw 2px rgba(0, 0, 0, 0.08), 0vw 0.8333vw 1.1111vw -0.2778vw rgba(16, 24, 40, 0.08);
        border-radius: 1.3889vw;
        padding: 2.7778vw 3.4722vw;
        width: 42.0139vw!important;
        height: 26.9444vw;
        margin-right: 2.0833vw;
    }

    .reviews-item-inner {
        display: flex;
        align-items: center;
        margin-bottom: 2.0833vw;
    }

    .reviews-item-icon {
        margin-right: 1.3889vw;
        width: 4.8611vw;
        height: 4.8611vw;
        border-radius: 50%; 
    }

    .reviews-item-title {
        text-transform: uppercase;
        width: 13.8194vw;
        margin-right: 3.125vw;
    }

    .reviews-item-link {
        display: flex;
        align-items: center;
        margin-bottom: 3px;
        text-decoration: none;
    }

    .reviews-item-text {
        height: 14.4444vw;
        max-height: auto;
        overflow-y: auto;
        padding-right: 1.3889vw;
    }

    .reviews-slider {
        margin-left: -1.3889vw;
    }

    .reviews-slider-btn {
        position: absolute;
        right: var(--offset);
        top: 12.2222vw;
        display: flex;
    }

    .reviews-slider-btn-svg {
        margin-left: 6.9444vw;
        cursor: pointer;
    }

    .slick-disabled {
        cursor: default;
    }

    .slick-disabled path {
        fill: var(--color-grey);
    }

 

    .about-inner {
        justify-content: space-between;
        margin-bottom: 5.5556vw;
    }

    .about-content {
        width: 39.5833vw;
    }

    .about-img {
        width: 39.5833vw;
        height: auto;
        border-radius: 1.3889vw;
        object-fit: cover;
    }

    .about-educ {
        justify-content: space-between;
    }

    .about-educ-item {
        height: 13.1944vw;
        padding: 2.4306vw 2.7083vw;
        background: var(--color-back);
        border: 2px solid var(--color-back);
        border-radius: 0.6944vw;
        transition: .3s;
    }

    .about-educ-item:hover {
        border: 2px solid #DBDBDB;
    }

    .about-educ-item-img {
        width: 10.4167vw;
        height: 8.3333vw;
        object-fit: contain;
    }

 
    .sertificat-inner {
        justify-content: space-between;
    }

    .sertificat-images-slider-inner {
        position: relative;
        width: 39.5833vw;
    }

    .sertificat-content {
        width: 39.5833vw;
    }

    .sertificat-images-slider .slick-list {
        padding: 0;
    }

    .sertificat-image {
        width: 39.5833vw;
        height: 29.1667vw;
        object-fit: contain;
    }

    .sertificat-slider-btn {
        display: flex;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        left: 1.3889vw;
        width: 36.8056vw;
        justify-content: space-between;
    }

    .sertificat-slider-btn-svg {
        cursor: pointer;
    }

 
    .title {
        background: var(--color-white);
        box-shadow: 0vw 2px 1.3889vw 0.2778vw rgba(0, 0, 0, 0.06), 0vw 2px 1.3889vw 0.2778vw rgba(0, 0, 0, 0.06);
        border-radius: 2.0833vw;
        transform: rotate(-3deg);
        position: absolute;
        padding: 1.25vw 2.4306vw;
    }

    .title-mentoring-result {
        top: -2.0833vw;
        left: 19.0972vw;
    }

 

    .about-inner {
        justify-content: space-between;
        margin-bottom: 5.5556vw;
    }

    .about-content {
        width: 39.5833vw;
    }

    .about-img {
        width: 39.5833vw;
        height: auto;
        border-radius: 1.3889vw;
        object-fit: cover;
    }

    .mentoring-result-content {
        position: relative;
    }

    .mentoring-result-content {
        background: var(--color-bodily);
        border-radius: 1.3889vw;
        padding: 3.8194vw 4.8611vw 3.4722vw;
    }

 

    .faq-block-inner {
        width: 53.3333vw;
        margin: 0 auto;
    }

    .faq-questions {
        display: none;
    }

    .faq-questions.active {
        display: block;
    }

    .faq-block-item {
        padding: 1.7361vw 0;
        border-bottom: 1px solid var(--color-line);
    }

    .faq-block-item:first-child {
        padding-top: 0;
    }

    .faq-block-item:last-child {
        border: none;
        padding-bottom: 0;
    }

    .faq-item-header {
        justify-content: space-between;
    }

    .faq-item-title {
        transition: .3s;
    }

    .faq-block-item.active .faq-item-title {
        color: var(--color-blue);
    }

    .faq-item-answer {
        margin-top: 0.6944vw;
        transition: .5s ease-in-out;
        overflow: hidden;
    }
    
    .faq-item-answer:not(.active) {
        display: none;
        margin-top: 0;
    }

    .faq-item-header {
        cursor: pointer;
        user-select: none;
    }

    .faq-item-arrow {
        display: block;
        transition: .3s;
    }

    .faq-block-item.active .faq-item-arrow {
        transform: rotate(180deg);
    }

    .faq-item-arrow-svg {
        width: 1.6667vw;
        height: 1.8056vw;
        object-fit: contain;
    }

    


 
    .process-title {
        text-align: center;
        margin-bottom: 0.8333vw;
    }

    .process-desc {
        text-align: center;
        margin-bottom: 2.7778vw;
    }

    .process-photo {
        position: relative;
        margin: 0 auto;
        width: 72.0139vw;
    }

    .process-img {
        width: 100%;
        height: 45.1389vw;
        border-radius: 1.3889vw;
        object-fit: cover;
    }

    .title-process {
        right: 2.4306vw;
        top: 6.5972vw;
        transform: rotate(3.45deg);
        padding: 0.6944vw 1.7361vw;
    }

 
    .education-inner {
        justify-content: space-between;
        margin-bottom: 5.5556vw;
        align-items: center;
    }

    .education-img {
        width: 41.6667vw;
        height: 24.3056vw;
        border-radius: 1.3889vw;
        object-fit: cover;
    }

    .education-content {
        width: 38.1944vw;
    }

    .education-other {
        border-radius: 1.3889vw;
        background: var(--color-black);
        padding: 4.3056vw 4.8611vw 3.4722vw;
        position: relative;
    }

    .title-education {
        top: -2.2222vw;
        left: 31.6667vw;
    }

    .education-other li::before {
        background: url(/photos/1/setting/educationmarker.svg) no-repeat !important;
        background-size: contain !important;
        margin-top: 3px !important;
    }

 

    .faq-program-block-inner {
        width: 76.3889vw;
        margin: 0 auto;
    }

    .faq-program-questions {
        display: none;
    }

    .faq-program-questions.active {
        display: block;
    }

    .faq-program-block-item {
        margin-bottom: 1.7361vw;
    }

    .faq-program-block-item:first-child {
        padding-top: 0;
    }

    .faq-program-block-item:last-child {
        margin-bottom: 0;
    }

    .faq-program-item-header {
        justify-content: space-between;
        background: var(--color-bodily);
        border-radius: 0.6944vw;
        padding: 1.0417vw 2.0833vw;
    }

    .faq-program-item-title {
        transition: .3s;
    }

    .faq-program-block-item.active .faq-program-item-title {
        color: var(--color-blue);
    }

    .faq-program-item-answer {
        margin-top: 0.6944vw;
        transition: .5s ease-in-out;
        overflow: hidden;
        background: #FFFFFF;
        box-shadow: 0vw 2px 1.3889vw 0.2778vw rgba(0, 0, 0, 0.08);
        border-radius: 0.5556vw;
        padding: 2.0833vw;
    }
    
    .faq-program-item-answer:not(.active) {
        display: none;
        margin-top: 0;
    }

    .faq-program-item-header {
        cursor: pointer;
        user-select: none;
    }

    .faq-program-item-arrow {
        display: block;
        transition: .3s;
    }

    .faq-program-block-item.active .faq-program-item-arrow {
        transform: rotate(180deg);
    }

    .faq-program-item-arrow-svg {
        width: 1.6667vw;
        height: 1.8056vw;
        object-fit: contain;
    }

    .faq-program-item-answer li::before {
        background: url(/photos/1/setting/programmarker.svg) no-repeat !important;
        background-size: contain !important;
        margin-top: 3px !important;
    }

    .faq-program-item-answer tr {
        justify-content: space-between;
    }

    .faq-program-item-answer td {
        width: 48%;
    }


 

    .price-block {
        position: relative;
    }

    .price-back {
        position: absolute;
        z-index: -1;
        top: 28.3333vw;
        left: 0;
        width: 100%;
        height: 107.3389vw;
        object-fit: cover;
    }
    .price-title {
        text-align: center;
        margin-bottom: 4.8611vw;
    }

    .price-items {
        justify-content: space-between;
        align-items: flex-end;
        margin-bottom: 2.4306vw;
    }

    .price-item {
        display: flex;
        flex-direction: column;
        background: var(--color-white);
        border: 1px solid #F8F8F8;
        box-shadow: 0vw 0.2778vw 0.4167vw -2px rgba(16, 24, 40, 0.03), 0vw 0.8333vw 1.1111vw -0.2778vw rgba(16, 24, 40, 0.08);
        border-radius: 1.3889vw;
        padding: 2.4306vw 2.2222vw;
        min-height: 48.8194vw;
        height: auto;
        position: relative;
    }

    .price-item:nth-child(2n) {
        min-height: 50.2083vw;
        height: auto;
        background: var(--color-black);
        box-shadow: 0vw 0.2778vw 0.4167vw -2px rgba(16, 24, 40, 0.03), 0vw 0.8333vw 2.5vw -0.2778vw rgba(16, 24, 40, 0.1);
        color: var(--color-white);
    }

    .price-item-name {
        text-align: center;
        margin-bottom: 3px;
    }

    .price-item-count {
        text-align: center;
        margin-bottom: 1.0417vw;
    }

    .price-item-price {
        text-align: center;
        margin-bottom: 2.0833vw;
    }

    .price-item:nth-child(2n) li::before {
        background: url(/photos/1/setting/educationmarker.svg) no-repeat !important;
        background-size: contain !important;
        margin-top: 3px !important;
    }

    .btn-price {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    .price-item:first-child .btn-price,
    .price-item:last-child .btn-price {
        background: var(--color-black);
        color: var(--color-white);
    }

    .price-item-inner {
        flex: 1;
    }

    .title-price {
        top: -1.9444vw;
        left: 2.2222vw;
        padding: 0.625vw 1.7361vw;
    }

    .price-parts {
        display: flex;
        position: relative;
        align-items: center;
    }

    .price-parts-svg {
        flex-shrink: 1;
        width: 1.6667vw;
        height: 1.6667vw;
        margin-left: 0.5556vw;
        cursor: pointer;
    }

    .price-parts-content {
        display: none;
        transition: .3s;
        top: 2.0833vw;
        left: 6.9444vw;
        padding: 1.7361vw 2.0833vw;
        background: var(--color-white);
        box-shadow: 0vw 0.2778vw 0.4167vw -2px rgba(16, 24, 40, 0.03), 0vw 0.8333vw 1.1111vw -0.2778vw rgba(16, 24, 40, 0.08);
        border-radius: 1.3889vw;
        width: 24.3056vw;
        position: absolute;
    }

    .price-parts-inner:hover ~.price-parts-content {
        display: flex;
        position: absolute;
    }

    .price-parts-inner {
        display: flex;
    }

 
    .services-title {
        margin-bottom: 2.7778vw;
    }

    .service {
        background: var(--color-white);
        border: 1px solid var(--color-stroke-card);
        box-shadow: 0vw 0.2778vw 0.4167vw -2px rgba(16, 24, 40, 0.03), 0vw 0.8333vw 1.1111vw -0.2778vw rgba(16, 24, 40, 0.08);
        border-radius: 1.3889vw;
        padding: 3.4722vw 4.8611vw;
        margin-bottom: 2.4306vw;
        height: 23.75vw;
        overflow: hidden;
        transition: .5s ease-in-out;
    }

    .service.active {
        height: auto;
    }

    .service:last-child {
        margin: 0;
    }

    .service-title {
        margin-bottom: 1.0417vw;
    }

    .service-price {
        margin-bottom: 1.0417vw;
    }

    .service-text {
        margin-bottom: 2.7778vw;
    }

    .service-btns {
        display: flex;
        align-items: center;
    }

    .btn-service-black {
        width: 22.2222vw;
        margin-right: 2.7778vw;
    }

    .service-more {
        display: flex;
        align-items: center;
        cursor: pointer;
    }

    .service-more-text {
        margin-right: 0.6944vw;
    }

    .service-more-svg {
        transition: .3s;
    }

    .service-more.active .service-more-svg {
        transform: rotate(180deg);
    }

    .service-inner {
        display: none;
        margin-top: 3.4722vw;
        border-top: 1px solid #E7E9ED;
        padding-top: 3.4722vw;
    }

    .service-inner.active {
        display: flex;
        flex-direction: column;
    }

    .service-inner-content .table {
        margin: 0;
    }

    .service-inner-content td {
        width: 33% !important;
        padding: 0 2.0833vw;
    }

    .service-inner-content td:not(:last-child) {
        border-right: 1px solid #E7E9ED;
    }

    .service-inner-content td p {
        font-weight: 500;
        font-size: 1.1111vw;
        line-height: 1.8056vw;
        margin-bottom: 1.7361vw;
    }

    .service-hours {
        width: 45.0694vw;
        margin-bottom: 4.1667vw;
        display: flex;
        flex-direction: column;
        box-shadow: 0vw 0vw 1.3889vw 2px rgba(0, 0, 0, 0.08), 0vw 0.8333vw 1.1111vw -0.2778vw rgba(16, 24, 40, 0.08);
        border-radius: 0vw 0vw 1.3889vw 1.3889vw;
    }

    .service-hours-titles {
        background: var(--color-black);
        border-radius: 1.3889vw 1.3889vw 0vw 0vw;
        padding: 1.0417vw 2.7778vw 1.0417vw 19.4444vw;
        display: flex;
        justify-content: space-between;
    }

    .service-hours-inner {
        background: var(--color-white);
        border-radius: 0vw 0vw 1.3889vw 1.3889vw;
        display: flex;
        flex-direction: column;
    }

    .service-hour {
        display: flex;
        padding: 1.3889vw 0;
        margin: 0 2.7778vw;
        border-bottom: 1px solid var(--color-back);
    }

    .service-hour:last-child {
        border: none;
        border-radius: 0vw 0vw 1.3889vw 1.3889vw;
    }

    .service-hours-text {
        width: 11.1806vw;
        margin-right: 5.9028vw;
    }

    .service-hours-price {
        width: 8.2639vw;
        margin-right: 5.9028vw;
        text-align: center;
    }

    .service-hours-price:last-child {
        margin: 0;
    }



 
    .community-block {
        background: var(--color-bodily);
    }

    .community-inner {
        padding: 5.5556vw 0;
        justify-content: space-between;
        align-items: center;
    }

    .community-content {
        width: 39.5833vw;
    }

    .community-title {
        margin-bottom: 0.8333vw;
    }

    .community-text {
        margin-bottom: 2.0833vw;
    }

    .community-btns {
        display: flex;
        align-items: center;
    }    

    .btn-community-black {
        margin-right: 3.4722vw;
        width: 22.2222vw;
        justify-content: center;
    }

    .community-img {
        border-radius: 1.3889vw;
        width: 39.5833vw;
        height: 27.7778vw;
        object-fit: cover;
    }

 

	.header-inner  {
		justify-content: space-between;
		padding: 1.7361vw 0;
		align-items: center;
	}

	.header-logo {
		width: 12.3611vw;
		height: 2.5694vw;
	}

	.header-logo-img {
		width: 100%;
		height: 100%;
		object-fit: contain;
	}

	.header-link {
		margin-right: 3.8194vw;
		text-decoration: none;
		width: fit-content;
		position: relative;
	}

	.header-link:hover::after {
		width: 100%;
	}

	.header-link::after {
		display: block;
		position: absolute;
		left: 0;
		width: 0;
		bottom: 0;
		height: 1px;
		background-color: var(--color-white);
		content: "";
		transition: width 0.3s ease-out;
	}

	.header-link:last-child {
		margin-right: 0;
	}


 

    .modal {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.6);;
        align-items: center;
        justify-content: center;
        display: flex;
        z-index: 100;
    }

    .modal.active {
        height: 100%;
    }

    .container-modal {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 3.4722vw;
        left: 50%;
        transform: translateX(-50%);
    }

    .container-modal-popup {
        width: 86.1111vw !important;
        padding: 4.1667vw !important;
        background: #FFFFFF;
        border-radius: 1.3889vw;
    }

    .modal .close {
        cursor: pointer;
        position: absolute;
        top: 1.7361vw;
        right: 1.7361vw;
    }

    .modal .close svg {
        width: 1.0007vw;
        height: 1.0007vw;
    }

    .popup-title {
        margin-bottom: 2.7778vw;
    }

    .popup-items {
        display: flex;
        justify-content: space-between;
        margin-bottom: 4.1667vw;
    }

    .popup-item {
        border-radius: 1.3889vw;
        background: var(--color-bodily);
        padding: 2.7778vw 1.7361vw;
        width: 24.5833vw;
        height: auto;
    }

    .popup-item-title {
        margin-bottom: 1.7361vw;
        text-align: center;
    }

    .popup-price-title {
        margin-bottom: 2.0833vw;
    }

    .popup-prices {
        display: flex;
        align-items: center;
        border-radius: 1.3889vw; 
        margin-bottom: 3.4722vw;
        width: 68.3333vw;
        box-shadow: 0vw 0vw 1.3889vw 2px rgba(0, 0, 0, 0.08), 0vw 0.8333vw 1.1111vw -0.2778vw rgba(16, 24, 40, 0.08);
    }

    .popup-price {
        width: 17.3611vw;
    }

    .popup-price-mounth {
        padding: 1.3889vw;
        display: flex;
        justify-content: center;
        background: var(--color-black);
    }

    .popup-price:first-child .popup-price-mounth {
        border-radius: 1.3889vw 0 0 0; 
    }

    .popup-price:last-child .popup-price-mounth {
        border-radius: 0 1.3889vw 0 0; 
    }

    .popup-price:first-child .popup-price-price {
        border-radius: 0 0 0 1.3889vw; 
    }

    .popup-price:last-child .popup-price-price {
        border-radius: 0 0 1.3889vw 0; 
    }

    .popup-price-price {
        padding: 1.3889vw;
        display: flex;
        justify-content: center;
        background: var(--color-white);
    }




 

    .input-wrapper {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        position: relative;
    }

    .input-wrapper-100 {
        width: 100%;
    }

    .input {
        width: 24.3056vw;
        color: var(--color-white);
        background: none;
        border: 1px solid var(--color-stroke);
        height: 4.5139vw;
        border-radius: 0.5556vw;
        padding: 1.1111vw 1.3889vw;
        margin-bottom: 2.4306vw;
    }

    .input::placeholder {
        color: var(--color-grey);
    }

    .textarea {
        height: 10.0694vw;
        border-radius: 0.5556vw;
        resize: none;
        padding: 1.3889vw 1.3889vw;
        width: 77.7778vw;
    }

    .textarea-wrapper {
        height: 10.0694vw;
    }

    .textarea::-webkit-input-placeholder {
        color: var(--color-grey);
    }

    .input-label {
        position: absolute;
        top: -0.7639vw;
        left: 1.3889vw;
        padding: 0 0.3472vw;
        background: var(--color-black);
    }

    .input-grey, 
    .textarea-grey {
        border: 1px solid var(--color-stroke);
    }

    .input-wrapper-grey .input-label {
        color: var(--color-dark-blue);
    }


 

    .input-select-hidden {
        width: 1px;
        height: 1px;
        opacity: 0;
    }

    .select-wrapper {
        position: relative;
    }

    .select-label {
        display: block;
        position: absolute;
        left: 1.3889vw;
        top: -0.7639vw;
        padding: 0 0.3472vw;
        z-index: 2;
        background: var(--color-black);
    }

    .select {
        position: relative;
        /* min-width: 9.2361vw; */
        width: 37.7083vw;
        height: 4.5139vw;
        cursor: pointer;
        margin-bottom: 2.4306vw;
    }

    .select-title {
        display: flex;
        align-items: center;
        border: 1px solid var(--color-stroke);
        border-radius: 0.5556vw;
        padding: 1.3889vw;
        height: 100%;
        position: relative;
        user-select: none;
    }

    .select-title::after {
        position: absolute;
        right: 1.3889vw;
        top: 50%;
        display: block;
        content: "";
        width: 0.4167vw;
        height: 0.4167vw;
        border: 1px solid var(--color-grey);
        transform: translateY(-50%) rotate(45deg);
        transition: .3s;
        border-left: none;
        border-top: none;
        margin-top: -2px;
    }

    .select.active .select-title::after {
        margin-top: 1px;
        transform: translateY(-50%) rotate(225deg);
    }

    .select-title.active {
        color: var(--color-white);
    }

    .select-items {
        position: absolute;
        top: calc(100% + 0.3472vw);
        left: 0;
        width: 100%;
        z-index: 100;
        background: var(--color-black);
        border: 1px solid #E2E2E2;
        border-radius: 0.8333vw;
        /* box-shadow: 0vw 0.2778vw 2.0833vw rgba(0, 0, 0, 0.07); */
        padding: 1.0417vw 1.3889vw;
        padding-right: 0.6944vw;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: .3s;
    }

    .select.active .select-items {
        opacity: 1;
        visibility: visible;
        pointer-events: all;
    }

    .select-item {
        margin-bottom: 0.3472vw;
        transition: .3s;
    }

    .select-item:last-child{
        margin-bottom: 0;
    }

    .select-items-inner {
        max-height: 16.9444vw;
        overflow: auto;
    }

    .select-items-inner::-webkit-scrollbar {
		width: 2px;
	}

	.select-items-inner::-webkit-scrollbar-track {
		background-color: var(--color-back);
	}

	.select-items-inner::-webkit-scrollbar-thumb {
		background-color: var(--color-black);
	}



 

    .modal-form {
        z-index: 10000;
    }

    .container-modal-form {
        width: 86.1111vw !important;
        padding: 4.1667vw !important;
        background: var(--color-black);
        border-radius: 1.3889vw;
    }

    .modal .close {
        cursor: pointer;
        position: absolute;
        top: 1.7361vw;
        right: 1.7361vw;
    }

    .modal .close svg {
        width: 1.0007vw;
        height: 1.0007vw;
    }

    .form-title {
        margin-bottom: 2.7778vw;
    }

    .form {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }

   .form-text {
        width: 53.4722vw;
   }



 

	footer {
		background: var(--color-black);
		padding: 4.1667vw 0;
	}

	.footer-top {
		border-bottom: 1px solid #ADB0B2;
		padding-bottom: 3.4722vw;
		display: flex;
		justify-content: space-between;
		align-items: center;
	}

	.footer-logo-img {
		width: 14.2361vw;
		height: 2.9861vw;
		object-fit: contain;
	}

	.footer-socials {
		display: flex;
		align-items: center;
	}

	.footer-social-link {
		width: 2.2222vw;
		height: 2.2222vw;
		margin-left: 1.0417vw;
		border-radius: 50%;
		background: var(--color-white);
		padding: 0.5556vw;
		transition: .3s;
	}

	.footer-social-link:hover {
		background: var(--color-stroke);
	}

	.footer-social-link-img {
		width: 100%;
		height: 100%;
		object-fit: contain;
	}

	.footer-bottom {
		margin-top: 2.7778vw;
		display: flex;
		justify-content: space-between;
		align-items: center;
	}

	.footer-made a {
		text-transform: uppercase;
		text-decoration: none;
		color: var(--color-white);
	}
	

 }@media (min-width: calc(494px)) and (max-width: calc(1000px)) {
            body {
                --coef-w: calc(var(--width) / -1310 + 1.3771);
                --offset: calc(4.6875vw * ((320 - 320 * var(--coef-w) + 30 * var(--coef-w)) / 30));
                --column-width: calc( (1px * var(--width)) - (2 * var(--offset)) );
            }
        }

        @media (max-width: calc(494px)) {
            body {
                --coef-w: 1;
                --column-width: 90.625vw;
                --offset: calc(50% - (var(--column-width) / 2));
            }
        }
        @media (max-width: 1000px) { :root {
	--column-width: calc(90.625vw * var(--coef-w));
	--offset: calc(4.6875vw * var(--coef-w));
	--color-black: #2E2D2C;
	--color-bodily: #D9CEB8;
	--color-grey: #ADB0B2;
	--color-white: #FFFFFF;
	--color-line: #E7E9ED;
	--color-stroke-card: #F8F8F8;
	--color-stroke: #E6E6E6;
	--color-back: #F2F2F2;
	--color-stroke-brands: #DBDBDB;
}

body, input, textarea, select {
	font-family: 'Roboto', sans-serif;
	font-size: calc(4.375vw * var(--coef-w));
	line-height: calc(7.5vw * var(--coef-w));
	-webkit-text-size-adjust: none;
	color: var(--color-black);
}

body {
	background: var(--color-white);
	position: relative;
}

html {
	scroll-behavior: smooth;
}

img, svg {
	max-width: 100%;
	display: block;
}

* {
	box-sizing: border-box;
	outline: none !important;
	-webkit-tap-highlight-color: transparent;
	-webkit-appearance:none;
}

#transition_disabled * {
    -webkit-transition: none !important;
    -moz-transition: none !important;
    -ms-transition: none !important;
    -o-transition: none !important;
}

body, dl, dt, dd, ul, ol, li, form, table, tr, td, h1, h2, h3, h4, h5, h6, pre, p, span, b, i, input, textarea, fieldset {
	margin: 0;
	padding: 0;
}

.none {
	display: none;
}

.fade-out {
	opacity: 1;
	transition: 0.3s;
	pointer-events: auto;
}

.fade-out.active {
	opacity: 0;
	pointer-events: none;
}

.fade-in {
	opacity: 0;
	transition: 0.3s;
	pointer-events: none;
}

.fade-in.active {
	opacity: 1;
	pointer-events: auto;
}

.container {
	padding-left: var(--offset);
	padding-right: var(--offset);
}

.container-offset {
	width: var(--column-width);
	margin-left: auto;
	margin-right: auto;
}

img[srcset] {
    object-fit: scale-down !important;
    object-position: center !important;
}

#loader {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.7);
    z-index: 10001;
    opacity: 0;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s;
}

#loader.active {
    opacity: 1;
    pointer-events: auto;
}

#loader path {
    fill: var(--color-second);
}

h1,
.h1 {
	font-style: normal;
	font-weight: 400;
	font-size: calc(8.125vw * var(--coef-w));
	line-height: calc(11.25vw * var(--coef-w));
	letter-spacing: 0.01em;
	text-transform: uppercase;
}

h2,
.h2 {
	font-family: 'STIX Two Text';
	font-style: normal;
	font-weight: 500;
	font-size: calc(7.5vw * var(--coef-w));
	line-height: calc(10vw * var(--coef-w));
	text-transform: uppercase;
}

h3,
.h3 {
	font-family: 'STIX Two Text';
	font-style: normal;
	font-weight: 500;
	font-size: calc(5.625vw * var(--coef-w));
	line-height: calc(8.75vw * var(--coef-w));
	text-transform: uppercase;
}

h4,
.h4 {
	font-family: 'STIX Two Text';
	font-style: normal;
	font-weight: 500;
	font-size: calc(5vw * var(--coef-w));
	line-height: calc(8.125vw * var(--coef-w));
	text-transform: uppercase;
}

h5,
.h5 {
	font-family: 'STIX Two Text';
	font-style: normal;
	font-weight: 600;
	font-size: calc(4.6875vw * var(--coef-w));
	line-height: calc(7.1875vw * var(--coef-w));
}

.numbers {
	font-style: normal;
	font-weight: 500;
	font-size: calc(14.375vw * var(--coef-w));
	line-height: calc(17.5vw * var(--coef-w));
	letter-spacing: -0.02em;
}

.price {
	font-style: normal;
	font-weight: 600;
	font-size: calc(8.75vw * var(--coef-w));
	line-height: calc(11.875vw * var(--coef-w));
	letter-spacing: -0.02em;
}

.price-small {
	font-style: normal;
	font-weight: 600;
	font-size: calc(7.5vw * var(--coef-w));
	line-height: calc(10.625vw * var(--coef-w));
	letter-spacing: -0.02em;
}

.tariff-name {
	font-style: normal;
	font-weight: 600;
	font-size: calc(5vw * var(--coef-w));
	line-height: calc(7.5vw * var(--coef-w));
}

.main-text,
p,
li {
	font-style: normal;
	font-weight: 400;
	font-size: calc(4.375vw * var(--coef-w));
	line-height: calc(7.5vw * var(--coef-w));
}

.main-text-medium {
	font-style: normal;
	font-weight: 500;
	font-size: calc(4.375vw * var(--coef-w));
	line-height: calc(7.5vw * var(--coef-w));
}

.small-text {
	font-style: normal;
	font-weight: 400;
	font-size: calc(3.75vw * var(--coef-w));
	line-height: calc(6.25vw * var(--coef-w));
}

.tab {
	font-style: normal;
	font-weight: 600;
	font-size: calc(4.375vw * var(--coef-w));
	line-height: calc(5vw * var(--coef-w));
	text-transform: uppercase;
}

.extra-text {
	font-style: normal;
	font-weight: 500;
	font-size: calc(4.375vw * var(--coef-w));
	line-height: calc(5.625vw * var(--coef-w));
}

.reviews {
	font-style: normal;
	font-weight: 600;
	font-size: calc(4.375vw * var(--coef-w));
	line-height: calc(5.625vw * var(--coef-w));
	text-transform: uppercase;
}

.body {
	font-style: normal;
	font-weight: 400;
	font-size: calc(5vw * var(--coef-w));
	line-height: calc(7.5vw * var(--coef-w));
}

.body-medium {
	font-style: normal;
	font-weight: 500;
	font-size: calc(5vw * var(--coef-w));
	line-height: calc(7.5vw * var(--coef-w));
} 

.body-light {
	font-style: normal;
	font-weight: 300;
	font-size: calc(5vw * var(--coef-w));
	line-height: calc(7.5vw * var(--coef-w));
}

.color-black {
	color: var(--color-black);
}

.color-white {
	color: var(--color-white);
}

.color-grey {
	color: var(--color-grey);
}

.flex {
	display: flex;
}

.section {
	padding: calc(18.75vw * var(--coef-w)) 0;
}

.top {
	padding-top: calc(18.75vw * var(--coef-w));
}

::-webkit-scrollbar {
	width: 2px;
}

::-webkit-scrollbar-track {
	background: var(--color-stroke);
}

::-webkit-scrollbar-thumb {
	background: var(--color-black);
}

.content h2 {
	margin-bottom: calc(3.75vw * var(--coef-w));
}

.content h3 {
	margin-bottom: calc(4.6875vw * var(--coef-w));
}

.content h4 {
	margin-bottom: calc(3.125vw * var(--coef-w));
}

.content li {
	margin-bottom: calc(4.375vw * var(--coef-w));
}

.content ul {
    list-style: none;
    padding: 0;
}

.content ol {
    padding-left: calc(4.6875vw * var(--coef-w));
}

.content ul li::before {
    content: '';
    display: block;
    flex-shrink: 0;
    width: calc(5.625vw * var(--coef-w));
    height: calc(5.625vw * var(--coef-w));   
    background: url(/photos/1/setting/marker.svg) no-repeat;
    background-size: contain;
    margin-right: calc(3.75vw * var(--coef-w));
	margin-top: calc(1.25vw * var(--coef-w));
}

.content img {
	width: 100%;
	height: calc(156.25vw * var(--coef-w));
	object-fit: cover;
}

.content ul li {
    display: flex;
    align-items: flex-start;
}

.content li:last-child {
    margin-bottom: calc(3.125vw * var(--coef-w));
}

.content table {
	width: 100%;
}

.content table tr {
	display: flex;
	flex-direction: column;
}

.content .table {
	margin: 0;
}

.content table td {
	width: 100%;
}

.desktop {
	display: none !important;
}

.error {
	display: none;
}

.success {
	display: none;
	margin: 0 auto;
}

.message.active {
	display: flex;
} 


    .btn {
        display: flex;
        font-style: normal;
        font-weight: 500;
        font-size: calc(4.6875vw * var(--coef-w));
        line-height: calc(7.8125vw * var(--coef-w));
        color: var(--color-black);
        background: var(--color-white);
        border-radius: calc(15.625vw * var(--coef-w));
        transition: .3s;
        text-decoration: none;
        width: fit-content;
        position: relative;
        cursor: pointer;
        padding: calc(3.125vw * var(--coef-w)) calc(10.9375vw * var(--coef-w));
        justify-content: center;
    }   

    .btn:hover {
        background: #F4F4F4;
    }

    .btn-svg {
        color: var(--color-white);
        background: none;
        padding: 0;
        align-items: center;
        height: fit-content;
    }

    .btn-svg-black {
        color: var(--color-black);
    }

    .btn-svg:hover {
        background: none;
    }

    .btn-svg:hover::after {
        width: 100%;
    }

    .btn-svg::after {
        display: block;
        position: absolute;
        left: 0;
        width: 0;
        bottom: 0;
        height: 1px;
        background-color: var(--color-white);
        content: "";
        transition: width 0.3s ease-out;
    }

    .btn-svg-black::after {
        background-color: var(--color-black);
    }

    .btn-svg-icon {
        flex-shrink: 1;
        width: calc(3.75vw * var(--coef-w));
        height: calc(3.75vw * var(--coef-w));
        margin-left: calc(2.8125vw * var(--coef-w));
    }

    .btn-svg-black .btn-svg-icon path {
        fill: var(--color-black);
    }

    .btn-empty {
        border: 1px solid var(--color-gold);
        padding: calc(3.125vw * var(--coef-w)) calc(7.8125vw * var(--coef-w));
        width: calc(78.125vw * var(--coef-w));
        color: var(--color-gold);
        justify-content: center;
        text-decoration: none;
        cursor: pointer;
    }

    .btn-black {
        border: 1px solid var(--color-black);
        padding: calc(3.125vw * var(--coef-w)) calc(7.8125vw * var(--coef-w));
        width: calc(78.125vw * var(--coef-w));
        color: var(--color-white);
        justify-content: center;
        text-decoration: none;
        background: var(--color-black);
    }

    .btn-black:hover {
        background: #111010;
    }

    .btn-submit {
        cursor: pointer;
        margin-bottom: calc(3.125vw * var(--coef-w));
        width: calc(75vw * var(--coef-w));
        border: none;
    }


 

    .main-banner {
        height: calc(125vw * var(--coef-w));
    }

    .main-banner-fon {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: calc(156.25vw * var(--coef-w));
        object-fit: cover;
        z-index: -1;
    }

    .main-banner-content {
        display: flex;
        flex-direction: column;
        width: 100%;
        padding-top: calc(25vw * var(--coef-w));
        text-align: center;
    }

    .main-banner-title {
        margin-bottom: calc(10.9375vw * var(--coef-w));
    }

    .main-banner-btns {
        display: flex;
        align-items: center;
        flex-direction: column;
    }

    .btn-main-banner {
        margin-bottom: calc(6.25vw * var(--coef-w));
    }

 
    .numbers-items {
        flex-direction: column;
    }

    .number-item {
        width: 100%;
        text-align: center;
        padding: calc(7.8125vw * var(--coef-w)) 0;
        border-bottom: 1px solid var(--color-line); 
    }

    .number-item:last-child {
        border: none;
    }

    .number-item-title {
        margin-bottom: calc(3.75vw * var(--coef-w));
    }

    .number-item-desc {
        white-space: pre-wrap;
    }

 
    /* Slider */
    .slick-slider
    {
        position: relative;

        display: block;
        box-sizing: border-box;

        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;

        -webkit-touch-callout: none;
        -khtml-user-select: none;
        -ms-touch-action: pan-y;
        touch-action: pan-y;
        -webkit-tap-highlight-color: transparent;
    }

    .slick-list
    {
        position: relative;
        display: block;
        overflow: hidden;
        margin: 0;
        padding: calc(6.25vw * var(--coef-w));
    }

    .slick-list:focus
    {
        outline: none;
    }

    .slick-list.dragging
    {
        cursor: pointer;
        cursor: hand;
    }

    .slick-slider .slick-track,
    .slick-slider .slick-list
    {
        -webkit-transform: translate3d(0, 0, 0);
        -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
        -o-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    .slick-track
    {
        position: relative;
        top: 0;
        left: 0;
        display: block;
        margin-left: auto;
        margin-right: auto;
    }

    .slick-track:before,
    .slick-track:after
    {
        display: table;
        content: '';
    }

    .slick-track:after
    {
        clear: both;
    }

    .slick-loading .slick-track
    {
        visibility: hidden;
    }

    .slick-slide
    {
        display: none;
        float: left;
        height: 100%;
        min-height: 1px;
    }

    [dir='rtl'] .slick-slide
    {
        float: right;
    }

    .slick-slide img
    {
        display: block;
    }

    .slick-slide.slick-loading img
    {
        display: none;
    }

    .slick-slide.dragging img
    {
        pointer-events: none;
    }

    .slick-initialized .slick-slide
    {
        display: block;
    }

    .slick-loading .slick-slide
    {
        visibility: hidden;
    }

    .slick-vertical .slick-slide
    {
        display: block;
        height: auto;
        border: 1px solid transparent;
    }

    .slick-arrow.slick-hidden {
        display: none;
    }


    /* Dots */
    .slick-dotted.slick-slider {
        margin-bottom: calc(5.9375vw * var(--coef-w));
    }

    .slick-dots {
        position: absolute;
        bottom: calc(6.25vw * var(--coef-w));
        display: flex;
        width: 100%;
        padding: 0;
        margin: 0;
        list-style: none;
        text-align: center;
        align-items: center;
        justify-content: center;
        height: calc(1.25vw * var(--coef-w));
    }

    .slick-dots li {
        position: relative;
        display: inline-block;
        margin: 0 calc(1.5625vw * var(--coef-w));
        padding: 0;
        border-radius: 0;
        cursor: pointer;
        width: calc(3.75vw * var(--coef-w));
    }

    .slick-dots li.slick-active {
        width: calc(12.5vw * var(--coef-w));
    }

    .slick-dots li button {
        font-size: 0;
        line-height: 0;
        display: block;
        width: calc(3.75vw * var(--coef-w));
        height: 2px;
        border-radius: 2px;
        border-radius: 0;
        cursor: pointer;
        color: transparent;
        border: 0;
        outline: none;
        background: rgba(255, 255, 255, 0.6);
    }

    .slick-dots li button:hover,
    .slick-dots li button:focus {
        outline: none;
    }

    .slick-dots li button:hover:before,
    .slick-dots li button:focus:before {
        opacity: 1;
    }

    .slick-dots li button:before {
        font-family: 'slick';
        position: absolute;
        top: 0;
        left: 0;
        width: calc(3.75vw * var(--coef-w));
        border-radius: 2px;
        height: 2px;
        border-radius: 0;
        content: '\2022';
        text-align: center;
        background: transparent;
        transition: .3s;
    }

    .slick-dots li.slick-active button:before {
        background: #FFFFFF;
        width: calc(12.5vw * var(--coef-w));
        border-radius: 2px;
        height: 2px;
    }

    .slick-dots li:hover button:before {
        background: #FFFFFF;
    }



    .reviews-block {
        position: relative;
        height: calc(236.5625vw * var(--coef-w));
    }

    .reviews-back {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: -1;
    }

    .reviews-inner {
        padding: calc(28.125vw * var(--coef-w)) 0 calc(28.125vw * var(--coef-w)) var(--offset);
    }

    .reviews-title {
        margin-bottom: calc(9.375vw * var(--coef-w));
    }

    .reviews-item {
        display: flex;
        flex-direction: column;
        background: var(--color-white);
        box-shadow: calc(0vw * var(--coef-w)) calc(0vw * var(--coef-w)) calc(6.25vw * var(--coef-w)) 2px rgba(0, 0, 0, 0.08), calc(0vw * var(--coef-w)) calc(3.75vw * var(--coef-w)) calc(5vw * var(--coef-w)) calc(-1.25vw * var(--coef-w)) rgba(16, 24, 40, 0.08);
        border-radius: calc(6.25vw * var(--coef-w));
        padding: calc(9.375vw * var(--coef-w)) calc(7.8125vw * var(--coef-w));
        width: calc(87.5vw * var(--coef-w)) !important;
        height: calc(133.125vw * var(--coef-w));
        margin-right: calc(3.125vw * var(--coef-w));
    }

    .reviews-item-inner {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        margin-bottom: calc(5vw * var(--coef-w));
    }

    .reviews-item-icon {
        margin-right: calc(3.75vw * var(--coef-w));
        width: calc(15.625vw * var(--coef-w));
        height: calc(15.625vw * var(--coef-w));
        border-radius: 50%; 
    }

    .reviews-item-title {
        text-transform: uppercase;
        width: calc(50vw * var(--coef-w));
    }

    .reviews-item-links {
        margin-top: calc(5vw * var(--coef-w));
    }

    .reviews-item-link {
        display: flex;
        align-items: center;
        margin-bottom: 3px;
        text-decoration: none;
    }

    .reviews-item-text {
        height: calc(71.875vw * var(--coef-w));
        max-height: auto;
        overflow-y: auto;
        padding-right: calc(4.0625vw * var(--coef-w));
    }

    .reviews-slider {
        margin-left: calc(-6.25vw * var(--coef-w));
    }

    .reviews-slider-btn {
        display: flex;
        margin: calc(4.6875vw * var(--coef-w)) 0;
        justify-content: space-between;
        padding-right: var(--offset);
    }

    .reviews-slider-btn-svg {
        cursor: pointer;
    }

    .slick-disabled {
        cursor: default;
    }

    .slick-disabled path {
        fill: var(--color-grey);
    }

 

    .about-inner {
        flex-direction: column;
        margin-bottom: calc(12.5vw * var(--coef-w));
    }

    .about-content {
        width: 100%;
        margin-bottom: calc(6.25vw * var(--coef-w));
    }

    .about-img {
        width: 100%;
        height: calc(112.5vw * var(--coef-w));
        border-radius: calc(6.25vw * var(--coef-w));
        object-fit: cover;
    }

    .about-educ {
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .about-educ-item {
        margin-bottom: calc(3.125vw * var(--coef-w));
        width: calc(42.5vw * var(--coef-w));
        height: calc(42.1875vw * var(--coef-w));
        padding: calc(7.8125vw * var(--coef-w));
        background: var(--color-back);
        border: 2px solid var(--color-back);
        border-radius: calc(3.125vw * var(--coef-w));
        transition: .3s;
    }

    .about-educ-item:hover {
        border: 2px solid #DBDBDB;
    }

    .about-educ-item-img {
        width: calc(28.125vw * var(--coef-w));
        height: calc(26.5625vw * var(--coef-w));
        object-fit: contain;
    }

 
    .sertificat-inner {
        flex-direction: column-reverse;
    }

    .sertificat-images-slider-inner {
        position: relative;
    }

    .sertificat-content {
        width: 100%;
        margin-bottom: calc(3.125vw * var(--coef-w));
    }

    .sertificat-images-slider .slick-list {
        padding: 0;
    }

    .sertificat-image {
        width: calc(90.625vw * var(--coef-w));
        height: calc(68.75vw * var(--coef-w));
        object-fit: contain;
    }

    .sertificat-slider-btn {
        display: flex;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        left: calc(3.4375vw * var(--coef-w));
        width: calc(80.625vw * var(--coef-w));
        justify-content: space-between;
    }

    .sertificat-slider-btn-svg {
        cursor: pointer;
        width: calc(7.5vw * var(--coef-w));
        height: calc(7.5vw * var(--coef-w));
    }

 
    .title {
        background: var(--color-white);
        box-shadow: calc(0vw * var(--coef-w)) 2px calc(6.25vw * var(--coef-w)) calc(1.25vw * var(--coef-w)) rgba(0, 0, 0, 0.06), calc(0vw * var(--coef-w)) 2px calc(6.25vw * var(--coef-w)) calc(1.25vw * var(--coef-w)) rgba(0, 0, 0, 0.06);
        border-radius: calc(9.375vw * var(--coef-w));
        transform: rotate(-3deg);
        position: absolute;
        padding: calc(4.0625vw * var(--coef-w)) calc(9.375vw * var(--coef-w));
    }

    .title-mentoring-result {
        top: calc(-7.8125vw * var(--coef-w));
        left: calc(17.8125vw * var(--coef-w));
    }

 

    .about-inner {
        flex-direction: column;
        margin-bottom: calc(18.75vw * var(--coef-w));
    }

    .about-content {
        width: 100%;
        margin-bottom: calc(6.25vw * var(--coef-w));
    }

    .about-img {
        width: 100%;
        height: calc(112.5vw * var(--coef-w));
        border-radius: calc(6.25vw * var(--coef-w));
        object-fit: cover;
    }

    .mentoring-result-content {
        position: relative;
    }

    .mentoring-result-content {
        background: var(--color-bodily);
        border-radius: calc(6.25vw * var(--coef-w));
        padding: calc(12.5vw * var(--coef-w)) calc(7.8125vw * var(--coef-w));
    }

 

    .faq-block-inner {
        width: 100%;
        margin: 0 auto;
    }

    .faq-questions {
        display: none;
    }

    .faq-questions.active {
        display: block;
    }

    .faq-block-item {
        padding: calc(5.625vw * var(--coef-w)) 0;
        border-bottom: 1px solid var(--color-line);
    }

    .faq-block-item:first-child {
        padding-top: 0;
    }

    .faq-block-item:last-child {
        border: none;
        padding-bottom: 0;
    }

    .faq-item-header {
        justify-content: space-between;
    }

    .faq-item-title {
        transition: .3s;
    }

    .faq-block-item.active .faq-item-title {
        color: var(--color-blue);
    }

    .faq-item-answer {
        margin-top: calc(3.125vw * var(--coef-w));
        transition: .5s ease-in-out;
        overflow: hidden;
    }
    
    .faq-item-answer:not(.active) {
        display: none;
        margin-top: 0;
    }

    .faq-item-header {
        cursor: pointer;
        user-select: none;
    }

    .faq-item-arrow {
        display: block;
        transition: .3s;
    }

    .faq-block-item.active .faq-item-arrow {
        transform: rotate(180deg);
    }

    .faq-item-arrow-svg {
        width: calc(6.875vw * var(--coef-w));
        height: calc(6.875vw * var(--coef-w));
        object-fit: contain;
    }

    


 
    .process-title {
        text-align: center;
        margin-bottom: calc(3.125vw * var(--coef-w));
    }

    .process-desc {
        text-align: center;
        margin-bottom: calc(9.375vw * var(--coef-w));
    }

    .process-photo {
        display: none;
        position: relative;
        margin: 0 auto;
        width: calc(324.0625vw * var(--coef-w));
    }

    .process-img {
        width: 100%;
        height: calc(203.125vw * var(--coef-w));
        border-radius: calc(6.25vw * var(--coef-w));
        object-fit: cover;
    }

    .title-process {
        right: calc(10.9375vw * var(--coef-w));
        top: calc(29.6875vw * var(--coef-w));
        transform: rotate(3.45deg);
        padding: calc(3.125vw * var(--coef-w)) calc(7.8125vw * var(--coef-w));
    }

 
    .education-inner {
        flex-direction: column;
        margin-bottom: calc(25vw * var(--coef-w));
        align-items: center;
    }

    .education-img {
        width: 100%;
        height: calc(78.125vw * var(--coef-w));
        border-radius: calc(6.25vw * var(--coef-w));
        object-fit: cover;
        margin-bottom: calc(9.375vw * var(--coef-w));
    }

    .education-content {
        width: 100%;
    }

    .education-other {
        border-radius: calc(6.25vw * var(--coef-w));
        background: var(--color-black);
        padding: calc(15.625vw * var(--coef-w)) calc(7.8125vw * var(--coef-w)) calc(9.375vw * var(--coef-w));
        position: relative;
    }

    .title-education {
        top: calc(-8.125vw * var(--coef-w));
        left: calc(10.625vw * var(--coef-w));
    }

    .education-other li::before {
        background: url(/photos/1/setting/educationmarker.svg) no-repeat !important;
        background-size: contain !important;
        margin-top: 3px !important;
    }

 

    .faq-program-block-inner {
        width: 100%;
        margin: 0 auto;
    }

    .faq-program-questions {
        display: none;
    }

    .faq-program-questions.active {
        display: block;
    }

    .faq-program-block-item {
       margin-bottom: calc(4.6875vw * var(--coef-w));
    }

    .faq-program-block-item:first-child {
        padding-top: 0;
    }

    .faq-program-block-item:last-child {
        margin-bottom: 0;
    }

    .faq-program-item-header {
        justify-content: space-between;
        background: var(--color-bodily);
        border-radius: calc(3.125vw * var(--coef-w));
        padding: calc(4.0625vw * var(--coef-w)) calc(6.25vw * var(--coef-w));
    }

    .faq-program-item-title {
        transition: .3s;
    }

    .faq-program-block-item.active .faq-program-item-title {
        color: var(--color-blue);
    }

    .faq-program-item-answer {
        margin-top: calc(3.125vw * var(--coef-w));
        transition: .5s ease-in-out;
        overflow: hidden;
        background: #FFFFFF;
        box-shadow: calc(0vw * var(--coef-w)) 2px calc(6.25vw * var(--coef-w)) calc(1.25vw * var(--coef-w)) rgba(0, 0, 0, 0.08);
        border-radius: calc(2.5vw * var(--coef-w));
        padding: calc(6.25vw * var(--coef-w));
    }
    
    .faq-program-item-answer:not(.active) {
        display: none;
        margin-top: 0;
    }

    .faq-program-item-header {
        cursor: pointer;
        user-select: none;
        align-items: center;
    }

    .faq-program-item-arrow {
        display: block;
        transition: .3s;
    }

    .faq-program-block-item.active .faq-program-item-arrow {
        transform: rotate(180deg);
    }

    .faq-program-item-arrow-svg {
        width: calc(7.5vw * var(--coef-w));
        height: calc(8.125vw * var(--coef-w));
        object-fit: contain;
    }

    .faq-program-item-answer li::before {
        background: url(/photos/1/setting/programmarker.svg) no-repeat !important;
        background-size: contain !important;
        margin-top: 3px !important;
    }

    .faq-program-item-answer tr {
        justify-content: space-between;
    }

    .faq-program-item-answer td {
        width: 48%;
    }


 

    .price-block {
        position: relative;
    }

    .price-back {
        position: absolute;
        z-index: -1;
        top: calc(62.5vw * var(--coef-w));
        left: 0;
        width: 100%;
        height: calc(781.1906vw * var(--coef-w));
        object-fit: cover;
    }
    .price-title {
        text-align: center;
        margin-bottom: calc(9.375vw * var(--coef-w));
    }

    .price-items {
        flex-direction: column;
        margin-bottom: calc(6.25vw * var(--coef-w));
    }

    .price-item {
        display: flex;
        flex-direction: column;
        background: var(--color-white);
        border: 1px solid #F8F8F8;
        box-shadow: calc(0vw * var(--coef-w)) calc(1.25vw * var(--coef-w)) calc(1.875vw * var(--coef-w)) -2px rgba(16, 24, 40, 0.03), calc(0vw * var(--coef-w)) calc(3.75vw * var(--coef-w)) calc(5vw * var(--coef-w)) calc(-1.25vw * var(--coef-w)) rgba(16, 24, 40, 0.08);
        border-radius: calc(6.25vw * var(--coef-w));
        padding: calc(9.375vw * var(--coef-w)) calc(6.25vw * var(--coef-w));
        height: auto;
        position: relative;
        margin-bottom: calc(17.1875vw * var(--coef-w));
    }

    .price-item:nth-child(2n) {
        background: var(--color-black);
        box-shadow: calc(0vw * var(--coef-w)) calc(1.25vw * var(--coef-w)) calc(1.875vw * var(--coef-w)) -2px rgba(16, 24, 40, 0.03), calc(0vw * var(--coef-w)) calc(3.75vw * var(--coef-w)) calc(11.25vw * var(--coef-w)) calc(-1.25vw * var(--coef-w)) rgba(16, 24, 40, 0.1);
        color: var(--color-white);
        margin-bottom: calc(9.375vw * var(--coef-w));
    }

    .price-item:last-child {
        margin-bottom: 0;
    }

    .price-item-name {
        text-align: center;
        margin-bottom: 3px;
    }

    .price-item-count {
        text-align: center;
        margin-bottom: calc(4.6875vw * var(--coef-w));
    }

    .price-item-price {
        text-align: center;
        margin-bottom: calc(7.8125vw * var(--coef-w));
    }

    .price-item:nth-child(2n) li::before {
        background: url(/photos/1/setting/educationmarker.svg) no-repeat !important;
        background-size: contain !important;
        margin-top: 3px !important;
    }

    .price-item-content {
        margin-bottom: calc(7.8125vw * var(--coef-w));
    }

    .btn-price {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    .price-item:first-child .btn-price,
    .price-item:last-child .btn-price {
        background: var(--color-black);
        color: var(--color-white);
    }

    .price-item-inner {
        flex: 1;
    }

    .title-price {
        top: calc(-8.75vw * var(--coef-w));
        left: calc(10vw * var(--coef-w));
        padding: calc(2.8125vw * var(--coef-w)) calc(7.8125vw * var(--coef-w));
    }

    .price-parts {
        display: flex;
        position: relative;
        align-items: center;
    }

    .price-parts-svg {
        flex-shrink: 1;
        width: calc(7.5vw * var(--coef-w));
        height: calc(7.5vw * var(--coef-w));
        margin-left: calc(2.5vw * var(--coef-w));
        cursor: pointer;
    }

    .price-parts-content {
        display: none;
        transition: .3s;
        top: calc(9.375vw * var(--coef-w));
        left: var(--offset);
        padding: calc(6.25vw * var(--coef-w)) calc(7.8125vw * var(--coef-w));
        background: var(--color-white);
        box-shadow: calc(0vw * var(--coef-w)) calc(1.25vw * var(--coef-w)) calc(1.875vw * var(--coef-w)) -2px rgba(16, 24, 40, 0.03), calc(0vw * var(--coef-w)) calc(3.75vw * var(--coef-w)) calc(5vw * var(--coef-w)) calc(-1.25vw * var(--coef-w)) rgba(16, 24, 40, 0.08);
        border-radius: calc(6.25vw * var(--coef-w));
        width: calc(90.625vw * var(--coef-w));
        position: absolute;
    }

    .price-parts-inner:hover ~.price-parts-content {
        display: flex;
        position: absolute;
    }

    .price-parts-inner {
        display: flex;
    }

 
    .services-title {
        margin-bottom: calc(7.8125vw * var(--coef-w));
    }

    .service {
        background: var(--color-white);
        border: 1px solid var(--color-stroke-card);
        box-shadow: calc(0vw * var(--coef-w)) calc(1.25vw * var(--coef-w)) calc(1.875vw * var(--coef-w)) -2px rgba(16, 24, 40, 0.03), calc(0vw * var(--coef-w)) calc(3.75vw * var(--coef-w)) calc(5vw * var(--coef-w)) calc(-1.25vw * var(--coef-w)) rgba(16, 24, 40, 0.08);
        border-radius: calc(6.25vw * var(--coef-w));
        padding: calc(9.375vw * var(--coef-w)) calc(7.8125vw * var(--coef-w));
        margin-bottom: calc(10.9375vw * var(--coef-w));
        overflow: hidden;
        transition: .5s ease-in-out;
    }

    .service.active {
        height: auto;
    }

    .service:last-child {
        margin: 0;
    }

    .service-title {
        margin-bottom: calc(3.75vw * var(--coef-w));
    }

    .service-price {
        margin-bottom: calc(3.75vw * var(--coef-w));
    }

    .service-text {
        margin-bottom: calc(7.8125vw * var(--coef-w));
    }

    .service-btns {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .btn-service-black {
        width: calc(75vw * var(--coef-w));
        margin-bottom: calc(6.25vw * var(--coef-w));
        font-size: calc(3.75vw * var(--coef-w));
    }

    .service-more {
        display: flex;
        align-items: center;
        cursor: pointer;
    }

    .service-more-text {
        margin-right: calc(1.875vw * var(--coef-w));
    }

    .service-more-svg {
        transition: .3s;
    }

    .service-more.active .service-more-svg {
        transform: rotate(180deg);
    }

    .service-inner {
        display: none;
        margin-top: calc(10.9375vw * var(--coef-w));
        border-top: 1px solid #E7E9ED;
        padding-top: calc(9.375vw * var(--coef-w));
    }

    .service-inner.active {
        display: flex;
        flex-direction: column;
    }

    .service-inner-content .table {
        margin: 0;
    }

    .service-inner-content td {
        width: 100% !important;
        padding: calc(9.375vw * var(--coef-w)) 0 calc(6.25vw * var(--coef-w));
    }

    .service-inner-content td:not(:last-child) {
        border-bottom: 1px solid #E7E9ED;
    }

    .service-hours-item-wrapper {
        display: none;
    }

    .service-hours-item-wrapper.active {
        display: flex;
        flex-direction: column;
    }

    .service-hours-item-prices {
        display: flex;
        justify-content: space-between;
    }

    .service-inner-content td p {
        font-weight: 500;
        font-size: calc(5vw * var(--coef-w));
        line-height: calc(8.125vw * var(--coef-w));
        margin-bottom: calc(7.8125vw * var(--coef-w));
    }

    .service-hours {
        width: 100%;
        margin-bottom: calc(12.5vw * var(--coef-w));
        display: flex;
        flex-direction: column;
        border-radius: calc(0vw * var(--coef-w)) calc(0vw * var(--coef-w)) calc(6.25vw * var(--coef-w)) calc(6.25vw * var(--coef-w));
    }

    .service-hours-item {
        margin-bottom: calc(4.6875vw * var(--coef-w));
    }

    .service-hours-item-header {
        background: var(--color-black);
        color: var(--color-white);
    }

    .service-hours-titles {
        background: var(--color-black);
        border-radius: calc(6.25vw * var(--coef-w)) calc(6.25vw * var(--coef-w)) calc(0vw * var(--coef-w)) calc(0vw * var(--coef-w));
        padding: calc(4.6875vw * var(--coef-w)) calc(12.5vw * var(--coef-w)) calc(4.6875vw * var(--coef-w)) calc(87.5vw * var(--coef-w));
        display: flex;
        justify-content: space-between;
    }

    .service-hours-inner {
        background: var(--color-white);
        border-radius: calc(0vw * var(--coef-w)) calc(0vw * var(--coef-w)) calc(6.25vw * var(--coef-w)) calc(6.25vw * var(--coef-w));
        display: flex;
        flex-direction: column;
    }

    .service-hour {
        display: flex;
        padding: calc(6.25vw * var(--coef-w)) 0;
        margin: 0 calc(12.5vw * var(--coef-w));
        border-bottom: 1px solid var(--color-back);
    }

    .service-hour:last-child {
        border: none;
        border-radius: calc(0vw * var(--coef-w)) calc(0vw * var(--coef-w)) calc(6.25vw * var(--coef-w)) calc(6.25vw * var(--coef-w));
    }

    .service-hours-text {
        width: calc(28.125vw * var(--coef-w));
        margin-right: calc(3.125vw * var(--coef-w));
        text-align: center;
    }

    .service-hours-price {
        width: calc(37.1875vw * var(--coef-w));
        margin-right: calc(26.5625vw * var(--coef-w));
        text-align: center;
    }

    .service-hours-price:last-child {
        margin: 0;
    }

    .service-hours-item-titles {
        display: flex;
        justify-content: space-between;
        padding-bottom: calc(4.6875vw * var(--coef-w));
        margin-bottom: calc(4.6875vw * var(--coef-w));
        border-bottom: 1px solid #F2F2F2;
    }

    .faq-program-item-arrow-svg {
        transition: .3s;
    }

    .service-hours-item-header.active .faq-program-item-arrow-svg {
        transform: rotate(180deg);
    }



 
    .community-block {
        background: var(--color-bodily);
    }

    .community-inner {
        padding: calc(18.75vw * var(--coef-w)) 0;
        flex-direction: column;
        align-items: center;
    }

    .community-content {
        width: 100%;
        margin-bottom: calc(9.375vw * var(--coef-w));
    }

    .community-title {
        margin-bottom: calc(3.75vw * var(--coef-w));
    }

    .community-text {
        margin-bottom: calc(7.8125vw * var(--coef-w));
    }

    .community-btns {
        display: flex;
        flex-direction: column;
        align-items: center;
    }    

    .btn-community-black {
        margin-bottom: calc(6.25vw * var(--coef-w));
        width: 100%;
        justify-content: center;
    }

    .community-img {
        border-radius: calc(6.25vw * var(--coef-w));
        width: 100%;
        height: calc(78.125vw * var(--coef-w));
        object-fit: cover;
    }

 

	header.active {
		background: var(--color-black);
	}

	.header-inner  {
		justify-content: space-between;
		padding: calc(4.6875vw * var(--coef-w)) 0;
		align-items: center;
	}

	.header-logo {
		width: calc(20vw * var(--coef-w));
		height: calc(20.9375vw * var(--coef-w));
	}

	.header-logo-img {
		width: 100%;
		height: 100%;
		object-fit: contain;
	}

	.header-links {
		display: none;
	}
	
	.header-links.active {
		display: flex;
		flex-direction: column;
		position: absolute;
		top: calc(28.125vw * var(--coef-w));
		left: 0;
		width: 100%;
		height: auto;
		padding: calc(9.375vw * var(--coef-w)) calc(4.6875vw * var(--coef-w)) calc(35.3125vw * var(--coef-w)) calc(4.6875vw * var(--coef-w));
		background: var(--color-black);
		z-index: 10;
	}

	.header-link {
		margin-bottom: calc(4.6875vw * var(--coef-w));
		text-decoration: none;
		width: fit-content;
		position: relative;
	}

	.header-link:last-child {
		margin-right: 0;
	}

	.header-nav {
		cursor: pointer;
		height: calc(6.25vw * var(--coef-w));
		margin: calc(2.5vw * var(--coef-w)) 0;
		position: relative;
		right: 0;
		width: calc(9.375vw * var(--coef-w));
		top: 0;
	}

	.header-nav:focus {
		outline: 0;
	}

	.header-nav-item {
		display: block;
		width: calc(9.375vw * var(--coef-w));
		height: 2px;
		background: var(--color-white);
		transition: background .2s linear;
	}

	.header-nav-item:nth-child(2n) {
		width: calc(9.375vw * var(--coef-w));
		margin: calc(2.5vw * var(--coef-w)) 0 calc(2.5vw * var(--coef-w)) auto;
	}

	.header-nav-item:first-child {
		width: calc(9.375vw * var(--coef-w));
		margin: 0 0 0 auto;
		transition: transform .2s linear;
	}

	.header-nav-item:last-child {
		width: 100%;
		transition: transform .2s linear;
	}

	.header-nav:.active {
		right: var(--offset);
		width: calc(5.625vw * var(--coef-w));
	}

	.header-nav.active .header-nav-item {
		background: none;
	}

	.header-nav.active .header-nav-item:first-child {
		transform-origin: top left;
		transform: rotate(45deg) translate(-50%, -50%);
		position: absolute;
		top: 50%;
		left: 50%;
	}

	.header-nav.active .header-nav-item:last-child {
		transform-origin: left bottom;
		transform: rotate(-45deg) translate(-50%, -50%);
		position: absolute;
		top: 50%;
		left: 50%;
	}

	.header-nav.active .header-nav-item:last-child,
	.header-nav.active .header-nav-item:first-child {
		width: calc(6.875vw * var(--coef-w));
		background-color: var(--color-white);
	}


 

    .modal {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.6);;
        align-items: center;
        justify-content: center;
        display: flex;
        z-index: 10000;
    }

    .modal.active {
        height: 100%;
    }

    .container-modal {
        background: none;
        display: flex;
        flex-direction: column;
        position: absolute;
        top: calc(15.625vw * var(--coef-w));
        left: 50%;
        transform: translateX(-50%);
    }

    .container-modal-popup {
        width: calc(90.625vw * var(--coef-w)) !important;
        padding: calc(10.9375vw * var(--coef-w)) calc(4.6875vw * var(--coef-w)) !important;
        background: #FFFFFF;
        border-radius: calc(6.25vw * var(--coef-w));
    }

    .modal .close {
        cursor: pointer;
        position: absolute;
        top: calc(7.8125vw * var(--coef-w));
        right: calc(7.8125vw * var(--coef-w));
    }

    .modal .close svg {
        width: calc(4.5031vw * var(--coef-w));
        height: calc(4.5031vw * var(--coef-w));
    }

    .popup-title {
        margin-bottom: calc(6.25vw * var(--coef-w));
    }

    .popup-items {
        display: flex;
        flex-direction: column;
        margin-bottom: calc(7.8125vw * var(--coef-w));
    }

    .popup-item {
        border-radius: calc(6.25vw * var(--coef-w));
        background: var(--color-bodily);
        padding: calc(7.8125vw * var(--coef-w)) calc(4.6875vw * var(--coef-w));
        width: 100%;
        margin-bottom: calc(7.8125vw * var(--coef-w));
    }

    .popup-item-title {
        margin-bottom: calc(7.8125vw * var(--coef-w));
        text-align: center;
    }

    .popup-price-title {
        margin-bottom: calc(4.6875vw * var(--coef-w));
    }

    .popup-prices {
        display: flex;
        flex-direction: column;
        align-items: center;
        border-radius: calc(6.25vw * var(--coef-w)); 
        margin-bottom: calc(9.375vw * var(--coef-w));
        width: 100%;
        box-shadow: calc(0vw * var(--coef-w)) calc(0vw * var(--coef-w)) calc(6.25vw * var(--coef-w)) 2px rgba(0, 0, 0, 0.08), calc(0vw * var(--coef-w)) calc(3.75vw * var(--coef-w)) calc(5vw * var(--coef-w)) calc(-1.25vw * var(--coef-w)) rgba(16, 24, 40, 0.08);
    }

    .popup-price {
        display: flex;
        justify-content: space-between;
        padding: calc(5.625vw * var(--coef-w)) 0 calc(3.125vw * var(--coef-w));
        margin: 0 calc(6.25vw * var(--coef-w));
        border-bottom: 1px solid #F2F2F2;
    }

    .popup-price:last-child {
        border: none;
    }

    .popup-price-mounth {
        display: flex;
        width: calc(29.6875vw * var(--coef-w));
        color: var(--color-black);
        margin: 0 calc(6.25vw * var(--coef-w));
    }

    /* .popup-price:first-child .popup-price-mounth {
        border-radius: calc(6.25vw * var(--coef-w)) 0 0 0; 
    }

    .popup-price:last-child .popup-price-mounth {
        border-radius: 0 calc(6.25vw * var(--coef-w)) 0 0; 
    }

    .popup-price:first-child .popup-price-price {
        border-radius: 0 0 0 calc(6.25vw * var(--coef-w)); 
    }

    .popup-price:last-child .popup-price-price {
        border-radius: 0 0 calc(6.25vw * var(--coef-w)) 0; 
    } */

    .popup-price-price {
        width: calc(29.6875vw * var(--coef-w));
    }




 

    .input-wrapper {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        position: relative;
    }

    .input-wrapper-100 {
        width: 100%;
    }

    .input {
        width: calc(75vw * var(--coef-w));
        color: var(--color-white);
        background: none;
        border: 1px solid var(--color-stroke);
        height: calc(15.625vw * var(--coef-w));
        border-radius: calc(2.5vw * var(--coef-w));
        padding: calc(5vw * var(--coef-w));
        margin-bottom: calc(6.25vw * var(--coef-w));
    }

    .input::placeholder {
        color: var(--color-grey);
    }

    .textarea {
        height: calc(45.3125vw * var(--coef-w));
        border-radius: calc(2.5vw * var(--coef-w));
        resize: none;
        padding: calc(3.125vw * var(--coef-w)) calc(6.25vw * var(--coef-w));
        width: calc(75vw * var(--coef-w));
    }

    .textarea-wrapper {
        height: calc(45.3125vw * var(--coef-w));
    }

    .textarea::-webkit-input-placeholder {
        color: var(--color-grey);
    }

    .input-label {
        position: absolute;
        top: calc(-3.4375vw * var(--coef-w));
        left: calc(3.125vw * var(--coef-w));
        font-size: calc(3.4375vw * var(--coef-w));
        padding: 0 calc(1.5625vw * var(--coef-w));
        background: var(--color-black);
    }

    .input-grey, 
    .textarea-grey {
        border: 1px solid var(--color-stroke);
    }

    .input-wrapper-grey .input-label {
        color: var(--color-dark-blue);
    }


 

    .input-select-hidden {
        width: 1px;
        height: 1px;
        opacity: 0;
    }

    .select-wrapper {
        position: relative;
    }

    .select-label {
        display: block;
        position: absolute;
        left: calc(3.125vw * var(--coef-w));
        top: calc(-3.4375vw * var(--coef-w));
        z-index: 2;
        background: var(--color-black);
        font-size: calc(3.4375vw * var(--coef-w));
        padding: 0 calc(1.5625vw * var(--coef-w));
    }

    .select {
        position: relative;
        /* min-width: calc(41.5625vw * var(--coef-w)); */
        width: calc(75vw * var(--coef-w));
        height: calc(15.625vw * var(--coef-w));
        cursor: pointer;
        margin-bottom: calc(6.25vw * var(--coef-w));
    }

    .select-title {
        display: flex;
        align-items: center;
        border: 1px solid var(--color-stroke);
        border-radius: calc(2.5vw * var(--coef-w));
        padding: calc(6.25vw * var(--coef-w));
        height: 100%;
        position: relative;
        user-select: none;
        white-space: nowrap;
        overflow: hidden;
    }

    .select-title-inner {
        width: calc(46.875vw * var(--coef-w));
        overflow: hidden;
    }

    .select-title::after {
        position: absolute;
        right: calc(6.25vw * var(--coef-w));
        top: 50%;
        display: block;
        content: "";
        width: calc(1.875vw * var(--coef-w));
        height: calc(1.875vw * var(--coef-w));
        border: 1px solid var(--color-grey);
        transform: translateY(-50%) rotate(45deg);
        transition: .3s;
        border-left: none;
        border-top: none;
        margin-top: -2px;
    }

    .select.active .select-title::after {
        margin-top: 1px;
        transform: translateY(-50%) rotate(225deg);
    }

    .select-title.active {
        color: var(--color-white);
    }

    .select-items {
        position: absolute;
        top: calc(100% + calc(1.5625vw * var(--coef-w)));
        left: 0;
        width: 100%;
        z-index: 100;
        background: var(--color-black);
        border: 1px solid #E2E2E2;
        border-radius: calc(3.75vw * var(--coef-w));
        /* box-shadow: calc(0vw * var(--coef-w)) calc(1.25vw * var(--coef-w)) calc(9.375vw * var(--coef-w)) rgba(0, 0, 0, 0.07); */
        padding: calc(4.6875vw * var(--coef-w)) calc(6.25vw * var(--coef-w));
        padding-right: calc(3.125vw * var(--coef-w));
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: .3s;
    }

    .select.active .select-items {
        opacity: 1;
        visibility: visible;
        pointer-events: all;
    }

    .select-item {
        margin-bottom: calc(1.5625vw * var(--coef-w));
        transition: .3s;
    }

    .select-item:last-child{
        margin-bottom: 0;
    }

    .select-items-inner {
        max-height: calc(76.25vw * var(--coef-w));
        overflow: auto;
    }

    .select-items-inner::-webkit-scrollbar {
		width: 2px;
	}

	.select-items-inner::-webkit-scrollbar-track {
		background-color: var(--color-back);
	}

	.select-items-inner::-webkit-scrollbar-thumb {
		background-color: var(--color-black);
	}



 

    .modal-form {
        z-index: 10000;
    }

    .container-modal-form {
        width: calc(90.625vw * var(--coef-w)) !important;
        padding: calc(10.9375vw * var(--coef-w)) calc(6.25vw * var(--coef-w)) !important;
        background: var(--color-black);
        border-radius: calc(6.25vw * var(--coef-w));
    }

    .modal .close {
        cursor: pointer;
        position: absolute;
        top: calc(6.25vw * var(--coef-w));
        right: calc(6.25vw * var(--coef-w));
    }

    .modal .close svg {
        width: calc(3.75vw * var(--coef-w));
        height: calc(3.75vw * var(--coef-w));
    }

    .form-title {
        margin-bottom: calc(6.25vw * var(--coef-w));
        margin-top: calc(3.125vw * var(--coef-w));
    }

    .form {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }

   .form-text {
        width: 100%;
        margin-bottom: calc(4.6875vw * var(--coef-w));
   }



 
	footer {
		background: var(--color-black);
		padding: calc(18.75vw * var(--coef-w)) 0;
		text-align: center;
	}

	.footer-top {
		border-bottom: 1px solid #ADB0B2;
		padding-bottom: calc(10.9375vw * var(--coef-w));
		display: flex;
		flex-direction: column;
		text-align: center;
		align-items: center;
	}

	.footer-logo-img {
		width: calc(25vw * var(--coef-w));
		height: calc(26.5625vw * var(--coef-w));
		object-fit: contain;
		margin-bottom: calc(10.9375vw * var(--coef-w));
	}

	.footer-links {
		flex-direction: column;
		display: flex;
		margin-bottom: calc(7.8125vw * var(--coef-w));
	}

	.footer-link {
		margin: 0 auto;
		margin-bottom: calc(3.125vw * var(--coef-w));
	}

	.footer-socials {
		display: flex;
		align-items: center;
	}

	.footer-social-link {
		width: calc(10vw * var(--coef-w));
		height: calc(10vw * var(--coef-w));
		margin-left: calc(4.6875vw * var(--coef-w));
		border-radius: 50%;
		background: var(--color-white);
		padding: calc(2.5vw * var(--coef-w));
		transition: .3s;
	}

	.footer-social-link:hover {
		background: var(--color-stroke);
	}

	.footer-social-link-img {
		width: 100%;
		height: 100%;
		object-fit: contain;
	}

	.footer-bottom {
		margin-top: calc(12.5vw * var(--coef-w));
		display: flex;
		flex-direction: column;
		align-items: center;
	}

	.footer-made a {
		text-transform: uppercase;
		text-decoration: none;
		color: var(--color-white);
	}

	.footer-copy {
		margin-bottom: calc(3.125vw * var(--coef-w));
	}
	

 }