@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&family=Oswald:wght@200..700&family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');
:root {
	--main-font: "Rubik", sans-serif;
	--title-font: "Oswald", sans-serif;
	--subtitle-font: "Nunito", sans-serif;
	--text-black-color: #1E1F24;
	--text-gray-color: #5A5C64;
	--header-black-color: #2E1F1A;
	--accent-color: #C30102;
	--yellow-bg-color: #FFE9B1;
	--transition-way: all .3s ease-out;
}
*,
::before,
::after {
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	text-rendering: optimizeLegibility;
}
body {
	font-family: var(--main-font);
	line-height: 1.3;
	font-size: 18px;
	font-weight: 400;
	background-color: #fff;
	color: var(--text-black-color);
	scroll-behavior: smooth;
	letter-spacing: calc(0.01 * 1em);
}
a,
button,
img,
svg {
	transition: var(--transition-way);
}
h2 {
	font: 500 80px/1.025 var(--title-font);
	letter-spacing: 0.16px;
	text-align: center;
	margin-bottom: 72px;
}
.container {
	width: 1328px;
	max-width: calc(100% - 32px);
	margin-left: auto;
	margin-right: auto;
}
.menu-button {
	display: none;
}
.menu-button span {
	position: relative;
	display: block;
	width: 18px;
	height: 2px;
	background-color: #000;
	transition: var(--transition-way);
}
.menu-button span::before,
.menu-button span::after {
	position: absolute;
	display: block;
	content: "";
	width: 100%;
	height: 2px;
	background-color: var(--accent-color);
}
.menu-button span {
	background-color: var(--accent-color);
}
.menu-button span::before {
	top: -6px;
	width: 100%;
	right: 0;
	height: 2px;
}
.menu-button span::after {
	bottom: -6px;
}
.menu-button.is-open span {
	transform: rotate(-45deg);
}
.menu-button.is-open span::before {
	opacity: 0;
}
.menu-button.is-open span::after {
	opacity: 1;
	transform: rotate(91deg);
	top: 0;
}
.header .container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 12px 0;
}
.main_navigation .menu {
	display: flex;
	align-items: center;
}
.main_navigation .menu .menu-item {
	position: relative;
	font: 500 16px/1.375 var(--main-font);
}
.main_navigation .menu .menu-item .sub-menu {
	position: absolute;
	top: calc(100% + 15px);
	left: 0;
	box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.12);
	display: none;
	visibility: hidden;
	opacity: 0;
	transition: var(--transition-way);
	pointer-events: auto;
}
.main_navigation .menu .menu-item.active .sub-menu {
	display: flex;
	flex-direction: column;
	visibility: visible;
	opacity: 1;
	z-index: 999;
	padding: 24px 16px;
	border-radius: 12px;
	border: 1px solid #E0E0E5;
	box-shadow: 0px 15px 20px 0px #0000001F;
	background-color: #fff;
}
.main_navigation .sub-menu>.menu-item+.menu-item {
	margin-top: 12px;
}
.main_navigation .sub-menu a {
	display: inline-block;
	width: 356px;
	padding: 8px 16px;
	font: 400 18px/1.3 var(--main-font);
	border-radius: 8px;
}
#primary-menu .sub-menu .menu-item a:hover {
	background-color: #F9F1EF;
	color: var(--text-black-color);
}
#primary-menu>.menu-item:not(:last-child) {
	margin: 0 29px 0 0;
}
#primary-menu>.menu-item.menu-item-has-children>a {
	position: relative;
	display: flex;
	padding-right: 19px;
	transition: var(--transition-way);
}
#primary-menu .menu-item>a:hover,
#primary-menu .menu-item>a:focus {
	color: var(--accent-color);
}
#primary-menu>.menu-item.menu-item-has-children>a::after {
	content: '';
	display: block;
	width: 10px;
	height: 5px;
	-webkit-mask: url(../img/arr-down.svg) center / contain no-repeat;
	mask: url(../img/arr-down.svg) center / contain no-repeat;
	background-color: var(--text-black-color);
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	transition: var(--transition-way);
}
#primary-menu>.menu-item.menu-item-has-children>a:hover::after,
#primary-menu>.menu-item.menu-item-has-children>a:focus::after {
	background-color: var(--accent-color);
}
#primary-menu .menu-item.active a::after {
	transform: translateY(-50%) rotate(180deg);
	background-color: var(--accent-color);
}
.header_vidgets,
.header_vidgets .wp-block-columns {
	display: flex;
	align-items: center !important;
	margin: 0;
}
.header_contacts {
	position: relative;
	display: flex;
	padding-right: 24px;
	font: 400 14px/1.4 var(--main-font);
}
#header_contacts::after {
	content: '';
	display: block;
	width: 1px;
	height: 24px;
	background-color: #E0E0E5;
	position: absolute;
	right: 0;
}
#header_contacts .header_contact {
	display: block;
	width: max-content;
}
#header_contacts .header_contact img {
	width: 20px;
	height: 20px;
}
#header_contacts .header_contact:not(:last-child) {
	margin-right: 16px;
}
#header_contacts .header_contact.phone_link:hover {
	color: var(--accent-color);
}
#header_contacts .header_contact path {
	transition: var(--transition-way);
}
#header_contacts .header_contact:hover path {
	fill: var(--text-black-color)
}
.header_vidgets .wp-block-columns .wp-block-column {
	flex-basis: fit-content;
}
.header_search_cart {
	padding-left: 24px;
	display: flex;
	align-items: center;
}
.widget_wrap:not(:last-child) {
	margin: 0 24px 0 0;
}
.header_search_cart .search_button {
	display: block;
	width: 24px;
	height: 24px;
	padding: 0;
	background: none;
	border: none;
	cursor: pointer;
	display: flex;
	justify-content: center;
	align-items: center;
}
.header_search_cart .search_button path {
	transition: var(--transition-way);
}
.header_search_cart .search_button:hover path {
	stroke: var(--text-black-color)
}
.header_search_cart .wp-block-search__inside-wrapper {
	align-items: center;
}
.cart_button {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
}
.cart_button path {
	transition: var(--transition-way);
}
.cart_button:hover path {
	stroke: var(--text-black-color)
}
.nav_widgets_mobile .search_wrapper.widget_wrap {
	display: none;
}
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 12px 28px;
	border-radius: 8px;
	color: #fff;
	background-color: var(--accent-color);
	border: 1px solid var(--accent-color);
	font: 500 16px/1.375 var(--main-font);
	text-decoration: none;
	transition: var(--transition-way);
}
.btn:hover {
	background-color: #B00600;
}
.btn:focus {
	box-shadow: 0px 0px 0px 3px #C301023D;
}
.order_btn .btn {
	padding: 12px 16px;
}
.btn.secondary {
	background-color: #3333340F;
	border: 1px solid #F9F6F5;
	color: #fff;
	backdrop-filter: blur(30px);
}
.btn.secondary:hover {
	background: #33333433;
	backdrop-filter: blur(36px)
}
.btn.secondary.icon_only {
	padding: 17px;
}

