@font-face {
	font-family: 'Rubik';
	src: local('Rubik Regular'), local('Rubik-Regular'), url('/assets/fonts/Rubik-Regular.woff2') format('woff2'), url('/assets/fonts/Rubik-Regular.woff') format('woff');
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Rubik';
	src: local('Rubik Medium'), local('Rubik-Medium'), url('/assets/fonts/Rubik-Medium.woff2') format('woff2'), url('/assets/fonts/Rubik-Medium.woff') format('woff');
	font-weight: 500;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Rubik';
	src: local('Rubik SemiBold'), local('Rubik-SemiBold'), url('/assets/fonts/Rubik-SemiBold.woff2') format('woff2'), url('/assets/fonts/Rubik-SemiBold.woff') format('woff');
	font-weight: 600;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Rubik';
	src: local('Rubik Bold'), local('Rubik-Bold'), url('/assets/fonts/Rubik-Bold.woff2') format('woff2'), url('/assets/fonts/Rubik-Bold.woff') format('woff');
	font-weight: 700;
	font-style: normal;
	font-display: swap;
}

:root {
	--black: #3F3F3F;
	--black2: #272727;
	--white: #ffffff;
	--grey: #dfdfdf;
	--blue: #1400ff;

	--font-Rubik: 'Rubik', sans-serif;
	--container: 1180px;
	--container-padding: 20px;
	--container-margin: calc((100vw - var(--container) + var(--container-padding) * 2) / 2);
	--col: calc(var(--container) / 12);
	--header-height: 80px;
	--transition-time: 0.3s;

	--pr: 0px;
}

:focus-visible {
	outline: 1px solid #525252;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

* {
	-webkit-tap-highlight-color: transparent;
}

html {
	height: 100%;
	font-size: 16px;
}

body {
	font-family: var(--font-Rubik);
	font-size: 16px;
	font-weight: 400;
	line-height: 1.5;
	height: 100%;
	color: var(--black2);
	padding-top: var(--header-height);
	padding-right: var(--pr);
}

[dir='rtl'] body {
	-webkit-font-smoothing: auto;
	direction: rtl;
	unicode-bidi: embed;
	text-align: right;
}

img {
	max-width: 100%;
	vertical-align: middle;
	transition: var(--transition-time);
	transition-property: opacity;
}

a,
button:not(:disabled) {
	cursor: pointer;
}

a,
button,
svg {
	transition: var(--transition-time);
}

a {
	text-decoration: none;
}

a,
a:focus {
	color: var(--blue);
}

a:hover {
	color: var(--yellow);
	text-decoration: none;
}

p {
	margin: 0 0 15px;
}

textarea,
input:not([type='radio']):not([type='checkbox']) {
	border-radius: 0;
	-webkit-appearance: none;
	text-align: inherit;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
	margin: 0;
	-webkit-appearance: none;
	appearance: none;
}

input[type='number'] {
	-webkit-appearance: textfield;
	-moz-appearance: textfield;
	appearance: textfield;
}

.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
	word-wrap: normal !important;
}

.thank-title {
	font-size: 26px;
	line-height: 32px;
	text-align: center;
	color: var(--white);
}



/* faq */


.accordion .collapse:not(.show) {
	display: none;
}

.accordion .collapsing {
	height: 0;
	overflow: hidden;
	transition: height .35s ease
}

.accordion .fade:not(.show) {
	opacity: 0
}

.accordion .fade {
	transition: opacity .15s linear
}
.accordion-item {
	margin: 0 0 10px;
}
.accordion-item h4 {
	margin: 0;
}

.accordion-item button.collapsed {
    border: 1px solid #fff;
}

.accordion-item button {
	background: #fff;
	border: 0;
	box-shadow: 0px 14px 38px rgba(0, 0, 0, 0.1);
	border-radius: 10px;
	padding: 15px 12px 15px 20px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	font-weight: 500;
	font-size: 20px;
	line-height: 24px;
	text-align: inherit;
	border: 1px solid var(--blue);
	color: #131313;
}

[dir='rtl'] .accordion-item button {
	padding: 15px 20px 15px 15px;
}

.accordion-item button span {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	min-width: 30px;
	height: 30px;
	border-radius: 50%;
	background: var(--blue);
	margin-left: 15px;
}

[dir='rtl'] .accordion-item button span {
	margin-left: 0;
	margin-right: 15px;
}

.accordion-item button span svg {
	width: 12px;
	height: 8px;
	transform: rotate(180deg);
}

.accordion-item .collapsed svg {
	transform: rotate(0deg);
}

.accordion-body {
	font-weight: 400;
	font-size: 17px;
	line-height: 20px;
	color: #373E3F;
	padding: 30px 0 20px;
}

#accordion {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin: 0 -15px;
}

#accordion>div {
	flex: 0 0 50%;
	padding: 0 15px;
	margin: 0 0 10px;
}

@media (max-width: 1200px) {
	#accordion {
		flex-direction: column;
		margin: 0 0px;
	}

	#accordion>div {
		flex: 0 0 100%;
		padding: 0 0px;
		margin: 0;
	}
}


.accordion-body ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.accordion-body ul li {
    position: relative;
    padding-left: 22px;
    margin: 0 0 12px;
    font-weight: 500;
    font-size: 20px;
    line-height: 24px;
    color: #131313;
}

.accordion-body ul li:before {
    content: '';
    position: absolute;
    top: 10px;
    width: 12px;
    height: 4px;
    background: linear-gradient(270.04deg, #3250ff -132.42%, #4500b1 143.65%);
    left: 0;
    border-radius: 3px;
}

 
[dir='rtl'] .accordion-body ul li:before {
	left: auto;
	right: 0;
}

[dir='rtl'] .accordion-body ul li {
	padding-right: 22px;
	padding-left: 0px;
}

.accordion-body ul li:last-child {
    margin: 0;
}

/* END faq */
















/* Swiper */
.swiper {
	opacity: 0;
	transition: var(--transition-time);
	transition-property: opacity;
}

.swiper-initialized {
	opacity: 1;
}

.swiper:not(.swiper-initialized) .swiper-slide+.swiper-slide {
	display: none;
}

.swiper-button-next,
.swiper-button-prev {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 33px;
	height: 33px;
	padding: 0;
	margin: 0;
	border: 0;
	background: transparent;
	position: absolute;
	top: 50%;
	z-index: 1;
	transform: translate(0, -50%);
}

.swiper-button-prev,
.swiper-rtl .swiper-button-next {
	left: 0;
	right: auto;
}

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
	right: 0;
	left: auto;
}

.swiper-button-next svg,
.swiper-button-prev svg {
	fill: var(--white);
}

