@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");

:root {
	--link: #0043cee5;
	--blue-60: #0043ce99;
	--bg-hover-10: #0043ce1a;
	--stroke-hover-20: #0043ce33;
	--black: #333131;
	--black-50: #33313180;
	--grey-300: #4d5358;
	--grey-200: #c1c7cd;
	--grey-100: #dde1e6;
	--bg-hover-40: #e6eaf566;
	--strong-bg-70: #e7ebefb2;
	--white: #ffffff;
	--blue-bg-1: #f2f4f8;
	--blue-bg-2: #e6eaf5;
	--grey-bg-2: #e7ebef;
}

.container {
	width: 1840px;
	max-width: 100%;
	margin: 0 auto;
	padding: 0 80px;
}

.container_fit {
	width: 1010px;
}

.body-wrapper {
	position: relative;
	overflow-x: clip;
	max-width: 1920px;
	padding: 0 40px;
	margin: 0 auto;
	height: 100%;
	display: flex;
	flex-direction: column;
}

body {
	font-family: Montserrat;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 150%;
	background-color: var(--blue-bg-1);
	color: var(--black);
}

.section {
	border-radius: 40px;
	background: var(--White, #fff);
	padding: 60px 0;
	overflow: hidden;
}

.section:not(:last-child) {
	margin-bottom: 5px;
}

.h1 {
	font-family: "Bebas Neue";
	font-size: 160px;
	font-style: normal;
	line-height: 90%;
	font-weight: 700;
}

.h2 {
	font-family: "Bebas Neue";
	font-size: 120px;
	font-style: normal;
	font-weight: 700;
	line-height: 90%;
	text-transform: uppercase;
}

.h3 {
	font-family: "Bebas Neue";
	font-size: 60px;
	font-style: normal;
	font-weight: 700;
	line-height: 100%;
	text-transform: uppercase;
}

.h4 {
	font-family: "Bebas Neue";
	font-size: 45px;
	font-style: normal;
	font-weight: 700;
	line-height: 100%;
	text-transform: uppercase;
}

.h5 {
	font-family: "Bebas Neue";
	font-size: 28px;
	font-style: normal;
	font-weight: 700;
	line-height: 115%;
	text-transform: uppercase;
}

.text-32 {
	font-size: 32px;
	line-height: 100%;
}

.text-28 {
	font-size: 28px;
	line-height: 100%;
}

.text-20 {
	font-size: 20px;
	line-height: 130%;
}

.text-18 {
	font-size: 18px;
	line-height: 130%;
}

.text-15 {
	font-size: 15px;
	line-height: 140%;
}

.text-14 {
	font-size: 14px;
	line-height: 140%;
}

.text-12 {
	font-size: 12px;
	line-height: 150%;
}

@media screen and (max-width: 1500px) {
	.h1 {
		font-size: 120px;
		line-height: 90%;
	}
}

@media screen and (max-width: 1024px) {
	.h3 {
		font-size: 45px;
		line-height: 100%;
	}
}

@media screen and (max-width: 768px) {
	.h1 {
		font-size: 60px;
		line-height: 90%;
	}

	.h2 {
		font-size: 60px;
		line-height: 90%;
	}

	.text-32 {
		font-size: 28px;
		line-height: 100%;
	}
}

.fw-400 {
	font-weight: 400;
}

.fw-500 {
	font-weight: 500;
}

.fw-600 {
	font-weight: 600;
}

.fw-700 {
	font-weight: 700;
}

.tt-uc {
	text-transform: uppercase;
}

b {
	font-weight: 600;
}

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

.content ol>li:not(:last-child) {
	margin-bottom: 10px;
}

.content ul {
	padding-left: 20px;
}

.content ul>li {
	position: relative;
}

.content ul>li:not(:last-child) {
	margin-bottom: 10px;
}

.content ul>li::after {
	display: block;
	content: "";
	width: 2px;
	height: 2px;
	border-radius: 50%;
	background-color: currentColor;
	position: absolute;
	top: 10px;
	left: -11px;
}

.content h2 {
	font-size: 20px;
	line-height: 130%;
	font-weight: 600;
	text-transform: uppercase;
}

.content h3 {
	font-size: 20px;
	line-height: 130%;
	font-weight: 600;
	text-transform: uppercase;
}

b {
	font-weight: bolder;
}

strong {
	font-weight: bolder;
}

.content h2:not(:last-child),
.content h3:not(:last-child),
.content ul:not(:last-child),
.content ol:not(:last-child),
.content p:not(:last-child) {
	margin-bottom: 1em;
}

.content h2:not(:first-child),
.content h3:not(:first-child) {
	margin-top: 2em;
}

.input {
	width: 100%;
	border-radius: 100px;
	border: 1px solid var(--grey-200);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	overflow: hidden;
}

.input__field {
	border-radius: 100px;
	width: 100%;
	padding: 15px 20px;
	background-color: transparent;
}

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

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

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

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

.btn {
	padding: 18px 40px;
	border-radius: 50px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	background-color: var(--black);
	color: var(--white);
	-webkit-transition: all ease 0.5s;
	transition: all ease 0.5s;
	cursor: pointer;
}

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

.btn_wide {
	width: 100%;
}

.btn_transparent {
	background-color: transparent;
	border: 1px solid var(--blue-60);
	color: var(--blue-60);
}

.btn_transparent-white {
	background-color: transparent;
	border: 1px solid var(--white);
	color: var(--white);
}

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

.read-more__text {
	overflow: hidden;
	transition: all ease 0.5s;
}

.read-more__btn {
	display: flex;
	width: fit-content;
	cursor: pointer;
}

.main {
	margin-top: 80px;
}

.header {
	position: absolute;
	top: 10px;
	z-index: 10;
	width: 100%;
	max-width: 1920px;
	padding: 0 40px;
	left: 50%;
	transform: translateX(-50%);
}



.header__logo {
	margin-left: 35px;
	width: 127px;
	height: 22px;
}

.header__wrapper {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	padding: 5px;
	min-height: 60px;
}

.header__body {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 5px;
	display: none;
}

.header__menu-btn {
	background-color: var(--white);
	border-radius: 50px;
	width: 70px;
	height: 40px;
	position: relative;
	cursor: pointer;
}

.header__menu-btn::after {
	display: block;
	content: "";
	width: 30px;
	height: 1.5px;
	border-radius: 2px;
	background-color: var(--black);
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, calc(-50% - 4px));
	transform: translate(-50%, calc(-50% - 4px));
	-webkit-transition: all ease 0.5s;
	transition: all ease 0.5s;
}

