

.header-1 {
	--bar-h: 76px;
	--bar-h-sm: 60px;
	--bar-top: .75rem;                 
	--bar-side: 1rem;                  
	--bar-max: calc(1320px + 100px);   
	--bar-radius: 18px;
	--glass: rgba(255, 255, 255, .72);
	--glass-stuck: rgba(255, 255, 255, .88);
	--edge: rgba(255, 255, 255, .55);
	position: relative;
	z-index: 1030;
}
.header-1 .preload * {transition: none !important;}


.header-1 .header-bar {
	position: fixed; z-index: 1030;
	top: var(--bar-top); left: var(--bar-side); right: var(--bar-side);
	margin-inline: auto; max-width: var(--bar-max);
	background: var(--glass);
	backdrop-filter: blur(16px) saturate(180%);
	-webkit-backdrop-filter: blur(16px) saturate(180%);
	border: 1px solid var(--edge);
	border-radius: var(--bar-radius);
	box-shadow: 0 .5rem 1.5rem rgba(0, 0, 0, .08);
	transition: background .35s ease, box-shadow .35s ease, top .35s cubic-bezier(.19, 1, .22, 1);
}

@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
	.header-1 .header-bar {background: rgba(255, 255, 255, .97);}
}
.header-1 .header-bar.is-stuck {top: .375rem; background: var(--glass-stuck); box-shadow: 0 .75rem 2rem rgba(0, 0, 0, .14);}

.header-1 .header-inner {
	height: var(--bar-h);
	display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
	transition: height .35s cubic-bezier(.19, 1, .22, 1);
}
.header-1 .header-bar.is-stuck .header-inner {height: var(--bar-h-sm);}


.header-1 .header-spacer {height: calc(var(--bar-h) + var(--bar-top) * 2);}

.header-1 .header-logo {position: relative; z-index: 1020; display: inline-flex; align-items: center; padding-right: 1.5rem;}
.header-1 .header-logo img {max-width: 190px; height: auto; transition: transform .35s cubic-bezier(.19, 1, .22, 1), opacity .25s;}
.header-1 .header-bar.is-stuck .header-logo img {transform: scale(.85);}
@media (hover: hover) and (pointer: fine) {
	.header-1 .header-logo:hover img {opacity: .75;}
}


.header-1 .header-toggle {position: relative; z-index: 1020; width: 3rem; height: 3rem; padding: 1rem; cursor: pointer;}
.header-1 .header-toggle > span,
.header-1 .header-toggle::before,
.header-1 .header-toggle::after {display: block; backface-visibility: hidden; width: 1.5rem; height: .125rem; background: var(--bs-body-color); position: absolute; transform: translate(-50%, -50%); top: 50%; left: 50%; transition: .4s cubic-bezier(.19, 1, .22, 1);}
.header-1 .header-toggle::before {content: ''; top: 20%;}
.header-1 .header-toggle::after {content: ''; top: 80%;}
.header-1 .header-checkbox:checked ~ .header-toggle::before {top: 50%; transform: translate(-50%, -50%) rotateZ(135deg);}
.header-1 .header-checkbox:checked ~ .header-toggle::after {top: 50%; transform: translate(-50%, -50%) rotateZ(-135deg);}
.header-1 .header-checkbox:checked ~ .header-toggle > span {transform: translate(-50%, -50%) rotateY(90deg); opacity: 0;}


.header-1 .header-toolbar {
	position: fixed; z-index: 1000;
	top: var(--bar-top); left: var(--bar-side); right: var(--bar-side);
	margin-inline: auto; max-width: var(--bar-max);
	border-radius: var(--bar-radius); border: 1px solid var(--edge);
	max-height: calc(100dvh - var(--bar-top) * 2); overflow-y: auto;
	background: rgba(255, 255, 255, .97);
	backdrop-filter: blur(18px) saturate(180%);
	-webkit-backdrop-filter: blur(18px) saturate(180%);
	transform: translateY(-100%); opacity: 0; visibility: hidden;
	transition: transform .45s cubic-bezier(.19, 1, .22, 1), opacity .35s ease, visibility .45s;
	padding: calc(var(--bar-h) + 1rem) 1.5rem 2rem;
	box-shadow: 0 1rem 2rem rgba(0, 0, 0, .12);
}
.header-1 .header-checkbox:checked ~ .header-toolbar {transform: translateY(0); opacity: 1; visibility: visible;}


.header-1 .header-contacts {gap: .75rem;}
.header-1 .header-city,
.header-1 .header-tel {display: inline-flex; align-items: center; gap: .45rem; margin: 0; white-space: nowrap; color: var(--bs-body-color); text-decoration: none;}
.header-1 .header-city {background: none; border: 0; padding: .25rem .5rem; border-radius: 8px; cursor: pointer; transition: background .2s, color .2s;}
.header-1 .header-city > span {display: inline-block; max-width: 70px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; vertical-align: middle;}
.header-1 .header-city .cities-caret {font-size: .7em; opacity: .5; color: inherit; transition: transform .2s;}
@media (hover: hover) and (pointer: fine) {
	.header-1 .header-city:hover {background: rgba(var(--bs-primary-rgb), .08); color: var(--bs-primary);}
	.header-1 .header-city:hover .cities-caret {transform: translateY(2px);}
}
.header-1 .header-city i,
.header-1 .header-tel i {color: var(--bs-primary); font-size: .875em;}
.header-1 .header-tel {font-weight: 700; transition: color .25s;}
@media (hover: hover) and (pointer: fine) {
	.header-1 .header-tel:hover {color: var(--bs-primary);}
}