.swiper-rtl .swiper-button-next svg,
.swiper-rtl .swiper-button-prev svg {
	transform: rotate(180deg);
}

.swiper-button-next::after,
.swiper-button-prev::after {
	display: none;
}

.swiper-pagination {
	display: grid;
	grid-auto-flow: column;
	justify-content: center;
	gap: 7px;
}

.swiper-pagination-bullet {
	width: 10px;
	height: 10px;
	background: var(--white);
	opacity: 0.2;
}

.swiper-pagination-bullet-active {
	background: var(--white);
	opacity: 1;
}

/* Swiper END */

/* Flip */
.flip,
.flip--before::before,
.flip--after::after {
	transform: scaleX(-1);
}

[dir='rtl'] .flip,
[dir='rtl'] .flip--before::before,
[dir='rtl'] .flip--after::after {
	transform: scaleX(1);
}

/* Flip END */

/* Buttons */
.btn {
	display: inline-grid;
	grid-auto-flow: column;
	gap: 15px;
	align-items: center;
	justify-content: center;
	font-size: 16px;
	font-weight: 500;
	line-height: 1;
	text-align: center;
	height: 50px;
	margin: 0;
	padding: 9px 16px 9px 12px;
	background: none;
	border: 1px solid transparent;
	border-radius: 100px;
	box-shadow: none;
	vertical-align: middle;
	touch-action: manipulation;
	white-space: nowrap;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	cursor: pointer;
	position: relative;
}

.btn span {
	display: grid;
	grid-auto-flow: column;
	gap: 15px;
	align-items: center;
	justify-content: center;
	position: relative;
	z-index: 2;
	pointer-events: none;
}

.btn svg {
	pointer-events: none;
}

[dir='rtl'] .btn svg {
	order: 1;
}

.btn--default {
	color: var(--black2);
	background: transparent;
	border-color: var(--grey);
}

.btn--default:focus {
	color: var(--black2);
	background: transparent;
	border-color: var(--grey);
}

.btn--default:hover {
	color: var(--white);
	background: var(--blue);
	border-color: var(--blue);
}

.btn--default svg {
	fill: var(--blue);
}

.btn--default:focus svg {
	fill: var(--blue);
}

.btn--default:hover svg {
	fill: var(--white);
}

.btn--primary {
	color: var(--white);
	box-shadow: 0px 10px 21px rgba(51, 85, 255, 0.17);
	border: 0;
	overflow: hidden;
}

.btn--primary::before,
.btn--primary::after {
	content: '';
	border-radius: 100px;
	position: absolute;
	pointer-events: none;
	z-index: 1;
}