.header__menu-btn::before {
	display: block;
	content: "";
	width: 30px;
	height: 1.5px;
	border-radius: 2px;
	background-color: var(--black);
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, calc(-50% + 4px));
	transform: translate(-50%, calc(-50% + 4px));
	-webkit-transition: all ease 0.5s;
	transition: all ease 0.5s;
}

.header__search-btn {
	display: flex;
	cursor: pointer;
	padding: 8px;
	display: none;
}

.header .nav {
	-webkit-transition: all ease 0.5s;
	transition: all ease 0.5s;
}

.header .nav__list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-transition: all ease 0.5s;
	transition: all ease 0.5s;
	gap: 5px;
}

.header .nav__link {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	padding: 15px 30px;
	cursor: pointer;
	border-radius: 50px;
	-webkit-transition: all ease 0.5s;
	transition: all ease 0.5s;
}

.header .nav__link_active {
	color: var(--white);
	background-color: var(--blue-60);
}

.header .nav__link:hover {
	color: var(--white);
	background-color: var(--blue-60);
}

.menu-open {
	overflow: hidden;
}

.menu-open .header__menu-btn::after {
	width: 23px;
	-webkit-transform: translate(-50%, -50%) rotate(-45deg);
	transform: translate(-50%, -50%) rotate(-45deg);
}

.menu-open .header__menu-btn::before {
	width: 23px;
	-webkit-transform: translate(-50%, -50%) rotate(45deg);
	transform: translate(-50%, -50%) rotate(45deg);
}

.menu-open .header .nav {
	background-color: rgba(0, 0, 0, 0.8);
	pointer-events: all;
}

.menu-open .header .nav__list {
	-webkit-transform: none;
	transform: none;
}

.header_fixed {
	position: fixed;
	top: -80px;
}

.header_fixed .header__wrapper {
	background-color: var(--blue-bg-1);
	border-radius: 0px 0px 30px 30px;
}

.header_show {
	top: 0;
	transition: top ease 0.5s;
}

.entrance {
	padding-top: 80px;
	padding-bottom: 90px;
	position: relative;
	background-image: url(../img/entrance.png);
	background-repeat: no-repeat;
	background-size: 60%;
	background-position: left 100px bottom -250px;
	overflow: unset;
}

.entrance__heading {
	max-width: 1080px;
	position: relative;
	margin-bottom: 235px;
}

.entrance__tag {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 10px;
	padding: 11px 20px;
	width: 225px;
	border-radius: 60px;
	border-top: 1px solid var(--grey-bg-2);
	background: var(--bg-hover-40);
	position: absolute;
	left: calc(100% - 50px);
	top: 95px;
}

