:root {
	--color-secondary: #fbd232;
	--color-secondary-rgb: 251, 210, 50;
}


* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	/*! border: red outline; */
	/*! overflow-x: hidden; */
	/*  outline: red solid; */
}

ul,
p {
	margin: 0;
	padding: 0;
}

.header__phones_wrap {
	list-style-type: none;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	/*! grid-template-rows:40px; */
	justify-content: center;
	justify-items: center;
}

body {
	font-family: 'Montserrat', sans-serif;
	/* 	overflow:hidden; */
}

.header__top {
	background: #222;
}

.header__top .row {
	justify-content: flex-end;
	padding-inline: 15px;
}

.header__top a {
	padding: 9px 30px;
	display: inline-block;
	color: #9c9c9c;
	font-size: 14px;
	border-left: 1px solid #373737;
	border-right: 1px solid #373737;
	transition-duration: .5s;
	text-decoration: none;
}

.header__top a:first-of-type {
	margin-right: -1px;
}

.header__top a:hover {
	color: var(--color-secondary);
}

.header__contacts {
	background: #111;
}

.header__contacts .row {
	/*! flex-wrap: nowrap; */
}

.header__logo {
	background: #fbd232;
	margin-right: 100px;
	position: relative;
	/*! outline: red 1px; */
	/*! max-height: 100%; */
	bottom: -1px;
	
}

.header__logo::before {
	content: '';
	position: absolute;
	width: 1000px;
	left: -1000px;
	bottom: 0;
	height: 100%;
	background: #fbd232;
}

.header__logo::after {
	content: '';
	position: absolute;
	width: 0;
	height: 0;
	top: 0;
	right: -30px;
	border-style: solid;
	/* 	border-width: 65px 0 65px 40px; */
	border-width: 43px 0 43px 30px;
	border-left-color: #fbd232;
	color: transparent;
}

.header__logo a {
	/* 	padding: 37px 20px 37px 0; */
	padding: 20px 20px 20px 0;
	display: block;
}

.header__logo a img {
	width: 169px;
	height: 46px;
}

.header__phones {

	display: flex;
	/*! margin-right: 70px; */
	align-items: center;
	/*! background-color: green; */
	padding-block: 100px;
	position: relative;


}

.header__phones>img {
	/*! width: 25px; */
	/*! margin-right: 20px; */
	position: absolute;
	left: 0;
	top: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.header__phones:after {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.1));
}

.header__phones .container {

	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 100px;
}

.title_wrap {
	color: #fff;
	text-align: center;
	display: flex;
	/*! flex-wrap: wrap; */
	flex-direction: column;
	gap: 15px;
}

.top_title {
	font-weight: 600;
}

.header__phones a {
	color: #000;
	text-decoration: none;
	font-weight: bold;
	font-size: 18px;
	transition-duration: .5s;
	background-color: var(--color-secondary);
	padding-block: 15px;
	padding-inline: 30px;

}

.header__phones a img {
	transition-duration: .5s;
}

.header__phones a:hover {
	/* 	color: #fbd232; */
	color: #fff;
	background-color: #000;
}

.header__phones .phone4 a:hover img {
	filter: invert(100%);
}

.menu {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	list-style-type: none;
	height: 100%;
}

.menu>li {
	border-bottom: 4px solid transparent;
	-webkit-transition: all .5s cubic-bezier(.215, .61, .355, 1);
	-moz-transition: all .5s cubic-bezier(.215, .61, .355, 1);
	-o-transition: all .5s cubic-bezier(.215, .61, .355, 1);
	transition: all .5s cubic-bezier(.215, .61, .355, 1);
	position: relative;
	/*! height: 100%; */
	display: flex;
	align-items: center;
}

.menu>li:hover {
	border-bottom-color: #fbd232;
}

.menu>li:hover>a::after {
	opacity: 1;
	visibility: visible;
	border-bottom-color: #fbd232;
}

.menu>li.current_page_item {
	border-bottom-color: #fbd232;
}

.menu>li>a {
	/* 	padding: 38px 20px 23px; */
	padding-inline: 20px;
	display: flex;
	color: #666;
	text-transform: uppercase;
	font-weight: 700;
	font-size: 14px;
	position: relative;
	-webkit-transition: all .5s cubic-bezier(.215, .61, .355, 1);
	-moz-transition: all .5s cubic-bezier(.215, .61, .355, 1);
	-o-transition: all .5s cubic-bezier(.215, .61, .355, 1);
	transition: all .5s cubic-bezier(.215, .61, .355, 1);
	height: 100%;
	align-items: center;
}

ul.lang {
	display: flex;
	align-items: center;
	/*! gap: 10px; */
	/* margin-left: auto; */

}

.lang>li>a {
	color: #666;
	text-transform: uppercase;
	font-weight: 700;
	font-size: 14px;
}

