

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

.banner-2 {padding-top: 100px; padding-bottom: 100px;}

.banner-2 .color-pur {color: #5A48FA;}
.banner-2 .col-grey {color: #787878;}

.banner-2 .title-up {border-radius: 30px; border: 1px solid #FFF; background: rgba(255, 255, 255, 0.40); backdrop-filter: blur(5px);}
.banner-2 .title-up p {padding: .75rem 2rem .75rem 4rem;}
.banner-2 .title-up-color {position: relative;}
.banner-2 .title-up-color::before {content: ''; position: absolute; top: 50%; left: -2rem; transform: translateY(-50%); background: #5A48FA; width: 13px; height: 13px; border-radius: 50%;}
.banner-2 .title-banner {line-height: 140%;}
.banner-2 .title-down {background: linear-gradient(93deg, #FF5252 0.77%, #EA0000 39.08%); background-clip: text; -webkit-background-clip: text; -webkit-text-fill-color: transparent;}
.banner-2 .result-banner {gap: 5rem;}
.banner-2 .wrap-promotion-ai {background: #fff; border-radius: 24px; gap: .5rem; box-shadow: 0 4px 60px 0 rgba(145, 145, 145, 0.10);}
.banner-2 .top-right {border-radius: 30px; background: rgba(101, 204, 46, 0.20);}
.banner-2 .request {border-radius: 10px; background: #F5F6FB;}



.product-purchase-1 {border-top: 1px solid #C8C8C8; border-bottom: 1px solid #C8C8C8; padding-top: 100px; padding-bottom: 100px;}

.product-purchase-1 .product-purshase-time {border-radius: 30px; background: rgba(234, 0, 0, 0.10);}

.product-purchase-1 .title .accent {background: linear-gradient(272deg, #EA0000 0.09%, #FF5252 99.91%); background-clip: text; -webkit-background-clip: text; -webkit-text-fill-color: transparent;}

.product-purchase-1 .desc .accent {color: #110F2D;}

.product-purchase-1 .wrap-calculate {background: #fff; border-radius: 24px; gap: .5rem; box-shadow: 0 4px 60px 0 rgba(145, 145, 145, 0.10);}
.product-purchase-1 .live_label {position: relative;}
.product-purchase-1 .tochka {background: #65CC2E; width: 13px; height: 13px; border-radius: 50%;}


.module.product-purchase-1 {padding:48px 0;}



.ai-the-future-1 {position: relative; padding-top: 100px; padding-bottom: 100px;}

.ai-the-future-1 .accent {color: var(--bs-primary);}
.ai-the-future-1 .col-grey {color: #787878;}


.ai-the-future-1 .card {background: linear-gradient(145deg, #FF5252 1.32%, #EA0000 98.68%); border-radius: 30px;}
.ai-the-future-1 .card-analysis,
.ai-the-future-1 .card-grafic {border-radius: 30px; background: #FFF; box-shadow: 0 4px 60px 0 rgba(145, 145, 145, 0.10);}
.ai-the-future-1 .text-cont {color: rgba(189, 181, 253, 1);}
.ai-the-future-1 .text-ceo {color: rgba(156, 145, 252, 1);}
.ai-the-future-1 .text-ai {background: linear-gradient(130deg, #5A48FA 10.5%, #9F0FFF 89.5%); background-clip: text; -webkit-background-clip: text; -webkit-text-fill-color: transparent;}

.ai-the-future-1 .card-img [data-image="card_image"] {position: absolute; top: 0; left: 0; width: 100%; height: 100%;}
.ai-the-future-1 .card-img [data-image="card_image"] img {width: 100%; height: 100%;}
.ai-the-future-1 .card-grafic-img img {width: 100%; object-fit: cover;}

@media (max-width: 1399.98px) {
	.ai-the-future-1 .card-img {padding-top: 4rem !important; padding-bottom: 4rem !important;}
}

@media (max-width: 767.98px) {
	.module.ai-the-future-1 {padding-top: 60px !important; padding-bottom: 60px !important;}
}


.module.ai-the-future-1 {padding:160px 0;}



.slider-ai-1 {position: relative; padding-top: 100px; padding-bottom: 100px;}
.slider-ai-1 .wrap-item {box-shadow: 0 4px 10px 0 rgba(90, 72, 250, 0.10); border-radius: 30px; background: #FFF;}



.income-from-ai-1 {padding-top: 100px; padding-bottom: 100px;}

.income-from-ai-1 .income-from-ai-title .accent {color: var(--bs-primary);}

.income-from-ai-1 .wrap-calculator {border-radius: 30px; background: #FFF; box-shadow: 0 23px 64.2px 0 rgba(90, 72, 250, 0.10);}

.income-from-ai-1 .input-group label {font-weight: 700; color: #787878;}
.income-from-ai-1 .slider-value {font-weight: 700; color: #110F2D;}

.income-from-ai-1 #aiRevenue {background: linear-gradient(271deg, #EA0000 46.12%, #FF5252 99.41%); background-clip: text; -webkit-background-clip: text; -webkit-text-fill-color: transparent;}

.income-from-ai-1 .ai-boost,
.income-from-ai-1 .stat-row,
.income-from-ai-1 .calc-result {border-radius: 30px; background: #FFF;}
.income-from-ai-1 .stat-roi {border-radius: 30px; background: linear-gradient(93deg, #FF5252 0.17%, #EA0000 99.83%); position: relative;}
.income-from-ai-1 .stat-roi::before,
.income-from-ai-1 .stat-roi::after {content: ''; position: absolute; top: 0; width: 50%; height: 100%; border-radius: 30px; box-shadow: 0px 0px 20px 0px #EA0000; z-index: -1;}
.income-from-ai-1 .stat-roi::before {animation: incomeAiLeftbg 3s ease-in-out infinite; left: 0;}
.income-from-ai-1 .stat-roi::after {animation: incomeAiRightbg 3s ease-in-out infinite; right: 0;}

.income-from-ai-1 input[type="range"] {appearance: none; height: 6px;}
.income-from-ai-1 input[type="range"]::-webkit-slider-thumb {appearance: none; width: 20px; height: 20px; background: #ef4444; border-radius: 50%; cursor: pointer;}
.income-from-ai-1 .input-group>:not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback) {border-radius: 10px;}

@keyframes incomeAiLeftbg {
	0% {opacity: 0;}
	50% {opacity: 1;}
	100% {opacity: 0;}
}
@keyframes incomeAiRightbg {
	0% {opacity: 1;}
	50% {opacity: 0;}
	100% {opacity: 1;}
}


.analysis-1 {padding-top: 100px; padding-bottom: 100px;}
.analysis-1 .row-info {background: #fff; border-radius: 30px;}
.analysis-1 .row-info .item-list {position: relative;}
.analysis-1 .row-info .item-list::before {content: ''; position: absolute; width: 13px; height: 13px; background: #5A48FA; border-radius: 50%; top: 50%; left: 0; transform: translateY(-50%);}
.analysis-1 .row-info .img-title {color: #5A48FA;}
.analysis-1 .row-info .wrap-list {gap: .75rem;}
.analysis-1 .input-analysis {height: 4.75rem; border-radius: 30px;}
.analysis-1 .btn-analysis {top: 50%; transform: translateY(-50%); right: 1rem; border-radius: 30px;}




.where-client-looking-1 {padding-top: 100px; padding-bottom: 100px;}
.where-client-looking-1 .where-client-looking-title .accent {color: var(--bs-primary);}
.where-client-looking-1 .logo-card {background: #fff; border: 1px solid rgba(0,0,0,.08); border-radius: 1rem; padding: 1.25rem; box-shadow: 0 .25rem 1rem rgba(0,0,0,.04); transition: box-shadow .2s ease, transform .2s ease;}
.where-client-looking-1 .logo-card:hover {box-shadow: 0 .5rem 1.5rem rgba(0,0,0,.08); transform: translateY(-.25rem);}
.where-client-looking-1 .logo-img {width: 100%; height: 4.5rem; object-fit: contain;}

@media screen and (max-width: 767.98px) {
	.where-client-looking-1 .logo-card {padding: .875rem; border-radius: .75rem;}
	.where-client-looking-1 .logo-img {height: 3.5rem;}
}


.rate-1 {padding-top: 100px; padding-bottom: 100px;}
.rate-1 .accent {color: var(--bs-primary);}

.rate-1 .rate-card {
	border-radius: 1rem;
	border: 1px solid rgba(17, 15, 45, 0.08);
	box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .075);
	transition: transform .2s ease-in-out, box-shadow .2s ease-in-out;
}
.rate-1 .rate-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 1rem 3rem rgba(26, 0, 255, 0.12);
}
.rate-1 .rate-card-accent {
	border-width: 2px;
	box-shadow: 0 .5rem 2rem rgba(26, 0, 255, 0.15);
}

.rate-1 .rate-name {
	background: linear-gradient(90deg, #5A48FA 34.36%, #9F0FFF 67.06%);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}
.rate-1 .price {display: flex; align-items: baseline; flex-wrap: wrap; gap: .35rem;}
.rate-1 .price-amount {white-space: nowrap;}
.rate-1 .price-currency {white-space: nowrap;}
.rate-1 .rate-text i {flex: 0 0 auto;}


.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;}



.fos-ai-1 {padding-top: 100px; padding-bottom: 100px;}

.fos-ai-1 .fos-form form {display: flex; flex-wrap: wrap; gap: 0 2.5rem; justify-content: center;}
.fos-ai-1 .fos-form form > .mb-3 {flex: 1 1 calc(50% - 1.25rem); margin-bottom: 3rem !important;}
.fos-ai-1 .fos-form .form-consent {flex: 0 0 100%; order: 3; margin-top: 1rem; text-align: center;}
.fos-ai-1 .fos-form .form-consent a {color: #fff; text-decoration: underline;}

.fos-ai-1 .form-control {background-color: transparent; border: none; border-bottom: 1px solid #fff; border-radius: 0; color: #fff;}
.fos-ai-1 .form-control::placeholder {color: #fff;}
.fos-ai-1 .form-control:focus {background-color: transparent; color: #fff; box-shadow: none;}

.fos-ai-1 .fos-form .btn {order: 2; flex: 0 0 auto; width: auto !important; background: #fff; border-color: #fff; color: #EA0000;}
.fos-ai-1 .fos-form .btn:hover {background: #fff; color: #EA0000;}

.fos-ai-1 .wrap-btn {gap: 2.5rem;}

@media (max-width: 767.98px) {
	.fos-ai-1 .fos-form form > .mb-3 {flex: 1 1 100%;}
}


.module.fos-ai-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;}
}