.entrance__tag-icon {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.entrance__tag-icon svg {
	width: 100%;
	height: 100%;
	-o-object-fit: contain;
	object-fit: contain;
	-o-object-position: center;
	object-position: center;
}

.entrance__body {
	max-width: 490px;
	margin-left: auto;
}

.entrance__desc {
	margin-bottom: 10px;
}

.search-form {
	position: relative;
}

.search-form__input {
	transition: all ease 0.5s;
}

.search-form__panel {
	position: absolute;
	top: calc(100% + 5px);
	left: 0;
	width: 100%;
	height: fit-content;
	border-radius: 30px;
	background: var(--blue-bg-2);
	padding: 20px;
	display: none;
	z-index: 40;
	flex-direction: column;
	gap: 20px;
}

.search-form_show .search-form__panel {
	display: flex;
}

.search-form_show .search-form__input,
.search-form_focus .search-form__input {
	background: var(--blue-bg-2);
	border-color: transparent;
}

.search-form__submit svg path {
	transition: all ease 0.5s;
}

.search-form_show .search-form__submit svg path,
.search-form_focus .search-form__submit svg path {
	stroke: var(--grey-300);
}

.search-form__link {
	color: var(--link);
}

.search-form__list-link {
	display: flex;
	padding: 2px 10px;
}

.search-form__submit {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	background: none;
	padding: 12px 20px;
	padding-left: 0;
	margin-left: 5px;
}

.search-form__clear {
	display: flex;
	width: 24px;
	height: 24px;
	opacity: 0;
	pointer-events: none;
	transform: translateX(50%);
	transition: transform ease 0.5s, opacity ease 0.4s;
}

.search-form_show .search-form__clear {
	transform: none;
	opacity: 1;
	pointer-events: all;
}

.category__search .search-form__panel {
	display: none !important;
}

.slider-navigation {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 5px;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
}

.slider-prev,
.slider-next {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: 48px;
	height: 48px;
	cursor: pointer;
	background-image: url(../img/icons/arrow.svg);
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
	-webkit-transition: all ease 0.5s;
	transition: all ease 0.5s;
}

.slider-prev.swiper-button-disabled,
.slider-next.swiper-button-disabled {
	opacity: 0.5;
	cursor: default;
}

.slider-next {
	-webkit-transform: scaleX(-1);
	transform: scaleX(-1);
}

.gallery__title {
	margin-bottom: 40px;
}

.gallery__slide {
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	height: auto;
	width: 100%;
	max-width: 405px;
}

.gallery__slider {
	overflow: visible;
}

.gallery__navigation {
	position: absolute;
	bottom: calc(100% + 52px);
	right: 0;
}

.service-card {
	padding: 30px;
	height: 100%;
	width: 100%;
	/* max-width: 405px; */
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
}

.service-card__logo {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: 100px;
	height: 100px;
	border-radius: 20px;
	border: 1px solid rgba(0, 67, 206, 0.05);
	background: var(--white);
	margin-bottom: 30px;
	padding: 16px;
}

.service-card__logo img {
	width: 100%;
	height: 100%;
	-o-object-fit: contain;
	object-fit: contain;
	-o-object-position: center;
	object-position: center;
}

.service-card__name {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin-bottom: 15px;
	cursor: pointer;
}

.service-card__name::after {
	display: block;
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	border-radius: 30px;
	border: 1px solid var(--strong-bg-70);
	background: var(--bg-hover-40);
	z-index: -1;
	-webkit-transition: all ease 0.5s;
	transition: all ease 0.5s;
}

.service-card__name:hover::after {
	border: 1px solid var(--stroke-hover-20);
	background: var(--bg-hover-10);
}

.service-card__rating {
	position: absolute;
	top: 30px;
	right: 30px;
	border-radius: 100px;
	border: 1px solid rgba(0, 67, 206, 0.05);
	background: var(--white);
	padding: 6px 15px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 5px;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	line-height: 100%;
}

.service-card__rating-icon {
	display: flex;
}

.service-card__rating-text {
	display: flex;
}

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

.service-card__bottom {
	margin-top: auto;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.service-card__comments {
	border-radius: 40px;
	border: 1px solid #0043ce0d;
	background: var(--white);
	padding: 10px 20px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 5px;
}

.service-card__like {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	border-radius: 60px;
	border: 1px solid #0043ce0d;
	background: var(--white);
	padding: 0px;
	width: 40px;
	height: 40px;
}

.about {
	background: linear-gradient(97deg, #7390e1 0%, #224daf 100%);
	color: var(--white);
}

.about__body {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	gap: 60px;
}

.about__content {
	width: 50%;
}

.about__title {
	width: 100%;
	max-width: 470px;
}

.about__bottom {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 25px;
	margin: 0 -80px;
	margin-top: 110px;
}

.about__tag {
	border-radius: 80px;
	border: 1px solid var(--blue-bg-1);
	padding: 13px 40px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	white-space: nowrap;
}

.about__tags-list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 10px;
}

.about__tags-list:nth-child(1) {
	margin-left: -80px;
}

.about__tags-list:nth-child(2) {
	margin-left: 20px;
}

.blog {
	background-color: var(--grey-bg-2);
}

.blog__slider {
	overflow: visible;
}

.blog__slide {
	width: 100%;
	max-width: 405px;
	height: auto;
}

.blog__card {
	padding: 30px;
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	background-color: var(--white);
	border-radius: 30px;
}


.blog__title {
	margin-bottom: 15px;
}

.blog__desc {
	margin-bottom: 30px;
}

.blog__link {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	margin-top: auto;
	color: var(--link);
}

.footer {
	padding: 60px 0 10px;
	margin-top: auto;
}

.footer__title {
	max-width: 500px;
}

.footer__wrapper {
	margin-bottom: 130px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	gap: 40px;
}

.footer__form {
	width: 100%;
	max-width: 750px;
}

.footer__form .wpcf7-spinner {
	display: none !important;
}

.footer__form-wrapper {
	width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 15px;
}

.footer__contacts {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: flex-end;
	margin-left: auto;
}

.footer__bottom {
	border-top: 1px solid var(--Grey-100, #dde1e6);
	margin-top: 15px;
	padding: 25px 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.preview {
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: 1fr 1fr;
	grid-template-columns: 1fr 1fr;
	gap: 5px;
	margin-bottom: 5px;
}

.preview__col {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 30px;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	border-radius: 40px;
	background: var(--white);
	min-height: 400px;
	padding: 40px;
}

.preview__desc {
	max-width: 750px;
}

.preview__tags {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 10px;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.preview__tags-btn {
	margin-left: auto;
	margin-top: 10px;
	color: var(--link);
	text-decoration: underline;
}

.preview__tag {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	padding: 3px 13px;
	border-radius: 100px;
	background: var(--blue-bg-1);
}

.preview_blue .preview__col:first-child {
	background: linear-gradient(270deg, #D6E0F1 0%, #FFF 41.27%), #FFF;
}

.preview_blue .preview__col:nth-child(2) {
	position: relative;
	overflow: hidden;
	background: radial-gradient(265.96% 64.66% at 50% 50%, #B2D5F4 0%, rgba(214, 224, 241, 0.70) 100%), #FFF;
}

@keyframes ball1 {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

@keyframes ball2 {
	0% {
		transform: translateY(0px);
	}

	50% {
		transform: translateY(30px);
	}

	100% {
		transform: rotate(0px);
	}
}

.preview_blue .preview__col:nth-child(2) img {
	position: absolute;
	width: 90%;
	height: auto;
	aspect-ratio: 1/1;
}

.preview_blue .preview__col:nth-child(2) img:nth-child(1) {
	top: 50%;
	right: -40px;
	width: 90px;
	opacity: 0.5;
	animation: ball2 7s 2s ease-in-out infinite;
}

.preview_blue .preview__col:nth-child(2) img:nth-child(2) {
	top: 30px;
	left: 30px;
	width: 120px;
	opacity: 0.5;
	animation: ball2 10s ease-in-out infinite;
}

.preview_blue .preview__col:nth-child(2) img:nth-child(3) {
	top: -40px;
	right: 0;
	animation: ball1 90s linear infinite;
}

.breadcrumb {
	color: var(--black-50);
	margin: 10px 0;
	padding: 10px 40px;
}

.category-card__tags {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 15px;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin-top: 40px;
}

.category-card__tag {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	padding: 11px 25px;
	border-radius: 100px;
	background: var(--blue-bg-1);
}

.blog-card {
	width: 100%;
	height: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	border-radius: 30px;
	background: var(--white);
	border: 1px solid transparent;
	padding: 30px;
	-webkit-transition: all ease 0.5s;
	transition: all ease 0.5s;
}

.blog-card__date {
	margin-bottom: 15px;
}

.blog-card__name {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	overflow: hidden;
	text-overflow: ellipsis;
	margin-bottom: 25px;
}

.blog-card__img {
	border-radius: 20px;
	overflow: hidden;
	width: 100%;
	height: 180px;
	margin-top: auto;
}

.blog-card__img img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	-o-object-position: center;
	object-position: center;
}

.blog-card:hover {
	border-color: var(--stroke-hover-20);
	background: var(--bg-hover-10);
}

.blog-list {
	background-color: var(--grey-bg-2);
	padding-top: 40px;
}

.blog-list__heading {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	border-radius: 30px;
	background: var(--white);
	padding: 30px;
	gap: 10px;
}

.blog-list__wrapper {
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: 1fr 1fr 1fr 1fr;
	grid-template-columns: 1fr 1fr 1fr 1fr;
	gap: 20px;
	row-gap: 40px;
}

.blog-list__img {
	width: 100%;
	margin-bottom: -30px;
}

.blog-list__img img {
	width: 100%;
	height: 100%;
	-o-object-fit: contain;
	object-fit: contain;
	-o-object-position: bottom center;
	object-position: bottom center;
}

.blog-list .blog-card {
	max-width: none;
	height: 100%;
}

.news-detail {
	padding-top: 50px;
}

.news-detail__date {
	color: var(--black-50);
	margin-bottom: 15px;
}

.news-detail__title {
	margin-bottom: 25px;
}

.news-detail__info {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 12px;
}

.news-detail__info-item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 4px;
}

.news-detail__author {
	margin-top: 5px;
}

.news-detail__sharing {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	gap: 20px;
	margin-top: 60px;
}

.news-detail__sharing-list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 10px;
}

.news-detail__sharing-link {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	border-radius: 50%;
	width: 50px;
	height: 50px;
	-webkit-transition: all ease 0.5s;
	transition: all ease 0.5s;
	border: 1px solid var(--grey-200);
	cursor: pointer;
}

.news-detail__sharing-link svg path {
	-webkit-transition: all ease 0.5s;
	transition: all ease 0.5s;
}

.news-detail__sharing-link:hover {
	background-color: var(--blue-60);
	border-color: transparent;
}

.news-detail__sharing-link:hover svg path {
	fill: var(--white);
}

.news-detail__gallery_grid {
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: 1fr 1fr;
	grid-template-columns: 1fr 1fr;
	gap: 30px;
}

.news-detail__gallery-img {
	width: 100%;
	height: auto;
	aspect-ratio: 16/9;
	border-radius: 40px;
	overflow: hidden;
}

.news-detail__gallery-img img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	-o-object-position: center;
	object-position: center;
}

.news-detail__gallery-label {
	margin-top: 5px;
}

.text-block__title {
	margin-bottom: 15px;
}

.category__wrapper {
	width: 100%;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}

.category__card {
	max-width: none;
}

.category__card .blog-card {
	border: 1px solid var(--strong-bg-70);
	background: var(--bg-hover-40);
}

.category__card .blog-card:hover {
	border-color: var(--stroke-hover-20);
	background: var(--bg-hover-10);
}

.category__load-more {
	margin: 0 auto;
	margin-top: 40px;
}

.category__search {
	margin-bottom: 50px;
}

.category__text:not(:last-child) {
	margin-bottom: 50px;
}

.wpulike {
	padding: 0;
	display: flex;
	width: 100%;
	height: 100%;
}

.wpulike-heart .wp_ulike_general_class {
	padding: 0;
	box-shadow: none;
	border-radius: 0;
	width: 100%;
	height: 100%;
}

.wpulike-heart .wp_ulike_put_image:after {
	width: 24px;
	height: 24px;
}

.wpulike-heart button.wp_ulike_btn {
	width: 100%;
	height: 100%;
}

.wp_ulike_btn.wp_ulike_put_image.wp_ulike_btn_is_active:after {
	background-position: center;
}

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

.service-about__wrapper {
	display: flex;
	gap: 10px;
	position: relative;
}

.service-about__img {
	display: flex;
	width: calc(50% + 80px);
	/* height: calc(100% + 120px); */
	height: auto;
	position: absolute;
	top: -60px;
	right: -80px;
}

.service-about__img img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: right top;
}

.service-about__body {
	width: 100%;
	max-width: 850px;
}

.service-about__btn {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 20px;
	background-color: var(--white);
	font-weight: 600;
	width: 100%;
}

.service-about__bottom {
	margin-top: 60px;
}

.review__title {
	margin-bottom: 40px;
	padding-right: 120px;
}

.review__slider {
	overflow: visible;
}

.review__slide {
	width: 100%;
	max-width: 550px;
}

.review-card {
	display: flex;
	flex-direction: column;
	padding: 40px;
	border-radius: 40px;
	background: var(--blue-bg-1);
	gap: 30px;
}

.review-card__top {
	display: flex;
	align-items: center;
	gap: 15px;
}

.review-card__text {
	overflow-y: auto;
	max-height: 250px;
}

.review-card__text::-webkit-scrollbar {
	width: 4px;
	height: 100%;
	background-color: var(--white);
	border-radius: 10px;
	margin-left: 10px;
}

.review-card__text::-webkit-scrollbar-thumb {
	border-radius: 10px;
	background-color: var(--black);
}

.review-card__photo {
	display: flex;
	width: 40px;
	height: 40px;
	min-width: 40px;
	border-radius: 10px;
	overflow: hidden;
}

.review-card__bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.review__navigation {
	position: absolute;
	bottom: calc(100% + 52px);
	right: 0;
}

.price {
	position: relative;
}

.price__heading {
	margin-bottom: 60px;
	display: flex;
	flex-direction: column;
	gap: 25px;
}

.price__desc {
	width: 100%;
	max-width: 640px;
}

.price__promo-body {
	display: flex;
	padding: 20px 25px;
	display: flex;
	align-items: center;
	gap: 25px;
	background-position: center bottom;
	background-repeat: no-repeat;
	background-size: calc(100% + 4px) calc(100% + 4px);
	background-image: url("data:image/svg+xml,%3csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='100%25' height='100%25' fill='none' stroke='white' stroke-width='2' stroke-dasharray='10%2c 15' stroke-dashoffset='0' stroke-linecap='square'/%3e%3c/svg%3e");
	margin-bottom: -1px;
}

.price__promo-icon {
	display: flex;
}

.price__promo-btn {
	padding: 10px;
	cursor: pointer;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	transition: all ease 0.5s;
	border: 1px solid transparent;
}

.price__promo-btn:hover {
	border-radius: 0px 0px 40px 40px;
	border-color: #7390E1;
	background: rgba(230, 234, 245, 1);
	color: var(--link);
}

.price__promo {
	border-radius: 0px 0px 40px 40px;
	background: linear-gradient(97deg, #7390E1 0%, #224DAF 100%), #D9D9D9;
	color: var(--white);
	width: 100%;
	max-width: 480px;
	overflow: hidden;
	position: absolute;
	top: 0;
	right: 280px;
}

.tab__link {
	cursor: pointer;
	padding: 8px 15px;
	border-radius: 15px 15px 0px 0px;
	background: var(--blue-bg-1);
}

.tab__link_active {
	background: var(--blue-60);
	color: var(--white);
}


.tab__item:not(.tab__item_active) {
	display: none;
}

.tab__header {

	display: flex;
	width: fit-content;
	overflow-x: auto;
	max-width: calc(100% + 40px);
	padding: 0 20px;
	margin: 0 -20px;
	/* margin-bottom: 40px; */
}

.tab__header::-webkit-scrollbar {
	display: none;
}

.tab__header-wrapper {
	display: flex;
	gap: 5px;
	border-bottom: 1px solid var(--blue-60);
}

.price__slider {
	overflow: visible;
	margin-top: 40px;
}

.price__tab-desc {
	margin-top: 25px;
	width: 100%;
	max-width: 640px;
}

.price__slide {
	display: flex;
	flex-direction: column;
	width: 100%;
	max-width: 232px;
	border-radius: 30px;
	border: 1px solid rgba(231, 235, 239, 0.70);
	background: rgba(230, 234, 245, 0.40);
	padding: 20px 30px 25px;
}

.price__slide-name {
	margin-bottom: 5px;
}

.price__slide-list {
	padding-top: 15px;
	margin-top: 15px;
	display: flex;
	flex-direction: column;
	gap: 5px;
	border-top: 1px solid var(--grey-100);
}

.price__slide-list-item {
	display: flex;
	/* align-items: center; */
	gap: 10px;
}

.price__slide-list-icon {
	display: flex;
	height: fit-content;
	margin-top: 3px;
}

.price__slide-list-item_disable {
	opacity: 0.5;
	text-decoration: line-through;
}

.analogues__title {
	margin-bottom: 40px;
}

.analogues__slider {
	overflow: visible;
}

.analogues__slide {
	padding: 25px 20px;
	border-radius: 30px;
	border: 1px solid rgba(231, 235, 239, 0.70);
	background: rgba(230, 234, 245, 0.40);
	display: flex;
	flex-direction: column;
	gap: 15px;
	width: 100%;
	max-width: 200px;
	transition: all ease 0.5s;
}

.analogues__logo {
	display: flex;
	width: 70px;
	height: 70px;
	padding: 10px;
	border-radius: 20px;
	background-color: var(--white);
	border: 1px solid rgba(0, 67, 206, 0.05);
}

.analogues__logo img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center;
}

.analogues__slide:hover {
	border-radius: 30px;
	border: 1px solid rgba(0, 67, 206, 0.20);
	background: rgba(0, 67, 206, 0.10);
}

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

.service-detail .container {
	padding: 0;
}

.service-detail__body {
	width: 100%;
}

.service-detail__body-wrapper {
	border-radius: 40px;
	background: var(--white);
	padding: 40px 60px;
}

.service-detail__wrapper {
	display: flex;
	gap: 10px;
	width: 100%;
}

.service-detail__gallery {
	width: 100%;
	max-width: calc(50% - 5px);
}

.service-detail__btn {
	width: 100%;
	margin-top: 5px;
}

.service-detail__characteristics {
	display: flex;
	gap: 10px;
	flex-direction: column;
	margin-top: 35px;
	width: 100%;
	/* max-width: 400px; */
}

.service-detail__row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	width: 100%;
}

.service-detail__desc {
	margin-top: 25px;
}

.service-detail__top {
	display: flex;
	gap: 25px;
}

.service-detail__logo {
	border-radius: 15px;
	border: 1px solid var(--grey-bg-2);
	background: var(--white);
	display: flex;
	min-width: 80px;
	width: 80px;
	height: 80px;
	padding: 16px;
}

.service-detail__logo img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center;
}

.service-detail__like {
	display: flex;
	margin-left: auto;
	height: 40px;
	width: 40px;
	border: 1px solid var(--grey-200);
	border-radius: 50%;
}

.service-detail__slider {
	border-radius: 30px;
	width: 100%;
	height: 530px;
}

.service-detail__slide {
	display: flex;
	border-radius: 30px;
	overflow: hidden;
}

.service-detail__slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.service-detail__subslider {
	margin-top: 20px;
	border-radius: 20px;
	width: 100%;
}

.service-detail__subslide {
	display: flex;
	border-radius: 20px;
	overflow: hidden;
	width: 100%;
	max-width: 217px;
	height: 160px;
	cursor: pointer;
}

.service-detail__subslide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.service-detail__info {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 10px;
}

.rating {
	display: flex;
	align-items: center;
	gap: 10px;
}

.rating__stars {
	display: flex;
	width: 116px;
	height: 20px;
	background-image: url(../img/icons/stars-empty.svg);
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
	position: relative;
}

.rating__stars-filled {
	display: flex;
	width: 100%;
	height: 100%;
	background-image: url(../img/icons/stars-filled.svg);
	background-repeat: no-repeat;
	background-position: center left;
	background-size: auto 100%;
	position: absolute;
	top: 0;
	left: 0;
}

.rating__num {
	display: flex;
}

.category__tags {
	display: flex;
	gap: 10px;
}

.category__tag {
	padding: 15px 30px;
	color: var(--black);
	border: 1px solid var(--strong-bg-70);
	background: var(--bg-hover-40);
	white-space: nowrap;
}

.category__tag:not(.category__tag_active):hover {
	border: 1px solid var(--stroke-hover-20);
	background: var(--bg-hover-10);
}


.category__tag_active {
	color: var(--white);
	background-color: var(--blue-60);
	border-color: transparent;
}

.category__header {
	margin: 0 -20px;
	padding: 0 20px;
	margin-bottom: 40px;
	overflow-x: auto;
}

.category__header::-webkit-scrollbar {
	display: none;
}

.category__header-wrapper {
	display: flex;
	justify-content: space-between;
}

.not-found {
	background: linear-gradient(97deg, #7390E1 0%, #224DAF 100%), #D9D9D9;
	color: var(--white);
}

.not-found__wrapper {
	display: flex;
	gap: 200px;
	justify-content: center;
	padding: 100px 0 160px;
}

.not-found__body {
	padding-top: 100px;
	display: flex;
	gap: 60px;
	flex-direction: column;
}

.not-found__btn {
	width: 100%;
	max-width: 350px;
}

.not-found__img {
	display: flex;
	width: 470px;
	height: 390px;
}

.not-found__img img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center;
}

@media screen and (min-width: 900px) and (max-width: 1200px) {

	.blog-list__item:nth-child(13n + 7),
	.blog-list__item:nth-child(13n + 10) {
		grid-column: span 2;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		gap: 10px;
	}

	.blog-list__item:nth-child(13n + 7) .blog-card,
	.blog-list__item:nth-child(13n + 10) .blog-card {
		max-width: 50%;
	}
}

@media screen and (min-width: 1200px) {

	.blog-list__item:nth-child(13n + 2),
	.blog-list__item:nth-child(13n + 4),
	.blog-list__item:nth-child(13n + 11) {
		grid-column: span 2;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		gap: 20px;
	}

	.blog-list__item:nth-child(13n + 2) .blog-card,
	.blog-list__item:nth-child(13n + 4) .blog-card,
	.blog-list__item:nth-child(13n + 11) .blog-card {
		max-width: 50%;
	}

	.blog-list__item:nth-child(13n + 7),
	.blog-list__item:nth-child(13n + 8) {
		grid-column: span 2;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: end;
		-ms-flex-pack: end;
		justify-content: flex-end;
		gap: 20px;
	}

	.blog-list__item:nth-child(13n + 7) .blog-card,
	.blog-list__item:nth-child(13n + 8) .blog-card {
		max-width: 50%;
	}

	.blog-list__item:nth-child(13n + 10) {
		grid-column: span 3;
		display: -ms-grid;
		display: grid;
		-ms-grid-columns: 1fr 1fr 1fr;
		grid-template-columns: 1fr 1fr 1fr;
		gap: 20px;
	}
}

@media screen and (max-width: 1600px) {
	.entrance {
		background-size: 800px;
		background-position: left -60px bottom -200px;
	}

	.price__promo {
		right: 180px;
	}
}

@media screen and (max-width: 1500px) {
	.container {
		padding: 0 40px;
	}

	.entrance {
		padding-top: 60px;
		padding-bottom: 40px;
	}

	.entrance__desc {
		margin-bottom: 20px;
	}

	.entrance__heading {
		max-width: 830px;
	}

	.entrance__tag {
		top: 65px;
	}

	.about__bottom {
		margin: 0 -40px;
		margin-top: 80px;
	}

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

	.service-about__img {
		right: -200px;
		width: calc(50% + 40px);
	}

	.service-detail__btn {
		position: fixed;
		bottom: 20px;
		left: 50%;
		transform: translateX(-50%);
		width: calc(100% - 80px);
		z-index: 9;
	}



}

@media screen and (max-width: 1400px) {
	.price__promo {
		position: static;
		margin: 30px -40px -60px;
		max-width: none;
		width: auto;
	}

	.price__promo-body {
		justify-content: center;
	}
}

@media screen and (max-width: 1300px) {
	.entrance {
		background-size: 690px;
		background-position: left -130px bottom -40px;
	}

	.entrance__search .input {
		background: var(--bg-hover-40);
	}

	.entrance__search .input__field::-webkit-input-placeholder {
		color: var(--grey-300);
	}

	.entrance__search .input__field:-ms-input-placeholder {
		color: var(--grey-300);
	}

	.entrance__search .input__field::-ms-input-placeholder {
		color: var(--grey-300);
	}

	.entrance__search .input__field::placeholder {
		color: var(--grey-300);
	}
}

@media screen and (max-width: 1200px) {
	.entrance__tag {
		left: unset;
		top: unset;
		right: 110px;
		bottom: -10px;
	}

	.about__body {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		gap: 20px;
	}

	.about__content {
		width: 100%;
	}

	.about__title {
		max-width: none;
	}

	.footer__title {
		max-width: 770px;
	}

	.footer__wrapper {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		margin-bottom: 120px;
	}

	.blog-list__wrapper {
		-ms-grid-columns: 1fr 1fr 1fr;
		grid-template-columns: 1fr 1fr 1fr;
		gap: 15px;
		row-gap: 20px;
	}

	.preview_blue .preview__col:nth-child(2) img:nth-child(3) {
		top: 30px;
		right: 30px;
		width: 80%;
	}

	.service-about__img {
		display: none;
	}

	.service-about__body {
		max-width: none;
	}

	.service-detail__wrapper {
		flex-direction: column;

	}

	.service-detail__gallery {
		max-width: none;
	}
}

@media screen and (max-width: 1024px) {
	.body-wrapper {
		padding: 0 20px;
	}

	.header {
		padding: 0 20px;
	}

	.header__logo {
		position: relative;
		z-index: 20;
	}

	.header__wrapper {
		padding: 10px 20px;
	}

	.header__body {
		position: relative;
		z-index: 20;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
	}

	.header .nav {
		position: fixed;
		z-index: 10;
		top: 0;
		left: 0;
		width: 100%;
		height: 100vh;
		pointer-events: none;
	}

	.header .nav__list {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		gap: 5px;
		border-radius: 0px 0px 30px 30px;
		background: var(--blue-bg-1);
		padding: 85px 20px 30px;
		pointer-events: all;
		-webkit-transform: translateY(-100%);
		transform: translateY(-100%);
	}

	.header .nav__item {
		width: 100%;
	}

	.header .nav__link {
		background-color: var(--bg-hover-10);
		width: 100%;
		text-align: center;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		color: var(--black);
	}

	.entrance {
		padding-top: 40px;
	}

	.gallery__title {
		margin-bottom: 30px;
	}

	.gallery__navigation {
		bottom: calc(100% + 30px);
	}

	.category-card__tags {
		margin-top: 30px;
	}

	.category__wrapper {
		grid-template-columns: repeat(2, 1fr);
	}

	.service-about__title {
		margin-bottom: 30px;
	}

	.analogues__title {
		margin-bottom: 30px;
	}

	.price__heading {
		margin-bottom: 30px;
	}

	.review__title {
		margin-bottom: 30px;
	}

	.service-detail__btn {
		width: calc(100% - 40px);
	}

	.service-detail__body-wrapper {
		padding: 40px;
		gap: 5px;
	}

	.service-detail__characteristics {
		margin-top: 25px;
	}

	.not-found__wrapper {
		flex-direction: column;
		gap: 160px;
		align-items: center;
		text-align: center;
		padding: 70px 0 140px;
	}

	.not-found__body {
		padding: 0;
	}

	.not-found__btn {
		max-width: none;
	}
}

@media screen and (max-width: 900px) {
	.preview {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
	}

	.preview__col {
		min-height: 0;
		gap: 20px;
		padding: 40px 20px;
	}

	.blog-list__wrapper {
		-ms-grid-columns: 1fr 1fr;
		grid-template-columns: 1fr 1fr;
	}

	.preview_blue .preview__col:nth-child(1) {
		background: var(--white);
	}

	.preview_blue .preview__col:nth-child(2) {
		display: none;
	}
}

@media screen and (max-width: 768px) {
	.container {
		padding: 0 20px;
	}

	.section {
		padding: 40px 0;
	}

	.entrance {
		padding-bottom: 320px;
		background-size: 550px;
		background-position: center bottom -40px;
	}

	.entrance__heading {
		margin-bottom: 10px;
		max-width: 265px;
	}

	.entrance__tag {
		right: unset;
		bottom: unset;
		left: calc(100% - 85px);
		top: 30px;
		width: 120px;
		padding: 5px 15px;
		font-size: 8.4px;
	}

	.entrance__search {
		display: none;
	}

	.entrance__body {
		margin: 0;
	}

	.about__bottom {
		margin: 0 -20px;
		margin-top: 80px;
	}

	.blog-list__wrapper {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		gap: 15px;
	}

	.breadcrumb {
		padding: 10px 20px;
	}

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

	.header__search-btn {
		display: flex;
	}

	.review__navigation {
		display: none;
	}

	.service-detail__top {
		display: grid;
		grid-template-columns: auto 40px;
		gap: 15px;
	}

	.service-detail__logo {
		order: 1;
	}

	.service-detail__like {
		order: 2;
	}

	.service-detail__info {
		order: 3;
	}

	.service-detail__row {
		gap: 15px;
	}

	.not-found__wrapper {
		gap: 60px;
		padding: 20px 0 10px;
	}

	.not-found__body {
		gap: 30px;
	}

	.not-found__img {
		width: 220px;
		height: 180px;
	}

	.price__promo {
		margin: 30px -20px -40px;
	}
}

@media screen and (max-width: 570px) {
	.body-wrapper {
		padding: 0 10px;
	}

	.entrance {
		background-size: 500px;
		background-position: center bottom;
	}

	.gallery__navigation {
		display: none;
	}

	.gallery .service-card {
		width: 100%;
	}

	.footer__bottom {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		-webkit-box-align: start;
		-ms-flex-align: start;
		align-items: flex-start;
		gap: 15px;
		padding: 15px 0 20px;
	}

	.footer__wrapper {
		margin-bottom: 80px;
		gap: 30px;
	}

	.footer__form {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
	}

	.footer__submit {
		width: 100%;
	}

	.news-detail__sharing {
		margin-top: 40px;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		-webkit-box-align: start;
		-ms-flex-align: start;
		align-items: flex-start;
	}

	.service-about__bottom {
		margin-top: 30px;
	}

	.review-card {
		padding: 30px 20px;
	}

	.review-card__text {
		max-height: none;
	}

	.footer__form-wrapper {
		flex-direction: column;
	}

	.price__slider {
		margin-top: 30px;
	}

	.price__promo-body {
		padding: 20px;
		gap: 20px;
	}

	.price__promo-text {
		font-size: 12px;
		line-height: 120%;
	}

	.price__promo-btn {
		font-size: 14px;
		line-height: 110%;
	}
}