.lang>li.current-lang>a {
	color: var(--color-secondary);
}

.lang>li.lang-item>a:first-child {
	border-left: none;
}

.menu>li>a:hover {
	/* 	color: #111; */
	text-decoration: none;
	color: var(--color-secondary);
}

.menu>li>a::after {
	content: '';
	position: absolute;
	left: 50%;
	bottom: 0;
	width: 0;
	height: 0;
	border-style: solid;
	border-color: transparent;
	border-width: 0 8px 3px;
	opacity: 0;
	visibility: hidden;
	transition: all .5s cubic-bezier(.215, .61, .355, 1);
	transform: translate(-50%, 0);
}

.menu>li.current_page_item>a {
	color: var(--color-secondary);
}

.menu>li.current_page_item>a::after {
	border-bottom-color: #fbd232;
	opacity: 1;
	visibility: visible;
}

.menu .sub-menu {
	position: absolute;
	left: 0;
	top: 120%;
	width: 300px;
	list-style-type: none;
	background: #fff;
	z-index: 1;
	opacity: 0;
	visibility: hidden;
	border-top: 3px solid transparent;
	/*! box-shadow: 0 2px 3px 0 rgba(0,0,0,.2); */
	/*! -webkit-box-shadow: 0 2px 3px 0 rgba(0,0,0,.2); */
	-webkit-transition: all .5s cubic-bezier(.215, .61, .355, 1);
	-moz-transition: all .5s cubic-bezier(.215, .61, .355, 1);
	-o-transition: all .5s cubic-bezier(.215, .61, .355, 1);
	transition: all .5s cubic-bezier(.215, .61, .355, 1);
}

.menu>li:hover>.sub-menu {
	opacity: 1;
	visibility: visible;
	z-index: 999;
	top: 100%;
	border-color: #fbd232;
}

.menu .sub-menu a {
	padding: 8px 15px;
	display: block;
	color: #666;
	font-size: 14px;
}

.menu .sub-menu a:hover {
	color: #111;
	background: #fbd232;
	text-decoration: none;
}

.menu .sub-menu .current_page_item a {
	color: #111;
	background: #fbd232;
	text-decoration: none;
}

.breadcrumbs {
	background: #111111;
	padding: 10px 0;
}

.breadcrumbs .row {
	-ms-align-items: center;
	align-items: center;
}

.breadcrumbs a {
	color: #fff;
	text-decoration: none;
}

.breadcrumbs .current-item {
	color: #8a8a8a;
}

.breadcrumbs .separator {
	width: 12px;
	margin: 0px 8px;
}

.breadcrumbs-home {
	width: 20px;
	padding-bottom: 3px;
}

.price-block {
	padding: 50px 0;
}

.price-block .row {
	-webkit-flex-wrap: nowrap;
	-moz-flex-wrap: nowrap;
	-ms-flex-wrap: nowrap;
	-o-flex-wrap: nowrap;
	flex-wrap: nowrap;
}

.price-block-table {
	margin-right: 30px;
	width: 25%;
	min-width: 25%;
}

.price-block-table-title {
	background: #fbd232;
	color: #fff;
	font-size: 18px;
	text-align: center;
	font-weight: 700;
	padding: 10px 5px;
	flex: 1;
}

.price-block-table-price {
	padding: 30px 0;
	color: #1d2634;
	font-weight: 700;
	font-size: 48px;
	text-align: center;
	background: #f7f7f7;
	border: 2px solid #eee;
}

.price-block-table-button a {
	padding: 20px 0;
	background: #fbd232;
	font-size: 18px;
	font-weight: 700;
	text-align: center;
	color: #1d2634;
	display: block;
	text-decoration: none;
	transition-duration: .5s;
	cursor: pointer;
}

.price-block-table-button a img {
	transition-duration: .5s;
}

.price-block-table-button a:hover {
	background: #111;
	color: #fff;
}

.price-block-table-button a:hover img {
	filter: invert(100%);
}

.price-block-text h1,
.price-block-text h2,
.price-block-text h3,
.price-block-text h4 {
	font-size: 28px;
	font-weight: 700;
	color: #1d2634;
	background: #fbd232;
	padding: 10px 15px;
	margin-bottom: 10px;
}

.price-block-text h2 {
	font-size: 24px;
	margin: 10px 0;
}

.price-block-text h3 {
	font-size: 18px;
	margin: 10px 0;
}

.price-block-text h4 {
	font-size: 16px;
	margin: 10px 0;
}

.price-block-text {
	font-size: 15px;
	color: #777;
}

.price-block-text>*:not(:last-child) {
	margin-bottom: 10px;
}

.price-block-text p {
	padding: 0 15px;
}

.price-block-text ul {
	padding-left: 30px;
}