.header-1 .header-nav ul {list-style: none; display: flex; flex-direction: column; margin: 0; padding: 0;}
.header-1 .header-nav li {position: relative;}
.header-1 .header-nav a {display: block; padding: .625rem .1rem; color: var(--bs-body-color); text-decoration: none; border-bottom: 1px solid rgba(0, 0, 0, .06); transition: color .25s;}
.header-1 .header-nav li.parent > ul {display: none;}
.header-1 .header-nav li.parent.open > ul {display: block;}
.header-1 .header-nav .accordion-toggle {position: absolute; top: .2rem; right: 0; width: 2.25rem; height: 2.25rem; padding: 0; border: none; border-radius: 8px; background: rgba(var(--bs-primary-rgb), .1); color: var(--bs-primary); display: flex; align-items: center; justify-content: center; transition: transform .3s;}
.header-1 .header-nav li.open > .accordion-toggle {transform: rotateZ(180deg);}

@media (min-width: 1200px) {
	.header-1 .header-toolbar {position: static; border: 0; border-radius: 0; box-shadow: none; max-width: none; background: transparent; backdrop-filter: none; -webkit-backdrop-filter: none; transform: none; opacity: 1; visibility: visible; overflow: visible; max-height: none; flex: auto; padding: 0;}
	.header-1 .header-nav > ul {flex-direction: row;}
	.header-1 .header-nav a {border: none;}
	.header-1 .header-nav li.parent > a {padding-right: 1.3rem;}
	.header-1 .header-nav .accordion-toggle {display: none;}

	
	.header-1 .header-nav > ul > li > a::before {content: ''; position: absolute; left: 1rem; right: 1rem; bottom: .2rem; height: 2px; background: var(--bs-primary); transform: scaleX(0); transition: transform .3s cubic-bezier(.19, 1, .22, 1);}
	.header-1 .header-nav > ul > li:hover > a::before,
	.header-1 .header-nav > ul > li.active > a::before {transform: scaleX(1);}
	.header-1 .header-nav > ul > li:hover > a,
	.header-1 .header-nav > ul > li.active > a {color: var(--bs-primary);}

	
	.header-1 .header-nav li.parent > ul,
	.header-1 .header-nav li.parent.open > ul {display: block;}
	.header-1 .header-nav li ul {
		position: absolute; z-index: 1000; white-space: nowrap; padding: .5rem; min-width: 100%;
		border-radius: 12px; border: 1px solid var(--edge);
		background: rgba(255, 255, 255, .9);
		backdrop-filter: blur(16px) saturate(180%);
		-webkit-backdrop-filter: blur(16px) saturate(180%);
		box-shadow: 0 1rem 2rem rgba(0, 0, 0, .12);
		opacity: 0; visibility: hidden; pointer-events: none; transform: translateY(10px);
		transition: opacity .28s ease, transform .28s cubic-bezier(.19, 1, .22, 1), visibility .28s;
	}
	.header-1 .header-nav > ul > li > ul {top: 100%; left: 0;}
	.header-1 .header-nav li li ul {top: -.5rem; left: 100%; margin-left: .25rem;}
	
	.header-1 .header-nav li li ul::before {content: ''; position: absolute; top: 0; left: -.25rem; width: .25rem; height: 100%;}
	.header-1 .header-nav li.parent:hover > ul,
	.header-1 .header-nav li.parent:focus-within > ul {opacity: 1; visibility: visible; pointer-events: auto; transform: translateY(0);}
	.header-1 .header-nav li ul a {border-radius: 8px; padding: .5rem .75rem;}
	.header-1 .header-nav li ul a:hover {background: rgba(var(--bs-primary-rgb), .08); color: var(--bs-primary);}

	.header-1 .header-nav li.parent > a {padding-right: 1.75rem;}
	.header-1 .header-nav li.parent > a::after {content: '\f107'; font-family: "Font Awesome 6 Free"; font-weight: 900; font-size: .7rem; position: absolute; top: 50%; right: .5rem; transform: translateY(-50%); transition: transform .3s;}
	.header-1 .header-nav li.parent:hover > a::after {transform: translateY(-50%) rotateZ(180deg);}
	.header-1 .header-nav li li.parent > a::after {content: '\f105'; transform: translateY(-50%);}
	.header-1 .header-nav li li.parent:hover > a::after {transform: translateY(-50%) translateX(3px);}
}

@media (min-width: 1400px) {
	.header-1 .header-nav a {padding: .625rem 1rem;}
}


.cities-list {display: grid; grid-template-columns: repeat(auto-fill, minmax(11rem, 1fr)); gap: .25rem;}
.cities-item {display: block; padding: .5rem .75rem; border-radius: 8px; color: var(--bs-body-color); text-decoration: none; transition: background .2s, color .2s;}
.cities-item:hover {background: rgba(var(--bs-primary-rgb), .08); color: var(--bs-primary);}
.cities-item.is-active {background: var(--bs-primary); color: var(--bs-primary-text); font-weight: 700;}
#cities .modal-dialog {max-width: 56rem;}


.header-1 .breadcrumbs {padding: 1rem 0 .25rem;}
.header-1 .breadcrumbs .breadcrumb {margin: 0; flex-wrap: wrap;}
.header-1 .breadcrumbs a {color: var(--bs-secondary-color); text-decoration: none; transition: color .2s;}
.header-1 .breadcrumbs a:hover {color: var(--bs-primary);}
.header-1 .breadcrumbs .breadcrumb-item.active a {color: var(--bs-body-color); pointer-events: none;}