.butts .btn+.btn {
	margin-left: 12px;
}
.btn.tertiary {
	background-color: transparent;
	color: var(--accent-color);
	border-color: currentColor;
}

.hero_section .main_btn .btn+.btn {
	margin-left: 12px;
}
.header_search_cart .main_btn .btn {
	padding: 10px 16px;
	font: 500 14px/1.4 var(--main-font);
}
.hero_section .container {
	position: relative;
	padding: 64px;
	border-radius: 16px;
	overflow: hidden;
	color: #fff;
	max-height: 664px;
	height: calc(100vh - 95px);
	display: flex;
	align-items: center;
}
.hero_section .container .hero_content {
	flex: 1
}
.main_wrap {
	padding-top: 95px;
}
.header {
	position: fixed;
	z-index: 10;
	left: 0;
	top: 0;
	right: 0;
	background: #ffffff;
	transition: all .3s ease-out;
	will-change: box-shadow;
}
.logged-in .header {
	top: 32px
}
.header.sticky {
	box-shadow: 0 0 10px -7px #000;
}
.hero_section h1 {
	margin-bottom: 20px;
	max-width: 57%;
	font: 500 90px/1.04 var(--title-font);
	letter-spacing: -1.8px;
}
.hero_section p {
	margin-bottom: 32px;
	font: 400 18px/1.33 var(--subtitle-font);
	letter-spacing: -0.18px;
}
.hero_bg_img {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: -1;
	object-fit: cover;
	object-position: center;
}
.hero_bg_video {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: brightness(0.45);
	z-index: -1;
}
.logo_slider_section {
	padding: 72px 0;
}
.logo_slider_section .swiper-slide {
	height: 38px;
	object-fit: contain;
	max-width: 138px;
}
.logo_slider_section .swiper-slide img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}
.logo_slider_section .swiper-button-prev {
	transition: all .3s ease-out;
	left: 0;
}
.logo_slider_section .swiper-button-next {
	right: 0;
	transition: all .3s ease-out;
}
.logo_slider_section .swiper-button-prev:hover,
.logo_slider_section .swiper-button-next:hover {
	filter: grayscale(1);
}
.logo_slider_section .swiper-button-prev::after,
.logo_slider_section .swiper-button-next::after {
	content: '';
	display: block;
	width: 14px;
	height: 14px;
	background: center / cover no-repeat url(../img/next_arr.svg);
}
.logo_slider_section .swiper-button-prev::after {
	transform: rotate(180deg);
}
.logo_swiper.swiper {
	position: relative;
	overflow: hidden;
}
.logo_swiper.swiper::before,
.logo_swiper.swiper::after {
	content: '';
	display: block;
	width: 185px;
	height: 182px;
	background: linear-gradient(90deg, rgba(255, 255, 255, 0) -5.41%, #FFFFFF 65.95%);
	position: absolute;
	top: -72px;
	z-index: 9;
}
.logo_swiper.swiper::before {
	left: -50px;
	transform: rotate(180deg);
}
.logo_swiper.swiper::after {
	right: -56px;
}
.counter_section .container {
	padding: 56px 228px;
	background-color: var(--accent-color);
	color: #fff;
	border-radius: 24px;
}
.counter_section h2 {
	margin-bottom: 12px;
	font: 500 56px/1.1 var(--title-font);
	letter-spacing: -0.56px;
}
.counter_section p {
	font: 400 18px/1.33 var(--main-font);
}
.counter_section table tr {
	display: flex;
	justify-content: space-between;
}
.counter_section table td {
	text-align: center;
}
.counter_section {
	z-index: 1;
	position: relative;
}
.services_section {
	margin-top: -108px;
	padding: 236px 0 128px 0;
	position: relative;
	z-index: 0;
	background-color: var(--yellow-bg-color);
	border-radius: 48px 48px 0 0;
}
.services_section .services_list {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 24px;
}
.services_section .service_item {
	position: relative;
	padding: 24px;
	border-radius: 16px;
	overflow: hidden;
	height: 489px;
	display: flex;
	flex-direction: column;
}
.services_section .service_item .bg {
	position: absolute;
	z-index: -1;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	overflow: hidden;
}
.services_section .service_item .bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all 3s linear;
	transform-origin: 50%;
}
.services_section .service_item:hover .bg img {
	transform: scale(1.05);
}
.services_section .service_item .bg:after,
.gallery_item::after {
	content: "";
	position: absolute;
	background: linear-gradient(0deg, rgba(0, 0, 0, 0.16), rgba(0, 0, 0, 0.16)),
		linear-gradient(180deg, rgba(0, 0, 0, 0) 42.02%, rgba(0, 0, 0, 0.9) 100%);
	z-index: 1;
	left: 0;
	right: 0;
	bottom: 0;
	height: 100%;
	transition: var(--transition-way);
}
.services_section .service_item:hover .bg:after,
.gallery_item:hover::after {
	height: 200%;
}
.services_section .service_item .service_title {
	font: 400 36px/1.2 var(--title-font);
	color: #fff;
}
.service_icon {
	width: 60px;
	height: 60px;
	background: #E3CD917A;
	backdrop-filter: blur(10px);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}