.advantages {
	background: #343434;
	overflow: hidden;
}

.advantages .row {
	justify-content: space-between;
}

.advantages .row>div {
	padding: 60px 0px 40px;
	flex-basis: 28%;
	text-align: center;
	position: relative;
}

.advantages .row>div img {
	width: 80px;
}

.advantages-title {
	margin: 15px 0 5px;
	font-size: 20px;
	color: #fff;
	font-weight: 700;
}

.advantages-desc {
	color: #aaa;
	font-size: 14px;
}

.advantages-time {
	background: #1f1f1f;
}

.advantages-time::before {
	content: '';
	position: absolute;
	top: 0;
	left: -90px;
	height: 100%;
	width: 0;
	border-width: 158px 90px 158px 0;
	border-style: solid;
	border-color: transparent #1f1f1f transparent transparent;
}

.advantages-time::after {
	content: '';
	position: absolute;
	top: 0;
	right: -100%;
	height: 100%;
	width: 100%;
	background: #1f1f1f;
}

.advantages-price {
	background: #141414;
}

.advantages-price::before {
	content: '';
	position: absolute;
	top: 0;
	left: -90px;
	height: 100%;
	width: 0;
	border-width: 158px 90px 158px 0;
	border-style: solid;
	border-color: transparent #141414 transparent transparent;
}

.advantages-price::after {
	content: '';
	position: absolute;
	top: 0;
	right: -300%;
	height: 100%;
	width: 300%;
	background: #141414;
}

.services-text {
	padding: 0 0 35px;
	color: #777;
}

.services-text h2,
.services-text h3,
.services-text h4 {
	color: #1d2634;
	font-weight: 700;
}

.services-text h2 {
	font-size: 24px;
	margin-top: 35px;
}

.services-text h3 {
	font-size: 18px;
	margin-top: 35px;
}

.services-text h4 {
	font-size: 16px;
	margin-top: 35px;
}

.services-text p,
.services-text ul,
.services-text ol {
	font-size: 15px;
	margin-top: 15px;
}

.services-text ul,
.services-text ol {
	padding-left: 30px;
}

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

.services-listing .price-block-table-price {
	border-bottom: none;
}

.services-listing-text {
	border-left: 2px solid #eee;
	border-right: 2px solid #eee;
	padding: 0px 15px;
}

.services-listing-text div {
	padding: 15px 0;
	font-size: 12px;
	text-align: center;
	color: #777;
}

.services-listing-text div:first-child {
	border-bottom: 1px solid #eee;
}

.serices-parent-entry-text {
	margin: 50px 0 40px;
	text-align: justify;
}

.serices-parent-entry-text h1 {
	font-size: 36px;
	font-weight: 700;
	margin-bottom: 15px;
}

.serices-parent-entry-text img {
	float: left;
	shape-outside: circle();
	margin-right: 25px;
	margin-bottom: 25px;
	width: 250px;
	height: 250px;
	border-radius: 50%;
}

.serices-parent-entry-text ul {
	padding-left: 30px;
}

.wp-block-list {
	list-style-type: none; 
}

.wp-block-list li::marker {
	/* content: "\25CF   ";
	font-size: 20px;
	line-height: 1;
	display: inline-block;
	margin-right: 20px; */

}


.wp-block-list li::before {
	content: "•";
	color: black;
	position: absolute;
	width: 0.5em;
	margin-left: -0.5em;
	font-size: 50px;
	top: 0;
	left: 0;
	line-height: 0.3;

}

.wp-block-list li {
	padding-left: 0;
	position: relative;
}


.business-title {
	padding: 50px 0;
	background: #111111;
	margin-bottom: 40px;
}

.business-title h1 {
	font-size: 36px;
	font-weight: 700;
	color: #fff;
}

.business-links {
	margin-bottom: 50px;
}

.business-links .link-certain {
	margin-top: -2px;
}

.business-links .link-certain-img a {
	text-align: center;
	padding: 0px 20px;
	cursor: default;
}

.business-links .link-certain-img a:hover {
	color: #fff;
}

.business-links .link-certain-title {
	padding-bottom: 20px;
	margin-bottom: 20px;
}

footer {
	background: #282828;
	padding: 70px 0;
}

.footer-info a {
	display: block;
	margin-bottom: 20px;
	height: 36px;
}

.footer-info a img {
	height: 100%;
	max-height: 100%;
}

.footer-info div {
	color: #a0a0a0;
	font-size: 14px;
}

.footer-col-title {
	font-size: 20px;
	color: #fff;
	line-height: 36px;
	margin-bottom: 20px;
	position: relative;
	padding-bottom: 20px;
	overflow: hidden;
	font-weight: 700;
}

.footer-col-title::before,
.footer-col-title::after {
	content: '';
	height: 2px;
	position: absolute;
	bottom: 0;
	background: #fbd232;
}