.header-1 .header-nav li.parent > a[href="#"] {color: var(--bs-secondary-color);}
.header-1 .header-nav li:not(.parent) > a[href="#"] {color: var(--bs-secondary-color); opacity: .75; pointer-events: none; cursor: default;}
.header-1 .header-nav li:not(.parent) > a[href="#"]::after {
	content: "скоро";
	display: inline-block;
	margin-left: .4rem;
	padding: .05rem .4rem;
	font-size: .7em;
	line-height: 1.4;
	border-radius: .5rem;
	background: rgba(var(--bs-primary-rgb), .08);
	color: var(--bs-primary);
	vertical-align: middle;
	opacity: .9;
}

@media (prefers-reduced-motion: reduce) {
	.header-1 *, .header-1 *::before, .header-1 *::after {transition: none !important; animation: none !important;}
}




.home-8 {position: relative; overflow: hidden;}
.home-8 .container {padding-top: 2.5rem; padding-bottom: 24rem;}

.home-8 .hero-cta {max-width: 355px;}
.home-8 .hero-cta .btn.btn-primary {border-radius: 10px; border: 0; box-shadow: 0px 4px 14px 0px rgba(236, 55, 55, 0.30), 0px 2px 2px 0px rgba(236, 55, 55, 0.05);}

.home-8 .parallaxScene {position: absolute; inset: 0; z-index: 1; max-width: 1920px; pointer-events: none;}
.home-8 .decor-layer {position: absolute !important; inset: 0; pointer-events: none;}
.home-8 .decor {position: absolute;}
.home-8 .decor-1 {top: 32%; right: -4%;}
.home-8 .decor-2 {top: 54%; right: -1%;}
.home-8 .decor-3 {top: 0; right: 8%;}
.home-8 .decor-4 {right: 31%; top: 29%;}
.home-8 .decor-5 {right: 36.5%; top: 67%;}
.home-8 .decor-6 {right: 34%; top: 18%;}
.home-8 .decor-7 {right: 41%; top: 70%;}
.home-8 .decor-8 {right: 47.5%; top: 59%;}
.home-8 img {pointer-events: none; user-select: none;}

@media screen and (min-width: 576px) {
	.home-8 .container {padding-top: 10.9rem; padding-bottom: 18.8rem;}
}




