/* убираем противную рамку вокруг ссылок */
img, a img{outline:none !important;}
a:focus{outline:none !important;}
/* скрываем каптчу гугла */
.grecaptcha-badge {visibility: hidden;}

html, body {
/* Убирает прокрутку по горизонтале, для мобильной версии */
	overflow-x: hidden;
}

@font-face {
	font-family: 'Montserrat';
	src: url('/assets/fonts/montserrat-variablefont.ttf') format('truetype supports variations'),
		url('/assets/fonts/montserrat-variablefont.ttf') format('truetype-variations');
	font-weight: 400 700;
	font-stretch: 25% 151%;
	font-display: swap;
}


:root {
	--color-primary: #3E619B;
	--color-black: #252525;
	--color-white: #E9E9EB;
	--color-danger: #E22920;
}

body {
	font-family: 'Montserrat', sans-serif;
	color: var(--color-black);
	font-size: 1rem;
	margin-top: 108px;
}

h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
	font-weight: 700;
}

p b {
	color: var(--color-black);
	font-weight: 700;
}
p strong {
	color: #2f6bc3;
	font-weight: 700;
}
.hyphens p, .hyphens li {
	text-align: justify;
	hyphens: auto;
	-moz-hyphens: auto;
	-webkit-hyphens: auto;
	-ms-hyphens: auto;
}

.hyphens p:last-child, .hyphens li:last-child {
	margin-bottom: 0px;
}

.bg-primary {
	background-color: var(--color-primary) !important;
}

a:link, a:visited, a:active {
	color: #252525;
	text-decoration: underline;
}

a:hover {
	color: #252525;
	text-decoration: none;
	transition-duration: .3s;
}



/* таблица в плитке */
.my-card-table td:first-child {
	padding-left: 0;
}
.my-card-table td:last-child {
	padding-right: 0;
	text-align: right;
}

/* таблица с ценами на главной */
.my-price-table {
	
}

/* ссылки в футере */
a.my-menu-link:link, a.my-menu-link:visited, a.my-menu-link:active {
	color: #ffffff;
	text-decoration: underline;
	transition-duration: .15s;
}
a.my-menu-link:hover {
	color: #ffffff;
	text-decoration: none;
	transition-duration: .15s;
}

/* ссылки в футере */
a.my-footer-link:link, a.my-footer-link:visited, a.my-footer-link:active {
	color: #ffffff;
	text-decoration: none;
}
a.my-footer-link:hover {
	color: #ffffff;
	text-decoration: underline;
	transition-duration: .15s;
}

small, .small {
	line-height: 1;
}
.bg-banner {
	background-image: url(/assets/img/banner-new1.webp);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}

.logo-header {
	height: 45px;
}
.logo-footer {
	height: 45px;
}

/* Стили предупреждения о cookie
 * Bootstrap Cookie Alert by Wruczek
 * https://github.com/Wruczek/Bootstrap-Cookie-Alert
 * Released under MIT license
 */
.cookiealert {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	margin: 0 !important;
	z-index: 1001;
	opacity: 0;
	visibility: hidden;
	border-radius: 0;
	transform: translateY(100%);
	transition: all 500ms ease-out;
}
.cookiealert.show {
	opacity: 1;
	visibility: visible;
	transform: translateY(0%);
	transition-delay: 500ms;
}
/* кнопка наверх */
.tostart {
	width: 3rem;
	height: 3rem;
	background-color: var(--color-primary);
	border-radius: 50%;
	position: fixed;
	right: 2rem;
	bottom: 2rem;
	z-index: 1002;
	display: none;
	opacity: 1;
}
.tostart:hover {
	cursor: pointer;
	opacity: .75;
	transition-duration: .15s;
}
.img-to-top {
	width:2rem;
	margin:0 auto;
	display:block;
	position:absolute;
	left: 8px;
	top: -3px;
}

/* аккордеон */
/* удираем нижний марджинг последнего абзаца */
.accordion-body p:last-child {
	margin-bottom: 0;
}