.footer-col-title::before {
	width: 20px;
	left: 0;
}

.footer-col-title::after {
	width: 100%;
	left: 30px;
}

.footer-col-list {
	list-style-type: none;
}

.footer-col-list img {
	height: 12px;
	margin-right: 25px;
}

.footer-col-list li {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-ms-align-items: center;
	align-items: center;
}

.footer-col-list li:not(:last-of-type) {
	margin-bottom: 10px;
}

.footer-col-list li,
.footer-col-list li a {
	font-size: 14px;
	color: #a0a0a0;
	text-decoration: none;
	transition-duration: .5s;
}

.footer-col-list li a:hover {
	color: #fbd232;
}

.privacy {
	background: #111111;
	padding: 40px 0;
	font-size: 14px;
	color: #a0a0a0;
	text-align: center;
}

.privacy a {
	color: #a0a0a0;
	text-decoration: none;
	transition-duration: .5s;
}

.privacy a:hover {
	color: #fbd232;
}

.links-block {
	margin: 40px 0;
}

.link-certain {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	padding: 30px;
	border: 2px solid #eee;
}

.link-certain-img {
	position: relative;
	width: 450px;
	min-width: 450px;
	/*! height: 300px; */
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-webkit-flex-direction: column;
	-moz-flex-direction: column;
	-ms-flex-direction: column;
	-o-flex-direction: column;
	flex-direction: column;
	-ms-align-items: center;
	align-items: center;
	justify-content: center;
	margin-right: 30px;
	overflow: hidden;

	aspect-ratio: 1.5;
}

.link-certain-img:hover .link-certain-img-bg {
	transform: scale(1.2);
}

.link-certain-img::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, .4);
}

.link-certain-img-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
	transition-duration: .3s;
}

.link-certain-img a {
	z-index: 2;
	font-size: 24px;
	font-weight: 700;
	color: #fff;
}

.link-certain-img a:hover {
	text-decoration: none;
}

.figure {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-ms-align-items: center;
	align-items: center;
	justify-content: center;
	width: 50px;
	height: 75px;
	background: #fbd232;
	z-index: 2;
	position: relative;
	margin-bottom: 15px;
}

.figure::before {
	content: '';
	position: absolute;
	top: 0;
	left: -20px;
	width: 0;
	height: 0;
	border-width: 37.5px 20px 37.5px 0;
	border-style: solid;
	border-color: transparent #fbd232 transparent transparent;
}

.figure::after {
	content: '';
	position: absolute;
	top: 0;
	right: -20px;
	width: 0;
	height: 0;
	border-width: 37.5px 0 37.5px 20px;
	border-style: solid;
	border-color: transparent transparent transparent #fbd232;
}

.figure img {
	width: 30px;
	height: 30px;
}

.link-certain-content {
	width: 450px;
	display: flex;
	flex-direction: column;
}

.link-certain-title {
	margin-bottom: 30px;
	padding-bottom: 30px;
	border-bottom: 1px solid #eee;
}

.link-certain-title a {
	font-size: 28px;
	font-weight: 700;
	color: #111111;
	text-decoration: none;
}

.link-certain-desc {
	font-size: 15px;
	color: #777;
	flex: 1;
}

.popup-wrapper {
	display: none;
}

.popup-wrapper.active {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	position: fixed;
	-ms-align-items: center;
	align-items: center;
	justify-content: center;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100%;
	background: rgba(0, 0, 0, .8);
	z-index: 100;
}

.popup {
	padding: 100px 50px;
	background: #fff;
	position: relative;
}

.popup-close {
	position: absolute;
	top: 10px;
	right: 8px;
	width: 30px;
	height: 30px;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	cursor: pointer;
}

.popup-close img {
	width: 100%;
}

.popup input:not([type="submit"]) {
	width: 400px;
	height: 50px;
	margin-bottom: 20px;
	padding-left: 15px;
}

.popup .wpcf7-response-output {
	width: 400px;
	max-width: 100%;
	margin-right: 0 !important;
	margin-bottom: 0 !important;
	margin-left: 0 !important;
}

.popup-title {
	font-size: 22px;
	margin-bottom: 25px;
	text-align: center;
	color: #1d2634;
	font-weight: 700;
	max-width: 400px;
}

.popup .wpcf7-submit {
	font-size: 20px;
	font-weight: 700;
	border: none;
	padding: 0;
	-webkit-appearance: none;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: #1d2634;
	background: #fbd232;
	height: 50px;
	padding: 0 45px;
	transition-duration: .5s;
}

.popup .wpcf7-submit:hover {
	color: #fff;
	background: #111;
}

.submit-wrapper {
	text-align: center;
	margin-top: 15px;
}

main {
	position: relative;
}