.virus-services-1 .card {border: 0; border-radius: 20px; padding-top: 10.25rem; background: #F1F1F1;}

.virus-services-1 .btn-outline-primary:hover {color: #fff; background-color: #EC3737; border-color: #EC3737;}

.virus-services-1 .image {position: absolute; top: -23%; left: 50%; transform: translateX(-50%); width: 180px; height: 180px;}

@media screen and (min-width: 768px) {
	.virus-services-1 .card {background: url('/assets/images/pages/proverka-na-virusi/virus-services-1/054.svg') center no-repeat; background-position: center; background-size: 100% 100%;}
}
@media screen and (min-width: 1200px) {
	.virus-services-1 .card {padding-top: 6.25rem;}
}


.module.virus-services-1 {padding:96px 0;}



.protection-services-1 {position: relative; padding-top: 13.4rem;}
.protection-services-1 .mod-title { line-height: 150%;}
.protection-services-1 .images img {max-width: 100%;}

.protection-services-1 .mod-card {position: relative; width: 20rem; border-radius: 1.25rem; background: #fff; box-shadow: 0px 4px 40px 0px rgba(0, 0, 0, 0.10), 0px 1px 1px 0px rgba(0, 0, 0, 0.10);}
.protection-services-1 .card-double-0 {z-index: 1;}
.protection-services-1 .card-double-1 {z-index: 2;}
.protection-services-1 .card-double-2 {z-index: 3;}

.protection-services-1 .card-1 {margin-top: -1.25rem;}
.protection-services-1 .card-double-1 {margin-top: -1.2rem; margin-bottom: -1.3rem;}

@media screen and (min-width: 1400px) {
	.protection-services-1 .images img {max-width: none;}
}



.need-protection-1 {position: relative; overflow: hidden;}
.need-protection-1 .decor .decor-1 {top: 10%; left: -7%;}
.need-protection-1 .decor .decor-2 {top: 32%; right: 54%;}
.need-protection-1 .decor .decor-3 {max-width: 100%;}
.need-protection-1 .stat {padding-top: 10rem; padding-bottom: 5rem; z-index: 10;}

@media screen and (min-width: 576px) {
	.need-protection-1 .stat {padding-bottom: 29rem;}
	.need-protection-1 .decor .decor-3 {top: 55%; right: 3%; position: absolute;}
}
@media screen and (min-width: 992px) {
	.need-protection-1 .stat {padding-left: 6rem;}
}



.what-do-1 {position: relative; padding: 5rem 0 0; overflow: hidden; margin: 1rem 0;}

.what-do-1 .circle {position: relative; z-index: 1; width: 63rem; height: 63rem; float: left; border-radius: 50%; border: 5px dashed #EFABAB;}
.what-do-1 .image {min-width: 126px; height: 126px; border-radius: 50%; z-index: 1;}
.what-do-1 .parallaxScene {position: absolute; width: 1920px; max-width: 100%; bottom: 0; top: 0; right: 0; z-index: -1;}
.what-do-1 .parallaxScene .item-1 {position: absolute; bottom: 20%; right: -33%;}
.what-do-1 .parallaxScene .item-2 {position: absolute; bottom: 17%; right: -9%;}
.what-do-1 .parallaxScene .item-3 {position: absolute; bottom: 14%; right: -5%;}
.what-do-1 .parallaxScene .item-4 {position: absolute; bottom: 33%; right: 7%; z-index: -1;}
.what-do-1 .mod-item {position: relative;}

.what-do-1 .image {background: #fff; box-shadow: 4px 4px 20px 0px rgba(0, 0, 0, 0.25);}

@media screen and (min-width: 576px) {
	.what-do-1 {padding: 5rem 0;}
	.what-do-1 .mod-item:nth-child(1) {margin-left: -8rem;}
	.what-do-1 .mod-item::before {content: ''; position: absolute; width: 1.6rem; height: 1.6rem; background: #EFABAB; border-radius: 50%;}
	.what-do-1 .mod-item::after {content: ''; position: absolute; width: 5rem; height: 0; border: 3px dashed #EFABAB; z-index: -100;}
	.what-do-1 .mod-item:first-child::before {right: -8rem; bottom: -3.5rem;}
	.what-do-1 .mod-item:nth-child(2)::before {right: -3rem; bottom: 1rem;}
	.what-do-1 .mod-item:nth-child(3)::before {right: -3.1rem; bottom: 6rem;}
	.what-do-1 .mod-item:last-child::before {right: -8rem; bottom: 10rem;}

	.what-do-1 .mod-item:first-child::after {right: -6.5rem; width: 10rem; bottom: 0rem; transform: rotate(27.9deg); z-index: 0}
	.what-do-1 .mod-item:nth-child(2)::after {right: -0.5rem; width: 5rem; bottom: 2.5rem; transform: rotate(6.38deg); z-index: 0}
	.what-do-1 .mod-item:nth-child(3)::after {right: -1rem; bottom: 5rem; width: 5rem; transform: rotate(-14.6deg); z-index: 0}
	.what-do-1 .mod-item:last-child::after {right: -7rem; width: 10rem; bottom: 7.5rem; transform: rotate(-31.94deg); z-index: 0}
}
@media screen and (min-width: 992px) {
	.what-do-1 .mod-item:first-child::after {right: -6.5rem; width: 10rem; bottom: 0rem; transform: rotate(27.9deg); z-index: 0}
	.what-do-1 .mod-item:nth-child(2)::after {right: -0.5rem; width: 10rem; bottom: 2.5rem; transform: rotate(6.38deg); z-index: 0}
	.what-do-1 .mod-item:nth-child(3)::after {right: -1rem; bottom: 5rem; width: 10rem; transform: rotate(-14.6deg); z-index: 0}
	.what-do-1 .mod-item:last-child::after {right: -7rem; width: 10rem; bottom: 7.5rem; transform: rotate(-31.94deg); z-index: 0}
}
@media screen and (min-width: 1400px) {
	.what-do-1 .parallaxScene .item-1 {right: -26%;}
	.what-do-1 .parallaxScene .item-4 {right: 19%;}
}
@media screen and (min-width: 1600px) {
	.what-do-1 .h4 {white-space: nowrap}
}



.virus-ordered-competitors-1 {position: relative;}
.virus-ordered-competitors-1 .red {color: #EC3737;}
.virus-ordered-competitors-1 .row {padding-top: 6rem; padding-bottom: 10rem;}
.virus-ordered-competitors-1 .btn.btn-primary {margin-top: 2.5rem;}

.virus-ordered-competitors-1 [data-image="image"] img {max-width: 100%;}

@media screen and (max-width: 767.98px) {
	.virus-ordered-competitors-1 .module-background.image {background-image: url('/assets/images/pages/proverka-na-virusi/virus-ordered-competitors-1/027-2.jpg') !important; background-size: 100% 100% !important;}
}
@media screen and (min-width: 576px) {
	.virus-ordered-competitors-1 .row {padding-bottom: 6rem;}
	.virus-ordered-competitors-1 .btn.btn-primary {margin-top: 7.5rem;}
}
@media screen and (min-width: 1200px) {
	.virus-ordered-competitors-1 [data-image="image"] img {display: block; position: absolute; top: -20%; left: -11%;}
}
@media screen and (min-width: 1921px) {
	.virus-ordered-competitors-1 .container {position: relative;}
}



.virus-stages-1 {position: relative; margin-top: 18rem; overflow: hidden;}
.virus-stages-1 .container {display: flex; flex-direction: column; gap: 2rem;}

.virus-stages-1 .stage-1 {background: #ED8080; border-radius: 2.5rem; gap: 1.25rem; z-index: 1;}
.virus-stages-1 .stage-2 {background: #ED5151; border-radius: 2.5rem; gap: 1.25rem; z-index: 1;}
.virus-stages-1 .stage-3 {background: #EC3737; border-radius: 2.5rem; gap: 1.25rem; z-index: 1;}
.virus-stages-1 .stage-4 {background: #D91E1E; border-radius: 2.5rem; gap: 1.25rem; z-index: 1;}

.virus-stages-1 .image-1 {display: none;}
.virus-stages-1 .image-2 {display: none;}
.virus-stages-1 .image-4 {display: none;}

.virus-stages-1 .stage-1,
.virus-stages-1 .stage-2,
.virus-stages-1 .stage-3,
.virus-stages-1 .stage-4 {transform: skewX(-15deg);}

.virus-stages-1 .text,
.virus-stages-1 .item-subtext,
.virus-stages-1 .item-title {transform: skewX(15deg);}

@media screen and (min-width: 1200px) {
	.virus-stages-1 {overflow: visible;}
	.virus-stages-1 .container {gap: 0;}
	.virus-stages-1 .stage-1 {margin-left: 12.6rem;}
	.virus-stages-1 .mod-item-1 {bottom: 2rem; left: 2rem;}
	.virus-stages-1 .mod-item-2 {right: 6rem;}
	.virus-stages-1 .mod-item-3 {bottom: 11rem; left: 3rem;}
	.virus-stages-1 .mod-item-4 {bottom: 7.5rem; right: 20.5rem;}
	.virus-stages-1 .image-1 {display: block; top: 40%; right: 19%;}
	.virus-stages-1 .image-2 {display: block; left: 32%; top: 37%;}
	.virus-stages-1 .image-4 {display: block; right: 10%; bottom: 55%;}
}

@media screen and (min-width: 1400px) {
	.virus-stages-1 .image-1 {top: 40%; right: 19%;}
	.virus-stages-1 .image-2 {left: 32%; top: 21%;}
	.virus-stages-1 .image-4 {right: 17%; bottom: 53%;}
}


.module.virus-stages-1 {padding:48px 0;}



.if-site-infected-1 {margin: 5rem 0; position: relative;}
.if-site-infected-1 .mod-form {margin: 4rem 0 4rem 3rem; gap: 1.875rem; display: flex; flex-direction: column;}
.if-site-infected-1 .btn.btn-primary {color: #fff; background-color: #EC3737; padding: .75rem 3.13rem; border-radius: 5px; border: 2px solid #FFF;}
.if-site-infected-1 .btn.btn-primary:hover {background: #fff; color: #EC3737; border-color: #fff;}
.if-site-infected-1 input {padding: .75rem 1.25rem; max-width: 220px; border-radius: 5px;}

.if-site-infected-1 .decor .decor-1 {display: none;}
.if-site-infected-1 .decor .decor-2 {display: none;}

@media screen and (min-width: 992px) {
	.if-site-infected-1 {margin: 13rem 0;}
}
@media screen and (min-width: 1400px) {
	.if-site-infected-1 .mod-form {margin: 4rem 0 4rem 3rem;}
}
@media screen and (min-width: 1600px) {
	.if-site-infected-1 .mod-form {margin: 7rem 0 7rem 3rem;}
	.if-site-infected-1 .decor .decor-1 {display: block; left: 1%; top: -10%;}
	.if-site-infected-1 .decor .decor-2 {display: block; right: 0; bottom: -15%;}
}




.you-pay-work-1 {position: relative; overflow: hidden;}
.you-pay-work-1 .red {color: #EC3737;}
.you-pay-work-1 .module-background.image {top: 130px; background-size: 100% 500px !important; background-repeat: no-repeat;}

.you-pay-work-1 .employees {position: relative; text-align: center;}
.you-pay-work-1 .employees::before {content: ''; position: absolute; top: 50%; left: 50%; width: 200px; height: 200px; background: #EC3737; transform: translate(-50%, -50%) rotate(45deg); border: .5rem #fff solid; outline: .5rem #EC3737 solid; border-radius: 20px;}
.you-pay-work-1 .employees::after {content: url('/assets/images/pages/proverka-na-virusi/you-pay-work-1/041.svg'); position: relative; margin: 5rem 0 40rem; display: block;}
.you-pay-work-1 .employees .item {position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); z-index: 50;}
.you-pay-work-1 .employees .item .item-card {border-radius: 20px; transform: rotate(45deg); background: #EC3737; border: .5rem #fff solid; outline: .5rem #EC3737 solid; width: 120px; height: 120px; overflow: hidden; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: .3s; transform-origin: center;}
.you-pay-work-1 .employees .item .item-card > * {transform: rotate(-45deg); transition: .3s;}
.you-pay-work-1 .employees .item:nth-child(1) {margin: 175px 0 0 -90px;}
.you-pay-work-1 .employees .item:nth-child(2) {margin: 175px 0 0 90px;}
.you-pay-work-1 .employees .item:nth-child(3) {margin: 388px 0 0 -90px;}
.you-pay-work-1 .employees .item:nth-child(4) {margin: 388px 0 0 90px;}

.you-pay-work-1 .employees .item .item-img {position: absolute; top: -30px; left: -30px; right: -30px; bottom: -30px; opacity: 0;}
.you-pay-work-1 .employees .item .item-img img {width: 100%; height: 100%; object-fit: cover;}

.you-pay-work-1 .employees .item .item-desc {display: none; position: absolute; background: #fff; padding: 1rem; border-radius: 4px; box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.10), -3px 3px 9px 0px rgba(0, 0, 0, 0.10), -10px 13px 17px 0px rgba(0, 0, 0, 0.09), -23px 30px 23px 0px rgba(0, 0, 0, 0.05), -41px 53px 27px 0px rgba(0, 0, 0, 0.01), -65px 83px 29px 0px rgba(0, 0, 0, 0.00);}

.you-pay-work-1 .employees .item:hover .item-card {transform: rotate(405deg);}
.you-pay-work-1 .employees .item:hover .item-card .item-title {opacity: 0;}
.you-pay-work-1 .employees .item:hover .item-card .item-img {opacity: 1;}
.you-pay-work-1 .employees .item:hover .item-desc {display: block;}

.you-pay-work-1 .employees .item .item-desc {bottom: -41%; left: 50%; transform: translateX(-50%); width: 160px;}

@media screen and (min-width: 414px) {
	.you-pay-work-1 .employees .item .item-desc {bottom: -84%; width: 150px;}
	.you-pay-work-1 .employees::after {margin: 20rem 0;}
	.you-pay-work-1 .employees .item:nth-child(1) {margin: -125px 0 0 125px;}
	.you-pay-work-1 .employees .item:nth-child(2) {margin: -125px 0 0 -125px;}
	.you-pay-work-1 .employees .item:nth-child(3) {margin: 125px 0 0 125px;}
	.you-pay-work-1 .employees .item:nth-child(4) {margin: 125px 0 0 -125px;}
}
@media screen and (min-width: 576px) {
	.you-pay-work-1 {overflow: visible;}
	.you-pay-work-1 .employees::before {width: 250px; height: 250px;}
	.you-pay-work-1 .employees .item .item-card {width: 145px; height: 145px;}
	.you-pay-work-1 .module-background.image {background-size: 100% 500px !important;}
	.you-pay-work-1 .employees .item .item-desc {width: 230px; bottom: -100%;}
	.you-pay-work-1 .employees .item:nth-child(1) {margin: -157px 0 0 -159px;}
	.you-pay-work-1 .employees .item:nth-child(2) {margin: -157px 0 0 159px;}
	.you-pay-work-1 .employees .item:nth-child(3) {margin: 157px 0 0 -159px;}
	.you-pay-work-1 .employees .item:nth-child(4) {margin: 157px 0 0 159px;}
}
@media screen and (min-width: 768px) {
	.you-pay-work-1 .module-background.image {max-width: none; background-size: auto auto !important;}
	.you-pay-work-1 .employees .item .item-desc {width: 270px;}
	.you-pay-work-1 .employees .item:nth-child(1) {margin: -191px 0 0 -197px;}
	.you-pay-work-1 .employees .item:nth-child(2) {margin: -191px 0 0 197px;}
	.you-pay-work-1 .employees .item:nth-child(3) {margin: 191px 0 0 -197px;}
	.you-pay-work-1 .employees .item:nth-child(4) {margin: 191px 0 0 197px;}
}
@media screen and (min-width: 992px) {
	.you-pay-work-1 .employees .item .item-desc {width: 400px;}
}
@media screen and (min-width: 1500px) {
	.you-pay-work-1 .employees .item .item-desc {bottom: 18%; right: 150%; transform: none; left: auto;}
	.you-pay-work-1 .employees .item:nth-child(2) .item-desc,
	.you-pay-work-1 .employees .item:nth-child(6) .item-desc,
	.you-pay-work-1 .employees .item:nth-child(4) .item-desc {right: auto; left: 150%;}
}


.module.you-pay-work-1 {padding:80px 0;}


.fast-protection-1 {position: relative; overflow: hidden;}
.fast-protection-1 .module-background.image {background-size: 100% 100% !important;}

.fast-protection-1 .btn {padding: .5rem 2rem;}
.fast-protection-1 input {padding: .5rem 1.25rem;}

.fast-protection-1 .mod-block_bg::before {
	content: '';
	position: absolute;
	top: 0; bottom: 0; left: 0; right: 0;
	z-index: -1;
	pointer-events: none;
	background-color: var(--bs-light);
}

.fast-protection-1 .send_form {display: flex; flex-wrap: wrap; gap: 1rem; align-items: center;}
.fast-protection-1 .send_form .mb-3 {flex: 1 1 12rem; margin-bottom: 0 !important;}
.fast-protection-1 .send_form .btn {width: auto !important;}
.fast-protection-1 .send_form .form-consent {flex: 1 0 100%;}

.fast-protection-1 .image {display: none;}

@media screen and (min-width: 1200px) {
	.fast-protection-1 .image {display: block; top: 50%; right: 0; transform: translateY(-50%); width: 40%; max-width: 620px; z-index: -1;}
	.fast-protection-1 .image img {width: 100%; height: auto;}
}



.popular-services-1 {position: relative;}

.popular-services-1 .item-title {text-align: center; line-height: 135%;}
.popular-services-1 .item-img img {max-width: 70%;}
.popular-services-1 a,
.popular-services-1 a:hover {color: #fff;}

@media screen and (min-width: 992px) {
	.popular-services-1 .item-img img {max-width: 100%;}

	.popular-services-1 .module-background.image {background-image: url('/assets/images/pages/proverka-na-virusi/popular-services-1/068.png') !important; background-size: auto !important;}
}


.module.popular-services-1 {padding:160px 0;}


.finding-errors-1 { position: relative; padding: 9rem 0 18rem; overflow: hidden; }
.finding-errors-1 .module-background.image { background-size: auto 100%; }
.finding-errors-1 .btn-outline-primary { border-radius: 5px; border: 2px solid #FFF; background-color: #EC3737; }
.finding-errors-1 .btn-outline-primary:hover { color: #fff; background-color: #EC3737; border-color: #fff; }
.finding-errors-1 .image-1 { top: -40%; left: 0; }
.finding-errors-1 .image-2 { right: 10%; bottom: -30%; }



.answers-questions-1 { margin: 10rem 0; }

.answers-questions-1 .accordion {
	--bs-accordion-btn-focus-box-shadow: none;
	--bs-accordion-bg: transparent;
	--bs-accordion-active-bg: #F1F1F1;
	--bs-accordion-active-color: #000;
	--bs-accordion-border-color: transparent;
}

.answers-questions-1 .accordion-item {
	background: #F1F1F1;
	border: 0;
	border-radius: 1rem;
	overflow: hidden;
}

.answers-questions-1 .accordion-button {
	background: #F1F1F1;
	color: #000;
	text-decoration: none;
	padding: 1.25rem 1.5rem;
	align-items: flex-start;
}

.answers-questions-1 .accordion-button:hover { color: var(--bs-primary); }
.answers-questions-1 .accordion-button::after { display: none; }
.answers-questions-1 .accordion-button:not(.collapsed) { box-shadow: none; }

.answers-questions-1 .faq-chevron {
	margin-top: 0.25rem;
	transition: transform 0.3s ease;
}

.answers-questions-1 .accordion-button:not(.collapsed) .faq-chevron {
	transform: rotate(180deg);
}

.answers-questions-1 .accordion-body {
	padding: 0 1.5rem 1.25rem;
	line-height: 1.6;
}



.consequences-1 {position: relative; margin-top: 13.25rem;}
.consequences-1 .row {padding: 0 0 8.6rem;}
.consequences-1 .row .image img {width: 100%;}
.consequences-1 .red {color: #EC3737;}

@media screen and (min-width: 992px) {
	.consequences-1 .row {padding: 13.25rem 0 8.6rem;}
}
@media screen and (min-width: 1400px) {
	.consequences-1 .container {position: relative;}
	.consequences-1 .row .image {position: absolute; top: -5%; left: -11%;}
}


.services-map-1 .services-tile {
	border: 1px solid rgba(0, 0, 0, .08);
	border-radius: 1rem;
	background: var(--bs-body-bg);
	cursor: pointer;
	transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.services-map-1 .services-tile:hover {
	transform: translateY(-4px);
	box-shadow: 0 1rem 2.5rem rgba(0, 0, 0, .08);
	border-color: var(--bs-primary);
}

.services-map-1 .tile-ico {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 3.25rem;
	height: 3.25rem;
	flex: 0 0 auto;
	border-radius: .85rem;
	background: rgba(var(--bs-primary-rgb), .1);
	color: var(--bs-primary);
}
.services-map-1 .tile-title {
	line-height: 1.15;
}

.services-map-1 .tile-list li {
	padding-block: .4rem;
	border-top: 1px solid rgba(0, 0, 0, .05);
}
.services-map-1 .tile-list > li:first-child {
	border-top: 0;
}
.services-map-1 .tile-list a {
	color: var(--bs-body-color);
	text-decoration: none;
	transition: color .2s ease, padding-left .2s ease;
	display: inline-flex;
	align-items: center;
	gap: .5rem;
}
.services-map-1 .tile-list a::before {
	content: "\f105"; 
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	color: var(--bs-primary);
	opacity: 0;
	transition: opacity .2s ease;
}
.services-map-1 .tile-list a:hover {
	color: var(--bs-primary);
	padding-left: .35rem;
}
.services-map-1 .tile-list a:hover::before {
	opacity: 1;
}

.services-map-1 .svc-soon {
	opacity: .75;
}
.services-map-1 .svc-soon::after {
	content: "скоро";
	display: inline-block;
	margin-left: .4rem;
	padding: .05rem .4rem;
	border-radius: .5rem;
	background: rgba(var(--bs-primary-rgb), .08);
	color: var(--bs-primary);
	vertical-align: middle;
	opacity: .9;
}

.services-map-1 .tile-sublist {
	margin: .25rem 0 .25rem 1.35rem;
	padding-left: .75rem;
	border-left: 2px solid rgba(var(--bs-primary-rgb), .15);
}
.services-map-1 .tile-sublist li {
	padding-block: .2rem;
	border: 0;
}


.services-map-1 .services-tile--accent {
	border-color: var(--bs-primary);
	background: linear-gradient(180deg, rgba(var(--bs-primary-rgb), .07), rgba(var(--bs-primary-rgb), .02));
	box-shadow: 0 .5rem 1.5rem rgba(var(--bs-primary-rgb), .1);
}
.services-map-1 .services-tile--accent .tile-ico {
	background: var(--bs-primary);
	color: var(--bs-primary-text);
}
.services-map-1 .services-tile--accent:hover {
	box-shadow: 0 1rem 2.5rem rgba(var(--bs-primary-rgb), .18);
}


.services-map-1 .services-map--compact .services-tile {
	border: 0;
	border-radius: 0;
	background: transparent;
	padding: 0 !important;
}
.services-map-1 .services-map--compact .services-tile:hover {
	transform: none;
	box-shadow: none;
}
.services-map-1 .services-map--compact .tile-ico {
	width: 2.5rem;
	height: 2.5rem;
	border-radius: .6rem;
}
.services-map-1 .services-map--compact .tile-list li {
	border-top: 0;
	padding-block: .2rem;
}


.services-map-1 .svc-toggle {
	text-decoration: none;
	color: inherit;
	cursor: pointer;
}
.services-map-1 .svc-toggle:hover .tile-title {
	color: var(--bs-primary);
}
.services-map-1 .svc-caret {
	transition: transform .2s ease;
}
.services-map-1 .svc-toggle:not(.collapsed) .svc-caret {
	transform: rotate(180deg);
}


.module.services-map-1 {padding:80px 0;}



.article-1 {padding: 5rem 0;}

.article-1 .article-body {height: 400px; overflow: hidden; position: relative; max-width: 1320px;}

.article-1 .article-body::after {
	content: ''; position: absolute; right: 0; bottom: 0; left: 0; height: 200px;
	background: linear-gradient(to top, var(--bs-body-bg), rgba(255, 255, 255, 0));
	pointer-events: none;
}

.article-1 .article-checkbox:checked ~ .article-schema .article-body {height: auto;}
.article-1 .article-checkbox:checked ~ .article-schema .article-body::after {background: none;}


.article-1 .article-checkbox {
	position: absolute;
	width: 1px;
	height: 1px;
	margin: -1px;
	padding: 0;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}
.article-1 .article-checkbox:focus-visible + .article-label {
	box-shadow: 0 0 0 .25rem rgba(var(--bs-primary-rgb), .25);
}

.article-1 .label-less {display: none;}
.article-1 .article-checkbox:checked + .article-label .label-more {display: none;}
.article-1 .article-checkbox:checked + .article-label .label-less {display: inline;}

.article-1 .article-body .body,
.article-1 .article-body {line-height: 1.5;}
.article-1 .article-body p {margin-bottom: 1rem;}
.article-1 .article-body h2 {margin-bottom: 1.5rem;}

.article-1 .article-body th,
.article-1 .article-body td {border: 1px solid #000; padding: 8px; text-align: left;}

.article-1 .article-body img {max-width: 100%; height: auto;}

@media (prefers-reduced-motion: reduce) {
	.article-1 * {animation: none !important; transition: none !important;}
}




.form-min-1 {
	position: relative;
	overflow-x: clip;
	padding-top: 100px;
	padding-bottom: 100px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}


.form-min-1 > .container {
	flex: 1 1 auto;
	display: flex;
	flex-direction: column;
}

@media (min-width: 768px) {
	.form-min-1 .h-md-100 {height: 100% !important;}
}

.form-min-1 .skew {position: relative; overflow: hidden;}
.form-min-1 .skew-background {height: 100%; overflow-x: hidden;}
.form-min-1 .skew-background-external {position: absolute; transform: translateX(-50%); left: 50%; bottom: 0; top: 25px; display: flex; align-items: flex-end;}

@media (min-width: 768px) {
	.form-min-1 .skew-content {float: right; width: 100%; max-width: calc(660px - var(--bs-gutter-x)); height: 100%;}

	.form-min-1 .skew-background {border: solid var(--bs-primary); border-width: 0 0 0 24px; transform-origin: 50% 100% 0; transform: skewX(-20deg);}
	.form-min-1 .skew-background-internal {position: absolute; top: 0; bottom: 0; left: 50%; width: 100%; overflow: hidden; transform-origin: 50% 100% 0; transform: skewX(20deg) translateX(-50%); z-index: -1;}
	.form-min-1 .skew-background-external {transform: none; left: 0; top: 100px;}
}


@media (min-width: 992px) {
	.form-min-1 .skew {
		position: absolute;
		overflow: hidden;
		left: 50%;
		width: 50vw;
		top: 0;
		bottom: 0;
	}
}

@media (max-height: 850px) {
	.form-min-1 .skew-background-external {top: 20px;}
}

.form-min-1 .form-consent {padding-top: 1rem; margin-bottom: 1.5rem;}
.form-min-1 .form-consent a {color: inherit; font-weight: 500; text-decoration: underline;}

.form-min-1 .send_form {display: flex; flex-direction: column;}
.form-min-1 .send_form .btn {width: auto; align-self: center;}

@media (min-width: 768px) {
	.form-min-1 .send_form .btn {align-self: flex-start;}
}


.form-min-1 .title em,
.form-min-1 .accent {font-style: normal; color: var(--bs-primary);}


.form-min-1 .req-list {display: grid; grid-template-columns: auto 1fr; gap: .2rem .9rem; max-width: 34rem;}
.form-min-1 .req-list > div {display: contents;}
.form-min-1 .req-list dt {margin: 0; font-weight: 500; color: var(--bs-secondary-color); white-space: nowrap;}
.form-min-1 .req-list dd {margin: 0; color: var(--bs-body-color);}
.form-min-1 .req-list a {color: inherit; text-decoration: none;}
.form-min-1 .req-list a:hover {color: var(--bs-primary);}




.footer-1 {padding: 3rem 0; position: relative;}
.footer-1 address {font-style: normal; margin: 0;}
.footer-1 a {color: var(--bs-body-color);}
.footer-1 a:hover {color: var(--bs-primary);}
.footer-1 .footer-tel {font-weight: 700;}

.footer-1 ul {display: block; list-style: none; margin: 0; padding: 0;}
.footer-1 ul li {display: block; margin: 0; padding: 0;}
.footer-1 ul li a {display: block; margin: 0; padding: .25rem 0;}
.footer-1 .footer-system ul li a {padding: .1rem 0;}

.footer-1 .btn-outline-primary {color: var(--bs-primary);}
.footer-1 .btn-outline-primary:hover {color: var(--bs-primary-text);}

.footer-1 .scroll-to-top {position: fixed; z-index: 1030; left: 2em; bottom: 2em; width: 2.5rem; height: 2.5rem; font-size: .7rem; display: flex; justify-content: center; align-items: center; border: none; border-radius: .25rem; opacity: 0; pointer-events: none; transition: .5s; background: rgba(0, 0, 0, .2); color: #fff;}
.footer-1 .scroll-to-top.active {opacity: 1; pointer-events: auto;}
.footer-1 .scroll-to-top:hover {background: rgba(0, 0, 0, .3);}

@media (min-width: 576px) {
	.footer-1 .scroll-to-top {font-size: .85rem;}
}
@media (min-width: 768px) {
	.footer-1 .scroll-to-top {font-size: 1rem;}
}


