

.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-3 {position: relative;}

.home-3 .home2-badge {
	background: var(--bs-primary);
	padding: .5rem 1rem;
	border-radius: 999px;
	line-height: 1.2;
}
.home-3 .home2-brand {
	padding: .5rem 1rem;
	border: 1px solid rgba(0, 0, 0, .1);
	border-radius: 999px;
	background: #fff;
	line-height: 1.2;
	box-shadow: 0 2px 10px rgba(0, 0, 0, .06);
}
.home-3 .home2-brand i {color: #fc3f1d; font-size: 1.25em; line-height: 1;}

.home-3 .title {line-height: 1.1;}
.home-3 .home2-sub {max-width: 34rem;}

.home-3 .home2-features {max-width: 40rem;}
.home-3 .home2-feature {
	padding: .5rem .9rem;
	border: 1px solid rgba(var(--bs-primary-rgb), .25);
	border-radius: 999px;
	background: rgba(var(--bs-primary-rgb), .06);
	line-height: 1.2;
}
.home-3 .home2-feature i {color: var(--bs-primary); flex: 0 0 auto;}


.home-3 .home2-media {min-width: 0;}
.home-3 .home2-awards {
	max-width: 34rem;
	margin-left: auto;
	margin-right: auto;
	padding: 1.75rem;
	border: 1px solid rgba(0, 0, 0, .08);
	border-radius: 1.5rem;
	background: linear-gradient(180deg, #fff 0%, var(--bs-body-bg) 100%);
	box-shadow: 0 24px 60px rgba(0, 0, 0, .08);
}
.home-3 .home2-awards-ico {
	width: 3rem;
	height: 3rem;
	border-radius: 50%;
	background: rgba(var(--bs-primary-rgb), .1);
	color: var(--bs-primary);
	flex: 0 0 auto;
}
.home-3 .home2-awards-ico i {font-size: 1.35rem;}
.home-3 .home2-awards-title {line-height: 1.2;}

.home-3 .home2-award-card {
	padding: 1rem .75rem;
	border: 1px solid rgba(0, 0, 0, .06);
	border-radius: 1rem;
	background: #fff;
	box-shadow: 0 6px 18px rgba(0, 0, 0, .05);
	transition: transform .25s ease, box-shadow .25s ease;
}
.home-3 .home2-award-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 14px 32px rgba(0, 0, 0, .1);
}
.home-3 .home2-award-img {
	width: 100%;
	height: 9.5rem;
	object-fit: contain;
	display: block;
}
.home-3 .home2-award-text {color: var(--bs-body-color);}

@media (max-width: 991.98px) {
	.home-3 .home2-sub {max-width: none;}
	.home-3 .home2-media {margin-top: 2rem;}
	.home-3 .home2-awards {max-width: 30rem;}
}
@media (max-width: 575.98px) {
	.home-3 .home2-awards {padding: 1.25rem;}
	.home-3 .home2-award-img {height: 7.5rem;}
}


.module.home-3 {padding:64px 0;}



.home2-1 {padding: 5rem 0;}
.home2-1 .card {height: 100%; background: var(--bs-primary); text-align: center;}
.home2-1 .card a {color: var(--bs-primary-text); text-decoration: underline;}
.home2-1 .home2-media-card {min-height: 100%;}
.home2-1 .home2-media-icon {color: #fc3f1d;}



.contextual-advertising-1 .module-background.image {background-position: top !important; background-size: 100% 100% !important; background-repeat: no-repeat !important;}

.contextual-advertising-1 img {max-width: 50%;}
.contextual-advertising-1 .btn.btn-outline-primary.btn-light:hover {background: transparent; color: #fff; border: 1px solid #fff;}
.contextual-advertising-1 .h4 {background: #EC3737;}
@media screen and (min-width: 992px) {
	.contextual-advertising-1 .h4 {background: transparent;}
	.contextual-advertising-1 img {max-width: 100%;}
}


.module.contextual-advertising-1 {padding:160px 0;}

.setting-ads-1 {margin: 5rem 0;}

.setting-ads-1 .accent {color: var(--bs-primary);}

.setting-ads-1 .setting-card {
	background: #fff;
	border: 1px solid rgba(0, 0, 0, .06);
	border-radius: 1.25rem;
	box-shadow: 0 .75rem 2rem rgba(0, 0, 0, .08);
	transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.setting-ads-1 .setting-card:hover {
	transform: translateY(-.5rem);
	border-color: color-mix(in srgb, var(--bs-primary) 35%, transparent);
	box-shadow: 0 1.5rem 3rem color-mix(in srgb, var(--bs-primary) 18%, transparent);
}

.setting-ads-1 .card-icon {
	width: 5rem;
	height: 5rem;
	border-radius: 1rem;
	background: color-mix(in srgb, var(--bs-primary) 8%, transparent);
}
.setting-ads-1 .card-icon img {
	width: 3rem;
	height: 3rem;
	object-fit: contain;
}

.setting-ads-1 .card-price {
	background: var(--bs-primary);
	text-align: center;
	border-radius: .85rem;
	padding: .85rem 1rem;
	box-shadow: 0 .5rem 1rem color-mix(in srgb, var(--bs-primary) 25%, transparent);
}

.setting-ads-1 .card-list li span {color: var(--bs-body-color);}
.setting-ads-1 .card-list li i {line-height: 1.6;}


.discount-2 {position: relative; overflow: hidden; padding: 3rem 0;}


.discount-2 .module-background.color {background: linear-gradient(180deg, var(--bs-primary) 70%, #ffffff 70%) !important;}


.discount-2 .dc-inner {position: relative; z-index: 1;}


.discount-2 .discount-card {position: relative; z-index: 2; border: 0; border-radius: 1.5rem; max-width: 62rem;}


.discount-2 .parallaxScene {position: absolute; inset: 0; z-index: 0; pointer-events: none;}

.discount-2 .parallaxScene > div {position: absolute !important; inset: 0; will-change: transform;}
.discount-2 .parallaxScene > div > img {position: absolute; max-width: 100%;}
.discount-2 .item-1 img {top: 8%;  left: 6%;}
.discount-2 .item-2 img {top: 14%; right: 8%;}
.discount-2 .item-3 img {bottom: 24%; right: 5%;}
.discount-2 .item-4 img {bottom: 6%;  left: 9%;}


.discount-2 .dc-wallet-layer {z-index: 1;}
.discount-2 .dc-wallet {position: absolute; left: -14.5rem; bottom: -1.5rem; pointer-events: none;}
.discount-2 .dc-wallet img {max-width: 27rem;}

@media (prefers-reduced-motion: reduce) {
	.discount-2 .parallaxScene > div {transition: none;}
}


.lets-guess-2 {position: relative; margin: 5rem 0;}
.lets-guess-2 .marquee_guess {position: relative; top: 0; transform: translateX(-50%); left: 50%;}




.lets-guess-3 {position: relative; margin: 5rem 0 -10rem; padding-bottom: 15rem;}

.lets-guess-3 .module-background.image {background-position: bottom right !important; background-size: auto 100% !important; background-repeat: no-repeat !important;}

.lets-guess-3 .lg3-plaque {display: block; background: #ffffff; padding: 1.5rem 1.75rem; border-radius: 1rem;}
.lets-guess-3 .lg3-plaque > * + * {margin-top: 1rem;}



.check-auditor-1 .module-background.image {background-size: 100% 100% !important;}

.check-auditor-1 {position: relative; padding: 5rem 0; text-align: center; color: #fff;}
.check-auditor-1 form {max-width: 500px;}
.check-auditor-1 .form-consent {margin-top: 1.5rem;}
.check-auditor-1 .form-consent a {color: #fff; text-decoration: underline;}

@media (min-width: 992px) {
	.check-auditor-1 {padding: 12rem 0;}
}




.price-constructor-2 {margin: 60px 0 139px; position: relative;}
.price-constructor-2 .mod-price-constructor-title {margin-bottom: 44px;}
.price-constructor-2 .mod-price-constructor-quiz {position: relative;background: #FFFFFF;border: 1px solid #ddd;width: 1070px;height: 580px;}
.price-constructor-2 .mod-price-constructor-quiz-item {display: flex;height: 100%;}
.price-constructor-2 .mod-price-constructor-quiz-info {flex: 1 1 auto;padding: 26px 24px 32px;display: flex; flex-direction:column; gap: 16px;}
.price-constructor-2 .mod-price-constructor-quiz-title {text-align: center;}
.price-constructor-2 .mod-price-constructor-quiz-img-input {width: 398px;height: 116px;order: 3;}
.price-constructor-2 .mod-price-constructor-quiz-img-input img {height: 100%;width: 100%;object-fit: contain;}
.price-constructor-2 .mod-price-constructor-quiz-img img {height: 100%;width: 100%;object-fit: contain;}
.price-constructor-2 .mod-price-constructor-quiz-input {position: absolute;height: 0;visibility: hidden;}
.price-constructor-2 .mod-price-constructor-quiz-input+label{position: relative;display: grid;grid-template-columns: 104px auto 1fr;cursor: pointer;}
.price-constructor-2 .mod-price-constructor-quiz-input+label span{display: inline-block;height: 21px;width: 21px;background: #FFFFFF;border: 1px solid #000000;border-radius: 50%;position: relative;margin-top: 42px;margin-right: 32px;order: 2;}
.price-constructor-2 .mod-price-constructor-quiz-input:checked+label span::before{content: '';position: absolute;top: 50%;left: 50%;transform: translate(-50%, -50%);height: 15px;width: 15px;border-radius: 50%;background-color: var(--bs-primary);}
.price-constructor-2 .mod-price-constructor-quiz-label-title {margin-top: 42px;order: 1;}
.price-constructor-2 .mod-price-constructor-quiz-img-body {flex: 0 0 auto;width: 420px;background: #F53A3A;display: flex;flex-direction: column;align-items: center;justify-content: flex-end;padding: 46px 54px 48px;}
.price-constructor-2 .mod-price-constructor-quiz-progress {display: flex;align-items: flex-end;justify-content: flex-end;margin-top: auto;}
.price-constructor-2 .mod-price-constructor-quiz-progress-body {position: absolute;bottom: 32px;left: 16px;width: 274px;height: 1px;background: #1A1A1A;}
.price-constructor-2 .mod-price-constructor-quiz-line-progress {content:"";position: absolute;top: 50%;left: 0;transform: translateY(-50%);height: 3px;width: 80px;background-color: #F53A3A;;}
.price-constructor-2 .mod-price-constructor-quiz-button {width: 134px;padding: 22px 33px;margin-left: 31px;}
.price-constructor-2 .mod-price-constructor-quiz-button-prev {width: 61px;padding: 19px 33px;margin-left: auto;display: flex;align-items: center;justify-content: center;}
.price-constructor-2 .mod-price-constructor-quiz-img-index {display: flex;gap: 8px;font-weight: 700;color: rgba(255, 255, 255, 0.5);}
.price-constructor-2 .mod-price-constructor-quiz-info--last .mod-price-constructor-quiz-info {display: flex;flex-direction: column;gap: 24px;padding: 26px 24px 32px 55px;}
.price-constructor-2 .mod-price-constructor-quiz-info--last .mod-price-constructor-quiz-list {display: flex;flex-direction: column;gap: 24px;padding: 0;list-style: none;}
.price-constructor-2 .mod-price-constructor-quiz-info--last .mod-price-constructor-quiz-list-item {padding-left: 32px;position: relative;}
.price-constructor-2 .mod-price-constructor-quiz-info--last .mod-price-constructor-quiz-list-item:before {content: "";position: absolute;left: 0;top: 50%;transform: translateY(-50%);width: 20px;height: 2px;background: var(--bs-primary);}
.price-constructor-2 .mod-price-constructor-quiz-info--last .mod-price-constructor-quiz-progress-body {margin-left: -10px;margin-right: 22px;}
.price-constructor-2 .mod-price-constructor-quiz-info--last .mod-price-constructor-quiz-button {width: 235px;margin-left: 12px;}
.price-constructor-2 .mod-price-constructor-quiz-checkboxes {display: flex;;gap: 16px;}
.price-constructor-2 .mod-price-constructor-quiz-checkbox {width: 100%}
.price-constructor-2 .mod-price-constructor-quiz-checkbox input {position: absolute;height: 0;visibility: hidden;}
.price-constructor-2 .mod-price-constructor-quiz-checkbox input + label {border-radius: 5px;border: 2px solid var(--bs-primary);cursor: pointer;display: flex;align-items: center;justify-content: center;padding: 8px;}
.price-constructor-2 .mod-price-constructor-quiz-checkbox--big input + label {padding: 18px 8px;}
.price-constructor-2 .mod-price-constructor-quiz-checkbox input:checked + label {background: var(--bs-primary);color: #fff;}
.price-constructor-2 .mod-price-constructor-quiz-range-body {display: flex;flex-direction: column;gap: 20px;}
.price-constructor-2 .mod-price-constructor-quiz-range-header {display: flex;opacity: .5; line-height: 25px;}
.price-constructor-2 .mod-price-constructor-quiz-range-value {width: 100%;}
.price-constructor-2 input[type=range]{-webkit-appearance: none;width: 100%;height: 10px;}
.price-constructor-2 input[type=range]::-webkit-slider-runnable-track {width: 300px;height: 10px;background: linear-gradient(270deg, var(--bs-primary) 0%, #1A1A1A 100%);border: none;border-radius: 15px;}
.price-constructor-2 input[type=range]::-webkit-slider-thumb {-webkit-appearance: none;width: 28px;height: 28px;border-radius: 50%;background: #fff;border: 6px solid rgba(236, 55, 55, 0.7);margin-top: -10px;cursor: e-resize;}
.price-constructor-2 .accent {color: var(--bs-primary);}
@media (max-width:1200px) {
    .price-constructor-2 .mod-price-constructor-quiz {width: 100%;}
    .price-constructor-2 .mod-price-constructor-quiz-img-body {width: 340px;}
    .price-constructor-2 .mod-price-constructor-quiz-img-input {width: 100%;}
}
@media (max-width:992px) {
    .price-constructor-2 .mod-price-constructor-quiz {height: 870px;}
    .price-constructor-2 .mod-price-constructor-quiz-item {flex-direction: column-reverse;}
    .price-constructor-2 .mod-price-constructor-quiz-img-body {flex-direction: row;justify-content: space-between;width: 100%;}
    .price-constructor-2 .mod-price-constructor-quiz-img {margin-left: auto;width: 250px;height: 200px;}
    .price-constructor-2 .mod-price-constructor-quiz > div:last-child .mod-price-constructor-quiz-img {margin: 0 auto;}
}
@media (max-width:768px) {
    .price-constructor-2 .mod-price-constructor-quiz {height: 960px;}
    .price-constructor-2 .mod-price-constructor-quiz-img-body {flex-direction: column;justify-content: center;padding: 20px;}
    .price-constructor-2 .mod-price-constructor-quiz-img {margin: 0;width: 170px;height: 150px;}
    .price-constructor-2 .mod-price-constructor-quiz-progress {margin-bottom: 30px;}
    .price-constructor-2 .mod-price-constructor-quiz-progress-body {width: calc(100% - 44px);left: 24px;}
    .price-constructor-2 .mod-price-constructor-quiz-checkboxes {grid-template-columns: repeat(2, 1fr);}
}
@media (max-width:576px) {
    .price-constructor-2 { margin: 60px 0 10px;}
    .price-constructor-2 .mod-price-constructor-quiz {height: auto;}
    .price-constructor-2 .mod-price-constructor-quiz-checkbox input + label {padding: 18px 8px; text-align: center;}
    .price-constructor-2 .mod-price-constructor-quiz-img-input {grid-column: 1 / 4;grid-row: 2;height: 130px;}
    .price-constructor-2 .mod-price-constructor-quiz-info {gap: calc(8px + (26 - 8) * ((100vw - 320px) / (576 - 320)));}
    .price-constructor-2 .mod-price-constructor-quiz-info--last .mod-price-constructor-quiz-button {width: 175px;padding: 24px 14px;}
    .price-constructor-2 .mod-price-constructor-quiz-img-input img {object-position: left}
    .price-constructor-2 .mod-price-constructor-quiz-checkboxes {flex-wrap: wrap;}
    .price-constructor-2 .mod-price-constructor-quiz-checkbox {flex: 1 1 46%;width: auto;}
    .price-constructor-2 .mod-price-constructor-quiz-progress {margin-top: 20px;}
    .price-constructor-2 .mod-price-constructor-quiz-img {width: 100px;height: 110px;}
}
@media (max-width:480px) {
    .price-constructor-2 .mod-price-constructor-quiz-input:checked+label span::before { height: 10px;width: 10px;}
    .price-constructor-2 .mod-price-constructor-quiz-label-title {margin-top: calc(20px + (42 - 20) * ((100vw - 320px) / (480 - 320)));}
    .price-constructor-2 .mod-price-constructor-quiz-range-header {line-height: 16px;}
    .price-constructor-2 .mod-price-constructor-quiz-img-input {grid-area: C;height: calc(68px + (118 - 68) * ((100vw - 320px) / (480 - 320)));}
    .price-constructor-2 .mod-price-constructor-quiz-input+label {grid-template-areas:"A A""B C";grid-template-columns: auto 1fr;}
    .price-constructor-2 .mod-price-constructor-quiz-input+label span {grid-area: B;margin-top: calc(18px + (38 - 18) * ((100vw - 320px) / (480 - 320)));margin-right: calc(18px + (32 - 18) * ((100vw - 320px) / (480 - 320)));height: 16px;width: 16px;}
    .price-constructor-2 .mod-price-constructor-quiz-label-title {grid-area: A;margin-bottom: 18px;}
}




.steps-work-1 {position: relative; padding: 5rem 0 0; margin-top: 5rem;}

.steps-work-1 .module-background.image {background-position: top !important; background-size: auto !important; background-repeat: no-repeat !important;}

.steps-work-1 .title-steps {background: var(--bs-primary); padding: 1rem 0;}
.steps-work-1 .steps-one {padding: 5rem 0; background: var(--bs-primary);}
.steps-work-1 .steps-one .steps-item {background: #fff; width: 18rem; height: 18rem; border-radius: 50%;}
.steps-work-1 .steps-one .item-border {background: var(--bs-primary); position: relative; border: 5px solid #fff; border-radius: 50%; border-style: dashed;}
.steps-work-1 .steps-one .num {position: absolute; transform: translate(50%); top: -15%; left: 0; z-index: 0; opacity: 7%;}
.steps-work-1 .steps-one .item-text {position: relative; z-index: 1; line-height:1.2;}
.steps-work-1 .item-text {position: relative; z-index: 1; line-height:1.2;}

.steps-work-1 .steps {padding: 5rem 0 0;}
.steps-work-1 .steps .steps-item {background: var(--bs-primary); width: 18rem; height: 18rem; border-radius: 50%;}
.steps-work-1 .steps .item-border {background: #fff; position: relative; border: 5px solid var(--bs-primary); border-radius: 50%; border-style: dashed;}
.steps-work-1 .steps .num {position: absolute; transform: translate(50%); color: #fff; top: -15%; left: 0; z-index: 0; opacity: 15%;}
.steps-work-1 .steps .item-text {position: relative; z-index: 1;}
.steps-work-1 .steps-last {}
.steps-work-1 .steps-last .steps-item {background: var(--bs-primary); width: 18rem; height: 18rem; border-radius: 50%;}
.steps-work-1 .steps-last .item-border {background: #fff; position: relative; border: 5px solid var(--bs-primary); border-radius: 50%; border-style: dashed;}
.steps-work-1 .steps-last .num {position: absolute; transform: translate(50%); color: #fff; top: -15%; left: 0; z-index: 0; opacity: 15%;}
.steps-work-1 .steps-last .item-text {position: relative; z-index: 1;}

@media screen and (min-width: 992px) {
	.steps-work-1 {padding: 5rem 0;}
	.steps-work-1 .steps-one .steps-item,
	.steps-work-1 .steps .steps-item,
	.steps-work-1 .steps-last .steps-item {width: 19rem; height: 19rem;}
	.steps-work-1 .steps {padding: 5rem 0;}
	.steps-work-1 .steps-one {background: none;}
	.steps-work-1 .title-steps {background: none; padding: 0; position: relative; top: 4rem;}
	.steps-work-1 .steps-one .item:nth-child(2) {position: relative; top: 100px;}
	.steps-work-1 .steps-one .item:first-child .item-border::after {content: ''; right: -30%; bottom: 0; width: 9rem; height: 4rem; position: absolute; background: url('/assets/images/pages/kontekstnaya-reklama/steps-work-1/002.svg') no-repeat; background-size: 100% 100%;}
	.steps-work-1 .steps-one .item:nth-child(2) .item-border::after {content: ''; right: -33%; bottom: 73%; width: 8rem; height: 5rem; position: absolute; background: url('/assets/images/pages/kontekstnaya-reklama/steps-work-1/003.svg') no-repeat; background-size: 100% 100%;}
	.steps-work-1 .steps-one .item:last-child .item-border::after {content: ''; right: -54%; bottom: -35%; width: 13rem; height: 19rem; position: absolute; background: url('/assets/images/pages/kontekstnaya-reklama/steps-work-1/004.svg') no-repeat; background-size: 100% 100%;}
	.steps-work-1 .steps {flex-direction: row-reverse;}
	.steps-work-1 .steps .item:nth-child(2) {position: relative; top: 100px;}
	.steps-work-1 .steps .item:first-child .item-border::before {content: ''; left: -38%; bottom: 12%; width: 10rem; height: 5rem; position: absolute; background: url('/assets/images/pages/kontekstnaya-reklama/steps-work-1/005.svg') no-repeat; background-size: 100% 100%;}
	.steps-work-1 .steps .item:nth-child(2) .item-border::after {content: ''; left: -31%; bottom: 73%; width: 8rem; height: 5rem; position: absolute; background: url('/assets/images/pages/kontekstnaya-reklama/steps-work-1/006.svg') no-repeat; background-size: 100% 100%;}
	.steps-work-1 .steps .item:first-child .item-border::after {content: ''; right: -54%; top: -25%; width: 11rem; height: 14rem; position: absolute; background: url('/assets/images/pages/kontekstnaya-reklama/steps-work-1/007.svg') no-repeat; background-size: 100% 100%;}
	.steps-work-1 .steps-last .item-border::before {content: ''; left: -84%; bottom: 28%; width: 18rem; height: 33rem; position: absolute; background: url('/assets/images/pages/kontekstnaya-reklama/steps-work-1/008.svg') no-repeat; background-size: 100% 100%;}
	.steps-work-1 .steps-last .item-border::after {content: ''; z-index:-1; right: -112%; bottom: 38%; width: 24rem; height: 8rem; position: absolute; background: url('/assets/images/pages/kontekstnaya-reklama/steps-work-1/009.svg') no-repeat; background-size: 100% 100%;}
}


.marketer-award-1 {position: relative; overflow: hidden;
	background: url('/assets/images/pages/home/157.jpg') left bottom no-repeat;
	background-size: auto 90%;}


.marketer-award-1 .mod-panel {
	background: rgba(255, 255, 255, .88);
	-webkit-backdrop-filter: blur(6px);
	backdrop-filter: blur(6px);
	border-radius: 1.5rem;
	padding: 2rem;
}


.marketer-award-1 .mod-statue {width: 100%; max-width: 6rem; height: auto; display: block; transform: rotate(-10deg);}


.marketer-award-1 .mod-title {margin-bottom: .5rem;}
.marketer-award-1 .mod-sub-title {margin-bottom: 0; line-height: 1.45;}


.marketer-award-1 .owl-item {transition: opacity .5s; opacity: 0;}
.marketer-award-1 .owl-item.opacItem, .marketer-award-1 .owl-item.active {opacity: 1;}
.marketer-award-1 .owl-carousel img {max-width: 100%; max-height: 42vh; width: auto; margin-inline: auto; border-radius: 1rem;}
.marketer-award-1 .owl-stage-outer {overflow: hidden;}


.marketer-award-1 .mod-counter .mod-allItems {color: rgba(0, 0, 0, .32);}
.marketer-award-1 .btns {gap: 1rem;}
.marketer-award-1 .btns .btn {width: 3rem; height: 3rem; display: flex; justify-content: center; align-items: center; border-radius: 50%; border: 2px solid rgba(0, 0, 0, .28);}
.marketer-award-1 .btns .btn:hover {border-color: #000;}


@media (max-width: 767.98px) {
	
	.module.marketer-award-1.vh100 {height: auto !important; max-height: none !important; min-height: auto !important;}
	.marketer-award-1 {background-size: cover;}
	.marketer-award-1 .owl-carousel {display: block;}
	.marketer-award-1 .owl-carousel > a {display: block; margin-bottom: 1rem;}
	.marketer-award-1 .owl-carousel img {width: 100%; max-height: none; height: auto;}
	.marketer-award-1 .mod-header-owl {display: none !important;}
}

@media (max-width: 575.98px) {
	.marketer-award-1 .mod-panel {padding: 1.25rem; border-radius: 1rem;}
	
	.marketer-award-1 .mod-statue-col, .marketer-award-1 .mod-copy {width: 100%;}
	.marketer-award-1 .mod-statue {max-width: 4.5rem; margin-inline: auto;}
}


.module.marketer-award-1 {padding:50px 0;}

.this-mistake-1 {position: relative; padding: 5rem 0;}
.this-mistake-1 .accent {color: var(--bs-primary);}

.this-mistake-1 .image {width: 100%; max-width: 25.25rem;}
.this-mistake-1 .image img {max-width: 100%; height: auto;}

.this-mistake-1 .owl-carousel {background: linear-gradient(270deg, #f4f4f4 0%, rgba(217, 217, 217, 0) 100%);}
.this-mistake-1 .owl-nav,
.this-mistake-1 .owl-nav.disabled {display: none;}
.this-mistake-1 .owl-carousel .owl-stage .item {height: auto;}

.this-mistake-1 .owl-dots {position: relative; display: flex; justify-content: space-between; align-items: center; background: #fff; padding: 3rem 0;}
.this-mistake-1 .owl-dots::before {content: ''; position: absolute; top: 50%; left: 1.375rem; right: 1.375rem; height: 3px; transform: translateY(-50%); background: #dee2e6; z-index: 0;}
.this-mistake-1 .owl-dots .owl-dot {position: relative; z-index: 1; display: flex; align-items: center; justify-content: center; width: 2.75rem; height: 2.75rem; margin: 0; padding: 0; border: none; color: #fff; background: #212529; border-radius: 50%;}
.this-mistake-1 .owl-dots .owl-dot .num {color: #fff; line-height: 1;}
.this-mistake-1 .owl-dots .owl-dot span:not(.num) {display: none;}
.this-mistake-1 .owl-dots .owl-dot.active {background: var(--bs-primary);}

@media screen and (min-width: 992px) {
	.this-mistake-1 .owl-carousel .owl-stage .item {height: 100%;}
	.this-mistake-1 .owl-dots {padding: 4rem 0;}
	.this-mistake-1 .owl-dots::before {left: 2.125rem; right: 2.125rem;}
	.this-mistake-1 .owl-dots .owl-dot {width: 4.25rem; height: 4.25rem;}
}


.federal-channels-1 .fc-inner { position: relative; }
.federal-channels-1 .fc-wrap { position: relative; z-index: 1; }

@media (max-width: 767.98px) {
	.module.federal-channels-1 {padding-top: 50px !important;}
}


.federal-channels-1 .fc-bg {
	position: absolute;
	top: 50%;
	right: -2%;
	transform: translateY(-50%);
	max-width: 46%;
	opacity: .5;
	z-index: 0;
	pointer-events: none;
}
.federal-channels-1 .fc-mic {
	position: absolute;
	z-index: 2;
	pointer-events: none;
	filter: drop-shadow(0 .75rem 1.25rem rgba(0, 0, 0, .18));
}
.federal-channels-1 .fc-mic-1 { width: 5.5rem;  top: -1.75rem;   right: 6%;  animation: fc-float 6s ease-in-out infinite; }
.federal-channels-1 .fc-mic-2 { width: 4.25rem; bottom: -1.25rem; right: 52%; animation: fc-float 7.5s ease-in-out infinite .8s; }
@keyframes fc-float {
	0%, 100% { transform: translateY(0) rotate(-5deg); }
	50%      { transform: translateY(-14px) rotate(5deg); }
}


.federal-channels-1 .fc-count-label { max-width: 12rem; line-height: 1.2; }


.federal-channels-1 .fc-channel {
	padding: .3rem .85rem;
	border: 1px solid rgba(var(--bs-primary-rgb), .25);
	border-radius: 2rem;
	background: rgba(var(--bs-primary-rgb), .05);
	white-space: nowrap;
}


.federal-channels-1 .fc-video { text-decoration: none; }
.federal-channels-1 .fc-video-img {
	border-radius: .85rem;
	overflow: hidden;
	background: #000;
	box-shadow: 0 .5rem 1.5rem rgba(0, 0, 0, .12);
}
.federal-channels-1 .fc-video-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.federal-channels-1 .fc-video:hover .fc-video-img img { transform: scale(1.06); }
.federal-channels-1 .fc-play { background: rgba(0, 0, 0, .2); transition: background .3s ease; }
.federal-channels-1 .fc-video:hover .fc-play { background: rgba(var(--bs-primary-rgb), .6); }
.federal-channels-1 .fc-video-title { transition: color .2s ease; }
.federal-channels-1 .fc-video:hover .fc-video-title { color: var(--bs-primary); }


.federal-channels-1 { position: relative; }
.federal-channels-1 .fc-director { margin: 1.5rem auto 0; max-width: 22rem; }
.federal-channels-1 .fc-director img { display: block; width: 100%; height: auto; }

@media (min-width: 992px) {
	.federal-channels-1 .fc-director {
		position: absolute; right: 0; bottom: 0; margin: 0;
		z-index: 2; max-width: min(26rem, 30vw); pointer-events: none;
	}
}


.module.federal-channels-1 {padding:100px 0;}


.wind-change-1 {position: relative;}
.wind-change-1 .row {margin-top: 2rem;}
@media screen and (min-width: 992px) {
	.wind-change-1 .row {margin-top: 0;}
	.wind-change-1 .block {margin-top: 5rem;}
}

.wind-change-1 .accent {color: var(--bs-primary);}




.launch-ad-1 .image img {position: absolute; width: 50%; z-index: -1; bottom: 0;}

@media screen and (min-width: 992px) {
	.launch-ad-1 .module-background.image {background-size: 100% 100% !important;}
}


.module.launch-ad-1 {padding:200px 0;}


.how-conquer-2 {padding: 5rem 0; position: relative;}
.how-conquer-2 .mod-how-conquer-inner {counter-reset: ol-number; display: grid; gap: 30px; grid-template-areas: "A B C D" "A E F D"; grid-template-rows: repeat(2, 304px);}
.how-conquer-2 .mod-how-conquer-inner li:nth-child(1) {grid-area: A;}
.how-conquer-2 .mod-how-conquer-inner li:nth-child(1)::before {font-size: 450px;}
.how-conquer-2 .mod-how-conquer-inner li:nth-child(2) {grid-area: B;}
.how-conquer-2 .mod-how-conquer-inner li:nth-child(3) {grid-area: C;}
.how-conquer-2 .mod-how-conquer-inner li:nth-child(4) {grid-area: E;}
.how-conquer-2 .mod-how-conquer-inner li:nth-child(5) {grid-area: F;}
.how-conquer-2 .mod-how-conquer-inner li:nth-child(6) {grid-area: D;}
.how-conquer-2 .mod-how-conquer-inner li:nth-child(6)::before {font-size: 450px;}
.how-conquer-2 .mod-how-conquer-inner li {position: relative; background: #EC3737; padding: 18px; display: flex; flex-direction: column; align-items: center; justify-content: center;}
.how-conquer-2 .mod-how-conquer-item-inner {position: relative; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; gap: 30px; z-index: 1;}
.how-conquer-2 .mod-how-conquer-item-inner::after {content: ""; position: absolute; top: 0px; left: 0px; width: 100%; height: 100%; border: 5px solid #FFFFFF; z-index: -1;}
.how-conquer-2 .mod-how-conquer-inner li::before {counter-increment: ol-number; content: counter(ol-number); position: absolute; color: rgba(255, 255, 255, 0.12); font-weight: 700; font-size: 300px;}
@media (max-width: 1400px) {
	.how-conquer-2 .mod-how-conquer-inner {grid-template-areas: "A B C" "E F D"; grid-template-columns: repeat(3, 1fr);}
	.how-conquer-2 .mod-how-conquer-inner li:nth-child(1)::before {font-size: 300px;}
	.how-conquer-2 .mod-how-conquer-inner li:nth-child(6)::before {font-size: 300px;}
}
@media (max-width: 992px) {
	.how-conquer-2 .mod-how-conquer-inner {grid-template-areas: "A B" "C E" "F D"; grid-template-columns: repeat(2, 1fr); grid-template-rows: repeat(3, 304px);}
}
@media (max-width: 768px) {
	.how-conquer-2 .mod-how-conquer-inner {grid-template-areas: "A" "B" "C" "E" "F" "D"; grid-template-columns: 1fr; grid-template-rows: repeat(6, 240px);}
	.how-conquer-2 .mod-how-conquer-inner li::before {font-size: 200px;}
	.how-conquer-2 .mod-how-conquer-inner li:nth-child(1)::before {font-size: 200px;}
	.how-conquer-2 .mod-how-conquer-inner li:nth-child(6)::before {font-size: 200px;}
}

.how-conquer-2 .accent {color: var(--bs-primary);}




.website-promotion-2 {position: relative; margin-bottom: 5rem;}
.website-promotion-2 .image img {max-width: 100%;}

.website-promotion-2 .accent {color: var(--bs-primary);}



.no-applications-1 {position: relative; padding-bottom: 4rem;}
.no-applications-1 ul {padding-left: 0;}
.no-applications-1 ul li {list-style: none;}
.no-applications-1 .title-app {position: relative;}
.no-applications-1 .title-app::before {content: ''; right: 0; width: 160%; height: 100%; background: linear-gradient(270deg, #D9D9D9 0%, rgba(217, 217, 217, 0.00) 100%); transform: translateX(50%); position: absolute; z-index: -1;}
.no-applications-1 .image {position: relative; z-index: -2;}
.no-applications-1 .image img {max-width: 100%;}
@media screen and (min-width: 992px){
	.no-applications-1 .text-app {position: relative; left: -3rem;}
	.no-applications-1 .image img {position: absolute; bottom: -1rem;}
	.no-applications-1 .image {height: 100%; position: relative;}
	.no-applications-1 ul {padding-left: 5rem;}
}
@media screen and (min-width: 1200px){
	.no-applications-1 .image img {max-width: none; position: relative; bottom: 0;}
}

.no-applications-1 .accent {color: var(--bs-primary);}




.official-agency-1 {position: relative; padding: 10rem 0; top: 0;}
.official-agency-1 .module-background.image {background-size: 100% 100% !important;}

.official-agency-1 .image {height: 10rem; width: 10rem; border-radius: 50%;}
.official-agency-1 .image img {width: 100%;}



.how-spend-1 {position: relative; margin-bottom: 5rem;}
.how-spend-1 .image img {max-width: 100%;}
.how-spend-1 hr {border: none; height: 2px; opacity: 1; width: 35%;}
@media screen and (min-width: 992px){
	.how-spend-1 .image img {margin-top: -100px;}
}
@media screen and (min-width: 1200px){
	.how-spend-1 {margin-bottom: 0;}
}

.how-spend-1 .accent {color: var(--bs-primary);}




.myths-1 {position: relative; padding-bottom: 10rem; margin-top: 5rem;}

.myths-1 .module-background.image {background-size: 100% 100% !important; background-position: center !important;}

.myths-1 .owl-carousel .owl-nav button {color: #fff;}
.myths-1 .card {border-radius: 2rem;}
.myths-1 .card-body img {width: 3rem; height: 3rem; object-fit: contain;}
.myths-1 .h2 {border-radius: 1rem; box-shadow: 0px 0px 0px 0px rgba(125, 125, 125, 0.05), 0px -4px 8px 0px rgba(125, 125, 125, 0.05), 0px -15px 15px 0px rgba(125, 125, 125, 0.04), 0px -33px 20px 0px rgba(125, 125, 125, 0.03), 0px -59px 24px 0px rgba(125, 125, 125, 0.01), 0px -93px 26px 0px rgba(125, 125, 125, 0.00);}

.myths-1 .decor {width: 25rem; height: 25rem; top: -30%; right: -30%; background: radial-gradient(50% 50.00% at 50% 50.00%, rgba(236, 55, 55, 0.20) 0%, rgba(236, 55, 55, 0.00) 100%); border-radius: 50%; filter: blur(10px);}

@media screen and (min-width: 992px) {
	.myths-1 {padding-bottom: 25rem; margin-top: 0;}
	.myths-1 .h2 {position: relative; transform: translateY(-45%);}
}



.scammers-1 {position: relative; padding-bottom: 5rem;}
.scammers-1 .text-scammers {width: 100%;}
@media screen and (min-width: 992px) {
	.scammers-1 {margin-top: -10rem; padding-bottom: 25rem;}
	.scammers-1 .text-scammers {width: 30%;}
}

.scammers-1 .module-background.image {background-position: center bottom !important; background-size: contain !important; background-repeat: no-repeat !important;}

.scammers-1 .accent {color: var(--bs-primary);}




.advertising-yandex-1 {position: relative; z-index: 1; padding-top: 20rem; margin-top: -13rem; padding-bottom: 5rem;}

.advertising-yandex-1 .module-background.image {background-position: top !important; background-size: auto !important; background-repeat: no-repeat !important;}

.advertising-yandex-1 .accent {color: var(--bs-primary);}

.advertising-yandex-1 .steps-first {background: var(--bs-primary);}
.advertising-yandex-1 .steps-first .item-border {z-index: 10; position: relative; padding: 1.5rem;}
.advertising-yandex-1 .steps-first .item-border::before {content: ''; position: absolute; background: url('/assets/images/pages/kontekstnaya-reklama/advertising-yandex-1/031.svg') no-repeat; width: 100%; height: 100%; top: 0; left: 0; background-size: 100% 100%;}
.advertising-yandex-1 .steps-first .item-text {z-index: 1;}
.advertising-yandex-1 .steps-first .item-steps {position: relative; padding: 0 2rem; clip-path: polygon(50% 0, 100% 27%, 100% 73%, 50% 100%, 0 73%, 0 27%); width: 16.3rem; height: 18.12rem;}
.advertising-yandex-1 .steps-first .num {position: absolute; transform: translate(-50%); color: #000; left: 50%; z-index: 0; opacity: 7%;}
.advertising-yandex-1 ul li {list-style: none;}

.advertising-yandex-1 .steps-second .item-border {z-index: 10; position: relative; padding: 1.5rem;}
.advertising-yandex-1 .steps-second .item-border::before {content: ''; position: absolute; background: url('/assets/images/pages/kontekstnaya-reklama/advertising-yandex-1/032.svg') no-repeat; width: 100%; height: 100%; top: 0; left: 0; background-size: 100% 100%;}
.advertising-yandex-1 .steps-second .item-text {z-index: 1;}
.advertising-yandex-1 .steps-second .item-steps {position: relative; padding: 0 2rem; clip-path: polygon(50% 0, 100% 27%, 100% 73%, 50% 100%, 0 73%, 0 27%); width: 16.3rem; height: 18.12rem;}
.advertising-yandex-1 .steps-second .num {position: absolute; transform: translate(-50%); color: #fff; left: 50%; z-index: 0; opacity: 12%;}
.advertising-yandex-1 .steps-second {padding: 5rem 0 0;}

@media screen and (min-width: 768px) {
	.advertising-yandex-1 .steps-first .item:last-child {margin-top: -5rem;}
	.advertising-yandex-1 .steps-second .item:last-child {margin-top: -5rem;}
}
@media screen and (min-width: 992px) {
	.advertising-yandex-1 .steps-second {padding: 5rem 0;}
	.advertising-yandex-1 .steps-first .item-border {background: var(--bs-primary);}
	.advertising-yandex-1 .steps-first .item:last-child {margin-top: 0;}
	.advertising-yandex-1 .steps-second .item:last-child {margin-top: 0;}
	.advertising-yandex-1 .steps-first {padding: 0 0 5rem;}
	.advertising-yandex-1 .steps-first .item:nth-child(2) .item-border {top: 3rem;}

	.advertising-yandex-1 .steps-second {flex-direction: row-reverse; position: relative;}
	.advertising-yandex-1 .steps-second .item:first-child .item-border {top: 5rem;}
	.advertising-yandex-1 .steps-second .item:last-child .item-border {top: 2rem;}

	.advertising-yandex-1 .steps-second .item:first-child .item-border::after {z-index: 0; content: ''; position: absolute; background: url('/assets/images/pages/kontekstnaya-reklama/advertising-yandex-1/032_1.svg') no-repeat; width: 10rem; height: 20rem; right: -34%; top: -40%; background-size: 100%;}
	.advertising-yandex-1 .steps-second .item {position: relative;}
	.advertising-yandex-1 .steps-second .item:last-child::before {z-index: 0; content: ''; position: absolute; background: url('/assets/images/pages/kontekstnaya-reklama/advertising-yandex-1/032_4.svg') no-repeat; width: 28rem; height: 29rem; right: 51%; top: 60%; background-size: 100%;}
}
@media screen and (min-width: 1200px) {
	.advertising-yandex-1 .steps-first .item:first-child .item-border::after {z-index: 0; content: ''; position: absolute; background: url('/assets/images/pages/kontekstnaya-reklama/advertising-yandex-1/031_1.svg') no-repeat; width: 12rem; height: 5rem; right: -60%; top: 58%; background-size: 100%;}
	.advertising-yandex-1 .steps-first .item:nth-child(2) .item-border::after {z-index: 0; content: ''; position: absolute; background: url('/assets/images/pages/kontekstnaya-reklama/advertising-yandex-1/031_2.svg') no-repeat; width: 10rem; height: 5rem; right: -48%; top: 20%; background-size: 100%;}
	.advertising-yandex-1 .steps-first .item:last-child .item-border::after {z-index: 0; content: ''; position: absolute; background: url('/assets/images/pages/kontekstnaya-reklama/advertising-yandex-1/031_3.svg') no-repeat; width: 18rem; height: 15rem; right: -83%; top: 68%; background-size: 100%;}
	.advertising-yandex-1 .steps-second .item:nth-child(2) .item-border::after {z-index: 0; content: ''; position: absolute; background: url('/assets/images/pages/kontekstnaya-reklama/advertising-yandex-1/032_2.svg') no-repeat; width: 11rem; height: 4rem; right: -46%; top: 75%; background-size: 100%;}
	.advertising-yandex-1 .steps-second .item:last-child .item-border::after {z-index: 0; content: ''; position: absolute; background: url('/assets/images/pages/kontekstnaya-reklama/advertising-yandex-1/032_3.svg') no-repeat; width: 9rem; height: 5rem; right: -45%; top: 53%; background-size: 100%;}
}
@media screen and (min-width: 1440px) {
	.advertising-yandex-1 .steps-second {right: -7%;}
}


.weight-of-gold-1 {position: relative; overflow: hidden;
	background: url('/assets/images/pages/home/weight-of-gold-1/01.jpg') right bottom no-repeat;
	background-size: auto 90%;}


.weight-of-gold-1 .mod-panel {
	background: rgba(255, 255, 255, .88);
	-webkit-backdrop-filter: blur(6px);
	backdrop-filter: blur(6px);
	border-radius: 1.5rem;
	padding: 2rem;
}


.weight-of-gold-1 .mod-statue {width: 100%; max-width: 6rem; height: auto; display: block; transform: rotate(-10deg);}


.weight-of-gold-1 .mod-title {margin-bottom: .5rem;}
.weight-of-gold-1 .mod-sub-title {margin-bottom: 0; line-height: 1.45;}


.weight-of-gold-1 .owl-item {transition: opacity .5s; opacity: 0;}
.weight-of-gold-1 .owl-item.opacItem, .weight-of-gold-1 .owl-item.active {opacity: 1;}
.weight-of-gold-1 .owl-carousel img {max-width: 100%; max-height: 42vh; width: auto; margin-inline: auto; border-radius: 1rem;}
.weight-of-gold-1 .owl-stage-outer {overflow: hidden;}


.weight-of-gold-1 .mod-counter .mod-allItems {color: rgba(0, 0, 0, .32);}
.weight-of-gold-1 .btns {gap: 1rem;}
.weight-of-gold-1 .btns .btn {width: 3rem; height: 3rem; display: flex; justify-content: center; align-items: center; border-radius: 50%; border: 2px solid rgba(0, 0, 0, .28);}
.weight-of-gold-1 .btns .btn:hover {border-color: #000;}


@media (max-width: 767.98px) {
	.weight-of-gold-1 .owl-carousel {display: block;}
	.weight-of-gold-1 .owl-carousel > a {display: block; margin-bottom: 1rem;}
	.weight-of-gold-1 .owl-carousel img {width: 100%; max-height: none; height: auto;}
	.weight-of-gold-1 .mod-header-owl {display: none !important;}
}


.module.weight-of-gold-1 {padding:50px 0;}



.free-audit-1 {position: relative; padding: 5rem 0; margin: 5rem 0;}

.free-audit-1 .module-background.image {background-size: 100% 100% !important;}

.free-audit-1 .accent {color: var(--bs-primary);}

.free-audit-1 input,
.free-audit-1 input:active,
.free-audit-1 input:focus {border-radius: 4px; border: 5px solid var(--bs-primary);}

.free-audit-1 .row {flex-direction: column-reverse; background: #fff; padding-top: 2rem; padding-bottom: 2rem;}

@media screen and (min-width: 992px) {
	.free-audit-1 {padding: 3rem 0;}
	.free-audit-1 .row {flex-direction: row; background: none; padding-top: 0; padding-bottom: 0;}
	.free-audit-1 .module-background.image {display: none !important;}
	.free-audit-1 .accent.accent {color: var(--bs-primary-text) !important;}
	.free-audit-1 .form-consent,
	.free-audit-1 .form-consent a {color: var(--bs-primary-text) !important;}
}




.yandex-task-1 {position: relative; margin: 5rem 0; margin-bottom: 0;}
.yandex-task-1 .heading1,
.yandex-task-1 .heading2 {color: #000;}
.yandex-task-1 .decor {top: 0; left: 5rem; height: 100%; z-index: -1;}
.yandex-task-1 .decor img,
.yandex-task-1 .decor-2 img {height: 100%;}
.yandex-task-1 .decor-2 {top: 0; right: 5rem; height: 100%; z-index: -1;}
.yandex-task-1 .decor-text {z-index: -1; top: 0;}

@media screen and (min-width: 992px) {
	.yandex-task-1 .heading1,
	.yandex-task-1 .heading2 {color: #fff; padding: 1rem 0;}
}


.med-marketing-1 {position: relative; overflow: hidden;
	background: url('/assets/images/pages/home/med-marketing-1/01.jpg') left bottom no-repeat;
	background-size: auto 90%;}


.med-marketing-1 .mod-panel {
	background: rgba(255, 255, 255, .88);
	-webkit-backdrop-filter: blur(6px);
	backdrop-filter: blur(6px);
	border-radius: 1.5rem;
	padding: 2rem;
}


.med-marketing-1 .mod-statue {width: 100%; max-width: 6rem; height: auto; display: block; transform: rotate(-10deg);}


.med-marketing-1 .mod-title {margin-bottom: .5rem;}
.med-marketing-1 .mod-sub-title {margin-bottom: 0; line-height: 1.45;}


.med-marketing-1 .owl-item {transition: opacity .5s; opacity: 0;}
.med-marketing-1 .owl-item.opacItem, .med-marketing-1 .owl-item.active {opacity: 1;}
.med-marketing-1 .owl-carousel img {max-width: 100%; max-height: 42vh; width: auto; margin-inline: auto; border-radius: 1rem;}
.med-marketing-1 .owl-stage-outer {overflow: hidden;}


.med-marketing-1 .mod-counter .mod-allItems {color: rgba(0, 0, 0, .32);}
.med-marketing-1 .btns {gap: 1rem;}
.med-marketing-1 .btns .btn {width: 3rem; height: 3rem; display: flex; justify-content: center; align-items: center; border-radius: 50%; border: 2px solid rgba(0, 0, 0, .28); color: #000;}
.med-marketing-1 .btns .btn:hover {border-color: #000;}



@media (max-width: 767.98px) {
	
	.module.med-marketing-1.vh100 {height: auto !important; max-height: none !important; min-height: auto !important;}
	.med-marketing-1 {background-size: cover;}
	.med-marketing-1 .owl-carousel {display: block;}
	.med-marketing-1 .owl-carousel > a {display: block; margin-bottom: 1rem;}
	.med-marketing-1 .owl-carousel img {width: 100%; max-height: none; height: auto;}
	.med-marketing-1 .mod-header-owl {display: none !important;}
}

@media (max-width: 575.98px) {
	.med-marketing-1 .mod-panel {padding: 1.25rem; border-radius: 1rem;}
	
	.med-marketing-1 .mod-statue-col, .med-marketing-1 .mod-copy {width: 100%;}
	.med-marketing-1 .mod-statue {max-width: 4.5rem; margin-inline: auto;}
}


.module.med-marketing-1 {padding:50px 0;}


.wind-change-advertisement-1 {position: relative; padding: 5rem 0 10rem;}
.wind-change-advertisement-1 .image img {max-width: 100%; position: relative; z-index: -2;}

.wind-change-advertisement-1 .module-background.image {background-position: bottom !important; background-size: 100% auto !important; background-repeat: no-repeat !important;}

@media screen and (min-width: 1440px) {
	.wind-change-advertisement-1 {padding: 5rem 0 13rem;}
}

.wind-change-advertisement-1 .accent {color: var(--bs-primary);}



.how-open-1 {position: relative;}

.how-open-1 .text-danger {color: var(--bs-primary) !important;}


.how-open-1 .mod-photo {position: relative; max-width: 24rem; margin-inline: auto;}
.how-open-1 .mod-photo::before {content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 80%; border-radius: 1.5rem; background: rgba(var(--bs-primary-rgb), .1); z-index: 0;}
.how-open-1 .mod-author-img {position: relative; z-index: 1; display: block; width: 100%; height: auto;}
.how-open-1 .mod-logo-badge {position: absolute; top: 1rem; left: 1rem; z-index: 2; display: inline-flex; padding: .6rem; background: #fff; border-radius: .9rem; box-shadow: 0 .5rem 1.25rem rgba(0, 0, 0, .12);}
.how-open-1 .mod-logo-badge img {width: 3rem; height: auto; display: block;}


.how-open-1 .mod-author-line {display: block; width: 2.5rem; height: 2px; background: var(--bs-primary); flex-shrink: 0;}
.how-open-1 .mod-vk-ico {display: inline-flex;}
.how-open-1 .mod-vk-ico i {display: block; font-size: 1.25rem;}




.time-launch-1 {position: relative; padding: 10rem 0; margin: 0 0 -10rem; z-index: 1;}
.time-launch-1 .module-background.image {background-position: center !important; background-size: 100% 100% !important; background-repeat: no-repeat !important;}

.time-launch-1 form .form-consent a {color: #fff;}

.time-launch-1 form .form-control {background: transparent; border: 5px solid #fff; border-radius: 4px; padding: .75rem 2rem; color: #fff;}

@media screen and (min-width: 1200px) {
	.time-launch-1 {margin: -5rem 0 -8rem; padding: 15rem 0;}
}


.grim-truth-1 {position: relative; padding: 10rem 0;}
.grim-truth-1 .accent {color: var(--bs-primary);}
.grim-truth-1 .text-truth {z-index: 100;}
.grim-truth-1 img {max-width: 100%;}

.grim-truth-1 .h1 {white-space: wrap;}

@media screen and (min-width: 992px) {
	.grim-truth-1 .h1 {white-space: nowrap;}
}





.reviews-2 .yx-tabs {gap: .5rem; border: 0; flex-wrap: wrap;}
.reviews-2 .yx-tab {
	border: 1px solid rgba(var(--bs-primary-rgb), .3);
	background: transparent;
	color: var(--bs-body-color);
	border-radius: 2rem;
	padding: .5rem 1.35rem;
	line-height: 1.2;
	transition: background .2s, color .2s, border-color .2s;
}
.reviews-2 .yx-tab:hover {border-color: var(--bs-primary); color: var(--bs-primary);}
.reviews-2 .yx-tab.active {background: var(--bs-primary); border-color: var(--bs-primary); color: var(--bs-primary-text);}
.reviews-2 .yx-tab i {color: inherit;}
.reviews-2 .yx-soon {margin-top: -.25rem;}


.reviews-2 .yx-widget {max-width: 720px; margin: 0 auto; text-align: center;}
.reviews-2 .yx-frame {
	width: 100%;
	height: 620px;
	border: 1px solid rgba(11, 11, 18, .12);
	border-radius: 1.1rem;
	box-sizing: border-box;
	display: block;
	background: var(--bs-body-bg);
	box-shadow: 0 .5rem 1.75rem rgba(11, 11, 18, .06);
}
.reviews-2 .yx-all {
	display: inline-flex;
	align-items: center;
	margin-top: 1rem;
	color: var(--bs-secondary-color);
	text-decoration: none;
	transition: color .2s;
}
.reviews-2 .module-background.image {background-size: 100% 100% !important; background-position: center !important; opacity: .1;}
.module.reviews-2 {padding-bottom: 50px !important;}
.reviews-2 .yx-all:hover {color: var(--bs-primary);}

@media (max-width: 575.98px) {
	.reviews-2 .yx-frame {height: 540px;}
}


.module.reviews-2 {padding:100px 0;}

.contextual-advertising-websites-1 {position: relative; padding: 5rem 0;}
.contextual-advertising-websites-1 .image img {max-width: 100%;}
.contextual-advertising-websites-1 .accent {color: var(--bs-primary);}
@media screen and (min-width: 992px) {
	.contextual-advertising-websites-1 .h1 {margin-left: -5rem;}
}



.six-points-1 {position: relative; margin: 5rem 0 0; padding-bottom: 10rem;}
.six-points-1 .module-background.image {background-size: 100% 100% !important; background-position: center !important;}
.six-points-1 .h2 {position: relative; border-radius: 1rem; box-shadow: 0px 0px 0px 0px rgba(125, 125, 125, 0.05), 0px -4px 8px 0px rgba(125, 125, 125, 0.05), 0px -15px 15px 0px rgba(125, 125, 125, 0.04), 0px -33px 20px 0px rgba(125, 125, 125, 0.03), 0px -59px 24px 0px rgba(125, 125, 125, 0.01), 0px -93px 26px 0px rgba(125, 125, 125, 0.00);}
.six-points-1 .button-card .card {transition: .5s; box-shadow: 0 .5rem 1rem rgba(0,0,0,.15); border-radius: 1rem; cursor: pointer;}
.six-points-1 .button-card .card:hover,
.six-points-1 .button-card.active .card {background: #EC3737; box-shadow: 4px 4px 17px 0px rgba(0, 0, 0, 0.33) inset;}
.six-points-1 .button-card .card:hover .item-title,
.six-points-1 .button-card.active .item-title {color: #fff;}
.six-points-1 .button-card .card:hover svg path,
.six-points-1 .button-card .card:hover svg .svg-white,
.six-points-1 .button-card .card:hover svg rect,
.six-points-1 .button-card.active .card svg path,
.six-points-1 .button-card.active .card svg .svg-white,
.six-points-1 .button-card.active .card svg rect {fill: #fff; stroke: #fff;}
.six-points-1 .button-card .card:hover svg .svg-red,
.six-points-1 .button-card .card:hover svg .svg-red path,
.six-points-1 .button-card.active .card svg .svg-red,
.six-points-1 .button-card.active .card svg .svg-red path {fill: #EC3737;}
.six-points-1 .row-points {flex-direction: column-reverse;}
@media screen and (min-width: 576px) {
	.six-points-1 .row-points {flex-direction: row;}
}
@media screen and (min-width: 992px) {
	.six-points-1 {margin: 10rem 0 0;}
	.six-points-1 .h2 {transform: translateY(-50%);}
}




.book-free-1 {position: relative; padding: 5rem 0 0;}
.book-free-1 .mod-book {max-width: 100%; height: auto;}

.book-free-1 .accent {color: var(--bs-primary);}

.book-free-1 .mod-text {position: relative;}
.book-free-1 .mod-text::before {content: ''; position: absolute; top: 0; left: 0; right: -270px; bottom: 0; background: linear-gradient(-90deg, #D9D9D9 0%, rgba(217, 217, 217, 0.00) 100%); z-index: -1;}


@media screen and (max-width: 575.98px) {
	.book-free-1 .row > * {width: 100%;}
	.book-free-1 .row > *:first-child {text-align: center !important;}
	.book-free-1 .mod-text::before {right: 0;}
}




.wheel-luck-2 {position: relative; padding: 5rem 0; overflow: hidden;}
.wheel-luck-2::before {content: ''; position: absolute; top: 0; bottom: 0; left: 0; right: 0; z-index: -1000; background: var(--bs-primary); background-size: cover;}


.wheel-luck-2 .wheel-luck {width: 631px; height: 631px; border-radius: 50%; position: relative; z-index: 5;}
.wheel-luck-2 .wheel-luck .wheel-luck-circle {position: absolute; top: 0; left: 0; width: 100%; height: 100%; border-radius: 50%; overflow: hidden; background: #fff; box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.05), -4.06px 4.06px 11.36px 0px rgba(0, 0, 0, 0.05), -15.42px 14.61px 21.10px 0px rgba(0, 0, 0, 0.04), -34.09px 32.46px 28.40px 0px rgba(0, 0, 0, 0.03), -60.87px 58.43px 33.27px 0px rgba(0, 0, 0, 0.01), -94.95px 91.71px 36.52px 0px rgba(0, 0, 0, 0.00);}
.wheel-luck-2 .wheel-luck .wheel-luck-circle::after {border: .5rem #fff solid; content: ''; position: absolute; left: 0; top: 0; width: 100%; height: 100%; border-radius: 50%;}
.wheel-luck-2 .wheel-luck .wheel-luck-circle .wheel-luck-img {position: absolute; top: 0; left: 0;}
.wheel-luck-2 .wheel-luck .wheel-luck-circle .wheel-luck-img[data-point="2"] {left: auto; right: 0;}
.wheel-luck-2 .wheel-luck .wheel-luck-circle .wheel-luck-img[data-point="3"] {left: auto; right: 0;}
.wheel-luck-2 .wheel-luck .wheel-luck-circle .wheel-luck-img[data-point="4"] {left: auto; top: auto; right: 0; bottom: 0;}
.wheel-luck-2 .wheel-luck .wheel-luck-circle .wheel-luck-img[data-point="5"] {top: auto; bottom: 0;}
.wheel-luck-2 .wheel-luck .wheel-luck-circle .wheel-luck-img[data-point="6"] {top: auto; bottom: 0;}

.wheel-luck-2 .img-contain {width: 100%; height: 100%; object-fit: contain;}

.wheel-luck-2 .wheel-luck-img[data-point="1"] img {width: 631px; height: 429px;}
.wheel-luck-2 .wheel-luck-img[data-point="2"] img {width: 431px; height: 631px;}
.wheel-luck-2 .wheel-luck-img[data-point="3"] img {width: 500px; height: 478px;}
.wheel-luck-2 .wheel-luck-img[data-point="4"] img {width: 479px; height: 502px;}
.wheel-luck-2 .wheel-luck-img[data-point="5"] img {width: 631px; height: 420px;}
.wheel-luck-2 .wheel-luck-img[data-point="6"] img {width: 505px; height: 482px;}
.wheel-luck-2 .wheel-luck-img[data-point="7"] img {width: 432px; height: 631px;}
.wheel-luck-2 .wheel-luck-img[data-point="8"] img {width: 479px; height: 497px;}

.wheel-luck-2 .wheel-luck .wheel-luck-center-img {position: absolute; top: 50%; left: 50%; z-index: 10; transform: translate(-50%, -50%);}
.wheel-luck-2 .wheel-luck .wheel-luck-mark {position: absolute; top: 50%; right: -18px; transform: translateY(-50%); z-index: 10;}

.wheel-luck-2 .wheel-popup {position: fixed; top: 0; left: 0; height: 100%; width: 100%; display: flex; align-items: center; justify-content: center; z-index: 20; opacity: 0; pointer-events: none; transition: opacity .5s ease;}
.wheel-luck-2 .wheel-popup::before {content: ""; background: rgb(0, 0, 0); opacity: .3; backdrop-filter: blur(7.5px); position: absolute; top: 0; left: 0; height: 100%; width: 100%; z-index: 1;}
.wheel-luck-2 .wheel-popup.show {opacity: 1; pointer-events: auto;}
.wheel-luck-2 .wheel-prize {width: 950px; max-width: calc(100% - 2rem); height: fit-content; background: #FFFFFF; box-shadow: -7px -7px 15px rgb(0 0 0 / 25%), 7px 7px 15px rgb(0 0 0 / 25%); border-radius: 8px; padding: 52px 30px 32px; text-align: center; position: relative; z-index: 2;}
.wheel-luck-2 .wheel-prize__close {width: 20px; height: 20px; position: absolute; top: 14px; right: 14px; display: flex; align-items: center; justify-content: center; cursor: pointer;}
.wheel-luck-2 .wheel-prize__close::before {content: ""; position: absolute; width: 100%; height: 2px; background: #000; transform: rotate(45deg);}
.wheel-luck-2 .wheel-prize__close::after {content: ""; position: absolute; width: 100%; height: 2px; background: #000; transform: rotate(-45deg);}

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

	.wheel-luck-2::before {left: auto; right: 0; width: calc(50vw + 330px); max-width: 1320px; transform: none;}
}





.comprehensive-promotion-2 {margin: 5rem 0;}
.comprehensive-promotion-2 img {height: 100%; left: 50%; transform: translateX(-50%); z-index: -1;}

.comprehensive-promotion-2 .accent {color: var(--bs-primary);}

.comprehensive-promotion-2 .item {border: 2px solid var(--bs-primary); border-width: 0 0 2px 2px; background: rgba(217, 217, 217, 0.25);}
.comprehensive-promotion-2 .item .item-title {background: var(--bs-primary); padding: 1rem;}
.comprehensive-promotion-2 .col-3 {display: none;}
.comprehensive-promotion-2 .last-column {border-right: 2px solid var(--bs-primary); border-left: none; background: none;}
@media screen and (min-width: 992px) {
	.comprehensive-promotion-2 .col-3 {display: block;}
}
@media screen and (min-width: 1200px) {
	.comprehensive-promotion-2 .item {background: linear-gradient(90deg, rgba(217, 217, 217, 0.25) 0%, rgba(217, 217, 217, 0.00) 100%);}
	.comprehensive-promotion-2 .last-column {border-right: 2px solid var(--bs-primary); border-left: none; background: none;}
}



.bring-clients-1 {position: relative; padding: 10rem 0 5rem;}
.bring-clients-1 .module-background.image {background-position: center !important; background-size: 100% 100% !important; background-repeat: no-repeat !important;}




.strengthen-your-website-1 {position: relative; padding: 5rem 0;}
.strengthen-your-website-1 .image img {width: 38rem; z-index: 10;}
.strengthen-your-website-1 .your-text::before {content: ''; z-index: -1; position: absolute; width: 200%; left: -50%; height: 100%; top: 0; background: url('/assets/images/pages/kontekstnaya-reklama/strengthen-your-website-1/028.svg') no-repeat; background-size: cover;}



.running-words-1 {position: relative;}




.dear-customer-1 .skew {position: relative; overflow: hidden;}
.dear-customer-1 .skew-background {height: 100%; overflow-x: hidden;}
.dear-customer-1 .skew-background-external {position: absolute; transform: translateX(-50%); left: 50%; bottom: 0; top: 25px;}

.dear-customer-1 .button-float {width: 6em; height: 6em; border-radius: 50%; border: none; position: relative; background-color: red;}

.dear-customer-1 .button-float::before {content: ""; position: absolute; pointer-events: none; top: 50%; left: 50%; width: 7.5em; height: 7.5em; margin: -3.75em 0 0 -3.75em; border-radius: 50%; z-index: -1; transform: scale(.8333);}
.dear-customer-1 .button-float::after {content: ""; position: absolute; top: 0; right: 0; bottom: 0; left: 0; background: center no-repeat;}
.dear-customer-1 .button-float-pulse-double::before {background-color: rgba(255, 0, 0, 0.5); animation: dearCustomerPulseDouble 1.4s linear infinite; will-change: transform, opacity;}
.dear-customer-1 .button-float:hover.button-float-content-shake::after {animation: dearCustomerShake 1.4s linear infinite;}

@media (min-width: 768px) {
	.dear-customer-1 .skew-content {float: right; width: 100%; max-width: calc(660px - var(--bs-gutter-x)); height: 100%;}
	.dear-customer-1 .skew-background {border: solid #dc3545; border-width: 0 0 0 24px; transform-origin: 50% 100% 0; transform: skewX(-20deg);}
	.dear-customer-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;}
	.dear-customer-1 .skew-background-external {transform: none; left: 0; top: 100px;}
}

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

.dear-customer-1 {padding-top: 5rem; position: relative; overflow: hidden;}
.dear-customer-1 .appeal-button-float > .button-float {font-size: 1.5em; box-shadow: 0 0 1.25em rgb(245 58 58);}
.dear-customer-1 .appeal-button-float > .button-float::after {background-image: url(/assets/images/pages/prodvizhenie-saytov/dear-customer-play.svg); background-size: 50%; left: 8% !important;}
.dear-customer-1 .appeal-skew {min-height: 310px; overflow: inherit;}
.dear-customer-1 .skew-width {width: 200%;}

.dear-customer-1 .skew-background-internal {left: 25%;}

@media (min-width: 768px) {
	.dear-customer-1 .appeal-button-float {left: 8em !important;}
	.dear-customer-1 .appeal-skew {min-height: 650px;}
	.dear-customer-1 {padding-top: 0;}
}

.dear-customer-1 .accent {color: var(--bs-primary);}


@keyframes dearCustomerPulseDouble {
	0%       {transform: scale(.8333); opacity: 1;}
	33.3333% {transform: scale(.8333); opacity: .55;}
	50%      {transform: scale(.9167); opacity: .8;}
	66.6666% {transform: scale(1);     opacity: .65;}
	100%     {transform: scale(.8333); opacity: 1;}
}
@keyframes dearCustomerShake {
	0% {transform: rotateZ(45deg);}
	10% {transform: rotateZ(-45deg);}
	20% {transform: rotateZ(36deg);}
	30% {transform: rotateZ(-36deg);}
	40% {transform: rotateZ(27deg);}
	50% {transform: rotateZ(-27deg);}
	60% {transform: rotateZ(18deg);}
	70% {transform: rotateZ(-18deg);}
	80% {transform: rotateZ(9deg);}
	90% {transform: rotateZ(-9deg);}
	100% {transform: rotateZ(0);}
}

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


.published-book-1 {margin: 5rem 0;}
.published-book-1 img {max-width: 100%;}
.published-book-1 .mod-marker {flex: 0 0 auto;}
.published-book-1 .mod-list li {line-height: 150%;}

.published-book-1 .accent {color: var(--bs-primary);}

@media screen and (min-width: 992px) {
	.published-book-1 {margin-bottom: 0;}
}




.seven-employees-2 {padding: 5rem 0; position: relative; display: none;}
.seven-employees-2::before {content: ''; position: absolute; top: 0; bottom: 0; left: 0; right: 0; z-index: -1000; pointer-events: none; background: linear-gradient(180deg, rgba(255, 255, 255, 0.00) 0%, #F0F0F0 100%);}
.seven-employees-2::after {content: ''; position: absolute; top: 130px; bottom: 0; left: 0; right: 0; z-index: -1000; pointer-events: none; background: url('/assets/images/pages/kontekstnaya-reklama/seven-employees-2/001.svg') center no-repeat;}

.seven-employees-2 .users {position: relative; text-align: center;}
.seven-employees-2 .users::after {content: url('/assets/images/pages/kontekstnaya-reklama/seven-employees-2/006.png'); position: relative; margin: 20rem 0; display: block;}
.seven-employees-2 .users .item {position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); z-index: 50;}
.seven-employees-2 .users .item .item-card {transform: rotate(45deg); background: var(--bs-primary); border: .5rem #fff solid; outline: .5rem var(--bs-primary) solid; width: 145px; height: 145px; overflow: hidden; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: .3s; transform-origin: center;}
.seven-employees-2 .users .item .item-card > * {transform: rotate(-45deg); transition: .3s;}
.seven-employees-2 .users .item:nth-child(1) {margin-left: -20%; margin-top: -20%;}
.seven-employees-2 .users .item:nth-child(2) {margin-left: 20%; margin-top: -20%;}
.seven-employees-2 .users .item:nth-child(3) {margin-left: -20%; margin-top: 20%;}
.seven-employees-2 .users .item:nth-child(4) {margin-left: 20%; margin-top: 20%;}

.seven-employees-2 .users .item .item-img {position: absolute; top: -30px; left: -30px; right: -30px; bottom: -30px; opacity: 0;}
.seven-employees-2 .users .item .item-img img {width: 100%; height: 100%; object-fit: cover;}

.seven-employees-2 .users .item .item-desc {display: none; position: absolute; bottom: -100%; right: -20%; background: #fff; padding: 1rem; width: 400px; 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);}

.seven-employees-2 .users .item:hover .item-card {transform: rotate(405deg)}
.seven-employees-2 .users .item:hover .item-card .item-title {opacity: 0}
.seven-employees-2 .users .item:hover .item-card .item-img {opacity: 1}
.seven-employees-2 .users .item:hover .item-desc {display: block}

@media screen and (min-width: 1200px) {
	.seven-employees-2 .users .item:nth-child(1) {margin-left: -15%; margin-top: -15%;}
	.seven-employees-2 .users .item:nth-child(2) {margin-left: 15%; margin-top: -15%;}
	.seven-employees-2 .users .item:nth-child(3) {margin-left: -15%; margin-top: 15%;}
	.seven-employees-2 .users .item:nth-child(4) {margin-left: 15%; margin-top: 15%;}
	.seven-employees-2 .users .item:nth-child(2) .item-desc,
	.seven-employees-2 .users .item:nth-child(4) .item-desc {right: auto; left: 100%;}
	.seven-employees-2 .users .item .item-desc {bottom: 100%; right: 100%;}
}
@media screen and (min-width: 992px) {
	.seven-employees-2 {display: block;}
}

.seven-employees-2 .accent {color: var(--bs-primary);}


.competitor-metrics-1 {position: relative; padding: 4rem 0; background: var(--bs-primary); color: var(--bs-primary-text);}
.competitor-metrics-1 .accent {color: var(--bs-primary-text); opacity: 0.75;}

.competitor-metrics-1 .ba-slider {
	position: relative;
	width: 100%;
	max-width: 1100px;
	margin-left: auto;
	margin-right: auto;
	aspect-ratio: 1545 / 942;
	border-radius: 1rem;
	overflow: hidden;
	background: #fff;
	box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.12);
	user-select: none;
	-webkit-user-select: none;
	touch-action: pan-y;
	--pos: 50%;
}

.competitor-metrics-1 .ba-layer {position: absolute; inset: 0; background: #fff;}
.competitor-metrics-1 .ba-layer > div {width: 100%;}
.competitor-metrics-1 .ba-layer img {display: block; width: 100%; height: auto;}
.competitor-metrics-1 .ba-after {z-index: 1; background: #F8D7DA;}
.competitor-metrics-1 .ba-before {z-index: 2; clip-path: inset(0 calc(100% - var(--pos)) 0 0);}

.competitor-metrics-1 .ba-badge {
	position: absolute;
	top: 1rem;
	z-index: 3;
	padding: 0.35rem 0.9rem;
	border-radius: 2rem;
	line-height: 1;
	box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.15);
	pointer-events: none;
}
.competitor-metrics-1 .ba-badge > * {margin: 0; display: inline-block;}
.competitor-metrics-1 .ba-badge-before {left: 1rem; background: #6c757d;}
.competitor-metrics-1 .ba-badge-after {right: 1rem; background: var(--bs-primary);}

.competitor-metrics-1 .ba-handle {
	position: absolute;
	top: 0;
	bottom: 0;
	left: var(--pos);
	width: 0;
	z-index: 4;
	transform: translateX(-50%);
	cursor: ew-resize;
}
.competitor-metrics-1 .ba-handle-line {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 50%;
	width: 3px;
	transform: translateX(-50%);
	background: #fff;
	box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.08);
}
.competitor-metrics-1 .ba-handle-grip {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 3rem;
	height: 3rem;
	border-radius: 50%;
	background: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 0.25rem 1rem rgba(0, 0, 0, 0.25);
	transition: transform 0.15s ease;
}
.competitor-metrics-1 .ba-slider.is-dragging .ba-handle-grip {transform: translate(-50%, -50%) scale(1.08);}
.competitor-metrics-1 .ba-handle:focus {outline: none;}
.competitor-metrics-1 .ba-handle:focus-visible .ba-handle-grip {outline: 3px solid var(--bs-primary); outline-offset: 2px;}

@media (max-width: 575.98px) {
	.competitor-metrics-1 .ba-handle-grip {width: 2.4rem; height: 2.4rem;}
	.competitor-metrics-1 .ba-badge {top: 0.5rem; padding: 0.25rem 0.7rem;}
	.competitor-metrics-1 .ba-badge-before {left: 0.5rem;}
	.competitor-metrics-1 .ba-badge-after {right: 0.5rem;}
}




.slider-blog-1 .slider-blog-item {display: block; text-decoration: none; color: inherit;}

.slider-blog-1 .video-preview {
	position: relative;
	border-radius: 1rem;
	overflow: hidden;
	background: #0b0b12;
	box-shadow: 0 .5rem 1.5rem rgba(11, 11, 18, .1);
	transition: box-shadow .2s, transform .2s;
}
.slider-blog-1 .slider-blog-item:hover .video-preview {transform: translateY(-4px); box-shadow: 0 .9rem 2.25rem rgba(11, 11, 18, .18);}

.slider-blog-1 .slider-blog-preview {width: 100%; height: 200px; object-fit: cover; display: block; transition: transform .35s;}
.slider-blog-1 .slider-blog-item:hover .slider-blog-preview {transform: scale(1.05);}

.slider-blog-1 .video-preview-play {
	position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
	width: 3.5rem; height: 3.5rem; border-radius: 50%;
	background: var(--bs-primary);
	display: flex; align-items: center; justify-content: center;
	box-shadow: 0 .35rem 1rem rgba(11, 11, 18, .35);
	transition: transform .2s, background .2s;
}
.slider-blog-1 .video-preview-play i {margin-left: .15rem;}
.slider-blog-1 .slider-blog-item:hover .video-preview-play {transform: translate(-50%, -50%) scale(1.12);}

.slider-blog-1 .video-chan {
	position: absolute; top: .6rem; left: .6rem;
	background: rgba(var(--bs-primary-rgb), .92);
	border-radius: 2rem; padding: .15rem .6rem;
	max-width: calc(100% - 1.2rem); overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.slider-blog-1 .video-dur {
	position: absolute; bottom: .6rem; right: .6rem;
	background: rgba(11, 11, 18, .8);
	border-radius: .4rem; padding: .1rem .45rem;
}

.slider-blog-1 .video-preview-label {
	margin-top: .75rem; line-height: 1.35; color: var(--bs-body-color);
	display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.slider-blog-1 .slider-blog-item:hover .video-preview-label {color: var(--bs-primary);}


.slider-blog-1 .slider-blog {padding: .5rem .25rem 1rem;}
.slider-blog-1 .slider-blog-crs .owl-stage {padding-block: .35rem;}

.slider-blog-1 .slider-blog-crs .owl-dots {position: static; left: auto; bottom: auto; transform: none; text-align: center; margin-top: 1.35rem; display: flex; gap: .4rem; justify-content: center;}
.slider-blog-1 .slider-blog-crs .owl-dots .owl-dot span {display: block; width: .55rem; height: .55rem; margin: 0; border-radius: 50%; background: rgba(var(--bs-primary-rgb), .25); transition: background .2s, width .2s;}
.slider-blog-1 .slider-blog-crs .owl-dots .owl-dot.active span {background: var(--bs-primary); width: 1.4rem; border-radius: 1rem;}
.slider-blog-1 .slider-blog + .text-center {margin-top: 1.5rem;}


.module.slider-blog-1 {padding:100px 0;}



.stop-word-1 {position: relative; margin-top: 5rem; padding-bottom: 3rem;}
.stop-word-1::before {content: ''; position: absolute; top: 0; bottom: 0; left: 0; right: 0; z-index: -1000; pointer-events: none; background: #EC3737 !important; background-size: 100% 100% !important;}

.stop-word-1 .text-stop-word::before {content: ''; z-index: 0; position: absolute; background: linear-gradient(90deg, #000 0%, rgba(0, 0, 0, 0.00) 100%); top: 0; left: 0%; width: 100%; height: 100%;}
.stop-word-1 .text-stop-word > div {position: relative; z-index: 1;}
.stop-word-1 .girl {background: #fff; border-top: 5px solid #dc3545;}
.stop-word-1 .image {display: flex; align-items: flex-end; justify-content: center;}
.stop-word-1 .image img {max-width: 100%; max-height: 100%; object-fit: contain; object-position: bottom;}
.stop-word-1 .form-control {width: 100%; background: transparent; border: 5px solid #fff; border-radius: 4px; color: #fff;}
.stop-word-1 .form-control::-webkit-input-placeholder {color: #fff; opacity: 50%;}
.stop-word-1 .btn.btn-primary {background: #fff; border: 2px solid #fff; color: var(--bs-primary); transition: .3s;}
.stop-word-1 .btn.btn-primary:hover {background: none; color: #fff;}
.stop-word-1 .bg-custom {background: #EC3737;}

@media screen and (min-width: 576px) {
	.stop-word-1 .form-control {width: 21rem;}
}

@media screen and (min-width: 992px) {
	.stop-word-1 .text-stop-word::before {left: -100%; width: 300%;}
	.stop-word-1 .girl {background: none; border: none;}
	.stop-word-1 .row {border-top: 5px solid #dc3545;}
}
@media screen and (min-width: 1200px) {
	.stop-word-1 .text-stop-word::before {left: -70%;}
	.stop-word-1::before {background: url('/assets/images/pages/kontekstnaya-reklama/stop-word-1/034.svg') top no-repeat !important; background-size: 100% 100% !important;}
}


.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;}
}