.phones-opener {
	padding: 10px;
	display: none;
	align-items: center;
	justify-content: center;
	margin-left: auto;
	cursor: pointer;
}

.phones-opener img {
	width: 20px;
	height: 20px;
}

.header-phones-mobile {
	display: none;
	position: absolute;
	z-index: 100;
	background: #fff;
	box-shadow: rgba(0, 0, 0, 0.6) 0px 5px 5px 3px;
	width: 100%;
}

.header-phones-mobile a {
	display: block;
	color: #666;
	font-weight: 700;
	font-size: 16px;
	padding: 15px 20px;
	white-space: nowrap;
}

.header-phones-mobile a:hover {
	text-decoration: none;
}

.burger {

	display: flex;
	padding: 10px 25px 10px 10px;
	align-items: center;
	cursor: pointer;
	margin-left: auto;
}

.burger img {
	width: 25px;
	height: 25px;
}

.p404 {
	padding: 40px 0 100px;
}

.p404 .container {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.err {
	font-size: 200px;
	font-weight: 700;
	color: #fbd232;
	line-height: 1.2;
}

.not-found {
	font-size: 32px;
	text-align: center;
	margin-bottom: 30px;
	color: #111;
}

.use-search {
	font-size: 22px;
	margin-bottom: 20px;
	color: #111;
}

.use-search a {
	color: #fbd232;
}

.blog-list .container {
	display: flex;
	flex-wrap: wrap;
}

.blog-list .grid_blog {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 1fr));

	gap: 40px 40px;
}


.blog_item {
	background: #282828;
	border: 2px solid #282828;
	transition-duration: .3s;
	/*! aspect-ratio: 2/1; */
}

.blog-list {
	margin-block: 40px;
}

/* .blog_item {
	width: 30%;
	margin-bottom: 40px;
	background: #282828;
	border: 2px solid #282828;
	transition-duration: .3s;
}

.blog_item:nth-child(3n+2) {
	margin-left: auto;
	margin-right: auto;
} */

.blog_item:hover {
	background: #fff;
}

.blog_item:hover h2 a {
	color: #282828;
}

.blog_item h2 {
	font-size: 28px;
	margin: 0;
}

.blog_item h2 a {
	color: #fff;
	text-decoration: none;
	padding: 15px 25px;
	display: block;
}

.blog-text {
	color: #777;
	padding-bottom: 40px;
}

.blog-text h2,
.blog-text h3,
.blog-text h4 {
	color: #1d2634;
	font-weight: 700;
}

.blog-text h2 {
	font-size: 24px;
	margin-top: 35px;
}

.blog-text h3 {
	font-size: 18px;
	margin-top: 35px;
}

.blog-text h4 {
	font-size: 16px;
	margin-top: 35px;
}

.blog-text a {
	color: #fbd232;
}

.blog-text p,
.blog-text ul,
.blog-text ol {
	font-size: 15px;
	margin-top: 15px;
}

.blog-text ul,
.blog-text ol {
	padding-left: 30px;
}

/* 777 */
.link-certain-content .price-block-table-button {
	margin-top: 25px;
}

.link-certain-content .price-block-table-button img {
	width: 25px;
	margin-right: 20px;
}


.remodal {
	/*     max-width: 360px;
    width: 100%; */
	height: auto;
	border-radius: 20px 20px 0 0;
	/*     background-image: linear-gradient(#fffe, #fff); */
	padding: 20px;
	font-size: 16px;
	line-height: 24px;
	letter-spacing: 0em;
	text-align: left;
	color: var(--color-body);
	box-sizing: border-box;
	margin: 0 auto;
	margin-bottom: 0;
	width: clamp(340px, 90vw, 400px);
	background-color: #fff;
}

.modal_title {

	color: #fbd232;
	margin: 0 0 5px;
	font-size: 25px;
	line-height: 1.2;
	text-align: left;
	font-weight: 600;
	/*! margin-left: 45px; */
}

.modal_item {
	margin-bottom: 15px;

}

.mob_text {
	margin-top: 15px;
	margin-inline: auto;
	text-align: center;
}

.mob_text p {
	font-size: 12px;
	font-weight: 500;
	line-height: 1.3;
}

