

.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;}
}



@media (max-width: 767.98px) {
	.module.hero-5 {padding: 20px 0 !important;}
}

.hero-5 {
	--hero-ink: #0b0b12;
	--hero-muted: var(--bs-secondary-color);
	--hero-card-bg: #ffffff;
	--hero-card-shadow: 0 1.5rem 3rem rgba(11, 11, 18, .12);
	--hero-ring: rgba(var(--bs-primary-rgb), .14);
	position: relative;
	overflow: hidden;
}

.hero-5 .hero-wrap { position: relative; z-index: 1; }

.hero-5 .hero-badge {
	border: 1px solid rgba(var(--bs-primary-rgb), .25);
	border-radius: 2rem;
	background: rgba(var(--bs-primary-rgb), .06);
	font-size: .95rem;
	line-height: 1.2;
}
.hero-5 .hero-badge::before {
	content: '';
	width: .5rem;
	height: .5rem;
	border-radius: 50%;
	background: var(--bs-primary);
	flex: 0 0 auto;
}

.hero-5 .hero-sub {
	max-width: 34rem;
}

.hero-5 .hero-services {
	max-width: 36rem;
	gap: .5rem;
}
.hero-5 .hero-service {
	display: inline-flex;
	align-items: center;
	border: 1px solid rgba(var(--bs-primary-rgb), .22);
	border-radius: 2rem;
	background: rgba(var(--bs-primary-rgb), .05);
	line-height: 1.1;
	color: var(--bs-body-color);
	text-decoration: none;
	transition: background .2s ease, border-color .2s ease, color .2s ease;
}
.hero-5 a.hero-service:hover,
.hero-5 a.hero-service:focus-visible {
	background: var(--bs-primary);
	border-color: var(--bs-primary);
	color: var(--bs-primary-text, #fff);
}

.hero-5 .hero-stats {
	gap: 1.5rem 2.5rem;
	padding: 1.25rem 1.5rem;
	border: 1px solid rgba(11, 11, 18, .08);
	border-radius: 1rem;
	background: var(--hero-card-bg);
	box-shadow: 0 .5rem 1.5rem rgba(11, 11, 18, .05);
	width: fit-content;
	max-width: 100%;
}
.hero-5 .hero-stat-ico {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.75rem;
	height: 2.75rem;
	border-radius: .75rem;
	background: rgba(var(--bs-primary-rgb), .1);
	flex: 0 0 auto;
}
.hero-5 .hero-stat-body { display: flex; flex-direction: column; line-height: 1.15; }

.hero-5 .hero-scene {
	position: relative;
	max-width: 40rem;
	margin-inline: auto;

}
.hero-5 .hero-elephant {
	position: relative;
	z-index: 3;
	display: block;
	width: 68%;
	height: auto;
	margin-inline: auto;
	filter: drop-shadow(0 1.5rem 2rem rgba(11, 11, 18, .18));
}
.hero-5 .hero-layer {
	position: absolute !important;
	inset: 0;
	pointer-events: none;
}
.hero-5 .hero-fig {
	position: absolute;
	display: block;
	height: auto;
}
.hero-5 .z-dashboard { z-index: 1; }
.hero-5 .z-phone { z-index: 4; }
.hero-5 .z-chart,
.hero-5 .z-cube,
.hero-5 .z-result { z-index: 5; }

.hero-5 .hero-dashboard {
	top: 2%;
	left: -8%;
	width: 76%;
	z-index: 1;
	filter: drop-shadow(0 1rem 2.5rem rgba(11, 11, 18, .14));
}
.hero-5 .hero-phone {
	right: 0;
	bottom: 4%;
	width: 23%;
	z-index: 4;
	filter: drop-shadow(0 1rem 2rem rgba(11, 11, 18, .22));
	animation-delay: -2s;
}
.hero-5 .hero-chart {
	top: 6%;
	right: -6%;
	width: 46%;
	z-index: 5;
	border-radius: 1rem;
	filter: drop-shadow(0 1rem 2rem rgba(11, 11, 18, .12));
	animation-delay: -4s;
}
.hero-5 .hero-cube {
	left: 14%;
	bottom: 0;
	width: 12%;
	z-index: 5;
	filter: drop-shadow(0 .5rem 1rem rgba(11, 11, 18, .2));
	animation-delay: -1s;
}

.hero-5 .hero-result {
	left: -6%;
	bottom: 18%;
	width: 44%;
	z-index: 5;
	border-radius: 1rem;
	background: var(--hero-card-bg);
	box-shadow: var(--hero-card-shadow);
	animation-delay: -3s;
}
.hero-5 .hero-result-title {
	display: block;
}
.hero-5 .hero-result li + li { margin-top: .45rem; }
.hero-5 .hero-result-label {
	display: inline-flex;
	align-items: center;
	gap: .4rem;
}
.hero-5 .hero-result-val {
	white-space: nowrap;
}

@keyframes hero-5-float {
	0%, 100% { transform: translate3d(0, 0, 0); }
	50%      { transform: translate3d(0, -.75rem, 0); }
}
.hero-5 .hero-float {
	animation: hero-5-float 6s ease-in-out infinite;
	will-change: transform;
}

@media (max-width: 991.98px) {
	.hero-5 .hero-scene-col { order: -1; }
	.hero-5 .hero-scene { max-width: 34rem; margin-top: 0; }
	.hero-5 .hero-sub { max-width: none; }
}
@media (max-width: 767.98px) {

	.hero-5 .hero-phone,
	.hero-5 .hero-cube,
	.hero-5 .hero-result { display: none; }
	.hero-5 .hero-chart { top: 0; right: -2%; width: 54%; }
	.hero-5 .hero-elephant { width: 74%; }
	.hero-5 .hero-stats { gap: 1rem 1.5rem; padding: 1rem; }
}
@media (max-width: 575.98px) {
	.hero-5 .hero-stat-ico { width: 2.25rem; height: 2.25rem; }
}

@media (prefers-reduced-motion: reduce) {
	.hero-5 .hero-float { animation: none; }
}


.module.hero-5 {padding:80px 0;}

.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;}