/* стили кнопок в слайдере */
.my-prev, .my-next {
	position: absolute;
	top: calc(50% - 1.25rem);
	color: var(--color-warning);
	background-color: #fff;
	height: 2.5rem;
	width: 2.5rem;
	border-radius: 50%;
	text-align: center;
	line-height: 2.5;
	z-index: 1000;
	cursor: pointer;
	box-shadow: 0px 8px 16px rgba(78, 80, 85, 0.12);
}
.my-next {
	right: 0px;
}
.my-next >svg {
	height: 1.5rem;
	padding-left: 3px;
}
.my-prev > svg {
	height: 1.5rem;
	padding-right: 3px;
}

/* стили верхнего меню*/
.top-menu { /* общее оформление меню */
	font-size: 1rem;
	z-index: 1000;
	position: relative;
}

.top-menu a:link, .top-menu a:visited, .top-menu a:active {
	color: var(--color-black);
	text-decoration: none;
	font-weight: 700;
}

.top-menu a:hover {
	text-decoration: underline;
	font-weight: 700;
}

.top-menu ul{
	display: none;
	background-color: white;
	position: absolute;
	top: 100%;
	opacity: 0;
}
.top-menu li:hover ul {
	display: block;
	opacity: 1;
	-webkit-animation: display-none-transition 0.15s both;
	animation: display-none-transition 0.15s both;
}
@-webkit-keyframes display-none-transition {
	0% {
		opacity: 0;
	}
}
@keyframes display-none-transition {
	0% {
		opacity: 0;
	}
}
.top-menu, .top-menu ul {
	margin: 0;
	padding: 0;
	list-style-type: none;
}

.top-menu li {
	float: left;
	position: relative;
	height: 100%;
	padding: 0 .5rem;
	font-weight: 700;
}
.top-menu li a {
	display: block;
	padding: 0px;
	color: #fff;
	text-decoration: none;
	text-align: left;
	opacity: 1;
	
}
.top-menu ul {
	border: 1px solid var(--color-black);
}
.top-menu ul li {
	float: none;
	white-space: nowrap;
}


/* стили mmenu */
.mm-spn--light {
	/* background: #fff; */
}
.mm-spn {
	color: var(--color-primary);
}
.mm-spn a {
	color: var(--color-primary);
}
.mm-spn a:active, .mm-spn a:focus {
	/* color: var(--color-danger);*/
}

/*votes*/
.votes {
	padding: 60px 40px;
	background-color: rgba(21, 81, 229, 0.08);
}
.votes .title {
	margin-bottom: 24px;
	font-size: 24px;
	font-weight: 500;
	text-transform: uppercase;
	text-align: center;
}
.votes .block-btn {
	display: flex;
	align-items: center;
	justify-content: center;
}
.votes .block-result {
	text-align: center;
}
.vote-btn {
	border: 0;
	outline: none;
}
.vote-btn:active {
	border: 0;
	background-color: unset;
	border-color: unset;
}
.vote-btn:hover {
	opacity: .5;
}
.vote-btn:disabled {
	color: unset;
	background-color: unset;
	border-color: unset;
	border: 0;
}
/*glob*/
.title {
	margin-bottom: 35px;
	font-size: 35px;
	font-weight: 700;
	text-align: center;
}
/*header*/
.header-work,
.header-address,
.header-phone {
	margin-right: 32px;
}
.header-work span,
.header-address a,
.header-phone a,
.header-email a {
	min-height: 24px;
	padding: 3px 0 3px 32px;
	background-repeat: no-repeat;
	background-position: left center;
	color: #43516C !important;
}
.header-work span {
	background-image: url(/assets/img/work.svg);
}
.header-address a {
	background-image: url(/assets/img/address.svg);
}
.header-phone a {
	background-image: url(/assets/img/phone.svg);
}
.header-email a {
	background-image: url(/assets/img/email.svg);
}
.header-btn {
	padding: 7px 16px;
	border-radius:8px;
	line-height: 1.2;
	color: #fff;
	background-color: #F04C4D;
}
.top-menu li {
	padding-right: 24px;
	margin-right: 24px;
	border-right: 1px solid #43516C;
	text-transform: uppercase;
	line-height: 1;
}
.top-menu li:last-child {
	padding-right: 0;
	border: 0;
}
.top-menu li span {
	color: #F04C4D;
}