.modal-phone {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.callback_head {
	display: flex;
	position: relative;
	align-items: baseline;
	align-content: baseline;

}

.modal_item a {
	font-size: 24px;
	line-height: 33px;
	letter-spacing: 0em;
	text-align: center;
	display: flex;
	align-items: baseline;
	color: #000;
	text-decoration: none;
}

.modal_item a svg {
	margin-right: 15px;
	align-self: center;
}

.modal_item>p {
	margin-bottom: 10px;
	font-size: 15px;
}

.modal_item a .price_free {
	bottom: -6px;
	font-size: 10px;
	font-style: italic;
	letter-spacing: 0.2px;
	position: absolute;
	/*color: #fff;*/
	font-size: 13px;
	/*! bottom: 0px; */
	line-height: 1;
	left: 38px;


}







/* header_phone_wrap {
display: grid;
grid-template-columns:minmax(200px, 250px) minmax(200px, 250px);
justify-items: center;
grid-gap: 15px 5px;

/*! margin: 0 auto; */
/* justify-content: center;
margin-bottom: 30px;
}  */
.header_phone_wrap > a {
	display: flex;
	align-items: center;
}

.header_phone_wrap>a>img {
	margin-right: 10px;
}

.phone-item-wrap {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 5px;
}

.header-phone-link {
	color: #000;
	text-transform: uppercase;
	font-weight: 600;
	font-size: 23px;

}

.header-phone-link:hover {
	color: #666;
	text-decoration: none;
}

.header-phone-link>img {
	margin-right: 10px;
}

.modal_header {
	margin-bottom: 10px;
}

.modal_wrap {
	/*! padding-bottom: 20px; */
}


/*кнопка*/

.trubka_wrap {
	position: fixed;
	z-index: 5;
	right: 20px;
	bottom: 100px;
	background-size: cover;
	border-radius: 30px;
	display: none;
}

.header-phone-icon-big {
	width: 48px;
	height: 48px;
	flex-shrink: 0;
	border-radius: 40px;
	/*background-color: var(--color-secondary, #ff4127);*/
	background-color: #000;
	box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.2);
	display: flex;
	align-items: center;
	justify-content: center;
	animation: radial-pulse 1.8s infinite;
}

a.back-to-top.btn_up {
	width: 48px;
	height: 48px;

	position: fixed;
	z-index: 1031;
	right: 20px;
	bottom: 100px;

/* 	background: var(--color-secondary, #fbd232) no-repeat center center; */
	background: #000 no-repeat center center;
	/*  background-size: 25px ; */
	border-radius: 30px;
	box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.2);
	border: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	display: none;
	align-content: center;
}

a.back-to-top.btn_up>img {
	margin-left: 9px;
}



@keyframes radial-pulse {
	0% {
		box-shadow: 0 0 0 0px rgba(0, 0, 0, 0.7);
	}

	100% {
		box-shadow: 0 0 0 20px rgba(0, 0, 0, 0.0);
	}
}

.footer-services .footer-col-list li {
	position: relative;
}

.footer-services .footer-col-list>li>a {
	padding-left: 25px;
}

.footer-services .footer-col-list li:before {
	content: "";
	background-image: url(img/arrow.svg);
	position: absolute;
	background-size: cover;
	width: 12px;
	height: 12px;
}



@media (min-width: 576px) {
	.header__top .container {
		max-width: none;
	}
}

@media screen and (max-width: 1300px) {

	.services-listing .grid_service {
		display: grid;
		/* grid-template-columns: 1fr 1fr; */
		grid-template-columns: minmax(40vw, 300px) minmax(40vw, 300px);
		/*! grid-auto-rows: 1fr; */
		gap: 25px 10px;
		justify-content: center;
	}

	.grid_service>.col {
		display: flex;
		flex-direction: column;
	}

}


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

	.menu>li>a {
		padding-inline: 10px;

		font-size: 13px;



	}

	.header__phones_wrap {
		gap: 10px 0;
	}

	.menu .sub-menu {

		top: 120%;
		width: 240px;

	}

	.header__phones a {

		padding-inline: 20px;

	}

	.business-links .link-certain {
		flex-direction: column;
		margin-top: 0;
		gap: 25px;

		margin-inline: auto;
	}

	.business-links .link-certain:not(:last-of-type) {
		margin-bottom: 40px;
	}

	.link-certain-img {
		position: relative;
		width: 100%;
		min-width: unset;

		display: flex;

		flex-direction: column;
		align-items: center;
		justify-content: center;
		margin-right: 0;


		aspect-ratio: 1.5;
	}

	.link-certain-content {
		width: auto;

	}


}