.electric-car-1 {position: relative; z-index: 0; overflow: hidden; min-height: 42.34vw;}

@media (max-width: 767.98px) {
	.module.electric-car-1 {padding-bottom: 100% !important;}
}

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



.module.electric-car-1 {padding:50px 0;}



.lets-guess-1 .module-background.image {background-size: 100% !important; background-position: bottom !important;}

.lets-guess-1 {position: relative; z-index: 0;}

@media (max-width: 767.98px) {
	.module.lets-guess-1 {padding-bottom: 200px !important;}
}

.lets-guess-1 .mod-author { font-style: normal; line-height: 2.8125rem;}
.lets-guess-1 .mod-author span {font-weight: 700;}


.module.lets-guess-1 {padding:50px 0;}



.call_back_red-1 .cbr {
	width: min(100%, 1560px);
	margin-inline: auto;
	background: var(--bs-primary);
	border-radius: 2.5rem;
	padding: 3.75rem 1.25rem;
}

.call_back_red-1 .form-control {border-radius: 0.62rem; border: 2px solid #fff; background: transparent; color: #fff; font-size: 1.125rem; font-weight: 400; line-height: 125%;}
.call_back_red-1 .form-control::placeholder {color: rgba(255, 255, 255, 0.85);}
.call_back_red-1 .form-control:focus {background: transparent; color: #fff; box-shadow: none; border-color: #fff;}

.call_back_red-1 .form-consent {margin-top: 1.5rem; font-size: .875rem; color: #fff;}
.call_back_red-1 .form-consent a {color: #fff; font-weight: 500; text-decoration: underline;}

@media (max-width: 767.98px) {
	.call_back_red-1 .cbr {padding: 2rem 1.25rem;}
}
@media screen and (min-width: 992px) {
	.call_back_red-1 .cbr {border-radius: 5rem;}
}
@media screen and (min-width: 1200px) {
	.call_back_red-1 .cbr {border-radius: 6.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;}



.pizza-1 {
	--pz-warm: 255, 150, 60;    
	--pz-dark: 0, 0, 0;         
	position: relative;
	z-index: 0;
	overflow-x: clip;
	background:
		radial-gradient(115% 85% at 100% 0%, rgba(var(--pz-warm), .80) 0%, rgba(var(--pz-warm), 0) 45%),
		radial-gradient(95% 120% at 0% 12%, rgba(var(--pz-dark), .50) 0%, rgba(var(--pz-dark), 0) 58%),
		radial-gradient(85% 110% at 100% 100%, rgba(var(--pz-dark), .42) 0%, rgba(var(--pz-dark), 0) 52%),
		var(--bs-primary);
}

.pizza-1 .title {line-height: 110%;}
.pizza-1 .desc {opacity: .92;}

.pizza-1 .form-control {max-width: 19.5rem; background: #fff; border-radius: 3.125rem; border: 2px solid transparent; font-weight: 500; line-height: 150%;}
.pizza-1 .form-control::placeholder {color: rgba(40, 40, 40, 0.50); font-weight: 500; line-height: 150%;}

.pizza-1 .form-control:focus {background: #fff; border-color: rgba(var(--pz-warm), 1); box-shadow: 0 0 0 .25rem rgba(var(--pz-warm), .35);}

.pizza-1 .form-consent {margin-top: 1.25rem; font-size: .875rem; color: #fff; opacity: .85; max-width: 24rem;}
.pizza-1 .form-consent a {color: #fff; font-weight: 500; text-decoration: underline;}

.pizza-1 .image {margin-top: 2.5rem;}
.pizza-1 .image img {width: min(100%, 22rem); height: auto;}

.pizza-1 .parallaxScene {position: absolute; inset: 0; max-width: 1920px; pointer-events: none; z-index: -1;}

.pizza-1 .parallaxScene > div {position: absolute !important; inset: 0; margin: 0; will-change: transform;}
.pizza-1 .parallaxScene > div > img {position: absolute;}
.pizza-1 .item-1 img {bottom: 0; right: 46rem;}
.pizza-1 .item-2 img {bottom: 40%; right: 40%;}
.pizza-1 .item-3 img {bottom: 44%; left: 47%;}
.pizza-1 .item-4 img {top: 2rem; right: 23rem;}
.pizza-1 .item-5 img {top: 13%; right: 4%;}
.pizza-1 .item-6 img {top: 22%; right: 1%;}
.pizza-1 .item-7 img {top: 10%; right: 1%;}
.pizza-1 .item-8 img {top: 13%; right: 16%;}
.pizza-1 .item-9 img {bottom: 0; right: 1%;}
.pizza-1 .item-9 {opacity: .9;}

.pizza-1 .mod-decor-1,
.pizza-1 .mod-decor-2,
.pizza-1 .mod-decor-3 {pointer-events: none; z-index: -10;}
.pizza-1 .mod-decor-1 {bottom: 5rem; left: -13rem; animation: pizzaCircle 23s linear infinite forwards; transform-origin: center;}
.pizza-1 .mod-decor-2 {bottom: 5rem; left: -18rem; animation: pizzaCircle 24s linear infinite forwards; transform-origin: center;}
.pizza-1 .mod-decor-3 {bottom: 2rem; left: -15rem; animation: pizzaCircle 27s linear infinite forwards; transform-origin: center;}

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

	.pizza-1 .image {position: absolute; top: 50%; left: -2rem; width: 42rem; margin: 0; transform: translateY(-50%); z-index: -3;}
	.pizza-1 .image img {width: 100%; animation: pizzaFloat 9s ease-in-out infinite;}
}
@media screen and (min-width: 1400px) {
	.pizza-1 .parallaxScene {z-index: 1;}
	.pizza-1 .image {width: 48rem;}
}

@keyframes pizzaCircle {
	0% {transform: scale(1);}
	50% {transform: scale(1.2);}
	100% {transform: scale(1);}
}
@keyframes pizzaFloat {
	0% {transform: translateY(0) rotate(0deg);}
	50% {transform: translateY(-14px) rotate(-1.5deg);}
	100% {transform: translateY(0) rotate(0deg);}
}

@media (prefers-reduced-motion: reduce) {
	.pizza-1 * {animation: none !important; transition: none !important;}
	.pizza-1 .parallaxScene > div {transform: none !important;}
}


.module.pizza-1 {padding:100px 0;}

.brainstorm-1 {position: relative; z-index: 0; overflow: hidden;
	background: url('/assets/images/pages/home/brainstorm-1/bg.svg') center top no-repeat;
	background-size: contain;}
.brainstorm-1 .title span {color: var(--bs-primary);}


.brainstorm-1 .bs-step {
	border-radius: 1rem;
	background: #fff;
	box-shadow: 0 .25rem .5rem rgba(0, 0, 0, .06), 0 0 2px rgba(0, 0, 0, .12);
	transition: transform .25s ease, box-shadow .25s ease;
}
.brainstorm-1 .bs-step:hover {
	transform: translateY(-3px);
	box-shadow: 0 .75rem 1.5rem rgba(0, 0, 0, .1);
}
.brainstorm-1 .bs-step-num {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.5rem;
	height: 2.5rem;
	border-radius: 50%;
	background: var(--bs-primary);
}
.brainstorm-1 .bs-step-text {line-height: 1.35;}
.brainstorm-1 .bs-format {padding: .5rem 1.1rem; border-radius: 2rem; background: rgba(var(--bs-primary-rgb), .08);}
.brainstorm-1 .bs-guarantee {padding: .45rem 1.1rem; border-radius: 2rem; background: rgba(var(--bs-success-rgb), .12);}


.brainstorm-1 .bs-coffee img {max-width: none;}
.brainstorm-1 .vapour {pointer-events: none; position: absolute; display: flex; z-index: 1; top: -5rem; left: 50%; transform: translateX(-50%); width: 60%;}
.brainstorm-1 .vapour span {position: relative; bottom: 50px; display: block; margin: 0 3px 50px; min-width: 11px; height: 130px; background: rgba(230, 230, 230, .75); animation: brainstormVapour 5s linear infinite; animation-delay: calc(var(--i) * -0.5s); filter: blur(6px); border-radius: 50%; opacity: 1;}

@keyframes brainstormVapour {
	0%   {transform: translateY(0) scaleX(1); opacity: 0;}
	15%  {opacity: 1;}
	50%  {transform: translateY(-150px) scaleX(5);}
	95%  {opacity: 0;}
	100% {transform: translateY(-300px) scaleX(10); opacity: 0;}
}

@media (prefers-reduced-motion: reduce) {
	.brainstorm-1 * {animation: none !important; transition: none !important;}
}


.module.brainstorm-1 {padding:80px 0;}



.plane-1 {position: relative; z-index: 0; overflow: hidden;}

.plane-1 .head-btn {gap: .94rem;}

.plane-1 .subtitle { line-height: 135%;}
.plane-1 .mod-jet {gap: 1.25rem; margin-top: 3.88rem;}
.plane-1 .image-plane {position: relative; margin-bottom: 7.25rem;}
.plane-1 .image-plane::before {content: ''; position: absolute; width: 200%; height: 100%; left: -26%; border-radius: 20px 0 0 0; top: 0; background: linear-gradient(to right, #FFF 0%, rgba(255, 255, 255, 0.00) 100%); z-index: -1; pointer-events: none;}
.plane-1 .image-plane img {max-width: 100%;}
.plane-1 img {max-width: 100%;}

.plane-1 .mod-play {cursor: pointer;}
.plane-1 .mod-play svg {overflow: visible;}
.plane-1 .mod-play:hover path {filter: blur(1px); animation: planeVibrate 100ms linear infinite forwards;}
.plane-1 .mod-play:hover circle.circle1 {animation: planeScaleCircle 1s linear infinite forwards; transform-origin: center;}
.plane-1 .mod-play:hover circle.circle2 {animation: planeScaleCircle 5s linear infinite forwards; transform-origin: center;}
.plane-1 .mod-play:hover circle.circle3 {animation: planeScaleCircle 10s linear infinite forwards; transform-origin: center;}

.plane-1 .image-jet:hover {filter: blur(1px); animation: planeVibrate 100ms linear infinite forwards;}

.plane-1 .plane{bottom: 0; left: 0; z-index: 5; animation: planeBalance 5s infinite forwards; pointer-events: none;}

@media screen and (min-width: 992px) {
	.plane-1 .plane {left: -37rem;}
}
@media screen and (min-width: 1200px) {
	.plane-1 .plane {left: -27rem;}
}
@media screen and (min-width: 1400px) {
	.plane-1 .plane {left: -16rem;}
}
@media screen and (min-width: 1600px) {
	.plane-1 .plane {left: 0;}
}

@keyframes planeVibrate {
	0% {transform: translateX(-1px) translateY(1px);}
	100% {transform: translateX(1px) translateY(-1px);}
}
@keyframes planeScaleCircle {
	0% {transform: scale(1);}
	50% {transform: scale(1.1);}
	100% {transform: scale(1);}
}
@keyframes planeBalance {
	0% {transform: translateY(0) scale(1);}
	50% {transform: translateY(-20px) scale(1.05);}
	100% {transform: translateY(0) scale(1);}
}

@media (prefers-reduced-motion: reduce) {
	.plane-1 * {animation: none !important; transition: none !important;}
}


.module.plane-1 {padding:50px 0;}

.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;}



.scaling-mark-1 {position: relative; overflow: hidden;}

.scaling-mark-1 .mod-subtitle {line-height: 100%; margin-bottom: 5.5rem;}
.scaling-mark-1 .mod-desc {margin-bottom: 5rem;}
.scaling-mark-1 .mod-desc::before {content: ''; z-index: -1; left: -100%; top: 0; width: 200%; height: 100%; position: absolute; background: linear-gradient(90deg, var(--bs-primary) 0%, rgba(var(--bs-primary-rgb), 0.75) 71.87%, rgba(var(--bs-primary-rgb), 0) 100%);}

.scaling-mark-1 .globe-container,
.scaling-mark-1 .globe {width: 650px; height: 650px;}
.scaling-mark-1 .globe-container {position: absolute; display: inline-block; margin: 30px; bottom: -280px; right: 100%; margin-right: -40vw; z-index: 0; pointer-events: none;}
.scaling-mark-1 .row {position: relative; z-index: 1;}
.scaling-mark-1 .globe-scene {position: relative; width: 100%; height: 100%;}
.scaling-mark-1 .globe {position: absolute !important; inset: 0; display: block;}
.scaling-mark-1 .globe-worldmap,
.scaling-mark-1 .globe-worldmap-front,
.scaling-mark-1 .globe-worldmap-back,
.scaling-mark-1 .globe-sphere,
.scaling-mark-1 .globe-outer-shadow,
.scaling-mark-1 .globe-inner-shadow {position: absolute; display: block; margin: 0;}
.scaling-mark-1 .globe-sphere,
.scaling-mark-1 .globe-outer-shadow,
.scaling-mark-1 .globe-inner-shadow {left: 0; top: 0; width: 100%; height: 100%; background-position: 0 0; background-size: 100% 100%; background-repeat: no-repeat;}
.scaling-mark-1 .globe-worldmap {left: 0; top: 0; width: 100%; height: 100%; overflow: hidden; border-radius: 50%;}

.scaling-mark-1 .globe-worldmap-front,
.scaling-mark-1 .globe-worldmap-back {left: 0; top: 0; width: 376.6vh; height: 100%; overflow: visible; background-size: 100% 100%;}

.scaling-mark-1 .globe-inner-shadow {background-image: url('/assets/images/pages/home/064.svg');}
.scaling-mark-1 .globe-sphere {background-image: url('/assets/images/pages/home/063.svg');}
.scaling-mark-1 .globe-worldmap-front {background-position: 0px 0px; animation: scalingTextureSpinReverse 8s linear infinite; background-image: url('/assets/images/pages/home/158.svg'); background-repeat: repeat;}
.scaling-mark-1 .globe-worldmap-back {background-position: 0px 0px; animation: scalingTextureSpin 8s linear infinite; background-image: url('/assets/images/pages/home/159.svg'); background-repeat: repeat;}

@media screen and (min-width: 992px) {
	.scaling-mark-1 .mod-desc::before {left: 0; width: 100%;}
}
@media screen and (min-width: 1400px) {

	.scaling-mark-1 .globe-container {transform: scale(1.1);}
}

@keyframes scalingTextureSpin {
	from {transform: translateX(0);}
	to {transform: translateX(-47.5%);}
}
@keyframes scalingTextureSpinReverse {
	from {transform: translateX(-47.5%);}
	to {transform: translateX(0);}
}

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

.scaling-mark-1 .subtitle {color: #ffffff;}
.scaling-mark-1 .desc {padding-left: 40%;}


.module.scaling-mark-1 {padding:100px 0;}

.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;}
}


.wow-effect-1 {position: relative; overflow: hidden; padding-bottom: 0 !important;}
.wow-effect-1 .title span {color: var(--bs-primary);}


.wow-effect-1 .wow-author-img {width: 100%; max-width: 24rem; height: auto; display: block; margin-inline: auto; border-radius: 1.25rem 1.25rem 0 0;}


.wow-effect-1 .wow-tip {
	border: 1px solid rgba(0, 0, 0, .08);
	border-radius: 1rem;
	background: #fff;
	transition: transform .25s ease, box-shadow .25s ease;
}
.wow-effect-1 .wow-tip:hover {transform: translateY(-3px); box-shadow: 0 .75rem 1.5rem rgba(0, 0, 0, .08);}
.wow-effect-1 .wow-num {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.25rem;
	height: 2.25rem;
	border-radius: 50%;
	background: var(--bs-primary);
}
.wow-effect-1 .wow-tip-title {line-height: 1.2;}
.wow-effect-1 .wow-tip-desc {line-height: 1.35;}


.module.wow-effect-1 {padding:50px 0;}



.beef-1 {position: relative; overflow: hidden;}

.beef-1 .mod-sub {color: rgba(255, 255, 255, 0.85);}

.beef-1 .mod-btns {gap: 1rem;}



.beef-1 .mod-img-logo {position: relative; z-index: 4;}
.beef-1 .mod-img-logo .image-1 {animation: beefSpinLogo 10s linear infinite;}
.beef-1 .mod-img-logo .image-2 {position: absolute; transform: translate(-50%, -50%); top: 50%; left: 50%;}

.beef-1 .mod-smoke {position: absolute; top: 24rem; right: 20%; z-index: 0; justify-content: center; pointer-events: none;}
.beef-1 .mod-smoke span {position: relative; bottom: 50px; display: block; margin: 0 2px 50px; min-width: 8px; height: 120px; background: #fff; border-radius: 50%; opacity: .5; filter: blur(8px); animation: beefSmoke 5s linear infinite; animation-delay: calc(var(--i) * -0.5s);}

.beef-1 .mod-decor {bottom: -14.5em; left: 0; pointer-events: none; z-index: -1;}

@media screen and (min-width: 992px) {
	.beef-1 {overflow: visible;}
}

@keyframes beefSpinLogo {
	0% {transform: rotate(0deg);}
	100% {transform: rotate(360deg);}
}

@keyframes beefSmoke {
	0%   {transform: translateY(0) scaleX(1); opacity: 0;}
	15%  {opacity: 1;}
	50%  {transform: translateY(-150px) scaleX(5);}
	95%  {opacity: 0;}
	100% {transform: translateY(-300px) scaleX(10); opacity: 0;}
}

@media (prefers-reduced-motion: reduce) {
	.beef-1 * {animation: none !important;}
}


.module.beef-1 {padding:100px 0;}



.constructor-1 {position: relative; overflow: hidden;}

.constructor-1 .accent {color: var(--bs-primary);}
.constructor-1 .mod-container-constructor {border-radius: 1.87rem; background: #fff; box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.20), 0px 0px 4px 0px rgba(0, 0, 0, 0.15); padding: 1.75rem 2.5rem; display: grid; gap: 1.25rem;}

.constructor-1 .mod-question-block {max-width: 33.8rem; width: 100%; display: grid; gap: 1.1rem;}
.constructor-1 .mod-question-block .p { font-weight: 400 !important; line-height: 125% !important;}
.constructor-1 .mod-question-block label {margin-bottom: .62rem;}

.constructor-1 .form-control,
.constructor-1 .form-select {border-radius: 1.875rem; border: 2px solid var(--bs-primary); max-width: 31.25rem; font-weight: 400; line-height: 150%;}
.constructor-1 .form-control::placeholder {color: #616160;}
.constructor-1 .form-control:focus,
.constructor-1 .form-select:focus,
.constructor-1 .form-check-input:focus {box-shadow: 0 0 6px var(--bs-primary);}

.constructor-1 .price {color: #616160; white-space: nowrap;}

.constructor-1 .form-check-input {min-width: 2.18rem; min-height: 2.18rem; border: none; background: url('/assets/images/pages/home/form-no-check.svg') center no-repeat; background-size: cover; cursor: pointer;}
.constructor-1 .form-check-input:checked {background: url('/assets/images/pages/home/form-check.svg') center no-repeat; background-size: cover;}
.constructor-1 .form-check-label {cursor: pointer;}
.constructor-1 .mod-form-check {gap: 1.5rem;}

.constructor-1 .mod-dots {gap: .31rem;}
.constructor-1 .mod-dots .mod-dot {width: 0.93rem; height: 0.93rem; border: 1px solid #616160; background: #fff; border-radius: 50%;}
.constructor-1 .mod-dots .mod-dot.active {border: 1px solid var(--bs-primary); background: var(--bs-primary);}
.constructor-1 .mod-constructor-center .mod-constructor-line {background: var(--bs-primary); height: 13rem; width: 6px; border-radius: .61rem; top: 50%; left: 50%; transform: translate(-50%, -50%);}

.constructor-1 .slide {display: none;}
.constructor-1 .slide.active {display: grid;}
.constructor-1 .mod-form-block.d-flex {gap: 1.1rem;}
.constructor-1 .error-message {display: none;}
.constructor-1 .block_grid {display: grid; gap: 0.9rem;}
.constructor-1 .mod-question-block#constructor-1-slide4 {justify-content: end;}
.constructor-1 .block_constructor_feedback {max-width: 28.9rem; display: grid; gap: 1.25rem; justify-content: center;}
.constructor-1 .block_feedback-exp {width: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1.25rem; max-width: 19.5rem;}

.constructor-1 .image {width: 100%;}
.constructor-1 .image img {max-width: 100%; display: none;}
.constructor-1 .image img.active {display: block;}
.constructor-1 form {width: 100%;}

.constructor-1 .mod-navigation .btn-primary {overflow: hidden; max-width: 12.5rem; position: relative; border-radius: 10px; border: 2px solid var(--bs-primary); font-weight: 600; box-shadow: none; font-style: normal; line-height: normal;
	--bs-btn-hover-bg: #fff; --bs-btn-hover-color: var(--bs-primary); --bs-btn-hover-border-color: var(--bs-primary);}
.constructor-1 .mod-navigation .next-button {width: 100%;}
.constructor-1 .mod-navigation .btn-primary::after {position: absolute; pointer-events: none; transform-origin: center; transform: rotate(20deg); content: ''; width: 3rem; height: 5rem; right: 2rem; bottom: -1rem; background: rgba(255, 255, 255, 0.10);}
.constructor-1 .mod-navigation .mod-prev svg path {fill: #fff;}
.constructor-1 .mod-navigation .mod-prev:hover svg path {fill: var(--bs-primary);}
.constructor-1 .btn_contain {max-width: 12.5rem; width: 100%;}

@media screen and (min-width: 992px) {
	.constructor-1 form {max-width: 50%;}
	.constructor-1 .image {width: auto;}
}
@media screen and (min-width: 1400px) {
	.constructor-1 form {max-width: 50%;}
}



.module.constructor-1 {padding:50px 0;}



.articles-1 {position: relative; padding-top: 5rem; padding-bottom: 5rem; overflow: hidden;}

.articles-1 .row {margin-top: 0; margin-bottom: 0;}

.articles-1 .mod-block-text {z-index: 10;}

.articles-1 .mod-link a {color: var(--bs-primary); font-weight: 600; text-decoration: underline;}




.tender-1 {position: relative; overflow: hidden;}

.tender-1 .image-main {z-index: -5;}
.tender-1 .image-main img {max-width: 100%; height: auto;}
.tender-1 .mod-decor-fon {right: 0; bottom: 5rem; pointer-events: none; z-index: -20;}
.tender-1 .mod-decor-fon img {max-width: 100%; height: auto;}


.tender-1 .mod-block-text img {max-width: 100%;}

@media screen and (min-width: 992px) {
	.tender-1 .title {margin-right: 4.44rem;}
}



.module.tender-1 {padding:50px 0;}

.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;}


.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;}




.call_back_red-2 .cbr {
	width: min(100%, 1560px);
	margin-inline: auto;
	background: var(--bs-primary);
	border-radius: 2.5rem;
	padding: 3.75rem 1.25rem;
}

.call_back_red-2 .form-control {border-radius: 0.62rem; border: 2px solid #fff; background: transparent; color: #fff; font-size: 1.125rem; font-weight: 400; line-height: 125%;}
.call_back_red-2 .form-control::placeholder {color: rgba(255, 255, 255, 0.85);}
.call_back_red-2 .form-control:focus {background: transparent; color: #fff; box-shadow: none; border-color: #fff;}

.call_back_red-2 .form-consent {margin-top: 1.5rem; font-size: .875rem; color: #fff;}
.call_back_red-2 .form-consent a {color: #fff; font-weight: 500; text-decoration: underline;}

@media screen and (min-width: 992px) {
	.call_back_red-2 .cbr {border-radius: 5rem;}
}
@media screen and (min-width: 1200px) {
	.call_back_red-2 .cbr {border-radius: 6.25rem;}
}


.published-book-1 .book-cover {
	max-width: 460px;
	width: 100%;
	height: auto;
	transform: rotate(-8deg);
}

.published-book-1 .book-text {
	text-align: right;
}

.published-book-1 .book__buy {
	flex: 0 0 auto;
	white-space: nowrap;
}


.published-book-1 .book__audio {
	display: flex;
	align-items: center;
	gap: 16px;
	max-width: 600px;
	margin: 26px 0 0 auto;
	padding: 14px 18px;
	background: #fff;
	border: 1px solid rgba(0, 0, 0, .08);
	border-radius: 16px;
	box-shadow: 0 18px 44px rgba(0, 0, 0, .10);
	text-align: left;
}

.published-book-1 .book__audio-btn {
	flex: 0 0 auto;
	width: 54px;
	height: 54px;
	border-radius: 50%;
	background: var(--bs-primary);
	border: none;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: .2s;
}

.published-book-1 .book__audio-btn:hover {
	background: var(--bs-primary-hover);
	transform: scale(1.06);
}

.published-book-1 .book__audio-btn svg {
	width: 22px;
	height: 22px;
	fill: #fff;
	display: block;
}

.published-book-1 .book__audio-btn .ic-pause {
	display: none;
}

.published-book-1 .book__audio.is-playing .ic-play {
	display: none;
}

.published-book-1 .book__audio.is-playing .ic-pause {
	display: block;
}

.published-book-1 .book__audio-body {
	flex: 1 1 auto;
	min-width: 0;
}

.published-book-1 .book__audio-label {
	margin-bottom: 9px;
}

.published-book-1 .book__audio-bar {
	height: 6px;
	border-radius: 4px;
	background: rgba(0, 0, 0, .1);
	position: relative;
	overflow: hidden;
	cursor: pointer;
}

.published-book-1 .book__audio-fill {
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 0;
	background: var(--bs-primary);
	border-radius: 4px;
	transition: width .1s linear;
}

.published-book-1 .book__audio-meta {
	display: flex;
	justify-content: space-between;
	gap: 12px;
	margin-top: 9px;
}

.published-book-1 .book__audio-time {
	flex: 0 0 auto;
	font-variant-numeric: tabular-nums;
}

@media (max-width: 991px) {
	.published-book-1 .book-text {
		text-align: left;
	}
	.published-book-1 .book-cover {
		max-width: 320px;
	}
	.published-book-1 .book__audio {
		margin-left: 0;
		max-width: none;
	}
}


.module.published-book-1 {padding:50px 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;}



.bet-on-speed-1 {position: relative;}

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

.bet-on-speed-1 h2 {line-height: 150%;}
.bet-on-speed-1 .mod-text {line-height: 120%;}

.bet-on-speed-1 .mod-btns {gap: 1rem;}

.bet-on-speed-1 .mod-panel {position: relative; z-index: 2;}
.bet-on-speed-1 .mod-cheetah {position: absolute; right: 50%; bottom: -5%; z-index: 3; height: 120%; pointer-events: none; margin-right: -600px;}
.bet-on-speed-1 .mod-cheetah-layer {height: 100%;}
.bet-on-speed-1 .mod-cheetah img {max-width: none; height: 100%;}

.bet-on-speed-1 .title .accent {color: var(--bs-primary);}
.bet-on-speed-1 .text_2 {color: #000000;}


.module.bet-on-speed-1 {padding:50px 0;}



.guess-1 {position: relative; overflow: hidden;}
.guess-1 .text-danger {color: var(--bs-primary) !important;}


.guess-1 .mod-kicker {letter-spacing: .02em;}
.guess-1 .mod-question {line-height: 1.15;}


.guess-1 .mod-ico-badge {width: 2.75rem; height: 2.75rem; display: inline-flex; align-items: center; justify-content: center; border-radius: 50%; background: rgba(var(--bs-primary-rgb), .12);}
.guess-1 .mod-item-text {line-height: 1.2;}

.guess-1 .mod-note {font-style: italic;}
.guess-1 .mod-note i {margin-top: .25rem;}


.guess-1 .mod-artemiy {display: flex; justify-content: center;}

.guess-1 .mod-artemiy-img {height: 80%; position: absolute; right: 50%; margin-right: max(-50vw, calc(-660px - 3rem)); transform: translateY(-50%);}
@media (max-width: 767.98px) {
	.guess-1 .mod-artemiy-img {height: auto; position: static; right: auto; margin-right: 0; transform: none; max-width: 100%;}
}

.guess-1 .mod-bubble {position: absolute; top: 1.5rem; right: 0; z-index: 2; max-width: 15rem; padding: .85rem 1.15rem; background: #fff; border: 2px solid var(--bs-primary); border-radius: 1rem; box-shadow: 0 .75rem 1.75rem rgba(0, 0, 0, .12);}
.guess-1 .mod-bubble::after {content: ''; position: absolute; right: -.55rem; bottom: 1.1rem; width: 1rem; height: 1rem; background: #fff; border-right: 2px solid var(--bs-primary); border-bottom: 2px solid var(--bs-primary); transform: rotate(-45deg);}
.guess-1 .typing-text {display: block; min-height: 3.4em;}

@media (max-width: 575px) {
	.guess-1 .mod-bubble {max-width: 12rem; padding: .65rem .9rem;}
}


.module.guess-1 {padding:100px 0;}



.always-losing-1 .module-background.image {background-position: bottom center !important;}

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

.always-losing-1 .mod-stat {background: rgba(255, 255, 255, 0.94); box-shadow: 0 .5rem 1.5rem rgba(0, 0, 0, .08);}
.always-losing-1 .mod-stat-text {line-height: 1.4;}

@media (prefers-reduced-motion: reduce) {
	.always-losing-1 * {animation: none !important;}
}


.module.always-losing-1 {padding:60px 0;}



.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;}
}




.wheel-luck-1 {position: relative; overflow: hidden;}

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

.wheel-luck-1 .mod-decor {position: absolute; right: 0; top: 50%; transform: translateY(-50%); z-index: -10; pointer-events: none;}
.wheel-luck-1 .dis-grid {display: grid; justify-content: end;}

.wheel-luck-1 .wheel-luck {width: 500px; height: 500px; border-radius: 50%; position: relative; z-index: 5;}
.wheel-luck-1 .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-1 .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-1 .wheel-luck .wheel-luck-circle .wheel-luck-img {position: absolute; top: 0; left: 0;}
.wheel-luck-1 .wheel-luck .wheel-luck-circle .wheel-luck-img[data-point="2"] {left: auto; right: 0;}
.wheel-luck-1 .wheel-luck .wheel-luck-circle .wheel-luck-img[data-point="3"] {left: auto; right: 0;}
.wheel-luck-1 .wheel-luck .wheel-luck-circle .wheel-luck-img[data-point="4"] {left: auto; top: auto; right: 0; bottom: 0;}
.wheel-luck-1 .wheel-luck .wheel-luck-circle .wheel-luck-img[data-point="5"] {top: auto; bottom: 0;}
.wheel-luck-1 .wheel-luck .wheel-luck-circle .wheel-luck-img[data-point="6"] {top: auto; bottom: 0;}

.wheel-luck-1 .wheel-luck-img[data-point="1"] img {width: 500px; height: 328px;}
.wheel-luck-1 .wheel-luck-img[data-point="2"] img {width: 330px; height: 500px;}
.wheel-luck-1 .wheel-luck-img[data-point="3"] img {width: 391px; height: 375px;}
.wheel-luck-1 .wheel-luck-img[data-point="4"] img {width: 372px; height: 395px;}
.wheel-luck-1 .wheel-luck-img[data-point="5"] img {width: 500px; height: 328px;}
.wheel-luck-1 .wheel-luck-img[data-point="6"] img {width: 398px; height: 391px;}
.wheel-luck-1 .wheel-luck-img[data-point="7"] img {width: 301px; height: 500px;}
.wheel-luck-1 .wheel-luck-img[data-point="8"] img {width: 376px; height: 405px;}

.wheel-luck-1 .wheel-luck .wheel-luck-center-img {position: absolute; top: 50%; left: 50%; z-index: 10; transform: translate(-50%, -50%);}
.wheel-luck-1 .wheel-luck .wheel-luck-mark {position: absolute; top: 50%; right: -18px; transform: translateY(-50%); z-index: 10;}
.wheel-luck-1 .form-control {border: 3px solid #000;}

.wheel-luck-1 .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-1 .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-1 .wheel-popup.show {opacity: 1; pointer-events: auto;}
.wheel-luck-1 .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-1 .wheel-prize .btn.btn-primary {margin: 0 auto;}
.wheel-luck-1 .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-1 .wheel-prize__close::before {content: ""; position: absolute; width: 100%; height: 2px; background: #000; transform: rotate(45deg);}
.wheel-luck-1 .wheel-prize__close::after {content: ""; position: absolute; width: 100%; height: 2px; background: #000; transform: rotate(-45deg);}

@media screen and (min-width: 576px) {
	.wheel-luck-1 .wheel-luck {width: 631px; height: 631px;}
	.wheel-luck-1 .wheel-luck-img[data-point="1"] img {width: 631px; height: 429px;}
	.wheel-luck-1 .wheel-luck-img[data-point="2"] img {width: 431px; height: 631px;}
	.wheel-luck-1 .wheel-luck-img[data-point="3"] img {width: 500px; height: 478px;}
	.wheel-luck-1 .wheel-luck-img[data-point="4"] img {width: 479px; height: 502px;}
	.wheel-luck-1 .wheel-luck-img[data-point="5"] img {width: 631px; height: 420px;}
	.wheel-luck-1 .wheel-luck-img[data-point="6"] img {width: 505px; height: 482px;}
	.wheel-luck-1 .wheel-luck-img[data-point="7"] img {width: 432px; height: 631px;}
	.wheel-luck-1 .wheel-luck-img[data-point="8"] img {width: 479px; height: 497px;}
}
@media screen and (min-width: 1200px) {
	.wheel-luck-1 .dis-grid {display: block;}
}

@media screen and (max-width: 991.98px) {
	.wheel-luck-1 .send_form .form-consent {margin-bottom: 1rem;}
	.wheel-luck-1 .send_form button[type="submit"] {margin-top: .5rem;}
}



.module.wheel-luck-1 {padding:50px 0;}

.we-hold-forums-1 {position: relative; overflow: hidden;
	background: url('/assets/images/pages/home/157.jpg') left bottom no-repeat;
	background-size: auto 90%;}


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


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


.we-hold-forums-1 .mod-title {margin-bottom: .5rem;}
.we-hold-forums-1 .mod-sub-title {margin-bottom: 0; line-height: 1.45;}


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


.we-hold-forums-1 .mod-counter .mod-allItems {color: rgba(0, 0, 0, .32);}
.we-hold-forums-1 .btns {gap: 1rem;}
.we-hold-forums-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);}
.we-hold-forums-1 .btns .btn:hover {border-color: #000;}


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

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


.do-you-share-views-1 {position: relative;}

.do-you-share-views-1 .text-danger {color: var(--bs-primary) !important;}


.do-you-share-views-1 .mod-panel {position: relative; z-index: 2; background: rgba(255, 255, 255, .9); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px); border-radius: 1.5rem; padding: 2rem; box-shadow: 0 1rem 2.5rem rgba(0, 0, 0, .1);}


.do-you-share-views-1 .mod-person {right: 50%; bottom: 0; z-index: 1; height: 110%; pointer-events: none; margin-right: -600px;}
.do-you-share-views-1 .mod-person-layer {height: 100%;}
.do-you-share-views-1 .mod-person img {max-width: none; height: 100%; display: block;}


@media (max-width: 767.98px) {
	.module.do-you-share-views-1 {padding: 50px 0 !important;}
}


.module.do-you-share-views-1 {padding:200px 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;}
}




.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;}
}