.service_icon img {
	max-width: 85%;
}
.service_title {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: auto;
}
.service_icon_wrap {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 60px;
	height: 60px;
	padding: 23px;
	margin-left: 6px;
	border: 1px solid #fff;
	border-radius: 8px;
}
.advantages_section {
	padding: 0 0 128px 0;
	background-color: var(--yellow-bg-color);
}
.advantages_grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-auto-rows: 29px;
	gap: 16px;
}
.advantage_item {
	position: relative;
	padding: 32px 32px 0 32px;
	background-color: #fff;
	border-radius: 16px;
	overflow: hidden;
	display: flex;
	box-shadow: 0px 4px 2px 0px #F8DF9D;
}
.advantage_item:not(:first-child) {
	flex-direction: column;
}
.advantage_item:nth-child(1) {
	grid-row: span 6;
}
.advantage_item:nth-child(2) {
	grid-row: span 9;
}
.advantage_item:nth-child(3) {
	grid-row: span 9;
}
.advantage_item:nth-child(4) {
	grid-row: span 6;
}
.advantage_item h3 {
	margin-bottom: 16px;
	font: 500 26px/1.15 var(--title-font);
}
.advantage_item .advantage_icon {
	margin-top: auto;
}
.advantage_item:nth-child(1) {
	display: flex;
}
.advantage_item:nth-child(1) .advantage_description {
	width: 56%;
}
.advantage_item:nth-child(1) .advantage_icon {
	margin: -32px -32px 0 0;
}
.advantage_item:nth-child(1) img {
	max-width: 300px;
}
.advantage_item:last-child .advantage_description {
	position: relative;
	z-index: 3;
	color: #fff;
	max-width: 63%;
}
.advantage_item:last-child .advantage_icon {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.advantage_item:last-child .advantage_icon img {
	object-fit: cover;
	width: 100%;
	height: 100%;
}
.advantage_item:last-child .advantage_icon::after {
	content: '';
	width: 100%;
	height: 100%;
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	background: linear-gradient(269.9deg, rgba(0, 0, 0, 0) -17.41%, rgba(113, 4, 0, 0.8) 77.82%);
}
.how_we_work_section {
	padding: 128px 0;
}
.how_we_work_section .container {
	padding: 0 64px;
}
.how_we_work_section .item {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.how_we_work_section .item:nth-of-type(2n) {
	flex-direction: row-reverse;
}
.how_we_work_section .item > div {
	width: calc((100% - 150px) /2);
}
.how_we_work_section .item:not(:last-child) {
	margin-bottom: 178px;
}
.how_we_work_section .item .num {
	margin-bottom: 24px;
	font: 700 90px/1.04 var(--title-font);
	color: #F8E4E1;
}
.how_we_work_section .item h3 {
	margin-bottom: 24px;
	font: 400 36px/1.2 var(--title-font);
}
.how_we_work_section .item .descr, .how_we_work_section .item .descr p {
	font: 400 18px/1.3 var(--main-font);
}
.how_we_work_section .item .thumb {
	width: 100%;
	max-width: 516px;
}
.how_we_work_section .item .thumb img {
	width: 100%;
	object-fit: contain;
}
.how_we_work_section .item .line {
	display: block;
	width: 700px;
	height: 178px;
	background: center / contain no-repeat url(../img/way_arr.svg);
	position: absolute;
	bottom: -178px;
	left: 8%;
}
.how_we_work_section .item:nth-of-type(2n) .line {
	transform: scaleX(-1);
	left: 27%;
}
.how_we_work_section .item:last-child .line {
	display: none;
}
.gallery_section {
	padding: 0 0 128px 0;
	border-radius: 0 0 48px 48px;
	background-color: #fff;
	position: relative;
}
.gallery_video_wrap {
	position: relative;
	max-width: 896px;
	max-height: 597px;
	margin: 0 auto 72px auto;
	border-radius: 16px;
	overflow: hidden;
}
.video_toggle {
	position: absolute;
	z-index: 9;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	cursor: pointer;
	transition: var(--transition-way);
}
.video_toggle path {
	transition: var(--transition-way);
}
.video_toggle:hover path {
	fill: var(--accent-color);
}
.gallery_video_wrap::after {
	content: "";
	position: absolute;
	inset: 0;
	background: #00000080;
	opacity: 0;
	transition: opacity 0.3s ease;
	z-index: 2;
	pointer-events: none;
}
.gallery_video_wrap.is-paused::after {
	opacity: 1;
}
.gallery_video_wrap video {
	width: 100%;
	height: 100%;
	display: block;
	border-radius: 16px;
}
.gallery_wrap {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 56px;
	position: relative;
	overflow: hidden;
	margin-bottom: -48px;
}
.column {
	position: relative;
	will-change: transform;
	pointer-events: none;
	overflow: hidden;
}
.column-1,
.column-3 {
	margin-top: 48px;
}
.gallery_item {
	position: relative;
	margin-bottom: 56px;
	overflow: hidden;
	border-radius: 12px;
	display: none;
	pointer-events: auto;
	cursor: pointer;
	transition: var(--transition-way);
}
.gallery_item.visible {
	display: block;
}
.btn.gallery_load_more {
	display: block;
	margin: 0 auto;
	cursor: pointer;
	background-color: transparent;
	border: 1px solid var(--accent-color);
	color: var(--accent-color);
}
.gallery_item img {
	width: 100%;
	height: 100%;
	border-radius: 12px;
	object-fit: contain;
}
.gallery_slider_overlay {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: #000000E0;
	z-index: 9999;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 20px;
}
.gallery_slider_close {
	position: absolute;
	top: 20px;
	right: 30px;
	color: #fff;
	font-size: 36px;
	cursor: pointer;
	z-index: 99;
	font-size: 28px;
	font-weight: 300;
}
.gallery_swiper_main {
	width: 834px;
}
.gallery_swiper_thumbs {
	width: 90%;
	max-width: 911px;
	margin: 16px 0;
}
.gallery_swiper_thumb {
	border-radius: 4px;
	overflow: hidden;
	max-width: 87px;
	max-height: 87px;
}
.gallery_swiper_thumbs .swiper-slide img {
	cursor: pointer;
	opacity: 0.6;
	object-fit: cover;
	width: 100%;
	height: 100%;
	border-radius: 4px;
}
.gallery_swiper_thumbs .swiper-slide-thumb-active img {
	opacity: 1;
}
.gallery_slide {
	height: 90%;
}
.gallery_slide img {
	max-width: 100%;
	max-height: 625px;
	width: fit-content;
	height: fit-content;
	margin: 0 auto;
	object-fit: contain;
	border-radius: 12px;
}
.gallery_slider_overlay .swiper-button-next,
.gallery_slider_overlay .swiper-button-prev {
	width: 48px;
	height: 48px;
	color: #fff;
	border: 1px solid #fff;
	border-radius: 8px;
}
.gallery_slider_overlay .swiper-button-next {
	right: 56px;
}
.gallery_slider_overlay .swiper-button-prev {
	left: 56px;
}
.gallery_slider_overlay .swiper-button-next:after,
.gallery_slider_overlay .swiper-button-prev:after {
	font-size: 12px;
}

.about_section {
	padding: 128px 0;
	background-color: var(--text-black-color);
	text-align: center;
	overflow: hidden;
}
.about_section .container {
	position: relative;
}
.about_section .container::before {
	content: '';
	display: block;
	width: 1364px;
	height: 355px;
	position: absolute;
	bottom: 100%;
	background-color: #67150F;
	border-radius: 50%;
	filter: blur(500px);
}
.about_section h2 {
	position: relative;
	z-index: 9;
	color: #fff;
}
.about_section table {
	max-width: 75%;
	margin: 0 auto;
}
.about_section table tr {
	position: relative;
}
.about_section table tr td:first-child {
	position: relative;
	right: -2px;
	z-index: 1;
}
.about_section table tr td:last-child {
	position: relative;
	left: 2px;
	z-index: 1;
}
.about_section table tr td img {
	object-fit: cover;
	border-radius: 20px;
	object-position: center;
}
.about_section table tr td:first-child img {
	width: 240px;
	height: 360px;
	max-width: 240px;
	max-height: 360px;
	transform: rotate(-9deg);
}
.about_section table tr td:nth-child(2) img {
	width: 418px;
	height: 290px;
	max-width: 418px;
	max-height: 290px;
	transform: rotate(5deg);
}
.about_section table tr td:last-child img {
	width: 280px;
	height: 337px;
	max-width: 304px;
	max-height: 355px;
	transform: rotate(-4deg);
}
.about_section .butts {
	margin-top: 40px;
}
.testimonials_section {
	padding: 128px 0;
	background: linear-gradient(to bottom, #FFE9B1 0%, #FFFFFF 100%);
}
.testimonial_item {
	padding: 32px;
	border-radius: 16px;
	background-color: #fff;
	margin-bottom: 24px;
	break-inside: avoid;
	page-break-inside: avoid;
	-webkit-column-break-inside: avoid;
	display: block;
}
.testimonial_item .person_img {
	width: 56px;
	height: 56px;
	border-radius: 50%;
	margin-right: 24px;
	object-fit: cover;
}
.testimonial_item .person_data {
	display: flex;
	margin-bottom: 24px;
	font: 400 16px/1.375 var(--main-font);
}
.person_name {
	margin-bottom: 2px;
	font: 500 16px/1.375 var(--main-font);
	color: var(--text-black-color);
}
.person_company {
	font: 400 16px/1.375 var(--main-font);
	color: #83858F;
}
.testimonials_list {
	column-count: 3;
	column-gap: 24px;
}
.faq_section {
	padding: 0 0 128px 0;
}
.accordion_items {
	width: 848px;
	max-width: 100%;
	margin: 0 auto;
}
.accordion_item {
	position: relative;
	margin: 0 auto;
	border-radius: 20px;
	background-color: #fff;
}
.accordion_item.opened {
	background-color: #FFF7F3;
}
.accordion_item_header {
	position: relative;
	cursor: pointer;
	font-size: 18px;
	font-weight: 600;
	padding: 24px;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.accordion_item_header .icon {
	width: 24px;
	height: 24px;
	display: flex;
	position: relative;
}
.accordion_item_header .icon::before,
.accordion_item_header .icon::after {
	content: '';
	display: block;
	background-color: var(--accent-color);
	position: absolute;
}
.accordion_item_header .icon::after {
	width: 16px;
	height: 2px;
	border-radius: 2px;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.accordion_item_header .icon::before {
	width: 2px;
	height: 16px;
	border-radius: 2px;
	top: 50%;
	left: 50%;
	transition: var(--transition-way);
	transform: translate(-50%, -50%);
}
.accordion_item.opened .accordion_item_header .icon::before {
	height: 0;
}
.accordion_item_header h3 {
	font: 500 16px/1.375 var(--main-font);
}
.accordion_item_body p,
.accordion_item_body ol,
.accordion_item_body ul {
	font: 400 14px/1.4 var(--main-font);
}
.accordion_item_body li {
	font: inherit;
	line-height: inherit;
}
.accordion_item_body p:not(:last-child) {
	margin-bottom: 8px;
}
.accordion_item.opened .accordion_item_body p:first-child {}
#menu-footer-menu a {
	transition: var(--transition-way);
}
#menu-footer-menu a:not([href="#"]):hover {
	color: var(--accent-color);
}
.accordion_item_body {
	overflow: hidden;
	display: none;
	padding: 0 72px 24px 24px;
	margin-top: -8px;
}
.bottom_cta_section {
	padding: 88px 0;
	background-color: var(--accent-color);
	color: #fff;
	border-radius: 0 0 30px 30px;
	position: relative;
}
.bottom_cta_section::after,
.gallery_section::after {
	content: '';
	display: block;
	width: 100%;
	height: 98%;
	position: absolute;
	bottom: 0;
	z-index: -1;
	background-color: var(--text-black-color);
}
.bottom_cta_section h2 {
	margin-bottom: 24px;
	font: 500 80px/1.025 var(--title-font);
	text-align: left;
	letter-spacing: -1.6px;
}
.bottom_cta_section p {
	font: 400 18px/1.3 var(--main-font);
}
.bottom_cta_section .butts {
	margin-top: 48px;
}

.footer {
	position: relative;
	padding-top: 86px;
	padding-bottom: 140px;
	background-color: var(--text-black-color);
	color: #fff;
	overflow-x: hidden;
	overflow-y: visible;
}
.top_footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 88px;
}
.footer_subtitle {
	font: 400 36px/1.3 var(--title-font);
	text-transform: uppercase;
}
.menu_wrap {
	margin-bottom: 48px;
	display: flex;
}
.footer_menu .menu {
	display: flex;
}
.footer_menu .menu .menu-item-has-children {
	max-width: 222px;
	margin-right: 96px;
	min-width: 180px;
}
.footer_menu .menu .menu-item-has-children>a[href="#"],
.footer_contacts h3 {
	display: block;
	margin-bottom: 24px;
	font: 400 16px/1.375 var(--main-font);
	text-transform: uppercase;
	color: #B0B2BD;
	cursor: default;
}
.footer_menu .sub-menu .menu-item {
	font: 400 16px/1.375 var(--main-font);
	color: #fff;
	letter-spacing: -0.16px;
	transition: var(--transition-way);
}
.footer_menu .sub-menu .menu-item:not(:last-child) {
	margin-bottom: 16px;
}
.footer_phone {
	margin-bottom: 48px;
}
.footer_tel_wrap,
.socials_wrap {
	display: flex;
	align-items: center;
}
.footer_tel_wrap .phone_num {
	font: 400 16px/1.375 var(--main-font);
	letter-spacing: -0.16px;
	transition: var(--transition-way);
	color: #E58577;
	display: flex;
	align-items: center;
}
.footer_tel_wrap .phone_num span {
	margin-left: 8px;
}
.footer_tel_wrap .phone_num:hover {
	color: var(--accent-color);
}
.footer_tel_wrap .phone_num path {
	transition: var(--transition-way);
}
.footer_tel_wrap .phone_num:hover path {
	stroke: var(--accent-color);
}
.footer_socials h3 {
	margin-bottom: 16px;
}
.footer_socials .social_link {
	display: flex;
	padding: 10px;
	align-items: center;
	justify-content: center;
	border: 1px solid #5A5C64;
	border-radius: 8px;
	backdrop-filter: blur(36px);
	transition: var(--transition-way);
}
.footer_socials .social_link:hover {
	border-color: var(--accent-color)
}
.footer_socials .social_link path {
	transition: var(--transition-way);
}
.footer_socials .social_link:hover path {
	fill: var(--accent-color)
}
.footer_socials .social_link+.social_link {
	margin-left: 12px;
}
.copyright_wrap {
	display: flex;
	align-items: center;
	justify-content: space-between;
	font: 400 14px/1.4 var(--main-font);
	color: #83858F;
}
.bottom_footer_title {
	font: 400 var(--footer-title-font-size, 328px)/1 var(--title-font);
	text-transform: uppercase;
	color: #5A5C64;
	letter-spacing: -4px;
	margin: 0;
	--footer-title-scale: 1;
	transform: scaleY(var(--footer-title-scale));
	transform-origin: top;
	will-change: transform;
	white-space: nowrap;
	display: block;
}
.top_btn {
	position: fixed;
	bottom: 30px;
	transform: translate(0, 15px);
	right: 32px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 12px;
	background-color: var(--accent-color);
	border-radius: 8px;
	border: none;
	z-index: 999;
	box-shadow: 0 0 12px -7px #fff;
	opacity: 0;
	visibility: hidden;
	transition: var(--transition-way);
	cursor: pointer;
}
.top_btn:hover {
	background: #B00600;
}
.top_btn.visible {
	transform: translate(0, 0);
	opacity: 1;
	visibility: visible;
}
.mobile {
	display: none;
}
/* singele service page */
.service_gallery_wrap {
	width: 46%;
}
.service_content {
	width: 48%;
}
.single-services .service_maincat_link {
	font: 400 14px/1.4 var(--main-font);
}
.cat_link {
	display: flex;
	align-items: center;
	margin: 0 0 32px 0;
}
.cat_link .icon {
	width: 16px;
	height: 16px;
	margin: 0 8px 0 0;
}
.service_descr_wrap {
	margin-bottom: 32px;
}
.service_section .service_descr {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	padding: 40px 0 128px 0;
}
.service_descr_text {
	font: 400 16px/1.375 var(--main-font);
	overflow: hidden;
	transition: var(--transition-way);
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
}
.service_descr_text.expanded {
	-webkit-line-clamp: unset;
	max-height: none;
}
.read_more_trigger {
	margin: 8px 0 0 0;
	font: 400 14px/1.375 var(--main-font);
	color: var(--accent-color);
	cursor: pointer;
	transition: var(--transition-way);
}
.read_more_trigger:hover {
	color: var(--text-black-color)
}
.single-services .price {
	margin-bottom: 32px;
	font: 400 22px/1.2 var(--title-font);
}
.order_btn_single.widget_wrap {
	margin: 0 0 48px 0;
}
.service_content .activities_list {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 8px;
}
.service_section .service_subcat {
	padding: 4px 16px;
	margin-bottom: 20px;
	width: fit-content;
	border: 1px solid #C4C6CE;
	border-radius: 20px;
	font: 500 14px/1.4 var(--main-font);
}
.service_content h1 {
	margin-bottom: 24px;
	font: 500 56px/1.07 var(--title-font);
}
.activities_list .activity {
	padding: 16px;
	background-color: #FFF7F3;
	border-radius: 12px;
	border: 1px solid #FFEBE1;
}
.single-services .activity svg {
	margin: 0 0 24px 0;
}
.single-services .activity h3 {
	margin-bottom: 4px;
	font: 400 12px/1.5 var(--main-font);
	text-transform: uppercase;
	color: #846053;
}
.single-services .activity p {
	font: 400 16px/1.375 var(--main-font);
}
.single-services .activity p > span:first-child {
	text-transform: capitalize;
}
.service-gallery-swiper {
	width: 100%;
	height: 552px;
	margin-bottom: 10px;
}
.service-gallery-swiper img,
.service-gallery-thumbs img {
	width: 100%;
	height: 100%;
	display: block;
	border-radius: 8px;
	object-fit: cover;
}
.service-gallery-thumbs {
	height: 176px;
	display: flex;
}
.service-gallery-thumbs .swiper-slide {
	height: 100%;
	/* filter: brightness(.5);
	background: #0000008F; */
	cursor: pointer;
	border-radius: 8px;
	overflow: hidden;
}
.service-gallery-thumbs .swiper-slide-thumb-active {
	filter: brightness(1)
}
.thumb-more {
	position: absolute;
	inset: 0;
	background: #0000008F;
	color: #fff;
	font: 500 16px/1.3 var(--main-font);
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 8px;
	pointer-events: none;
}
.single-services .swiper-slide-visible.swiper-slide-next .thumb-more,
.single-services .swiper-slide-visible.swiper-slide-active .thumb-more {
	display: none;
}
.service-gallery-thumbs .swiper-slide {
	position: relative;
}
.single-services .gallery_swiper_thumbs .swiper-wrapper {
	justify-content: center;
}
.insta_details {
	padding: 0 0 128px 0;
}
.insta_post {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
.insta_link {
	display: flex;
	align-items: center;
	padding: 16px 28px;
	border: 1px solid var(--accent-color);
	border-radius: 8px;
}


/* all services page */
.all_services_section {
	padding-bottom: 128px;
}
.all_services_section .nested_subcat_list {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
}
.all_services_section .service_item {
	display: flex;
	flex-direction: column;
	padding: 16px;
	border: 1px solid #C4C6CE;
	box-shadow: 0px 3px 4px 0px #0000000A;
	border-radius: 12px;
	transition: var(--transition-way);
	cursor: pointer;
}
.all_services_section .service_item:hover {
	background-color: #F6F6F7;
	box-shadow: 0px 3px 4px 0px #C3010208;
	border: 1px solid #B0B2BD;
}
.all_services_section .service_item .service_thumb {
	margin-bottom: 16px;
	width: 400px;
	height: 320px;
	border-radius: 8px;
	overflow: hidden;
}
.all_services_section .service_item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.all_services_section .service_title {
	margin: 0 0 4px 0;
	font: 500 18px/1.3 var(--main-font);
}
.all_services_section .price {
	display: flex;
	margin-bottom: 16px;
	font: 400 18px/1.3 var(--main-font);
}
.all_services_section .price span:not(:last-child) {
	margin: 0 4px 0 0;
}
.all_services_section .service_item .activities_list {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: flex-start;
	margin-bottom: 44px;
}
.all_services_section .service_item .activities_list .activity {
	display: flex;
	align-items: center;
	padding: 2px 8px;
	background-color: #E8E9EC;
	border-radius: 4px;
	font: 400 14px/1.4 var(--main-font);
	letter-spacing: -.14px;
	margin: 0 8px 8px 0;
	cursor: pointer;
}
.all_services_section .service_item .activities_list svg {
	width: 16px;
	height: 16px;
	margin: 0 8px 0 0;
}
.all_services_section .cart_link_wrapper {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: auto;
}
.all_services_section .service_link {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 8px;
	background: #3333340F;
	backdrop-filter: blur(36px);
	transition: var(--transition-way);
}
.all_services_section .service_link:hover {
	background: var(--accent-color);
}
.all_services_section .service_link:hover svg {
	color: #fff;
}
.service_cart_button {
	display: flex;
	align-items: center;
	padding: 10px 16px;
	border: 1px solid var(--accent-color);
	border-radius: 8px;
	color: var(--accent-color);
	transition: var(--transition-way);
}
.service_cart_button .icon {
	margin: 0 8px 0 0;
}
.service_cart_button svg,
.all_services_section .service_link svg {
	width: 20px;
	height: 20px;
}
.service_cart_button:hover {
	color: #fff;
	background-color: var(--accent-color);
}
.service_cart_button:hover svg {
	color: #fff;
}
.all_services_section .cat_hero_thumb {
	position: relative;
	padding: 64px;
	overflow: hidden;
	border-radius: 16px;
	background: linear-gradient(90deg, rgba(0, 0, 0, 0.78) 15.66%, rgba(0, 0, 0, 0) 100%);
	color: #fff;
}
.cat_hero_bg_img {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	object-fit: cover;
	object-position: center right;
	z-index: -1;
}
.cat_hero_thumb .cat_page_title {
	margin-bottom: 32px;
	font: 500 90px/1.04 var(--title-font);
	letter-spacing: -1.8px;
	max-width: 60%;
}
.cat_hero_thumb .cat_description {
	font: 400 18px/1.3 var(--main-font);
	max-width: 60%;
}
.all_services_section .filters {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.cat_filters_wrap {
	padding: 48px 0;
	max-width: 83%;
}
.cat_filters_wrap .filter_btn {
	padding: 8px 16px;
	border: 1px solid #C4C6CE;
	border-radius: 20px;
	font: 500 16px/1.375 var(--main-font);
	transition: var(--transition-way);
	background-color: #fff;
}
.cat_filters_wrap .filter_btn+.filter_btn {
	margin: 0 0 0 8px;
}
.cat_filters_wrap .filter_btn.active {
	color: #fff;
	background-color: var(--accent-color);
	border: 1px solid var(--accent-color);
}
.cat_filters_wrap .filter_btn:hover,
.cat_filters_wrap .filter_btn:focus {
	color: #fff;
	background-color: var(--accent-color);
	border: 1px solid var(--accent-color);
}
.sorting_wrap {
	position: absolute;
	right: -32px;
	top: 100%;
	width: max-content;
	padding: 8px;
	background-color: #fff;
	border: 1px solid #E8E9EC;
	box-shadow: 0px 10px 16px 0px #0000001A;
	border-radius: 12px;
	opacity: 0;
	visibility: hidden;
	pointer-events: auto;
	transition: var(--transition-way);
}
.filters_form.active .sorting_wrap {
	opacity: 1;
	visibility: visible;
	z-index: 9;
}
.sorting_wrap .filter-group {
	display: flex;
	flex-direction: column;
	font: 400 14px/1.4 var(--main-font);
	letter-spacing: -0.14px;
}
.filter-group[data-group="location"] {
	padding: 8px 0 0 0;
	margin: 8px 0 0 0;
	border-top: 1px solid #E8E9EC;
}
.sorting_wrap h4 {
	padding: 8px;
	font: 500 14px/1.4 var(--main-font);
}
.sorting_wrap .filter-group label {
	position: relative;
	display: flex;
	align-items: center;
	cursor: pointer;
}
.sorting_wrap .filter-group label span,
.sorting_wrap div[data-group="location"] label {
	padding: 8px;
	border-radius: 8px;
	transition: var(--transition-way);
}
.sorting_wrap .filter-group label span {
	width: 100%;
}
.sorting_wrap .filter-group label:hover span,
.sorting_wrap .filter-group label:focus span {
	background-color: #FFF7F3;
}
.sorting_wrap .filter-group label input:checked+span {
	background-color: #FFF7F3;
}
#filtersForm {
	position: relative;
}
.filters_toggle {
	position: relative;
	margin-bottom: 11px;
	font: 500 14px/1.4 var(--main-font);
	color: var(--accent-color);
	cursor: pointer;
	transition: var(--transition-way);
}
.filters_icon {
	position: absolute;
	top: 50%;
	left: -28px;
	transform: translateY(-50%);
	width: 20px;
	height: 20px;
}
.filters_toggle:hover {
	color: var(--text-black-color);
}
.filters_toggle:hover svg {
	stroke: var(--text-black-color);
}
.sorting_wrap input[type="checkbox"] {
	border: none;
	appearance: none;
	position: absolute;
}
.sorting_wrap div[data-group="location"] input[type="checkbox"] {
	position: relative;
	width: 16px;
	height: 16px;
	margin: 0 10px 0 0;
}
.sorting_wrap div[data-group="location"] input[type="checkbox"]::before {
	content: '';
	display: block;
	width: 16px;
	height: 16px;
	border-radius: 4px;
	border: 1px solid var(--Neutral-60, #C4C6CE);
	background-color: #fff;
	background-position: center;
	transition: var(--transition-way);
}
.sorting_wrap div[data-group="location"] input[type="checkbox"]:checked::before {
	background-color: red;
}
.service_subcategory_title {
	margin-bottom: 32px;
	text-align: left;
	font: 400 36px/1.2 var(--title-font);
}
.all_services_section .service_section:not(:last-child) {
	margin-bottom: 48px;
}
.nested_subcat_title {
	width: fit-content;
	padding: 4px 12px;
	margin-bottom: 16px;
	background-color: #F6F6F7;
	border-radius: 8px;
	font: 400 22px/1.2 var(--title-font);
	color: #5A5C64;
}




@media screen and (max-width: 1360px) {
	.advantage_item:first-child {
		padding: 32px 0 0 32px;
	}
	.advantage_item:nth-child(1) .advantage_description {
		width: 65%;
	}
	.advantage_item:nth-child(1) .advantage_icon {
		width: 35%;
		margin: 0;
	}
	.advantage_item:nth-child(1) img {
		max-width: 250px;
		object-position: bottom;
		object-fit: contain;
		height: 100%;
	}
}
@media screen and (max-width: 1200px) {
	.footer_menu .menu .menu-item-has-children {
		margin-right: 56px;
	}
}
@media screen and (max-width: 1024px) {
	.how_we_work_section .container {
		padding: 0;
	}
	.how_we_work_section .item, .how_we_work_section .item:nth-of-type(2n) {
		flex-direction: column;
	}
	.footer {
		padding-bottom: 140px;
	}
	.desktop {
		display: none;
	}
	.mobile {
		display: block;
	}
	.menu-button {
		display: inline-block;
		width: 20px;
		height: 20px;
		background-color: transparent;
		border: none;
		padding: 0;
	}
	.main_navigation {
		position: absolute;
		top: 99%;
		left: 0;
		width: 100%;
		display: block;
		padding: 32px 16px;
		transition: var(--transition-way);
		opacity: 0;
		visibility: hidden;
		transform: scaleY(0);
	}
	.main_navigation.is-open {
		z-index: 9;
		opacity: 1;
		visibility: visible;
		transition: var(--transition-way);
		transform: scaleY(1);
		background-color: #fff;
	}
	#primary-menu {
		flex-direction: column;
		align-items: flex-start;
	}
	#primary-menu>.menu-item:not(:last-child) {
		margin: 0 0 32px 0;
	}
	.main_navigation .menu .menu-item .sub-menu,
	.main_navigation .menu .menu-item.active .sub-menu {
		position: relative;
		box-shadow: none;
		border: none;
		border-radius: 0;
	}
	.main_navigation .sub-menu a {
		width: 100%;
	}
	.header_vidgets.mobile {
		position: relative;
		padding: 12px 0 0 0;
	}
	.is-open #site_navigation {
		margin-bottom: 286px;
	}
	.order_btn.widget_wrap {
		margin: 0 0 32px 0;
	}
	.mobile #header_contacts {
		display: flex;
		flex-wrap: wrap;
	}
	.mobile #header_contacts .phone_link.header_contact {
		width: 100%;
		margin: 0 0 12px 0;
	}
	.header_vidgets .cart_wrapper.widget_wrap {
		margin: 0;
	}
	.counter_section .container {
		padding: 56px;
	}
	.advantage_item,
	.advantage_item:first-child {
		padding: 20px 20px 0 20px;
	}
	.advantage_item:nth-child(1) .advantage_icon {
		display: none;
	}
	.advantage_item:nth-child(1) .advantage_description {
		width: 100%;
	}
	.how_we_work_section .item:not(:last-child) {
		margin-bottom: 58px;
	}
	.how_we_work_section .item > div {
		width: 100%;
	}
	.how_we_work_section .item .thumb {
		max-width: 100%;
		margin-top: 24px;
	}
	.how_we_work_section .item:not(:last-child) .line {
		display: none;
	}
	.gallery_wrap {
		gap: 12px;
	}
	.gallery_item {
		margin-bottom: 12px;
	}
	.about_section table tr td:first-child img {
		width: 200px;
		height: 240px;
	}
	.about_section table tr td:nth-child(2) img {
		width: 350px;
		height: 233px;
	}
	.about_section table tr td:last-child img {
		width: 186px;
		height: 240px;
	}
}
@media screen and (max-width: 1000px) {
	.footer_menu .menu .menu-item-has-children:last-child {
		margin-right: 0;
	}
	.footer_menu .menu .menu-item-has-children:not(:last-child) {
		margin-right: 40px;
	}
	.footer .menu_wrap {
		flex-wrap: wrap;
	}
	.footer_menu {
		margin-bottom: 48px;
	}
	.footer_menu,
	.footer_contacts {
		width: 100%;
	}
	.footer_menu .menu {
		justify-content: space-between;
	}
}
@media screen and (max-width: 922px) {
	.logo_slider_section .swiper-slide {
		max-width: 100%;
	}
	.how_we_work_section .container {
		padding: 0 16px;
	}
	.testimonials_list {
		column-count: 2;
		column-gap: 12px;
	}
	.testimonial_item {
		margin-bottom: 12px;
		padding: 20px;
	}

}
@media screen and (max-width: 768px) {
	h2,
	.bottom_cta_section h2 {
		font: 500 56px/1.025 var(--title-font);
	}
	.hero_section h1 {
		font: 500 64px/1.04 var(--title-font);
		max-width: 100%;
	}
	.services_section .services_list {
		grid-template-columns: repeat(1, 1fr);
	}
	.counter_section .container {
		padding: 64px 20px;
	}
	.counter_section h2 {
		font: 500 48px/1.1 var(--title-font);
	}
	.advantages_grid .advantage_item:first-child .advantage_icon {
		display: none;
	}
	.advantage_item:nth-child(1) .advantage_description {
		width: 100%;
	}
	.advantages_grid {
		grid-auto-rows: 24px;
	}
	.advantage_item:last-child .advantage_description {
		max-width: 90%;
	}
	.advantages_grid {
		grid-template-columns: repeat(1, 1fr);
	}
	.advantage_item:nth-child(2) .advantage_icon {
		margin-top: 37px;
	}
	.advantage_item:nth-child(3) .advantage_icon {
		margin-top: 16px;
	}
	.how_we_work_section .item .num {
		font: 700 72px/1.3 var(--title-font);
	}
	.how_we_work_section .item h3 {
		font: 400 32px/1.2 var(--title-font);
	}
	.how_we_work_section .container {
		padding: 0;
	}
	.about_section table tr td:first-child img {
		width: 150px;
		height: 200px;
	}
	.about_section table tr td:nth-child(2) img {
		width: 300px;
		height: 200px;
	}
	.about_section table tr td:last-child img {
		width: 150px;
		height: 200px;
	}
	.accordion_item {
		width: 84%;
	}
}
@media screen and (max-width: 650px) {
	.about_section {
		padding: 64px 0;
	}
	.about_section table tr td:first-child img {
		width: 100px;
		height: 150px;
	}
	.about_section table tr td:nth-child(2) img {
		width: 200px;
		height: 100px;
	}
	.about_section table tr td:last-child img {
		width: 100px;
		height: 150px;
	}
	.footer_subtitle {
		font: 400 26px / 1.3 var(--title-font);
	}
}
@media screen and (max-width: 560px) {
	.counter_section table tr {
		flex-direction: column;
	}
	.counter_section table td+td {
		margin: 40px 0 0 0;
	}
	.services_section {
		margin-top: -168px;
	}
	.services_section .services_list {
		gap: 16px;
	}
	.advantage_item:nth-child(2) {
		grid-row: span 8;
	}
	.advantage_item:nth-child(3) {
		grid-row: span 8;
	}
	.advantage_item:nth-child(2) .advantage_icon,
	.advantage_item:nth-child(3) .advantage_icon {
		margin-top: auto;
	}
	.how_we_work_section table tr:nth-child(odd) td:last-child {
		display: none;
	}

	.how_we_work_section table tr:nth-child(even) td:first-child {
		display: none;
	}
	.how_we_work_section .item > div {
		width: 100%;
	}
	.how_we_work_section .item:not(:last-child) {
		margin-bottom: 32px;
	}
	.gallery_wrap {
		grid-template-columns: repeat(2, 1fr);
	}
	.testimonials_list {
		column-count: 1;
	}
	.accordion_item {
		width: 100%;
	}
	.footer_menu .menu {
		flex-direction: column;
	}
	.footer_menu .menu .menu-item-has-children:not(:last-child) {
		margin: 0 0 48px 0;
	}
}
@media screen and (max-width: 480px) {
	.footer {
		padding-bottom: 8px; 
	}
	h2 {
		margin-bottom: 56px;
	}
	p {
		font-size: 16px;
	}
	.main_navigation.is-open .order_btn .btn {
		width: 100%;
	}
	.main_navigation.is-open .header_contacts {
		padding-right: 0;
		justify-content: center;
	}
	.nav_widgets_mobile {
		position: relative;
	}
	.nav_widgets_mobile::before {
		content: '';
		display: block;
		width: 100vw;
		height: 1px;
		background-color: #E8E9EC;
		position: absolute;
		left: -16px;
		top: -12px;
	}
	.hero_section .container {
		padding: 128px 20px;
	}
	.hero_section .butts {
		display: flex;
		flex-direction: column;
	}
	.hero_section .butts .btn {
		width: 100%;
	}
	.hero_section .butts .btn+.btn {
		margin: 12px 0 0 0;
	}
	.services_section .service_item .service_title {
		font: 400 32px/1.2 var(--title-font);
	}
	.advantage_item:nth-child(4) {
		grid-row: span 8;
	}
	.services_section {
		padding: 236px 0 64px 0;
	}
	.gallery_section,
	.how_we_work_section,
	.advantages_section,
	.logo_slider_section {
		padding: 64px 0;
	}
	.about_section table tr td:nth-child(2) img {
		width: 140px;
		height: auto;
	}
	.about_section table tr td:last-child img {
		width: 100px;
		height: 120px;
	}
	.about_section table tr td:first-child img {
		width: 82px;
		height: 120px;
	}
	.about_section table tr td img {
		border-radius: 8px;
	}
	.testimonials_section {
		padding: 56px 0;
	}
	.faq_section {
		padding: 0 0 64px 0;
	}
	.accordion_item {
		padding: 16px 72px 16px 20px;
	}
	.bottom_cta_section {
		padding: 56px 0;
	}
	.bottom_cta_section .butts {
		margin-top: 32px;
	}
	.footer_subtitle {
		font: 400 20px / 1.3 var(--title-font);
	}
	.top_footer {
		margin-bottom: 56px;
	}
	.footer-logo img {
		max-width: 103px;
	}
	.copyright_wrap {
		margin: 0 0 56px 0;
	}
}
@media screen and (max-width: 375px) {
	.service_icon_wrap {
		display: none;
	}
	.mobile #header_contacts {
		justify-content: center;
		text-align: center;
	}
	.counter_section p,
	.how_we_work_section .item p {
		font: 400 16px / 1.33 var(--main-font);
	}
	.advantage_item h3 {
		font: 500 24px / 1.15 var(--title-font);
	}
	.bottom_cta_section .btn {
		padding: 10px 16px;
	}
}
@media screen and (max-width: 350px) {
	.about_section table tr td:nth-child(2) img {
		width: 120px;
		height: auto;
	}
	.about_section table tr td:last-child img {
		width: 80px;
		height: 100px;
	}
	.about_section table tr td:first-child img {
		width: 80px;
		height: 100px;
	}
}