@media screen and (max-width: 992px) {

	nav {
		display: none;
		position: absolute;
		z-index: 100;
		background: #fff;
		box-shadow: rgba(0, 0, 0, 0.6) 0px 5px 5px 3px;
		width: 100%;
		top: 87px;
	}

	.header__phones_wrap {

		grid-template-columns: repeat(2, 1fr);
		gap: 50px clamp(20px, 4vw, 50px);
		margin-inline: auto;
	}

	.header__phones_wrap>li {
		/*! width: 100%; */
	}

	.header__phones_wrap>li>a {
		/* 		width: 100%;
		display:inline-block; */
	}

	.menu {

		flex-direction: column;
		width: 100%;
	}

	.menu>li {
		position: relative;
		display: block;
/*		pointer-events: none;*/
	}

	.menu>li>a {
		display: block;

	}

	.menu>li li {

/*		pointer-events: all;*/
	}


	.menu>.menu-item-has-children::after {
		content: '';
		background-image: url('img/arrow.svg');
		background-size: 40%;
		background-repeat: no-repeat;
		background-position: center;
		position: absolute;
		width: 51px;
		height: 51px;
		top: 0;
		right: 0;
		cursor: pointer;
		transform: rotate(90deg);
		transition-duration: .4s;
		pointer-events: all;
	}

	.menu>.menu-item-has-children.submenu-opened::after {
		transform: rotate(270deg);
	}

	.menu>li>a {
		white-space: nowrap;
		padding: 15px 20px;
	}

	.menu .sub-menu {
		display: none;
		position: static;
		box-shadow: none;
		opacity: 1;
		visibility: visible;
		width: 100%;
		transition: none;
	}

	.menu .sub-menu a {
		font-size: 12px;
		padding: 8px 15px 8px 35px;
		white-space: nowrap;
	}

	.menu>li:hover>a::after {
		display: none;
	}

	.menu>li:hover>.sub-menu {
		border-color: transparent;
	}

	.header__contacts .row {
		position: relative;
	}

	.advantages-time::before {
		content: '';
		position: absolute;
		top: 0;
		left: -100%;
		height: 100%;
		width: 100%;
		background: #1f1f1f;
	}

	.advantages-price::before {
		content: '';
		position: absolute;
		top: 0;
		left: -300%;
		height: 100%;
		width: 300%;
		background: #141414;
	}

	.advantages .row {

		flex-direction: column;
	}

	.advantages .row>div {
		/* padding: 40px 0px 25px; */
	}

	.advantages .row>div img {
		/* width: 50px;
		height: 50px; */
	}

	.advantages-title,
	.advantages-desc {
		/* width: 300px;
		margin-left: auto;
		margin-right: auto; */
	}

	footer>.container {
		width: calc(100% - 30px);
		max-width: none;
	}



}

@media screen and (max-width: 768px) {
	.header__top .row {
		/*   justify-content: space-between; */
		margin-inline: 0;
	}

	.header__top .container {
		display: contents;
	}

	.services-listing .grid_service {

		grid-template-columns: minmax(80vw, 400px);
		gap: 25px;
		justify-content: center;


	}

	footer .row {

		flex-direction: column;
		gap: 25px;
	}

	footer>.container {
		width: 100%;
		max-width: 540px;
	}

	.footer-col-list img {

		margin-right: 15px;
	}

	.advantages-time::before {
		content: '';
		position: absolute;
		top: 0;
		left: -100%;
		height: 100%;
		width: 100%;
		background: #1f1f1f;
	}

	.advantages-price::before {
		content: '';
		position: absolute;
		top: 0;
		left: -300%;
		height: 100%;
		width: 300%;
		background: #141414;
	}

	.advantages .row {

		flex-direction: column;
	}

	.advantages .row>div {
		padding: 40px 0px 25px;
	}

	.advantages .row>div img {
		width: 50px;
		height: 50px;
	}

	.advantages-title,
	.advantages-desc {
		width: 300px;
		margin-left: auto;
		margin-right: auto;
	}

	.price-block .row {

		flex-direction: column;
		margin-inline: 0;
		flex-wrap: wrap;
	}

	.price-block-table {
		width: 100%;
		margin: 0 0 30px;
		min-width: unset;
	}


}



