

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


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

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

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


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

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


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


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


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




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

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

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

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

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

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


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


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


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

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


.home-6 {position: relative; padding: 5rem 0 3rem; overflow: hidden;}

.home-6 .module-background.image {background-position: 78% center !important;}

.home-6 .color-blue-1 {color: #0B3B53;}
.home-6 .color-blue-2 {color: #2990C3;}
.home-6 .color-red {color: #EC3737;}

.home-6 .title {margin-bottom: 2rem;}
.home-6 .author span {color: #2990C3;}

.home-6 .mod-callback {padding: 2rem; position: relative; z-index: 10; border-radius: 1.25rem; box-shadow: 0 .14rem 1.5rem 0 rgba(0, 0, 0, 0.07);}

.home-6 .decor {position: absolute; z-index: 1; pointer-events: none; user-select: none;}
.home-6 .decor-1 {width: 12rem; left: 42%; bottom: 2.5rem;}
.home-6 .decor-2 {width: 10rem; left: 0.5rem; bottom: 1rem;}

@media screen and (min-width: 576px) {
	.home-6 .module-background.image {background-position: center !important;}
}
@media screen and (min-width: 992px) {
	.home-6 {min-height: 34rem;}
	.home-6 .module-background.image {background-position: right center !important;}
}
@media screen and (min-width: 1200px) {
	.home-6 .title {margin-bottom: 2.5rem;}
	.home-6 .decor-1 {width: 14rem;}
	.home-6 .decor-2 {width: 12rem;}
}
@media screen and (min-width: 1400px) {
	.home-6 .mod-callback {padding: 3rem;}
}


.can-do-everything-1 {position: relative; padding: 2rem 0 5rem;}
.can-do-everything-1 .mod-card {border-radius: 1.25rem; background: #F8F8F8; padding: 1.5rem 2rem;}

.can-do-everything-1 .color-blue-1 {color: #0B3B53;}

@media screen and (min-width: 768px) {
    .can-do-everything-1 .image {margin-right: 3.75rem;}
}
@media screen and (min-width: 992px) {
    .can-do-everything-1 .mod-card {padding: 1.5rem 2.5rem;}
}


.mobile-1 {position: relative; padding: 5rem 0;}
.mobile-1 .row {border-radius: 1.25rem;}
.mobile-1 .image img {max-width: 100%; height: auto;}
.mobile-1 .mod-item  {position: relative;}

.mobile-1 .mod-item .mod-title {position: relative;}
.mobile-1 .mod-item .mod-title::before {position: absolute; content: ''; height: 2px; background: #2990C3; bottom: -1rem; right: 0; width: 100%;}

@media screen and (min-width: 1200px) {
    .mobile-1 .mod-item {width: fit-content;}
    .mobile-1 .mod-item .mod-title::before {position: absolute; content: ''; height: 2px; background: #2990C3; bottom: -1rem; right: 0; }
    .mobile-1 .mod-item .mod-title::after {position: absolute; content: ''; height: 2px; background: #2990C3; bottom: -1rem; left: 0; transform-origin: right;}
    .mobile-1 .mod-item.item-1 {left: 0;}
    .mobile-1 .mod-item.item-2 {left: 40%;}
    .mobile-1 .mod-item.item-3 {left: 10%;}
    .mobile-1 .mod-item.item-1 .mod-title::before {width: 141%;}
    .mobile-1 .mod-item.item-2 .mod-title::before {width: 200%;}
    .mobile-1 .mod-item.item-3 .mod-title::before {width: 125%;}
    .mobile-1 .mod-item.item-1 .mod-title::after {width: 4rem; left: -68%; transform: rotate(60deg);}
    .mobile-1 .mod-item.item-2 .mod-title::after {width: 3rem; left: -114%; transform: rotate(-19deg);}
    .mobile-1 .mod-item.item-3 .mod-title::after {width: 6rem; left: -65%; transform: rotate(22deg);}
}
@media screen and (min-width: 1400px) {
    .mobile-1 .mod-item.item-1 .mod-title::after {transform: rotate(33deg);}
    .mobile-1 .mod-item.item-2 .mod-title::after {width: 6rem; left: -128%; transform: rotate(-31deg);}
    .mobile-1 .mod-item.item-3 .mod-title::after { transform: rotate(-18deg);}
}


.heart-company-1 {position: relative; overflow: hidden; padding: 3rem 0 4rem; margin-top: 5rem; margin-bottom: 0;}
.heart-company-1 .image {margin-top: 3rem;}
.heart-company-1 .image img {animation: heartbeat 1s infinite; max-width: 100%; height: auto;}

.heart-company-1 .color-blue-1 {color: #0B3B53;}

@media screen and (min-width: 992px) {
    .heart-company-1 {margin-bottom: 5rem; padding-bottom: 4rem;}
}

@keyframes heartbeat {
    0% {transform: scale(1);}
    20% {transform: scale(1.08);}
    40% {transform: scale(1.15);}
}




.price-5 {position: relative; padding: 5rem 0;}
.price-5 .mod-card {border-radius: 1.25rem; background: #F8F8F8;}
.price-5 .image {flex: 0 0 auto; max-width: 45%;}
.price-5 .image img {max-width: 100%; height: auto;}

.price-5 .color-blue-1 {color: #0B3B53;}

.price-5 .btn-primary {--color: #fff; width: 17.5rem; background: #328BB8; display: inline-block; line-height: 2.5em; overflow: hidden; z-index: 1; color: var(--color); border: 2px solid #328BB8; border-radius: 6px; position: relative;}
.price-5 .btn-primary::before {position: absolute; content: ""; background: var(--color); width: 200%; height: 300%; z-index: -1; border-radius: 50%; top: 100%; left: 100%; transition: .3s all;}
.price-5 .btn-primary:hover {color: #328BB8;}
.price-5 .btn-primary:hover::before {top: -2rem; left: -2rem;}



.portfolio-5 {position: relative; margin: 5rem 0;}
.portfolio-5 > .container,
.portfolio-5 > .container-fluid {display: flex; flex-direction: column; height: 100%; padding-left: 0; padding-right: 0;}
.portfolio-5 .h0 {font-size: 0 !important; margin: 0 !important; padding: 0 !important;}
.portfolio-5 .portfolio-card {position: relative;}
.portfolio-5 .portfolio-img-container {position: relative; height: 100%;}
.portfolio-5 .portfolio-label {display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; background-color: rgba(0,0,0,.6); position: absolute; top: 0; right: 0; bottom: 0; left: 0;}
.portfolio-5 .portfolio-img {height: 250px; width: 100%; object-fit: cover;}
@media (min-width: 992px) {
	.portfolio-5 .flex-basis-lg-33 {flex-basis: 33.3333% !important;}
	.portfolio-5 .flex-basis-lg-50 {flex-basis: 50% !important;}
	.portfolio-5 .flex-basis-lg-66 {flex-basis: 66.6666% !important;}
	.portfolio-5 .portfolio-label {opacity: 0; transition: .5s;}
	.portfolio-5 .portfolio-highlighted > .portfolio-label,
	.portfolio-5 .portfolio-card:hover > .portfolio-label {opacity: 1;}
	.portfolio-5 .portfolio-img {position: absolute; top: 0; left: 0; height: 100%;}
	.portfolio-5 {height: 100vh; height: calc(var(--vh, 1vh) * 100); min-height: 880px; max-height: 1080px;}
}
@media (min-width: 1200px) {
	.portfolio-5 {min-height: 720px;}
}




.work-plan-1 {position: relative; padding: 10rem 0 0; overflow: hidden;}
.work-plan-1 .mod-card {border-radius: 1.25rem; background: #F8F8F8; padding: 1rem 2rem;}
.work-plan-1 .mod-term {color: rgba(41, 144, 195, 0.20);}
.work-plan-1 .image img {max-width: 100%;}
@media screen and (min-width: 768px) {
	.work-plan-1 .image img {max-width: none;}
}
@media screen and (min-width: 992px) {
	.work-plan-1 .text {width: 13.12rem;}
	.work-plan-1 .mod-card {padding-left: 5rem; padding-right: 2.5rem;}
}
@media screen and (min-width: 1400px) {
	.work-plan-1 .text {width: 13.12rem;}
}
@media screen and (min-width: 1400px) {
	.work-plan-1 .text {white-space: nowrap;}
}

.work-plan-1 .color-blue-1 {color: #0B3B53;}

.work-plan-1 .btn-primary {--color: #fff; width: 17.5rem; background: #328BB8; display: inline-block; line-height: 2.5em; overflow: hidden; z-index: 1; color: var(--color); border: 2px solid #328BB8; border-radius: 6px; position: relative;}
.work-plan-1 .btn-primary::before {position: absolute; content: ""; background: var(--color); width: 200%; height: 300%; z-index: -1; border-radius: 50%; top: 100%; left: 100%; transition: .3s all;}
.work-plan-1 .btn-primary:hover {color: #328BB8;}
.work-plan-1 .btn-primary:hover::before {top: -2rem; left: -2rem;}



.feedback-integration-1 {position: relative; overflow-x: hidden; padding: 5rem 0;}
.feedback-integration-1 > .container-fluid {padding-left: 0; padding-right: 0;}

.feedback-integration-1 .color-blue-2 {color: #2990C3;}

.feedback-integration-1 .mod-bg {background: #F8F8F8;}
.feedback-integration-1 .mod-title {float: right;}
.feedback-integration-1 .mod-card img {display: block; max-width: 100%; height: auto;}
.feedback-integration-1 .image img {max-width: 100%;}
.feedback-integration-1 .image {margin-top: 5rem;}
@media screen and (min-width: 992px) {
    .feedback-integration-1 {padding: 10rem 0 10rem;}
}
@media screen and (min-width: 1200px) {
    .feedback-integration-1 .mod-title {white-space: nowrap;}
    .feedback-integration-1 .mod-cards-1  {margin-top: -10%;}
    .feedback-integration-1 .mod-cards-2  {margin-top: 7rem; margin-bottom: -10%;}
    .feedback-integration-1 .image {margin-left: 7rem;}
}



.received-an-award-1 {position: relative; padding: 5rem 0 5rem;}
.received-an-award-1 .image img {max-width: 100%; width: 100%;}
.received-an-award-1 .img-gif img {max-width: 100%;}
.received-an-award-1 .img-gif {position: sticky; top: 6.5rem; text-align: center;}
.received-an-award-1 .image {border-radius: 1.25rem; overflow: hidden; position: relative;}

.received-an-award-1 .color-blue-2 {color: #2990C3;}

.received-an-award-1 .decor-1 {position: absolute; top: -105rem; left: -33rem; width: fit-content; z-index: -1; pointer-events: none;}
.received-an-award-1 .decor-2 {position: absolute; top: -74rem; right: 5rem; width: fit-content; z-index: -1; pointer-events: none;}
.received-an-award-1 .decor-3 {position: absolute; top: -5rem; left: -13rem; width: fit-content; z-index: -1; pointer-events: none;}
.received-an-award-1 .decor-4 {position: absolute; bottom: -5rem; right: -0%; width: fit-content; z-index: -1; pointer-events: none;}
@media screen and (min-width: 992px) {
    .received-an-award-1  { padding: 5rem 0 10rem;}
    .received-an-award-1 .mod-img-1 .image-1,
    .received-an-award-1 .mod-img-1 .image-4 {width: 80%; max-height: 23rem;}
    .received-an-award-1 .mod-img-2 .image-0 {width: 80%; max-height: 23rem;}
}

@media screen and (min-width: 1780px) {
    .received-an-award-1 .decor-4 {right: -15%;}
}


.made-a-lot-of-websites-1 {position: relative; padding: 100px 0 0;}

.made-a-lot-of-websites-1 .mod-bg {padding-top: 5rem;}
.made-a-lot-of-websites-1 .image img {max-width: 100%; height: auto;}

.made-a-lot-of-websites-1 .color-blue-1 {color: #0B3B53;}
.made-a-lot-of-websites-1 .color-blue-2 {color: #2990C3;}

.made-a-lot-of-websites-1 .btn-primary {--color: #fff; width: 17.5rem; background: #328BB8; display: inline-block; line-height: 2.5em; overflow: hidden; z-index: 1; color: var(--color); border: 2px solid #328BB8; border-radius: 6px; position: relative;}
.made-a-lot-of-websites-1 .btn-primary::before {position: absolute; content: ""; background: var(--color); width: 200%; height: 300%; z-index: -1; border-radius: 50%; top: 100%; left: 100%; transition: .3s all;}
.made-a-lot-of-websites-1 .btn-primary:hover {color: #328BB8;}
.made-a-lot-of-websites-1 .btn-primary:hover::before {top: -2rem; left: -2rem;}




.customers-raise-revenue-1 {padding: 5rem 0; position: relative; z-index: 16; overflow: hidden;}
.customers-raise-revenue-1 .mod-cards {border-radius: 1.25rem; background: #F8F8F8;}

.customers-raise-revenue-1 .image {filter: drop-shadow(5px 5px 45px rgba(0, 0, 0, 0.15));}
.customers-raise-revenue-1 .image img {max-width: 100%;}
@media screen and (min-width: 576px) {
    .customers-raise-revenue-1 .image img {max-width: 9.7rem;}
}

.customers-raise-revenue-1 .row,
.customers-raise-revenue-1 .pt-4 {position: relative; z-index: 1;}

.customers-raise-revenue-1 .decor-flourish {position: absolute; left: -3rem; bottom: -2rem; pointer-events: none; width: fit-content; z-index: 0;}
.customers-raise-revenue-1 .decor-flourish img {max-width: 100%;}

.customers-raise-revenue-1 .color-blue-2 {color: #2990C3;}

.customers-raise-revenue-1 .btn-primary {--color: #fff; width: 17.5rem; background: #328BB8; display: inline-block; line-height: 2.5em; overflow: hidden; z-index: 1; color: var(--color); border: 2px solid #328BB8; border-radius: 6px; position: relative;}
.customers-raise-revenue-1 .btn-primary::before {position: absolute; content: ""; background: var(--color); width: 200%; height: 300%; z-index: -1; border-radius: 50%; top: 100%; left: 100%; transition: .3s all;}
.customers-raise-revenue-1 .btn-primary:hover {color: #328BB8;}
.customers-raise-revenue-1 .btn-primary:hover::before {top: -2rem; left: -2rem;}




.describe-the-benefits-1 {padding: 5rem 0; position: relative;}
.describe-the-benefits-1 .num-card {border-radius: 1.25rem; background: #F8F8F8;}
.describe-the-benefits-1 .image {height: 28.12rem; object-fit: cover; overflow: hidden; border-radius: 1.25rem;}
.describe-the-benefits-1 .text {width: 100%; top: 2.5rem; right: 0; background: rgba(255, 255, 255, 0.60); backdrop-filter: blur(7.5px);}

.describe-the-benefits-1 .num svg {width: 2rem; height: auto;}
@media screen and (min-width: 992px) {
	.describe-the-benefits-1 .num svg {width: auto;}
}
@media screen and (min-width: 1200px) {
	.describe-the-benefits-1 .text {width: 34rem; border-radius: .31rem 0 0 .31rem; border-left: .25rem solid #EC3737;}
}

.describe-the-benefits-1 .color-blue-2 {color: #2990C3;}



.prices-in-other-clinics-1 {padding: 4rem 0; position: relative; overflow: hidden;}

.prices-in-other-clinics-1 .color-blue-1 {color: #0B3B53;}
.prices-in-other-clinics-1 .color-blue-2 {color: #2990C3;}

.prices-in-other-clinics-1 .image img {max-width: 100%; height: auto;}

.prices-in-other-clinics-1 .connector {display: none;}

@media screen and (min-width: 992px) {
	.prices-in-other-clinics-1 {padding: 6rem 0;}
	.prices-in-other-clinics-1 .image img {max-width: none;}

	.prices-in-other-clinics-1 .connector {display: block; position: absolute; left: 100%; bottom: 0.4rem;
		height: auto; z-index: 1; pointer-events: none;}
}



.feedback-questions-1 {margin: 5rem 0; position: relative; z-index: 1;}
.feedback-questions-1 > .container-fluid {padding-left: 0; padding-right: 0;}

.feedback-questions-1 .color-blue-2 {color: #2990C3;}

.feedback-questions-1 .mod-card {padding: 1rem; border-radius: 1.25rem; background: #F8F8F8; position: relative;}
.feedback-questions-1 .form-control {height: 100%; border: .2rem solid #2990C3; background: transparent;}
.feedback-questions-1 .image img {border-radius: 1.25rem; max-width: 100%; border: .25rem solid #FFF; background: #FFF; box-shadow: 0 .25rem 1.5rem 0 rgba(0, 0, 0, 0.07);}
.feedback-questions-1 .decor-feedback {position: absolute; z-index: -1; right: 0; bottom: -24rem; pointer-events: none;}

.feedback-questions-1 .send_form .btn-primary {--color: #fff; background: #328BB8; display: inline-block; line-height: 2.5em; overflow: hidden; z-index: 1; color: var(--color); border: 2px solid #328BB8; border-radius: 6px; position: relative; width: 100%;}
.feedback-questions-1 .send_form .btn-primary::before {position: absolute; content: ""; background: var(--color); width: 200%; height: 300%; z-index: -1; border-radius: 50%; top: 100%; left: 100%; transition: .3s all;}
.feedback-questions-1 .send_form .btn-primary:hover {color: #328BB8;}
.feedback-questions-1 .send_form .btn-primary:hover::before {top: -2rem; left: -2rem;}

@media screen and (min-width: 576px) {
	.feedback-questions-1 .mod-card {padding: 2.5rem;}
}
@media screen and (min-width: 992px) {
	.feedback-questions-1 .image img {position: absolute; left: 0; transform: translateY(-50%); top: 50%;}
}
@media screen and (min-width: 1400px) {
	.feedback-questions-1 {margin: 10rem 0;}
}

.feedback-questions-1 .parallaxScene {position: absolute; bottom: 0; top: 0; left: 0; right: 0; z-index: -1;}
.feedback-questions-1 .item-2 {position: absolute; bottom: 55%; left: 0%;}




.your-website-1 {position: relative; padding: 5rem 0; z-index: 2;}
.your-website-1 > .container-fluid {padding-left: 0; padding-right: 0;}

.your-website-1 .mod-item {position: relative;}

@media screen and (min-width: 992px) {
	.your-website-1 {min-height: 42rem;}
	.your-website-1 .items {padding-top: 6rem;}
}




.we-care-1 {position: relative; margin: 5rem 0; z-index: 2;}
.we-care-1 .image {width: 100%; height: 100%; pointer-events: none; object-fit: cover; overflow: hidden;}
.we-care-1 .mod-item {border-radius: 1.25rem; background: #F8F8F8; overflow: hidden;}
.we-care-1 .mod-item .text {padding-left: 1.5rem; padding-right: 1.5rem;}
.we-care-1 .image-2 img {position: absolute; max-width: 100%; bottom: 0; transform: translateX(-50%); left: 50%;}
.we-care-1 .decor {position: absolute; right: -19%; pointer-events: none; transform: translateY(-50%); top: 50%;}

.we-care-1 .btn-primary {--color: #fff; width: 17.5rem; background: #328BB8; display: inline-block; line-height: 2.5em; overflow: hidden; z-index: 1; color: var(--color); border: 2px solid #328BB8; border-radius: 6px; position: relative;}
.we-care-1 .btn-primary::before {position: absolute; content: ""; background: var(--color); width: 200%; height: 300%; z-index: -1; border-radius: 50%; top: 100%; left: 100%; transition: .3s all;}
.we-care-1 .btn-primary:hover {color: #328BB8;}
.we-care-1 .btn-primary:hover::before {top: -2rem; left: -2rem;}

@media screen and (min-width: 992px) {
	.we-care-1 .mod-item {height: 18.75rem;}
}
@media screen and (min-width: 1200px) {
	.we-care-1 .mod-item .text {padding-left: 3.75rem; padding-right: 2.6rem;}
}




.do-a-surgery-1 {position: relative; padding: 200px 0;}

.do-a-surgery-1 .color-blue-2 {color: #2990C3;}




.premium-service-1 {position: relative; margin: 5rem 0;}
.premium-service-1 .mod-card {border-radius: 1.25rem; padding: 1.5rem 2rem; background: #F8F8F8;}
.premium-service-1 .image {max-width: 100%;}
@media screen and (min-width: 576px) {
	.premium-service-1 .mod-card {padding: 2.5rem 3.37rem;}
}
@media screen and (min-width: 992px) {
	.premium-service-1 .image {position: relative; margin-top: -12rem;}
}
@media screen and (min-width: 1200px) {
	.premium-service-1 .image {position: absolute; top: 0; right: 0; margin-top: 0;}
	.premium-service-1 .mod-card {padding: 2.5rem 3.37rem 15rem;}
}
@media screen and (min-width: 1800px) {
	.premium-service-1 .image {top: -3rem; right: -11rem;}
}

.premium-service-1 .color-blue-1 {color: #0B3B53;}

.premium-service-1 .btn-primary {--color: #fff; width: 100%; background: #328BB8; display: inline-block; line-height: 2.5em; overflow: hidden; z-index: 1; color: var(--color); border: 2px solid #328BB8; border-radius: 6px; position: relative;}
.premium-service-1 .btn-primary::before {position: absolute; content: ""; background: var(--color); width: 200%; height: 300%; z-index: -1; border-radius: 50%; top: 100%; left: 100%; transition: .3s all;}
.premium-service-1 .btn-primary:hover {color: #328BB8;}
.premium-service-1 .btn-primary:hover::before {top: -2rem; left: -2rem;}
@media screen and (min-width: 576px) {
	.premium-service-1 .btn-primary {width: 17.5rem;}
}



.yandex-google-1 {position: relative; padding: 5rem 0}

.yandex-google-1 .color-blue-1 {color: #0B3B53;}
.yandex-google-1 .color-blue-2 {color: #2990C3;}

.yandex-google-1 .image {text-align: center;}
.yandex-google-1 .image img {max-width: 100%; height: auto; border-radius: 1.25rem;}



.our-doctors-1 {position: relative; padding: 5rem 0;}

.our-doctors-1 .color-blue-2 {color: #2990C3;}

.our-doctors-1 .btn-primary {--color: #fff; width: 17.5rem; background: #328BB8; display: inline-block; line-height: 2.5em; overflow: hidden; z-index: 1; color: var(--color); border: 2px solid #328BB8; border-radius: 6px; position: relative;}
.our-doctors-1 .btn-primary::before {position: absolute; content: ""; background: var(--color); width: 200%; height: 300%; z-index: -1; border-radius: 50%; top: 100%; left: 100%; transition: .3s all;}
.our-doctors-1 .btn-primary:hover {color: #328BB8;}
.our-doctors-1 .btn-primary:hover::before {top: -2rem; left: -2rem;}

.our-doctors-1 .bg-color {position: relative;}
.our-doctors-1 .row::before {content: ''; position: absolute; top: 0; bottom: 0; left: 0; right: 0; z-index: -1000; pointer-events: none; backface-visibility: hidden; --bs-gutter-x: 1.5rem; margin-right: calc(var(--bs-gutter-x) / -2); margin-left: calc(var(--bs-gutter-x) / -2); background: url('/assets/images/pages/med-marketing/our-doctors-1/027.jpg') center no-repeat; background-size: cover;}

.our-doctors-1 .card {background: #EC3737; border: none; border-radius: 1.25rem; overflow: hidden; width: fit-content;}
.our-doctors-1 .card-body {position: relative; z-index: 4; border-bottom: 1px solid #EC3737; background: #fff; border-radius: 0 0 1.25rem 1.25rem;}
.our-doctors-1 .card button {margin-top: -1rem; position: relative; z-index: 3; border-radius: 0 0 1.25rem 1.25rem; border-top: none; transition: .2s; border: 1px solid #EC3737;  background: none; padding: .9rem 0; padding-top: 1.9rem;  color: #fff;}
.our-doctors-1 .card img {max-width: 100%;}
.our-doctors-1 .card button:hover {background: #fff; color: #EC3737;}

.our-doctors-1 .row {overflow: hidden;}
.our-doctors-1 .mod-title-card::before {content: ''; position: absolute; z-index: 2; bottom: -1rem; width: 100%; background: #EC3737; left: 0; height: 2px;}
@media screen and (min-width: 992px) {
    .our-doctors-1 .mod-title-card::before {width: 30rem;}
    .our-doctors-1 .mod-title-card::after {content: ''; position: absolute; bottom: -1rem; width: 8rem; background: #EC3737; left: 30rem; height: 2px; transform-origin: left; transform: rotate(-39deg); z-index: 1; }
    .our-doctors-1 .mod-card-text {bottom: -10rem; position: relative; }
    .our-doctors-1 .mod-card-text .mod-circle {left: 35rem; top: -4rem; z-index: 3;}
    .our-doctors-1 .row {overflow: inherit;}
    .our-doctors-1 .mod-card-0 {top: -1rem;}
    .our-doctors-1 .mod-card-1 {right: 40%;}
}
@media screen and (min-width: 1200px) {

    .our-doctors-1 .row::before {left: 50%; transform: translateX(-50%); width: 100vw; width: calc(var(--vw, 1vw) * 100); margin: 0 auto; max-width: 1980px;}

    .our-doctors-1 .mod-text {width: 75%;}
    .our-doctors-1 .mod-card-1 {right: 75%; margin-top: -17rem;}
}
@media screen and (min-width: 1400px) {
    .our-doctors-1 .mod-title-card::before {width: 30rem;}
    .our-doctors-1 .mod-card-text {left: 10rem; bottom: -1rem;}
    .our-doctors-1 .mod-card-1 {right: 65%;}
}




.brainstorm-5 {position: relative; padding: 5rem 0;}
.brainstorm-5 .mod-card {overflow: hidden; min-height: 12.5rem; background: #F8F8F8; border-radius: 1.25rem;}

.brainstorm-5 .img-logo img {max-width: 100%;}
.brainstorm-5 .image-3 {min-height: 12.5rem;}
.brainstorm-5 .image-3 img {max-width: 100%;}
.brainstorm-5 .img-creator img {max-width: 100%; left: 0; bottom: -1.25rem;}
.brainstorm-5 .decor {z-index: -1; left: 0; top: 0;}
.brainstorm-5 .decor svg {max-height: 100%;}
.brainstorm-5 .mod-card-1 .card-decor img {left: 13rem; bottom: -19rem; pointer-events: none;}
.brainstorm-5 .mod-card-3 .card-decor img {left: -13rem; bottom: -7rem; pointer-events: none;}
.brainstorm-5 .mod-card-6 .card-decor img {left: 8rem; bottom: -27rem; pointer-events: none;}
.brainstorm-5 .mod-card-7 .card-decor img {left: 8rem; bottom: -13rem; pointer-events: none;}
.brainstorm-5 .mod-card-8 .card-decor img {left: -19rem; bottom: -13rem; pointer-events: none;}
.brainstorm-5 .mod-card-12 .card-decor img {left: 5rem; bottom: -23rem; pointer-events: none;}
.brainstorm-5 .mod-card-13 .card-decor img {left: 25.6rem; bottom: -9rem; pointer-events: none;}

@media screen and (min-width: 576px) {
	.brainstorm-5 .image {margin-right: 1.25rem;}
}
@media screen and (min-width: 992px) {
	.brainstorm-5 .image-3 img {max-width: none; position: absolute; z-index: -1; right: 1rem; bottom: 0;}
	.brainstorm-5 .img-creator img {position: absolute;}
	.brainstorm-5 .mod-card-1 .card-decor img {left: 5rem;}
	.brainstorm-5 .mod-card-7 .card-decor img {bottom: -10rem;}
	.brainstorm-5 .mod-card-8 .card-decor img {left: -12rem; bottom: -9rem;}
	.brainstorm-5 .mod-card-12 .card-decor img {left: 5rem; bottom: -23rem;}
	.brainstorm-5 .mod-card-13 .card-decor img {left: 19.6rem;}
}
@media screen and (min-width: 1200px) {
	.brainstorm-5 .mod-card-1 .card-decor img {left: 9rem;}
	.brainstorm-5 .mod-card-8 .card-decor img {left: -15rem; bottom: -9rem;}
	.brainstorm-5 .mod-card-13 .card-decor img {left: 22.6rem;}
}
@media screen and (min-width: 1400px) {
	.brainstorm-5 .mod-card-1 .card-decor img {left: 13rem;}
	.brainstorm-5 .mod-card-7 .card-decor img {bottom: -13rem;}
	.brainstorm-5 .mod-card-8 .card-decor img {left: -19rem; bottom: -13rem;}
	.brainstorm-5 .mod-card-13 .card-decor img {left: 25.6rem;}
}
@media screen and (min-width: 1700px) {
	.brainstorm-5 .img-creator img {max-width: none;}
}



.draw-attention-1 {position: relative; margin: 5rem 0; aspect-ratio: 1920 / 994;}




.wow-effect-2 {position: relative; padding: 0 0 5rem;}
.wow-effect-2 .mod-card {text-align: center; border-radius: 1.25rem; background: #F8F8F8; padding: 3.12rem 2.75rem; overflow: hidden;}
.wow-effect-2 .mod-card-img-1 {position: absolute; height: 100%; left: 0; top: 0;}
.wow-effect-2 .mod-title-1 {position: relative; z-index: 1; background: rgba(255, 255, 255, 0.60); backdrop-filter: blur(7.5px);}
.wow-effect-2 .img-2 {margin-bottom: -3.12rem; position: relative; z-index: 1;}
.wow-effect-2 .mod-text,
.wow-effect-2 .mod-title {position: relative; z-index: 1;}
.wow-effect-2 .img-bg {position: absolute; top: 0; left: 0; min-height: 100%; width: 100%; object-fit: cover; pointer-events: none; z-index: 0;}
.wow-effect-2 .card-fix-h {height: 30rem!important;}
.wow-effect-2 .mod-card-img-4 {position: absolute; z-index: 0; right: 0; top: 0; pointer-events: none;}
.wow-effect-2 .creator {position: relative; max-width: 60%;}
.wow-effect-2 .decor img {position: absolute; left: -17%; top: 0;}
.wow-effect-2 .card-decor-0 {position: absolute; left: 0; top: 0; height: 100%; max-width: 100%;}
.wow-effect-2 .card-decor-1 {position: absolute; right: 0; top: 0; height: 100%; max-width: 100%; display: none;}
.wow-effect-2 .mod-title-4,
.wow-effect-2 .mod-text-4 {background: rgba(255, 255, 255, 0.60); backdrop-filter: blur(7.5px);}
@media screen and (min-width: 576px) {
	.wow-effect-2 .mod-card {text-align: start;}
	.wow-effect-2 .mod-title-4,
	.wow-effect-2 .mod-text-4 {background: none; backdrop-filter: none;}
	.wow-effect-2 .mod-title-1 {margin-left: 12.5rem; background: none;}
}
@media screen and (min-width: 992px) {
	.wow-effect-2 {padding: 5rem 0;}
	.wow-effect-2 .card-decor-1 {display: block;}
	.wow-effect-2 .img-bg {width: auto;}
	.wow-effect-2 .creator {position: absolute; bottom: -1.25rem; right: 0; max-width: 100%;}
}
@media screen and (min-width: 1400px) {
	.wow-effect-2 .creator {max-width: none;}
}

.wow-effect-2 .color-blue-2 {color: #2990C3;}

.wow-effect-2 .btn-primary {--color: #fff; width: 100%; background: #328BB8; display: inline-block; line-height: 2.5em; overflow: hidden; z-index: 1; color: var(--color); border: 2px solid #328BB8; border-radius: 6px; position: relative;}
.wow-effect-2 .btn-primary::before {position: absolute; content: ""; background: var(--color); width: 200%; height: 300%; z-index: -1; border-radius: 50%; top: 100%; left: 100%; transition: .3s all;}
.wow-effect-2 .btn-primary:hover {color: #328BB8;}
.wow-effect-2 .btn-primary:hover::before {top: -2rem; left: -2rem;}
@media screen and (min-width: 576px) {
	.wow-effect-2 .btn-primary {width: 17.5rem;}
}




.free-book-1 {position: relative; margin: 0 0 5rem; border-radius: 20px; padding: 2.5rem 3.12rem; background: #F8F8F8;}
.free-book-1 .mod-book {width: 100%;}
.free-book-1 .mod-book img {max-width: 100%;}
.free-book-1 .btn-primary {width: 100%;}
@media screen and (min-width: 992px) {
	.free-book-1 .btn-primary {width: 17.5rem;}
	.free-book-1 .mod-book {position: absolute; bottom: 0; transform: translateX(-50%); left: 50%;}
}
@media screen and (min-width: 1200px) {
	.free-book-1 {margin: 10rem 0 5rem;}
}
@media screen and (min-width: 1400px) {
	.free-book-1 .mod-book {bottom: -33%;}
}

.free-book-1 .color-blue-2 {color: #2990C3;}

.free-book-1 .btn-primary {--color: #fff; background: #328BB8; display: inline-block; line-height: 2.5em; overflow: hidden; z-index: 1; color: var(--color); border: 2px solid #328BB8; border-radius: 6px; position: relative;}
.free-book-1 .btn-primary::before {position: absolute; content: ""; background: var(--color); width: 200%; height: 300%; z-index: -1; border-radius: 50%; top: 100%; left: 100%; transition: .3s all;}
.free-book-1 .btn-primary:hover {color: #328BB8;}
.free-book-1 .btn-primary:hover::before {top: -2rem; left: -2rem;}



.promotion-services-1 {position: relative; padding: 5rem 0; overflow: hidden;}


.promotion-services-1 li::marker {color: #0B3B53;}
.promotion-services-1 .btn-color-red {width: 9rem; height: 9rem; border-radius: 1.25rem; border: .06rem solid rgba(0, 0, 0, 0.50); background: #fff;}
.promotion-services-1 .btn-color-red.active {border: .31rem solid #EC3737;}
.promotion-services-1 .btn-color-red img {max-width: 70%;}

.promotion-services-1 .mod-dots {position: relative; width: 100%;}
.promotion-services-1 .next,
.promotion-services-1 .prev {border: none; background: none;}
@media screen and (min-width: 992px) {
    .promotion-services-1 .btn-color-red img {max-width: auto;}
    .promotion-services-1 .btn-color-red:nth-child(2) {margin-right: 20%;}
    .promotion-services-1 .btn-color-red {width: 12.5rem; height: 12.5rem; padding: 0;}
}
@media screen and (min-width: 1200px) {
    .promotion-services-1 .mod-card-text {width: 80%;}
    .promotion-services-1 .mod-dots {position: absolute; bottom: 0; left: -8rem; width: auto;}
}


.services-map-1 .services-tile {
	border: 1px solid rgba(0, 0, 0, .08);
	border-radius: 1rem;
	background: var(--bs-body-bg);
	cursor: pointer;
	transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.services-map-1 .services-tile:hover {
	transform: translateY(-4px);
	box-shadow: 0 1rem 2.5rem rgba(0, 0, 0, .08);
	border-color: var(--bs-primary);
}

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

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

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

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


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


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


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


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

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

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

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


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

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

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

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

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

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


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