/*actions*/
.actions .card {
	border: 0;
	border-radius: 10px;
	box-shadow: 0 0 10px 4px rgba(0, 0, 0, 0.1);
}
.actions .card .block-img {
	position: relative;
}
.actions .card .block-img span {
	position: absolute;
	top: 16px;
	right: 16px;
	padding: 8px 13px;
	color: #fff;
	background-color: #F04C4D;
}
.actions .card-body {
	padding: 20px 24px 24px;
}
.actions .card-text p {
	margin-bottom: 0;
}
/*advantages*/
.advantages .block-card {
	max-width: 992px;
	margin: 0 auto;
}
.advantages .card {
	border: 0;
	color: #fff;
	background-color: #2f6bc3;
}
.advantages .card img {
	display: block;
	margin: 0 auto;
	max-width: 108px;
}
.advantages .card-body {
	padding: 10px 12px 12px;
}
/*how*/
.how .card {
	border: 0;
}
.how .card-body {
	padding: 8px;
	font-weight: 700;
	text-align: center;
}
.form-check-input:checked {
    background-color: #2f6bc3;
    border-color: #2f6bc3;
}
/* Устройства X-Small (портретные телефоны, менее 576 пикселей) */
@media (max-width: 575.98px) {
	.hyphens p, .hyphens li {
		text-align: left;
		hyphens: none;
		-moz-hyphens: none;
		-webkit-hyphens: none;
		-ms-hyphens: none;
	}
	.tostart {
		width: 2rem;
		height: 2rem;
		right: 1.25rem;
		bottom: 1.25rem;
	}
	.img-to-top {
		width: 1.25rem;
		left: .4rem;
		top: -1px;
	}
	/* мобильная млоденная версия таблицы */
	.my-price-table {
		border: 0;
	}
	.my-price-table thead {
		display: none;
	}

	.my-price-table tr {
		margin-bottom: 1rem;
		display: block;
		border-bottom: 1px solid var(--color-black);
	}

	.my-price-table td {
		display: block;
		text-align: right;
		border-bottom: 1px dotted var(--color-black);
		border-right: 1px solid transparent;
	}
	.my-price-table td:last-child {
		border-bottom: 0;
	}

	.my-price-table td:before {
		content: attr(data-label);
		float: left;
		font-weight: bold;
	}
	.title {
		margin-bottom: 20px;
		font-size: 28px;
		line-height: 1.2;
	}
	.actions .card-body {
		padding: 20px;
	}
	.actions .card-title {
		font-size: 14px;
	}
	.actions .card-text {
		font-size: 14px;
	}
	.advantages {
		padding: 0 5px;
	}
	.advantages .block-card .g-3 {
		--bs-gutter-y: 12px;
		--bs-gutter-x: 12px;
	}
	.advantages .card-body {
		padding: 0 5px 12px;
	}
	.advantages .card-body div {
		font-size: 12px;
	}
	.how .card-body {
		font-size: 14px;
	}
}

/* Устройства Small (телефоны с горизонтальной ориентацией, менее 768 пикселей) */
@media (min-width: 576px) and (max-width: 767.98px) {
	.hyphens p, .hyphens li {
		text-align: left;
		hyphens: none;
		-moz-hyphens: none;
		-webkit-hyphens: none;
		-ms-hyphens: none;
	}
	.tostart {
		width: 2rem;
		height: 2rem;
		right: 1.25rem;
		bottom: 1.25rem;
	}
	.img-to-top {
		width: 1.25rem;
		left: .4rem;
		top: -1px;
	}

}
/* Устройства Medium (планшеты, менее 992 пикселей) */
@media  (min-width: 768px) and (max-width: 991.98px) {

}


/* Устройства Large (настольные компьютеры, менее 1200 пикселей) */
@media  (min-width: 992px) and (max-width: 1199.98px) { 

}

/* Устройства X-Large (большие настольные компьютеры, менее 1400 пикселей) */
@media  (min-width: 1200px) and (max-width: 1399.98px) {

}