@media screen and (max-width: 575px) {
	.header__top .row {

		flex-wrap: nowrap;
		align-content: center;
		align-items: center;
	}

	.header__top a {
		font-size: 12px;
		padding: 9px 15px;
		flex-grow: 1;
		text-align: center;
	}

	.header__logo {
		margin-right: 0;
	}

	.header__logo a {
		padding: 5px 15px;
	}

	.header__logo::after {
		right: -20px;
		border-width: 28px 0 28px 20px;

	}

	.header__phones {
		/*! display: none; */
	}

	.header__contacts .row {
		justify-content: space-between;
		margin-inline: 0;
	}

	nav {
		display: none;
		position: absolute;
		z-index: 100;
		background: #fff;
		box-shadow: rgba(0, 0, 0, 0.6) 0px 5px 5px 3px;
		width: 100%;
		top: 56px;
	}

	.menu {

		flex-direction: column;
		width: 100%;
	}

	.menu>li {
		position: relative;
	}

	.menu>.menu-item-has-children::after {
		content: '';
		background-image: url('img/arrow.svg');
		background-size: 40%;
		background-repeat: no-repeat;
		background-position: center;
		position: absolute;
		width: 51px;
		height: 51px;
		top: 0;
		right: 0;
		cursor: pointer;
		transform: rotate(90deg);
		transition-duration: .4s;
	}

	.menu>.menu-item-has-children.submenu-opened::after {
		transform: rotate(270deg);
	}

	.menu>li>a {
		white-space: nowrap;
		padding: 15px 20px;
	}

	.menu .sub-menu {
		display: none;
		position: static;
		box-shadow: none;
		opacity: 1;
		visibility: visible;
		width: 100%;
		transition: none;
	}

	.menu .sub-menu a {
		font-size: 12px;
		padding: 8px 15px 8px 35px;
		white-space: nowrap;
	}

	.menu>li:hover>a::after {
		display: none;
	}

	.menu>li:hover>.sub-menu {
		border-color: transparent;
	}

	.menu>li.submenu-opened {
		border-bottom: 4px solid #fbd232;
	}

	.header__phones .container {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 5vh;
}


	.price-block .row {

		flex-direction: column;

		flex-wrap: wrap;
	}

	.price-block {
		padding: 30px 0;
	}

	.price-block-table {
		/* 		width: calc(100% - 30px);
		margin: 0 15px 30px;
		min-width: unset; */
	}

	.price-block-table-title {
		font-size: 16px;
		padding: 8px 5px;
	}

	.price-block-table-price {
		padding: 15px 30px;
		font-size: 42px;
	}

	.price-block-table-button a {
		padding: 15px 0;
		font-size: 16px;
	}

	.price-block-text h1 {
		font-size: 24px;
	}

	.price-block-text h2 {
		font-size: 20px;
	}

	.price-block-text h3 {
		font-size: 18px;
	}

	.advantages .row {

		flex-direction: column;
	}

	.advantages .row>div {
		padding: 40px 0px 25px;
	}

	.advantages .row>div img {
		width: 50px;
		height: 50px;
	}

	.advantages-title,
	.advantages-desc {
		width: 300px;
		margin-left: auto;
		margin-right: auto;
	}

	.services-text h2 {
		font-size: 20px;
		margin-top: 25px;
	}

	.services-text h3 {
		font-size: 18px;
		margin-top: 25px;
	}

	footer {
		padding: 40px 0;
	}



	.footer-col-title {
		margin-top: 25px;
		margin-bottom: 15px;
		padding-bottom: 15px;
	}

	.privacy {
		padding: 15px 0;
		font-size: 12px;
	}

	.breadcrumbs {
		padding: 10px 15px;
	}

	.breadcrumbs-home {
		width: 16px;
	}

	.breadcrumbs .separator {
		width: 10px;
	}

	.breadcrumbs span {
		font-size: 14px;
	}

	.serices-parent-entry-text {
		margin: 30px 0;
		padding: 0px 15px;
		font-size: 15px;
	}

	.serices-parent-entry-text img {
		width: 120px;
		height: 120px;
	}

	.serices-parent-entry-text h1 {
		font-size: 24px;
	}

	.services-listing .row {

		flex-direction: column;
	}

	.services-listing .col:not(:last-child) {
		margin-bottom: 25px;
	}

	.business-title {
		padding: 20px 15px;
	}

	.business-title h1 {
		font-size: 24px;
	}

	.business-links .row {

		flex-direction: column;
	}

	.link-certain {
		/*! border: none; */
		padding: 15px;

		flex-direction: column;
	}

	.link-certain-img {
		/* min-width: unset;
		width: 100%;
		height: calc(100vw * 0.65);
		padding: 20px 0; */
	}

	.business-links .container {
		max-width: calc(100% - 30px);
	}

	.link-certain-content {
		width: auto;
	}

	.link-certain:not(:last-child) .link-certain-content {
		margin-bottom: 40px;
	}

	.business-links .link-certain-img a {
		padding: 0px 15px;
		font-size: 20px;
	}

	.business-links .link-certain-title {
		padding: 10px 15px;
		margin-bottom: 10px;
	}

	.link-certain-title a {
		font-size: 20px;
	}

	.link-certain-desc {
		padding: 0px 15px;
	}

	.popup {
		width: 80%;
		margin-left: 10%;
		margin-right: 10%;
		padding: 50px 20px 20px;
	}

	.popup input {
		max-width: 100%;
		width: 100%;
	}

	.header__phones .container {
		max-width: 100vw;
	}
}


@media screen and (max-width: 480px) {
	.header__phones_wrap {

		grid-template-columns: 1fr;
		gap: 40px 0;

	}

	.header__phones {


		padding-top: 3.5vh;
		padding-bottom: 5vh;
		position: relative;


	}

	.top_title {
		font-size: clamp(29px, 8vw, 35px);
		text-wrap: balance;
	}

	.top_subtitle {
		font-size: clamp(27px, 7vw, 32px);

	}

	.header__phones a {
		padding-inline: 50px;
		font-size: 23px;
	}
	.title_wrap {
	padding-inline: 1vw;
	gap: 15px;
}
}