.btn--primary::before {
	background: linear-gradient(93.85deg, #3250ff 10.23%, #3a8dff 97.57%);
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}

[dir='rtl'] .btn--primary::before {
	background: linear-gradient(93.85deg, #3a8dff 10.23%, #3250ff 97.57%);
}

.btn--primary::after {
	background: var(--white);
	top: 1px;
	left: 1px;
	right: 1px;
	bottom: 1px;
	transition: var(--transition-time);
	opacity: 0;
	visibility: hidden;
}

.btn--primary:focus {
	color: var(--white);
}

.btn--primary:focus::after {
	opacity: 0;
	visibility: hidden;
}

.btn--primary:hover {
	color: var(--blue);
}

.btn--primary:hover::after {
	opacity: 1;
	visibility: visible;
}

.btn--primary svg {
	fill: var(--white);
}

.btn--primary:focus svg {
	fill: var(--white);
}

.btn--primary:hover svg {
	fill: var(--blue);
}

.btn--success,
.btn--success:focus {
	color: var(--blue);
	background: linear-gradient(93.85deg, #3250ff 10.23%, #3a8dff 97.57%);
	border: 0;
}

[dir='rtl'] .btn--success,
[dir='rtl'] .btn--success:focus {
	background: linear-gradient(93.85deg, #3a8dff 10.23%, #3250ff 97.57%);
}

.btn--success:hover {
	color: var(--white);
}

.btn--success::before {
	content: '';
	background: var(--white);
	border-radius: 100px;
	transition: var(--transition-time);
	position: absolute;
	top: 1px;
	left: 1px;
	right: 1px;
	bottom: 1px;
}

.btn--success:focus::before {
	background: var(--white);
}

.btn--success:hover::before {
	background: transparent;
}

.btn--success svg {
	fill: var(--blue);
}

.btn--success:focus svg {
	fill: var(--blue);
}

.btn--success:hover svg {
	fill: var(--white);
}

.btn--info,
.btn--info:focus {
	text-align: center;
	color: var(--white);
	background: transparent;
	border-color: var(--white);
}

.btn--info:hover {
	color: var(--black2);
	background: var(--white);
	border-color: var(--white);
}

.btn--info svg,
.btn--info:focus svg {
	fill: var(--info);
}

.btn--info:hover svg {
	fill: var(--black2);
}

/* Buttons EMD*/

/* Form */
.wpcf7-form p {
	margin: 0;
}

.wpcf7-form br,
.wpcf7-not-valid-tip {
	display: none;
}

.field-wrap~.field-wrap {
	margin: 15px 0 0;
}

.field-wrap {
	display: block;
	position: relative;
}

.field-wrap img {
	position: absolute;
	top: 50%;
	left: 0;
	transform: translate(0, -50%);
}
.wpcf7 form .wpcf7-response-output,
.wpcf7 form.invalid .wpcf7-response-output {
    margin: 10px 0 0 0;
    border: 0;
    color: #fff;
}
[dir='rtl'] .field-wrap img {
	left: unset;
	right: 0;
}

.field-wrap__input {
	font-size: 20px;
	line-height: 24px;
	width: 100%;
	padding: 20px 0 20px 35px;
	color: var(--white);
	background: transparent;
	border: 0;
	border-bottom: 1px solid var(--white);
}

[dir='rtl'] .field-wrap__input {
	padding: 20px 35px 20px 0;
}

.field-wrap__input.wpcf7-not-valid {
	border-color: red;
}

.field-wrap__input::placeholder {
	color: var(--white);
}

.form-error {
	display: none;
	color: var(--white);
	margin: 15px 0 0 0;
}

.invalid .form-error {
	display: block;
}

.form-bottom {
	margin: 50px 0 0;
}

.form-bottom__submit {
	display: grid;
	width: 100%;
	max-width: 245px;
	margin: 0 auto;
}

/* Form END */

/* video-box */
.video-box {
	position: relative;
}

.video-box__sizer {
	width: 100%;
	padding: 56.25% 0 0;
}

.video-box__sizer::before {
	/*content: '';*/
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.6);
	z-index: 3;
	pointer-events: none;
	transition: var(--transition-time);
}

.video-box__frame,
.video-box__bg {
	width: 100%;
	height: 100%;
	object-fit: cover;
	position: absolute;
	top: 0;
	left: 0;
}

.video-box__bg {
	background-size: cover;
}

.video-box__play {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 60px;
	height: 60px;
	padding: 0;
	background: var(--white);
	border: 0;
	border-radius: 50%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 4;
	overflow: hidden;
}

.video-box__play::before {
	content: '';
	background: linear-gradient(93.85deg, #3a8dff 10.23%, #3250ff 97.57%);
	opacity: 0;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1;
	transition: var(--transition-time);
}

.video-box__play:hover::before {
	opacity: 1;
}

.video-box__play svg {
	stroke: #525252;
	position: relative;
	left: 2px;
	z-index: 2;
}

.video-box__play:hover svg {
	stroke: var(--white);
}

/* playing */
.play .video-box__sizer::before {
	opacity: 0;
	visibility: hidden;
}

.play .video-box__frame {
	opacity: 1;
	visibility: visible;
	pointer-events: all;
}

.play .video-box__bg {
	opacity: 0;
	visibility: hidden;
}

.play .video-box__play {
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
}

/* video-box END */

/* Title */
.underline-left,
.underline-center {
	position: relative;
}

.underline-left::before,
.underline-center::before {
	content: '';
	width: 55px;
	height: 4px;
	border-radius: 25px;
	position: absolute;
	bottom: -17px;
}

.underline-left::before {
	left: 0;
}

[dir='rtl'] .underline-left::before {
	left: unset;
	right: 0;
}

.underline-center::before {
	left: 50%;
	transform: translate(-50%, 0);
}

.underline-gradient::before,
.underline-gradient::before {
	background: linear-gradient(270.04deg, #3250ff -132.42%, #4500b1 143.65%);
}

[dir='rtl'] .underline-gradient::before,
[dir='rtl'] .underline-gradient::before {
	background: linear-gradient(270.04deg, #4500b1 -132.42%, #3250ff 143.65%);
}

.underline-white::before,
.underline-white::before {
	background: var(--white);
}

/* Title END */

/* Ul */
.ul ul {
	padding: 0;
	margin: 0;
	list-style: none;
}

.ul ul li {
	font-size: 20px;
	font-weight: 500;
	line-height: 24px;
	padding: 0 0 0 30px;
	position: relative;
}

[dir='rtl'] .ul ul li {
	padding: 0 30px 0 0;
}

.ul ul li::before {
	content: '';
	position: absolute;
	top: 10px;
	left: 0;
	width: 14px;
	height: 4px;
	background: linear-gradient(270.04deg, #3250ff -132.42%, #4500b1 143.65%);
}

[dir='rtl'] .ul ul li::before {
	left: unset;
	right: 0;
	background: linear-gradient(270.04deg, #4500b1 -132.42%, #3250ff 143.65%);
}

/* Ul END */

/* Tabs */
.tabs-button {
	cursor: pointer;
}

.tabs-content {
	display: none;
}

.tabs-content.active {
	display: block;
}

/* Tabs END */

.wrapper {
	display: flex;
	flex-direction: column;
	min-height: 100%;
}

.main {
	flex: 1 1 auto;
}

.container {
	width: 100%;
	max-width: var(--container);
	margin: 0 auto;
	padding: 0 var(--container-padding);
}

#wpadminbar {
	position: fixed;
}

.link--hover,
.link-iiner--hover a {
	color: var(--black);
	position: relative;
}

.link--hover:hover,
.link-iiner--hover a:hover {
	color: var(--blue);
}

.link--hover::before,
.link-iiner--hover a::before {
	content: '';
	position: absolute;
	bottom: -4px;
	left: 0;
	width: 0;
	height: 1px;
	background-color: var(--blue);
	transition: var(--transition-time);
}

[dir='rtl'] .link--hover::before,
[dir='rtl'] .link-iiner--hover a::before {
	left: unset;
	right: 0;
}

.link--hover:hover::before,
.link-iiner--hover a:hover::before {
	width: 100%;
}

.social-box {
	display: grid;
	grid-auto-flow: column;
	gap: 10px;
	align-items: center;
}

.social-box a {
	display: flex;
	background: var(--blue);
	border-radius: 50%;
}

/* Header */
.header {
	padding-right: var(--pr);
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 65;
}

.header::before,
.header::after {
	content: '';
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}

.header::before {
	background: var(--white);
	box-shadow: 0px 8px 39px rgba(0, 0, 0, 0.08);
	position: absolute;
	z-index: 1;
}

.header::after {
	background: rgb(0 0 0 / 10%);
	position: fixed;
	z-index: -2;
	visibility: hidden;
	opacity: 0;
	pointer-events: none;
	transition: var(--transition-time);
}

.menu-opened .header::after {
	visibility: visible;
	opacity: 1;
	pointer-events: all;
}

.header>div {
	position: relative;
	z-index: 2;
}

.admin-bar .header {
	top: 32px;
}

.header__inner {
	display: flex;
	column-gap: 15px;
	align-items: center;
	height: var(--header-height);
}

.burger {
	display: none;
	width: 39px;
	height: 39px;
	background: linear-gradient(93.85deg, #3250ff 10.23%, #3a8dff 97.57%);
	border: 0;
	border-radius: 50%;
	position: relative;
}

[dir='rtl'] .burger {
	background: linear-gradient(93.85deg, #3a8dff 10.23%, #3250ff 97.57%);
}

.burger>span {
	width: 16px;
	height: 14px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.burger>span>span {
	display: block;
	position: absolute;
	height: 2px;
	width: 100%;
	background: var(--white);
	opacity: 1;
	left: 0;
	transform: rotate(0deg);
	transition: 0.25s ease-in-out;
}

.burger>span>span:nth-child(1) {
	top: 0px;
}

.burger>span>span:nth-child(2) {
	top: 6px;
}

.burger>span>span:nth-child(3) {
	top: 12px;
}

.menu-opened .burger>span>span:nth-child(1) {
	top: 6px;
	transform: rotate(135deg) scale(1.06);
}

.menu-opened .burger>span>span:nth-child(2) {
	opacity: 0;
	left: -60px;
}

.menu-opened .burger>span>span:nth-child(3) {
	top: 6px;
	transform: rotate(-135deg) scale(1.06);
}

.header__nav {
	flex: 1 1 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.main-menu {
	display: grid;
	grid-auto-columns: max-content;
	grid-auto-flow: column;
	gap: 50px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.main-menu a {
	font-size: 18px;
	font-weight: 500;
	line-height: 21px;
	color: var(--black);
	position: relative;
}

.main-menu a:hover {
	color: var(--blue);
}

.main-menu a::before {
	content: '';
	position: absolute;
	bottom: -4px;
	left: 0;
	width: 0;
	height: 1px;
	background-color: var(--blue);
	transition: var(--transition-time);
}

[dir='rtl'] .main-menu a::before {
	left: unset;
	right: 0;
}

.main-menu a:hover::before {
	width: 100%;
}

.header__languages a {
	display: flex;
	align-items: center;
	font-size: 16px;
	font-weight: 500;
	line-height: 19px;
}
.header__languages a span {margin:0 7px;}
.header__languages a:before{display:none}

:lang(he-IL) .flag-he {display:none}
:lang(ru-RU) .flag-ru {display:none}


/* Header END */

/* Footer */
.footer {
	padding: 45px 0 30px;
}

.footer__top {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
}

.footer__title {
	display: grid;
	grid-template-columns: max-content max-content;
	gap: 12px;
	align-items: center;
	font-size: 16px;
	font-weight: 700;
	line-height: 19px;
	margin: 0 0 10px;
}

.footer__title svg {
	fill: var(--blue);
}

.footer__phones {
	display: grid;
	row-gap: 15px;
}

.footer__phone,
.footer__description,
.footer__email,
.footer__address {
	font-size: 18px;
	line-height: 21px;
	color: var(--black);
}

[dir="rtl"] .footer__phone {
	display: inline-block;
	direction: ltr;
}

.footer__description {
	margin: 0 0 3px;
}

.footer__address {
	margin: 0 0 10px;
}

.footer__time {
	font-size: 16px;
	font-weight: 700;
	line-height: 19px;
}

.footer__bottom {
	display: flex;
	justify-content: space-between;
	padding: 65px 0 0;
	position: relative;
}

.footer__gotop {
	display: grid;
	justify-items: center;
	align-items: center;
	width: 68px;
	height: 68px;
	background: rgb(63 63 63 / 15%);
	border-radius: 50%;
	border: 0;
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translate(-50%, 0);
}

.footer__gotop::before {
	content: '';
	background: linear-gradient(93.85deg, #3250ff 10.23%, #3a8dff 97.57%);
	border-radius: 50%;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1;
	visibility: hidden;
	opacity: 0;
	pointer-events: none;
	transition: var(--transition-time);
}

[dir='rtl'] .footer__gotop::before {
	background: linear-gradient(93.85deg, #3a8dff 10.23%, #3250ff 97.57%);
}

.footer__gotop:hover::before {
	visibility: visible;
	opacity: 1;
}

.footer__gotop svg {
	fill: #525252;
	position: relative;
	z-index: 2;
}

.footer__gotop:hover svg {
	fill: var(--white);
}

.footer__copyright {
	direction: ltr;
}

/* Footer END */

/* Mobile menu */
.popup-sidebar {
	top: var(--header-height);
}

.admin-bar .popup-sidebar {
	top: calc(var(--header-height) + 32px);
}

.mobile__menu {
	padding: 0;
	margin: 60px 0 0;
	list-style: none;
	display: grid;
	gap: 26px;
}

.mobile__menu a {
	display: block;
	text-align: center;
	font-size: 18px;
	font-weight: 500;
	line-height: 18px;
	color: var(--black);
}

.mobile-social {
	justify-items: center;
	margin: 36px 0 0;
}

/* Mobile menu END */

/* Typography */
h1,
.h1 {
	font-size: 36px;
	font-weight: 500;
	line-height: 1.6;
	margin: 0;
}

h2,
.h2 {
	font-size: 55px;
	font-weight: 500;
	line-height: 1.18;
	margin: 0;
}

h3,
.h3 {
	font-size: 18px;
	font-weight: 400;
	line-height: 1.16;
	margin: 0;
}

/* Typography END */

/* Specialist */
.specialist {
	padding: 80px 0 45px;
	position: relative;
}

.specialist::before,
.specialist::after {
	content: '';
	position: absolute;
	z-index: 1;
	pointer-events: none;
}

.specialist::before {
	width: 319px;
	height: 209px;
	background: url(/assets/img/specialist-decor-1.png);
	top: 0;
	right: 0;
}

[dir='rtl'] .specialist::before {
	right: unset;
	left: 0;
}

.specialist::after {
	width: 187px;
	height: 199px;
	background: url(/assets/img/specialist-decor-2.png);
	bottom: 0;
	left: 0;
}

[dir='rtl'] .specialist::after {
	left: unset;
	right: 0;
}

.specialist__bg--desktop,
.specialist__bg--mob {
	background-position: center;
	background-size: cover;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: -1;
	pointer-events: none;
}

.specialist__bg--mob {
	display: none;
}

.specialist__inner {
	display: flex;
	flex-direction: column;
}

.specialist__image {
	display: block;
	margin: 0 auto 10px;
}

.specialist__title {
	text-align: center;
	margin: 0 0 70px;
}

.specialist__title span {
	display: block;
	font-size: 20px;
	font-weight: 400;
	line-height: 1.2;
}

.specialist-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-self: center;
	max-width: 880px;
	margin: 0 auto;
}

.specialist-list__item {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	flex: 0 0 20%;
	width: 20%;
	max-width: 140px;
	color: var(--black);
	background: transparent;
	border: 0;
}

.specialist-list__bg {
	background: linear-gradient(93.85deg, #3A8DFF 10.23%, #3250FF 97.57%);
	border-radius: 50%;
	box-shadow: 0px 21px 80px rgba(0, 0, 0, 0.12), 0px 41.7776px 33.4221px rgba(0, 0, 0, 0.0503198);
}

.specialist-list__image {
	display: block;
	border-radius: 50%;
	width: 100%;
	height: auto;
	max-width: 86px;
	margin: 0 auto;
}

.specialist-list__title {
	font-size: 18px;
	font-weight: 500;
	line-height: 21px;
	margin: 10px 0 0;
}

/* Specialist END */

/* About */
.about {
	min-height: 855px;
	position: relative;
	overflow: hidden;
}

.about::before {
	content: '';
	width: 198px;
	height: 281px;
	background: url(/assets/img/about-decore-1.png);
	position: absolute;
	left: 0;
	bottom: 0;
	z-index: 1;
	pointer-events: none;
}

[dir='rtl'] .about::before {
	left: unset;
	right: 0;
}



.about__image {
	width: 47.56%;
	height: auto;
	margin: 0 0 0 auto;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
}


@media (max-width: 1480px) {
	.about__image {
		height: 100%;
		object-fit: cover;
	}
}

[dir='rtl'] .about__image {
	margin: 0 auto 0 0;
}



.about__inner {
	display: flex;
	align-items: center;
}

.about__wrap {
	margin: 130px auto 100px 0;
	padding: 45px 55px;
	max-width: 675px;
	background: var(--white);
	box-shadow: 0px 14px 38px rgba(0, 0, 0, 0.1);
	border-radius: 10px;
	position: relative;
	z-index: 2;
}

.about__wrap::before {
	content: '';
	width: 256px;
	height: 227px;
	background: url(/assets/img/about-decor.png);
	position: absolute;
	top: -105px;
	left: -30px;
	z-index: 1;
	pointer-events: none;
}

[dir='rtl'] .about__wrap::before {
	left: unset;
	right: -30px;
}

[dir='rtl'] .about__wrap {
	margin: 130px 0 100px auto;
}

.about__title {
	margin: 0 0 50px;
	position: relative;
}

.about__description {
	font-size: 17px;
	line-height: 20px;
	color: #373e3f;
}

.about__link {
	width: 100%;
	max-width: 290px;
	margin: 15px 0 0;
}

/* About END */

/* Practice */
.practice__top {
	padding: 65px 0 35px;
	background: linear-gradient(94.03deg, #3c27d7 8.44%, #3b8eff 69.43%);
	position: relative;
	top: 0;
}

.opened .practice__top {
	padding: 45px 0 25px;
}

[dir='rtl'] .practice__top {
	background: linear-gradient(94.03deg, #3b8eff 8.44%, #3c27d7 69.43%);
}

.practice__top::before,
.practice__top::after {
	content: '';
	position: absolute;
	top: 0;
	z-index: 1;
	pointer-events: none;
}

.practice__top::before {
	width: 198px;
	height: 410px;
	background: url(/assets/img/practice-decor-1.png);
	right: 0;
}

[dir='rtl'] .practice__top::before {
	right: unset;
	left: 0;
}

.practice__top::after {
	width: 198px;
	height: 281px;
	background: url(/assets/img/practice-decor-2.png);
	left: 0;
}

[dir='rtl'] .practice__top::after {
	left: unset;
	right: 0;
}

.practice__title {
	color: var(--white);
	text-align: center;
	margin: 0 0 60px;
	transition: var(--transition-time);
}

.opened .practice__title {
	margin: 0 0 25px;
}

.practice__title span {
	display: block;
	font-size: 18px;
	font-weight: 400;
	line-height: 21px;
}

.practice__nav {
	position: relative;
	z-index: 2;
}

.practice-nav {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-self: center;
	max-width: 925px;
	margin: 0 auto;
	transition: var(--transition-time);
}

.opened .practice-nav {
	max-width: 880px;
}

.practice-nav__button {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	flex: 0 0 20%;
	width: 20%;
	max-width: 145px;
	background: transparent;
	border: 0;
	padding: 0;
	position: relative;
}

.practice-nav__bg {
	background: var(--white);
	border-radius: 50%;
	box-shadow: 0px 21px 80px rgb(0 0 0 / 12%), 0px 41.7776px 33.4221px rgb(0 0 0 / 5%);
	position: relative;
	width: 100%;
	max-width: 133px;
	margin: 0 auto;
}

.active .practice-nav__bg {
	background: transparent;
}

.opened .practice-nav__bg {
	max-width: 86px;
}

.practice-nav__bg::before {
	content: '';
	background: linear-gradient(93.85deg, #3A8DFF 10.23%, #3250FF 97.57%);
	border-radius: 50%;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: var(--transition-time);
}

.active .practice-nav__bg::before {
	opacity: 1;
	visibility: visible;
}

.practice-nav__bg::after {
	content: '';
	display: block;
	padding: 100% 0 0 0;
	width: 100%;
}

.practice-nav__image,
.practice-nav__active {
	width: 100%;
	height: auto;
	margin: 0 auto;
	max-width: 133px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 2;
	transition: var(--transition-time);
}

.opened .practice-nav__image,
.opened .practice-nav__active {
	max-width: 86px;
}

.practice-nav__image {
	display: block;
}

.practice-nav__active {
	opacity: 0;
}

.practice-nav__button.active .practice-nav__active+.practice-nav__image {
	opacity: 0;
}

.practice-nav__button.active .practice-nav__active {
	opacity: 1;
}

.practice-nav__title {
	font-size: 18px;
	font-weight: 500;
	line-height: 21px;
	color: var(--white);
	margin: 10px 0 0;
}

.practice-nav__title::before {
	content: '';
	background: #BED4FC;
	height: 4px;
	border-radius: 4px;
	position: absolute;
	left: 0;
	right: 0;
	bottom: -25px;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: var(--transition-time);
}

.active .practice-nav__title::before {
	opacity: 1;
	visibility: visible;
}

.tabs-content__inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	column-gap: 50px;
	padding: 90px 0;
}

.practice-content__image {
	display: block;
	margin: 0 auto;
	width: auto;
	height: auto;
}



.practice-content__title {
	font-size: 40px;
	font-weight: 500;
	line-height: 45px;
}

.practice-content__subtitle {
	font-size: 18px;
	font-weight: 500;
	line-height: 21px;
	margin: 0 0 5px;
}

.practice-content__description {
	font-size: 17px;
	line-height: 20px;
}

.practice-content__description ul {
	margin: 20px 0 0;
}

.practice-content__description ul li+li {
	margin: 10px 0 0;
}

/* Practice END */

/* Operation */
.operation {
	padding: 65px 0 80px;
	position: relative;
}

.operation::before,
.operation::after {
	content: '';
	position: absolute;
	pointer-events: none;
}

.operation::before {
	width: 323px;
	height: 384px;
	background: url(/assets/img/operation-decor-1.png);
	top: 0;
	right: 0;
}

[dir='rtl'] .operation::before {
	right: unset;
	left: 0;
}

.operation::after {
	width: 306px;
	height: 730px;
	background: url(/assets/img/operation-decor-2.png);
	bottom: -355px;
	left: 0;
}

[dir='rtl'] .operation::after {
	left: unset;
	right: 0;
}

.operation__bg--desktop,
.operation__bg--mob {
	background-position: center;
	background-size: cover;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: -1;
	pointer-events: none;
}

.operation__bg--mob {
	display: none;
}

.operation__title {
	text-align: center;
	color: #181818;
}

.operation__subtitle {
	font-weight: 400;
	text-align: center;
	margin: 0 0 65px;
}

.operation-video__video {
	max-width: 675px;
	margin: 0 auto 50px;
}

.operation-video__sizer {
	padding: 62% 0 0;
}

.operation__wrap {
	display: grid;
	grid-auto-flow: column;
	gap: 20px;
	justify-content: space-between;
	margin: 0 auto;
	max-width: 1040px;
}

.operation__description {
	color: #131313;
}

.operation__description ul li+li {
	margin: 10px 0 0;
}

.operation__link {
	display: grid;
	max-width: 290px;
	width: 100%;
	margin: 60px auto 0;
}

.readmore-wrap {
	display: flex;
	justify-content: center;
}

.readmore-wrap__button {
	display: grid;
	grid-template-columns: 1fr max-content;
	gap: 15px;
	align-items: center;
	color: var(--black);
}

.readmore-wrap__button span {
	width: 45px;
	height: 45px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--white);
	border-radius: 50%;
	transition: var(--transition-time);
}

.readmore-wrap__button.active span {
	transform: rotate(180deg);
}

/* Operation END */

/* Reviews */
.reviews {
	padding: 70px 0 90px;
	position: relative;
}

.reviews::after {
	width: 183px;
	height: 354px;
	background: url(/assets/img/reviews-decor-2.png);
	content: '';
	position: absolute;
	left: 0;
	bottom: -140px;
	pointer-events: none;
}

[dir='rtl'] .reviews::after {
	left: unset;
	right: 0;
}

.reviews__bg--desktop,
.reviews__bg--mob {
	background-position: center;
	background-size: cover;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: -1;
	pointer-events: none;
}

.reviews__title,
.reviews__subtitle {
	text-align: center;
	color: var(--white);
}

.reviews__subtitle {
	margin: 0 0 75px;
}

.reviews-slider {
	max-width: 960px;
	margin: 0 auto;
	padding: 0 0 115px;
	position: relative;
}

.reviews-slider {
	max-width: 960px;
	margin: 0 auto;
	padding: 0 0 115px;
	position: relative;
}

.reviews-slider .swiper {
	padding: 105px 0;
	margin: -105px calc(-1 * var(--container-padding));
}

.reviews-slider__item {
	display: grid;
	grid-template-columns: 120px 1fr;
	gap: 30px;
	align-items: center;
	max-width: 860px;
	padding: 0 40px;
	margin: 0 auto;
}

.reviews-slider__bg {
	margin: 0 auto;
	background: var(--white);
	border-radius: 50%;
}

.reviews-slider__image {
	display: block;
	width: 100%;
	height: auto;
	max-width: 120px;
}

.reviews-slider__wrap {
	position: relative;
}

.reviews-slider__description {
	font-size: 20px;
	line-height: 24px;
	padding: 35px 30px 35px 45px;
	color: #282828;
	background: var(--white);
	border: 1px solid rgba(255, 255, 255, 0.21);
	box-shadow: 0px 14px 22px rgba(0, 0, 0, 0.03);
	border-radius: 10px;
	position: relative;
}

.reviews-slider__description::before {
	content: '';
	width: 13px;
	height: 35px;
	background: url(/assets/img/comment-corner.svg);
	position: absolute;
	top: 50%;
	right: 100%;
	transform: translate(0, -50%);
	pointer-events: none;
}

[dir='rtl'] .reviews-slider__description::before {
	right: unset;
	left: 100%;
	transform: translate(0, -50%) rotate(180deg);
}

.reviews-slider__description::after {
	content: '';
	width: 237px;
	height: 248px;
	background-image: url(/assets/img/reviews-decor-3.png);
	background-size: cover;
	position: absolute;
	bottom: -105px;
	right: -80px;
	pointer-events: none;
}

[dir='rtl'] .reviews-slider__description::after {
	right: unset;
	left: -80px;
}

.reviews-slider__name {
	font-size: 20px;
	line-height: 24px;
	color: var(--white);
	position: absolute;
	top: calc(100% + 20px);
	left: 0;
	right: 0;
}

/* Reviews END */

/* Articles */
.articles {
	padding: 80px 0;
	position: relative;
}

.articles::before {
	content: '';
	width: 446px;
	height: 450px;
	background-image: url(/assets/img/articles-decor-1.png);
	background-size: cover;
	position: absolute;
	top: -135px;
	left: 50%;
	transform: translate(-50%, 0) scaleX(-1);
	pointer-events: none;
}

[dir='rtl'] .articles::before {
	left: unset;
	right: 50%;
	transform: translate(50%, 0) scaleX(1);
}

.articles-slider {
	position: relative;
	z-index: 2;
}

.articles-slider .swiper {
	padding: 40px 0;
	margin: -40px 0;
}

.articles-slider .swiper-slide {
	padding: 0 var(--container-padding);
}

.articles-slider__item {
	display: grid;
	grid-template-columns: 1fr 1fr;
	max-width: 1310px;
	margin: 0 auto;
	background: var(--white);
	box-shadow: 0px 14px 22px rgba(0, 0, 0, 0.1);
	border-radius: 10px;
}

.articles-slider__left {
	padding: 20px 75px 20px 85px;
	margin: 0 0 125px;
}

[dir='rtl'] .articles-slider__left {
	padding: 20px 85px 20px 75px;
}

.articles-slider__right {
	align-self: center;
	padding: 85px 0;
}

.articles-slider__title {
	color: #181818;
	margin: 0 0 30px;
	position: relative;
}

.articles-slider__subtitle {
	font-size: 24px;
	font-weight: 600;
	line-height: 28px;
	color: #181818;
	margin: 0 0 15px;
}

.articles-slider__description {
	font-size: 20px;
	line-height: 24px;
	color: #373E3F;
	margin: 0 0 20px;
}

.articles-slider__origin {
	font-size: 18px;
	font-weight: 500;
	line-height: 21px;
}

.articles-slider__origin a {
	font-weight: 700;
}

.articles-slider__origin a:not(:hover) {
	color: var(--blue);
}

.articles-slider__video {
	max-width: 655px;
	margin: 0;
	position: relative;
	right: 45px;
}

[dir='rtl'] .articles-slider__video {
	left: 45px;
	right: unset;
}

.articles-slider__sizer {
	padding: 52.67% 0 0 0;
}

.articles-slider .swiper-pagination-balancer {
	max-width: 1310px;
	margin: 0 auto;
	position: relative;
}

.articles-slider .swiper-pagination {
	width: auto;
	position: absolute;
	right: unset;
	left: 85px;
	bottom: 115px;
}

[dir='rtl'] .articles-slider .swiper-pagination {
	left: unset;
	right: 85px;
}

.articles-slider .swiper-pagination-bullet {
	background: var(--black);
}

.articles-slider .swiper-pagination-bullet-active {
	background: var(--blue);
}

/* Articles END */

/* Contact us */
.contact-us {
	display: grid;
	grid-template-columns: 1fr 1fr;
	position: relative;
	overflow: hidden;
}

.contact-us::before {
	content: '';
	width: 229px;
	height: 374px;
	background-image: url(/assets/img/form-decor-1.png);
	background-size: cover;
	position: absolute;
	top: 35px;
	right: 0;
	pointer-events: none;
}

[dir='rtl'] .contact-us::before {
	right: unset;
	left: 0;
}

.contact-us__bg--desktop,
.contact-us__bg--mob {
	background-position: center;
	background-size: cover;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: -1;
	pointer-events: none;
}

.contact-us__bg--mob {
	display: none;
}

/*
.contact-us__image {
	height: 100%;
	object-fit: cover;
	margin: 0 0 0 auto;
}*/

.contact-us__image {
	height: auto;
	object-fit: cover;
	margin: 0 0 0 auto;
	position: absolute;
	width: 50%;
}



@media (max-width: 1280px) {
	.contact-us__image {
		height: 100%;
		object-fit: cover;
		margin: 0 0 0 auto;
		position: relative;
		width: auto;
	}
}


[dir='rtl'] .contact-us__image {
	margin: 0 auto 0 0;
}

.contact-us__content {
	padding: 55px 20px 100px 100px;
	grid-area: 1 / 2 / 2 / 3;
}

[dir='rtl'] .contact-us__content {
	padding: 55px 100px 100px 20px;
	grid-area: 1 / 2 / 2 / 3;
}

.contact-us__title,
.contact-us__subtitle {
	color: var(--white);
}

.contact-us__subtitle {
	margin: 0 0 15px;
}

.contact-us__content .wpcf7 {
	max-width: 380px;
}

/* Contact us END */

/* Popap form */
.call-title {
	font-size: 32px;
	font-weight: 500;
	line-height: 1.16;
	margin: 0;
	color: var(--white);
}

.call-subtitle {
	font-size: 18px;
	font-weight: 400;
	line-height: 1.16;
	margin: 0;
	color: var(--white);
}

/* Popap form END */

@media (max-width: 1350px) {
	.articles-slider .swiper-pagination-balancer {
		margin: 0 var(--container-padding);
	}
}

@media (max-width: 1180px) {
	.main-menu {
		gap: 30px;
	}

	.main-menu a {
		font-size: 16px;
	}

	/* Articles */
	.articles-slider__left {
		padding: 40px 20px;
		margin: 0 0 20px;
	}

	[dir='rtl'] .articles-slider__left {
		padding: 40px 20px;
	}

	.articles-slider__right {
		padding: 85px 20px;
	}

	.articles-slider__video {
		right: 0;
		max-width: 550px;
	}

	[dir='rtl'] .articles-slider__video {
		left: 0;
	}

	.articles-slider .swiper-pagination {
		left: 35px;
		bottom: 40px;
	}

	[dir='rtl'] .articles-slider .swiper-pagination {
		left: unset;
		right: 40px;
	}

	/* Articles END */

	/* Contact us */
	.contact-us__content {
		padding: 55px 20px 50px 50px;
	}

	[dir='rtl'] .contact-us__content {
		padding: 55px 50px 50px 20px;
	}

	/* Contact us END */
}

@media (max-width: 991px) {
	.header::before {
		z-index: unset;
	}

	.header>div {
		z-index: unset;
	}


	.burger {
		display: flex;
	}

	.header__nav {
		flex-direction: column;
		justify-content: flex-start;
		width: 360px;
		background: var(--white);
		position: fixed;
		top: var(--header-height);
		left: -360px;
		bottom: 0;
		z-index: -1;
		transition: var(--transition-time);
		transition-property: left;
	}

	.admin-bar .header__nav {
		top: calc(var(--header-height) + 32px);
	}

	.menu-opened .header__nav {
		left: 0;
	}

	.main-menu {
		display: grid;
		gap: 26px;
		grid-auto-columns: unset;
		grid-auto-flow: unset;
		padding: 0;
		margin: 60px 0 0;
		list-style: none;
	}

	.main-menu a {
		display: block;
		text-align: center;
		font-size: 18px;
		font-weight: 500;
		line-height: 18px;
		color: var(--black);
	}

	.header__social {
		margin: 35px 0 0;
	}

	.header__call {
		margin: 0 0 0 auto;
	}

	[dir='rtl'] .header__call {
		margin: 0 auto 0 0;
	}

	/* About */
	.about__wrap::before {
		background: none;
		display: none;
	}

	.about__image {
		width: 100%;
		height: auto;
		position: relative;
	}

	.about__wrap,
	[dir='rtl'] .about__wrap {
		margin: -70px 0 50px;
	}

	.about__wrap {
		max-width: 100%;
		flex: 1 1 auto;
	}

	/* About END */

	/* Practice */
	.practice-nav {
		max-width: 880px;
	}

	.practice-nav__bg {
		max-width: 86px;
	}

	.practice-nav__image,
	.practice-nav__active {
		max-width: 86px;
		height: auto;
	}

	/* Practice END */

	/* Articles */
	.articles-slider__item {
		grid-template-columns: 1fr;
	}

	.articles-slider__left {
		order: 2;
	}

	.articles-slider__right {
		order: 1;
		padding: 0;
	}

	.articles-slider__video {
		right: unset;
		margin: 0 auto;
		max-width: 100%;
	}

	[dir='rtl'] .articles-slider__video {
		left: unset;
	}

	/* Articles END */
}

@media (max-width: 782px) {
	.admin-bar .header {
		top: 46px;
	}

	.admin-bar .popup-sidebar {
		top: calc(var(--header-height) + 46px);
	}
}

@media (max-width: 767px) {
	:root {
		--header-height: 70px;
	}

	h1,
	.h1 {
		font-size: 32px;
		font-weight: 500;
		line-height: 1.18;
	}

	h2,
	.h2 {
		font-size: 32px;
		font-weight: 500;
		line-height: 1.18;
	}

	/* Ul */
	.ul ul li::before {
		top: 8px;
	}

	.ul ul li {
		font-size: 18px;
		line-height: 21px;
	}

	/* Ul END */

	/* Title */
	.underline-left::before,
	.underline-center::before {
		bottom: -12px;
	}

	/* Title END */

	/* Footer */
	.footer__top {
		display: grid;
		grid-template-columns: 1fr;
		row-gap: 25px;
	}

	.footer__column {
		display: flex;
		flex-direction: column;
		align-items: center;
		text-align: center;
	}

	[dir='rtl'] .footer__column:nth-child(1) {
		order: 3;
	}

	[dir='rtl'] .footer__column:nth-child(2) {
		order: 2;
	}

	[dir='rtl'] .footer__column:nth-child(3) {
		order: 1;
	}

	.footer__title {
		margin: 0 0 20px;
	}

	.footer__bottom {
		flex-direction: column;
		justify-content: center;
		text-align: center;
		padding: 95px 0 0;
	}

	[dir='rtl'] .footer__copyright {
		order: 2;
	}

	[dir='rtl'] .footer__powered {
		order: 1;
	}

	.footer__gotop {
		top: 15px;
		bottom: unset;
	}

	/* Footer END */

	/* Specialist */
	.specialist {
		padding: 45px 0 50px;
	}

	.specialist::before {
		width: 186px;
		height: 341px;
		background: url(/assets/img/specialist-decor-1-mob.png);
	}

	.specialist::after {
		width: 72px;
		height: 167px;
		background: url(/assets/img/specialist-decor-2-mob.png);
	}

	.specialist__bg--desktop {
		display: none;
	}

	.specialist__bg--mob {
		display: block;
	}

	.specialist__title {
		margin: 0 0 35px;
	}

	.specialist__title span {
		font-size: 16px;
		line-height: 19px;
	}

	.specialist__list {
		display: flex;
		justify-content: center;
	}

	.specialist-list {
		justify-content: center;
		max-width: 350px;
		margin: -10px -15px 0;
	}

	.specialist-list__item {
		padding: 10px 15px 0;
		flex: 0 0 33%;
		width: 33%;
		max-width: 33%;
	}

	.specialist-list__title {
		font-size: 14px;
		line-height: 17px;
	}

	/* Specialist END */

	/* About */
	.about::before {
		background: none;
		display: none;
	}

	.about__wrap {
		padding: 30px 25px;
	}

	.about__title {
		margin: 0 0 20px;
	}

	.about__link {
		margin: 5px 0 0;
	}

	/* About END */

	/* Practice */
	.practice__top {
		padding: 40px 0 55px;
	}

	.opened .practice__top {
		padding: 25px 0;
	}

	.practice__top::before,
	.practice__top::after {
		background: none;
		display: none;
	}

	.practice__title {
		margin: 0 0 35px;
	}

	.practice__nav {
		display: flex;
		justify-content: center;
	}

	.practice-nav {
		justify-content: center;
		max-width: 350px;
		margin: -35px -15px 0;
	}

	.opened .practice-nav {
		max-width: 330px;
		width: 100%;
	}

	.practice-nav__button {
		padding: 35px 15px 0;
		flex: 0 0 33%;
		width: 33%;
		max-width: 33%;
	}

	.opened .practice-nav__button {
		padding: 35px 5px 0;
		flex: 0 0 20%;
		width: 20%;
		max-width: 20%;
	}

	.practice-nav__bg {
		max-width: 78px;
	}

	.opened .practice-nav__bg {
		max-width: 57px;
	}

	.practice-nav__image,
	.practice-nav__active {
		max-width: 78px;

	}

	.opened .practice-nav__image,
	.opened .practice-nav__active {
		max-width: 57px;

	}

	.practice-nav__active {
		/* top: 35px; */
	}

	.practice-nav__title {
		font-size: 14px;
		line-height: 17px;
		margin: 10px -5px 0;
	}

	.opened .practice-nav__title {
		font-size: 10px;
		line-height: 12px;
	}

	.practice-nav__title::before {
		bottom: -25px;
	}

	.tabs-content__inner {
		grid-template-columns: 1fr;
		row-gap: 35px;
		padding: 45px 0;
	}

	.practice-content__title {
		font-size: 32px;
		line-height: 38px;
	}

	.practice-content__description {
		font-size: 14px;
		line-height: 17px;
	}

	/* Practice END */

	/* Operation */
	.operation {
		padding: 35px 0;
	}

	.operation::before {
		width: 175px;
		height: 228px;
		background: url(/assets/img/operation-decor-1-mob.png);
	}

	.operation::after {
		width: 170px;
		height: 414px;
		background: url(/assets/img/operation-decor-2-mob.png);
		bottom: -225px;
	}

	.operation__bg--desktop {
		display: none;
	}

	.operation__bg--mob {
		display: block;
	}

	.operation__subtitle {
		margin: 0 0 45px;
	}

	.operation-video {
		margin: 0 auto 30px;
	}

	.operation__wrap {
		grid-auto-flow: row;
		margin: 0 0 30px;
	}

	/* Operation END */

	/* Reviews */
	.reviews {
		padding: 50px 0;
	}

	.reviews::after {
		width: 159px;
		height: 354px;
		background: url(/assets/img/reviews-decor-2-mob.png);
		bottom: -180px;
	}

	.reviews__title {
		margin: 0 0 10px;
	}

	.reviews__subtitle {
		margin: 0 0 30px;
	}

	.reviews-slider .swiper {
		padding: 75px 0;
		margin: -75px calc(-1 * var(--container-padding));
	}

	.reviews-slider__item {
		grid-template-columns: 1fr;
		gap: 20px;
		padding: 0 var(--container-padding);
	}

	.reviews-slider__image {
		width: 60px;
		height: 60px;
		justify-self: center;
	}

	.reviews-slider__description {
		padding: 20px;
	}

	.reviews-slider__description::before,
	[dir='rtl'] .reviews-slider__description::before {
		position: absolute;
		top: -23px;
		left: 50%;
		right: unset;
		transform: translate(-50%, 0) rotate(90deg);
	}

	.reviews-slider__description::after {
		width: 102px;
		height: 107px;
		right: -20px;
		bottom: -47px;
	}

	[dir='rtl'] .reviews-slider__description::after {
		left: -20px;
		right: unset;
	}

	.reviews-slider__name {
		text-align: center;
	}

	.reviews-slider .swiper-button-next,
	.reviews-slider .swiper-button-prev {
		display: none;
	}

	/* Reviews END */

	/* Articles */
	.articles {
		padding: 45px 0;
	}

	.articles::before {
		width: 360px;
		height: 450px;
		background-image: url(/assets/img/articles-decor-1-mob.png);
		top: -90px;
	}

	/* Articles END */

	/* Contact us */
	.contact-us {
		grid-template-columns: 1fr;
	}

	.contact-us::before {
		width: 189px;
		height: 374px;
		background-image: url(/assets/img/form-decor-1-mob.png);
		top: 0;
	}

	.contact-us__content,
	[dir='rtl'] .contact-us__content {
		padding: 40px 20px 65px;
		order: 1;
		grid-area: auto;
	}

	.contact-us__image {
		height: auto;
		width: 100%;
		order: 2;
	}

	/* Contact us END */
}