@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap");
*, *::before, *::after {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	-webkit-appearance: none;
}

img {
	max-width: 100%;
}

a {
	text-decoration: none;
	color: #337ab7;
}

.container {
	width: 1110px;
	padding: 0 15px;
	margin: 0 auto;
}

@media (min-width: 992px) and (max-width: 1199px) {
	.container {
		width: 960px;
	}
}

@media (min-width: 768px) and (max-width: 991px) {
	.container {
		width: 720px;
	}
}

@media (min-width: 576px) and (max-width: 767px) {
	.container {
		width: 540px;
	}
}

@media (max-width: 575px) {
	.container {
		width: 100%;
	}
}

body {
	font-family: "Roboto";
	font-weight: normal;
	font-size: 14px;
	line-height: 24px;
	color: #232832;
	overflow-x: hidden;
	width: calc(100vw - (100vw - 100%));
	letter-spacing: 0.04em;
}

.body-overflow {
	width: 100vw;
	height: 100vh;
	overflow: hidden;
}

.section {
	margin: 100px 0;
}

@media (max-width: 767px) {
	.section {
		margin: 50px 0;
	}
}

.section__header {
	margin-bottom: 70px;
	background-image: url("../images/icons/section-header.png");
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	text-align: center;
}

.section__subtitle {
	color: #f60;
	font-size: 14px;
	font-weight: 500;
	margin-bottom: 9px;
	text-transform: uppercase;
	margin-bottom: 9px;
}

.section__title {
	font-size: 36px;
	font-weight: 700;
	color: #363636;
	margin-bottom: 0;
    word-wrap: break-word;
}
@media(max-width: 768px){
	.section__title {
    	font-size: 24px;
    }
}

.text--center {
	text-align: center;
}

.text h2 {
	margin-bottom: 20px;
}

.text p {
	margin-bottom: 15px;
}

.text ul {
	list-style: none;
}

.text ul li {
	margin-bottom: 15px;
}

.text ul li::before {
	color: #f60;
	content: "✅";
	font-family: Material-Design-Iconic-Font;
	font-size: 16px;
	margin-right: 15px;
}

.text--orange {
	color: #f60;
}

.btn {
	padding: 10px 25px;
	border: 0;
	border-radius: 5px;
	transition: all .3s ease;
	display: block;
	width: max-content;
}

.btn--orange {
	background-color: #f60;
	color: #fff;
}

.btn--orange:hover {
	background-color: #1d2736;
}

.menu-button {
	position: relative;
	width: 30px;
	height: 30px;
	cursor: pointer;
}

.menu-button__dash {
	width: 30px;
	height: 2px;
	background: #F0BF33;
	position: absolute;
	transition: all .3s ease;
}

.menu-button__dash--top {
	top: 0;
}

.menu-button__dash--middle {
	top: 8px;
}

.menu-button__dash--bottom {
	top: 16px;
}

.menu-button--opened .menu-button__dash {
	width: 24px;
}

.menu-button--opened .menu-button__dash--top {
	top: 8px;
	transform: rotate(45deg);
}

.menu-button--opened .menu-button__dash--middle {
	opacity: 0;
}

.menu-button--opened .menu-button__dash--bottom {
	top: 8px;
	transform: rotate(-45deg);
}

.header {
	position: relative;
}

.header::after {
	content: "";
	position: absolute;
	width: 50vw;
	height: 100%;
	z-index: -1;
	display: block;
	right: 0;
	top: 0;
	background: #1d2736;
}

@media (max-width: 767px) {
	.header::after {
		display: none;
	}
}

.header__wrapper {
	display: flex;
	height: 180px;
	align-items: center;
}

@media (max-width: 767px) {
	.header__wrapper {
		flex-wrap: wrap;
		height: auto;
		width: 100vw;
		margin-left: calc(-1 * (100vw - 100%)/2);
	}
}

.header__logo {
	height: 110px;
	flex-shrink: 0;
}

@media (max-width: 767px) {
	.header__logo {
    	display: none;
		width: 100%;
		padding: 25px 0;
		height: 150px;
	}
}

.header__logo img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.header__content {
	height: 100%;
	position: relative;
	background: #1d2736;
	display: flex;
	align-items: center;
	padding-left: 50px;
	flex-grow: 1;
	justify-content: space-between;
}

@media (min-width: 768px) and (max-width: 991px) {
	.header__content {
		justify-content: flex-end;
	}
}

@media (max-width: 767px) {
	.header__content {
		padding: 25px 15px;
		flex-direction: row-reverse;
	}
}

.header__content::before {
	border-color: rgba(0, 0, 0, 0) rgba(0, 0, 0, 0) rgba(0, 0, 0, 0) #fff;
	border-style: solid;
	border-width: 90px 0 125px 30px;
	content: "";
	height: 0;
	position: absolute;
	left: 0;
	top: 0;
	width: 0;
}

@media (max-width: 767px) {
	.header__content::before {
		display: none;
	}
}

.header__text {
	color: #f60;
	font-size: 14px;
	line-height: 20px;
}

@media (min-width: 768px) and (max-width: 991px) {
	.header__text {
		display: none;
	}
}

@media (max-width: 767px) {
	.header__text {
		text-align: right;
	}
}

@media (min-width: 768px) {
	.header__menu-button {
		display: none;
	}
}

.header-phone {
	display: flex;
}

@media (max-width: 767px) {
	.header-phone {
		display: none;
	}
}

.header-phone__icon {
	display: flex;
	align-items: center;
	margin-right: 10px;
}

.header-phone__icon svg {
	fill: #fff;
}

.header-phone__content {
	display: flex;
	flex-direction: column;
	border-left: 1px solid #fff;
	padding-left: 10px;
	font-size: 14px;
	line-height: 20px;
}

.header-phone__content a {
	color: #337ab7;
}

@media (max-width: 767px) {
	.header-navigation {
		display: none;
		background-color: #fff;
		padding: 25px 0;
	}
}

.header-navigation__items {
	display: flex;
	align-items: center;
	list-style: none;
}

@media (max-width: 767px) {
	.header-navigation__items {
		flex-direction: column;
		align-items: flex-start;
	}
}

.header-navigation__item a:not(.btn) {
	color: #666;
	display: block;
	font-size: 15px;
	font-weight: 400;
	line-height: 16px;
	padding: 30px 20px;
	text-transform: capitalize;
	transition: all .3s ease;
}

@media (min-width: 768px) and (max-width: 991px) {
	.header-navigation__item a:not(.btn) {
		padding: 30px 10px;
	}
}

@media (max-width: 767px) {
	.header-navigation__item a:not(.btn) {
		display: block;
		text-align: left;
		width: 100%;
		padding: 15px 15px;
	}
}

.header-navigation__item:hover a:not(.btn), .header-navigation__item--active a:not(.btn) {
	color: #f60;
}

.header-navigation__button {
	margin-left: 10px;
	display: block;
}

@media (max-width: 767px) {
	.header-navigation__button {
		margin-top: 10px;
	}
}

.welcome-block {
	background: linear-gradient(230.12deg, #1D2736 27.53%, rgba(29, 39, 54, 0) 27.54%);
	padding-bottom: 40px;
	padding-top: 50px;
}

@media (max-width: 767px) {
	.welcome-block {
		background: none;
	}
}

.welcome-block__wrapper {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -20px;
}

@media (max-width: 991px) {
	.welcome-block__wrapper {
		margin: -20px 0;
	}
}

.welcome-block__content {
	width: 50%;
	padding: 0 20px;
}

@media (max-width: 991px) {
	.welcome-block__content {
		width: 100%;
		padding: 20px 0;
	}
}

.welcome-block__content h1 {
	color: #f60;
	font-weight: 600;
	font-size: 36px;
	line-height: 40px;
	margin-bottom: 15px;
}

.welcome-block__content p {
	margin-bottom: 15px;
}

.welcome-block__content ul {
	list-style: none;
}

.welcome-block__content ul li {
	margin-bottom: 15px;
}

.welcome-block__content ul li::before {
	color: #f60;
	content: "✅";
	font-family: Material-Design-Iconic-Font;
	font-size: 16px;
	margin-right: 15px;
}

.welcome-block__content .text--orange {
	margin-top: 40px;
	margin-bottom: 30px;
}

.welcome-block__image {
	width: 50%;
	padding: 0 20px;
	display: flex;
	align-items: center;
}

@media (min-width: 768px) and (max-width: 991px) {
	.welcome-block__image {
		width: 100%;
		padding: 20px 0;
	}
}

@media (max-width: 767px) {
	.welcome-block__image {
		width: 100%;
		padding-top: 50px;
	}
}

.welcome-block__image img {
	width: 100%;
	object-fit: contain;
}

.geo-callback {
	width: 550px;
	max-width: 100%;
}

.geo-callback__form {
	display: flex;
	align-items: center;
	justify-content: space-between;
	box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.15);
	border-radius: 5px;
	overflow: hidden;
}

.geo-callback__input-container {
	background: #FFFFFF;
	padding: 14px 12px;
	flex: 1;
	position: relative;
}

.geo-callback__input {
	border: 0;
	width: calc(100% - 30px);
	font-weight: 500;
}

.geo-callback__input::placeholder {
	color: #ABABAB;
}

.geo-callback__input:hover, .geo-callback__input:focus {
	border: 0;
	outline: none;
}

.geo-callback__map-button {
	position: absolute;
	width: 25px;
	height: 30px;
	background-image: url(https://s3-alpha-sig.figma.com/img/db67/e518/7b552b6a4bed177eb2b7f4c348159e2e?Expires=1617580800&Signature=b8rck3BPdowUmuyYSejShszpWnclsyszZpCvp-C7M6jBnIG5X~fLjR~CWDsXv5bfq8ywlIqDo3mi-Ft3X71zUC5kkcNuFlPQHo-RXZRWT3YLtJwd4dRtcEVxppRVRGENe8IN30kxOxOOFrDj1gsKer45JYhqqGGvO03vBky4Ll6L3zhcQsPkcimJGLr8bQlOik~gOUDsp4g-ZSasym7jHvGOD-Wo~WDifBgOfwDAkshLXKQmW8T0J5R9luizSY9IMbsfIYoAfLF8eUkZQEuMur6KapsaNQUxUwMMqof5Po6kOHMyw6xYrNLRJHx-zrM8-ZN1n3bDJiRYP1za3fuaOQ__&Key-Pair-Id=APKAINTVSUGEWH5XD5UA);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	right: 8px;
	top: 7px;
	cursor: pointer;
}

.geo-callback__send {
	background: #4CE426;
	color: white;
	font-weight: 600;
	padding: 14px 12px;
	cursor: pointer;
}

.geo-callback__error-message {
	display: none;
	color: #ff3c41;
	margin-top: 15px;
}

.geo-modal {
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	justify-content: center;
	align-items: center;
	display: none;
}

.geo-modal__overlay {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: black;
	opacity: .6;
	cursor: pointer;
}

.geo-modal__loader {
	display: none;
	position: relative;
	z-index: 1;
}

.geo-modal__loader svg {
	width: 150px;
	height: 150px;
}

.geo-modal__loader .cls-1 {
	fill: none;
	/*stroke-linecap: bevel;*/
	stroke-linejoin: round;
}

.geo-modal__loader .cls-2 {
	fill: none;
	stroke: #ffce23;
	stroke-width: 2px;
}

.geo-modal__modal {
	display: none;
}

.modal {
	width: 700px;
	max-width: 100%;
	background: white;
	border-radius: 10px;
	color: black;
	position: relative;
	z-index: 1;
}

.modal__close-button {
	font-weight: 700;
	color: gray;
	position: absolute;
	right: 15px;
	top: 15px;
	font-size: 50px;
	line-height: 40px;
	cursor: pointer;
}

.modal__wrapper {
	padding: 35px 30px;
}

.modal__title {
	text-align: center;
	font-size: 25px;
	line-height: 30px;
	margin: 0 30px;
	font-weight: 600;
	text-transform: uppercase;
}

.modal__content {
	text-align: center;
}

.call-button {
	border-radius: 4px 4px 4px 4px;
	padding: 15px 50px 15px 50px;
	background-color: #ffce23;
	fill: #20315c;
	color: #20315c;
	text-decoration: none;
	display: inline-block;
	margin: 30px auto 0;
}

.call-button i {
	margin-right: 5px;
}

.callback {
	background: #232f39;
}

.callback__wrapper {
	display: flex;
	flex-wrap: wrap;
}

.callback__content {
	width: 50%;
	padding: 50px 0;
}

@media (max-width: 767px) {
	.callback__content {
		width: 100%;
	}
}

.callback__image {
	width: 50%;
	display: flex;
	justify-content: center;
	align-items: flex-end;
	padding-top: 40px;
}

@media (max-width: 767px) {
	.callback__image {
		width: 100%;
	}
}

.callback__image img {
	height: 385px;
	object-fit: contain;
}

@media (max-width: 767px) {
	.callback__image img {
		height: 290px;
	}
}

.callback__subtitle {
	color: #fff;
	font-size: 18px;
	font-weight: 400;
	margin-bottom: 15px;
	text-transform: uppercase;
}

.callback__title {
	color: #fff;
	line-height: 1.25;
	font-size: 32px;
	font-weight: 700;
	margin-bottom: 15px;
}

.callback__list {
	list-style: none;
	margin-bottom: 30px;
}

.callback__list li {
	color: #fff;
	display: flex;
	align-items: center;
	margin-bottom: 10px;
}

.callback__list li::before {
	content: "";
	width: 25px;
	height: 25px;
	display: inline-block;
	background-image: url(../images/icons/list-item-icon.png);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	margin-right: 10px;
}

.service-tabs__wrapper {
	display: flex;
	flex-wrap: wrap;
}

.service-tabs__tabs {
	width: 50%;
}

@media (max-width: 991px) {
	.service-tabs__tabs {
		width: 100%;
	}
}

.service-tabs__icon {
	width: 100px;
	height: 100px;
    min-width: 100px;
	min-height: 100px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.service-tabs__icon img {
	width: 60px;
	height: 60px;
    min-width: 60px;
	min-height: 60px;
	object-fit: contain;
}

.service-tabs__title {
	display: flex;
	align-items: center;
	padding-left: 30px;
	position: relative;
	color: #fff;
	font-size: 16px;
	font-weight: 400;
	text-transform: uppercase;
}

.service-tabs__title::before {
	content: "";
	display: block;
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	height: 40px;
	width: 1px;
	background: #fff;
}

.service-tabs__tabs-content {
	width: 50%;
}

@media (max-width: 991px) {
	.service-tabs__tabs-content {
		width: 100%;
	}
}
@media (max-width: 768px) {
	.service-tabs__title {
		font-size: 14px;
        word-break: break-word;
	}
}
.service-tabs__tab {
	background: #1d2736;
	display: flex;
	align-items: center;
	cursor: pointer;
}

.service-tabs__tab + .service-tabs__tab {
	border-top: 1px solid #fff;
}

.service-tabs__tab--active {
	box-shadow: 0 0 13px 0.7px rgba(0, 0, 0, 0.1);
	background: #fff;
}

.service-tabs__tab--active .service-tabs__icon {
	background: #ff6600;
}

.service-tabs__tab--active .service-tabs__title {
	color: #ff6600;
}

.service-tabs__tab-content {
	padding: 42px 62px 50px 35px;
	background-position: right bottom;
	background-repeat: no-repeat;
	-webkit-box-shadow: 0 0 13px 0.7px rgba(0, 0, 0, 0.1);
	box-shadow: 0 0 13px 0.7px rgba(0, 0, 0, 0.1);
	overflow: hidden;
	display: none;
}

.service-tabs__tab-content--active {
	display: block;
}

.service-tabs__link {
	text-align: center;
}

.service-tabs__link a {
	color: #ff6803;
	text-transform: uppercase;
}

/* Rating block */
.rating {
	background: #232f39;
	color: #fff;
	padding-top: 50px;
	padding-bottom: 50px;
	position: relative;
	margin-bottom: 100px;
}

.rating__content {
	display: flex;
	justify-content: space-between;
}

.rating__left {
	display: flex;
	width: 50%;
}

.rating__left .rating-text {
	margin-left: 30px;
	position: relative;
	top: 35px;
}

.rating-text__subtitle {
	color: #fff;
	font-size: 18px;
	font-weight: 500;
}

.rating-text__title {
	color: #fff;
	line-height: 1.25;
	font-size: 32px;
	font-weight: 700;
	display: flex;
	align-content: center;
}

.rating-text__title span {
	margin-right: 15px;
}

.rating-text__title .stars svg {
	display: inline-block;
}

.rating-text__description {
	font-size: 12px;
	font-weight: 500;
	margin-top: 4px;
}

.rating__right {
	align-items: center;
	display: grid;
	grid-gap: 20px 10px;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	width: 50%;
}

.rating__item {
	display: flex;
	align-items: center;
	grid-gap: 5px;
    text-align: left;
}
.rating__item svg {
	position: relative;
	/*top: 12px;*/
	width: 40px;
	height: 40px;
	min-width: 40px;
	min-height: 40px;
}

.rating__item span {
	font-size: 18px;
	font-weight: 500;
}

.telephone-tab {
	position: absolute;
	right: 200px;
	bottom: -60px;
	background-color: #f60;
	padding: 30px 45px;
	color: #fff;
	border-radius: 5px;
}

.telephone-tab:hover {
	transition: 0.5s;
	background-color: #232f39;
}

.telephone-tab a {
	text-decoration: none;
	color: #fff;
	cursor: pointer;
	font-size: 20px;
	font-weight: 500;
    display: flex;
  	justify-content: center;
  	align-items: center;
    grid-gap: 5px;
}

.telephone-tab a svg {
	position: relative;
	top: 2px;
}

@media (max-width: 1140px) {
	.rating__content {
		display: block;
		margin: 0 auto;
		width: 600px;
	}
	.rating__right {
		width: 100%;
	}
	.rating__left {
		width: 100%;
	}
}

@media (max-width: 768px) {
	.rating__content {
		width: 100%;
	}
	.rating-text-wrapper.col-12.pt-60 {
		margin-left: 25px;
		margin-right: 25px;
	}
	.telephone-tab {
		bottom: -100px;
		right: 0;
		margin: 0 auto;
		position: relative;
		width: 270px;
        padding: 15px 25px;
   	 	text-align: center;
	}
	.rating__right {
		display: block;
		text-align: center;
		margin: 0;
	}
	.rating__left {
		margin-left: 0;
		display: block;
		text-align: center;
		margin-bottom: 60px;
	}
	.rating-text__title {
		display: block;
	}
	.rating__left .rating-text {
		margin-left: 0;
	}
	.rating__item {
		margin: 0;
	}
}

.contacts-text__wrapper {
	display: flex;
	flex-wrap: wrap;
}

.contacts-text__contacts-wrapper {
	width: 50%;
	padding-right: 10%;
}

@media (min-width: 768px) and (max-width: 991px) {
	.contacts-text__contacts-wrapper {
		width: 30%;
		padding-right: 0;
	}
}

@media (max-width: 767px) {
	.contacts-text__contacts-wrapper {
		width: 100%;
	}
}

.contacts-text__contacts {
	background: #f60 none repeat scroll 0 0;
	padding: 62px 40px;
}

.contacts-text__contacts p {
	font-size: 18px;
	color: #fff;
	font-weight: 400;
	margin-bottom: 5px;
	display: block;
}

.contacts-text__contacts a {
	color: #fff;
	display: block;
}

.contacts-text__title {
	border-bottom: 1px solid #fff;
	color: #fff;
	font-size: 24px;
	font-weight: 400;
	line-height: 38px;
	margin-bottom: 0;
	padding-bottom: 21px;
	margin-bottom: 15px;
}

.contacts-text__text {
	width: 50%;
}

@media (min-width: 768px) and (max-width: 991px) {
	.contacts-text__text {
		width: 70%;
	}
}

@media (max-width: 767px) {
	.contacts-text__text {
		width: 100%;
		margin-top: 30px;
	}
}

/* ---  */
.services__wrapper {
	display: flex;
	flex-wrap: wrap;
	margin: -15px -15px;
}

@media (max-width: 767px) {
	.services__wrapper {
		margin: -15px 0;
	}
}

.services__item {
	width: 33.33%;
	padding: 15px 15px;
}

@media (min-width: 768px) and (max-width: 991px) {
	.services__item {
		width: 50%;
	}
}

@media (max-width: 767px) {
	.services__item {
		width: 100%;
		padding: 15px 0;
	}
}

.services__item-wrapper {
	box-shadow: 0 5px 13px 0 rgba(0, 0, 0, 0.1);
}

.services__image {
	width: 100%;
	height: 254px;
}

.services__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.services__icon {
	position: absolute;
	top: -30px;
	left: 50%;
	transform: translateX(-50%);
	width: 60px;
	height: 60px;
	background: #5f5f5f none repeat scroll 0 0;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0 auto;
	border-radius: 50%;
}

.services__icon img {
	width: 40px;
	height: 40px;
	object-fit: contain;
}

.services__content {
	padding: 45px 25px 30px;
	text-align: center;
	position: relative;
}

.services__title {
	color: #f60;
	text-transform: uppercase;
	display: block;
	font-size: 20px;
	line-height: 22px;
	font-weight: 600;
	transition: all .3s ease;
}

.services__title:hover {
	text-decoration: underline;
}

.services__link {
	display: block;
	color: #5f5f5f;
	font-size: 14px;
	font-weight: 400;
	margin-top: 50px;
	padding-bottom: 5px;
	text-transform: uppercase;
	position: relative;
	transition: all .3s ease;
}

.services__link:hover {
	text-decoration: underline;
}

.testimonials__wrapper {
	padding-top: 50px;
	display: flex;
	flex-wrap: wrap;
	margin: 0 -15px;
}

@media (max-width: 991px) {
	.testimonials__wrapper {
		margin: -40px 0;
	}
}

.testimonials__item {
	width: 33.33%;
	padding: 0 15px;
}

@media (max-width: 991px) {
	.testimonials__item {
		width: 100%;
		padding: 40px 0;
	}
}

.testimonials__item-wrapper {
	background: #fff none repeat scroll 0 0;
	border-radius: 5%;
	box-shadow: 0 8px 21px 0 rgba(0, 0, 0, 0.1);
	padding: 70px 15px 30px;
	position: relative;
}

.testimonials__author-image {
	width: 100px;
	height: 100px;
	position: absolute;
	top: -50px;
	left: 50%;
	transform: translateX(-50%);
	border-radius: 50%;
	overflow: hidden;
	border: 2px solid #848484;
}

.testimonials__author-image:hover {
	border-color: #f60;
}

.testimonials__author-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.testimonials__content {
	text-align: center;
}

.testimonials__stars {
	display: flex;
	justify-content: center;
	margin: 40px 0;
}

.testimonials__stars svg {
	width: 40px;
	height: 40px;
	fill: #ffdf88;
}

.testimonials__author-name {
	text-align: center;
}

.counter__wrapper {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -20px;
}

@media (max-width: 768px) {
	.counter__wrapper {
		margin: -20px 0;
	}
}

.counter__item {
	width: 25%;
	padding: 0 20px;
	display: flex;
	align-items: center;
}

@media (max-width: 991px) {
	.counter__item {
		width: 50%;
		padding: 20px;
	}
}

@media (max-width: 768px) {
	.counter__item {
		width: 100%;
		padding: 20px 0;
	}
}

.counter__icon {
	flex-shrink: 0;
	width: 42px;
	height: 42px;
	margin-right: 15px;
}

.counter__icon img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.counter__count {
	color: #444;
	font-size: 14px;
	font-weight: 400;
	line-height: 20px;
}

.counter__count span {
	font-size: 36px;
	font-weight: 700;
	color: #363636;
}

.accordion__title {
	font-size: 42px;
	border-bottom: 1px dotted #ccc;
	padding: 24px 0;
}

.accordion-item {
	border-bottom: 1px dotted #ccc;
}

.accordion-item__header {
	padding: 20px 0;
	position: relative;
	cursor: pointer;
}

@media (max-width: 767px) {
	.accordion-item__header {
		padding: 15px 0;
	}
}

.accordion-item__header::after, .accordion-item__header::before {
	content: "";
	display: block;
	width: 16px;
	height: 1.6px;
	background: black;
	position: absolute;
	top: 30px;
	left: 0px;
	transition: all .3s ease;
}

@media (max-width: 767px) {
	.accordion-item__header::after, .accordion-item__header::before {
		top: 25px;
	}
}

.accordion-item__header::after {
	transform: rotate(90deg);
}

.accordion-item__title {
	font-weight: 500;
	font-size: 16px;
	line-height: 22px;
	text-transform: uppercase;
	padding-left: 25px;
}

.accordion-item__text {
	color: #444;
	font-size: 16px;
	line-height: 22px;
}

.accordion-item__content {
	display: none;
	padding-bottom: 20px;
}

.accordion-item--opened {
	margin-bottom: 15px;
}

.accordion-item--opened .accordion-item__header::after, .accordion-item--opened .accordion-item__header::before {
	background: #ff6600;
}

.accordion-item--opened .accordion-item__header::after {
	transform: rotate(0deg);
}

.accordion-item--opened .accordion-item__content {
	display: block;
}

.linking-block__wrapper {
	display: flex;
	flex-wrap: wrap;
	margin: -7.5px -7.5px;
	justify-content: center;
}

.linking-block__item {
	width: 25%;
	padding: 7.5px;
}

@media (min-width: 768px) and (max-width: 991px) {
	.linking-block__item {
		width: 50%;
	}
}

@media (max-width: 767px) {
	.linking-block__item {
		width: 100%;
	}
}

.linking-block__item a {
	display: block;
	width: 100%;
	text-align: center;
}

.footer-top {
	margin: 100px 0;
}

@media (max-width: 767px) {
	.footer-top {
		margin: 50px 0;
	}
}

.footer-top__wrapper {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -20px;
}

@media (max-width: 768px) {
	.footer-top__wrapper {
		margin: 0;
	}
}

.footer-top__column {
	width: 25%;
	padding: 0 20px;
}

@media (min-width: 768px) and (max-width: 991px) {
	.footer-top__column {
		width: 50%;
	}
}

@media (max-width: 767px) {
	.footer-top__column {
		width: 100%;
		margin-top: 30px;
		padding: 0;
	}
}

.footer-top__column-title {
	font-size: 18px;
	font-weight: 400;
	margin-bottom: 20px;
	text-transform: uppercase;
}

.footer-top__links a {
	color: inherit;
	display: block;
	margin-bottom: 20px;
}

.footer-top__contacts {
	list-style: none;
}

.footer-top__contacts li {
	color: #5b5b5b;
	font-size: 14px;
	font-weight: 400;
	margin-bottom: 14px;
}

.footer-top__contacts li::before {
	content: "➖";
}

.footer-bottom {
	padding: 20px 0;
	background: #e9e9e9;
}

.footer-bottom p {
	color: #666;
	font-size: 14px;
	font-weight: 400;
	line-height: 20px;
	margin-bottom: 0;
}

.table__title {
	color: #000;
	font-weight: 600;
	text-align: center;
	font-size: 36px;
	line-height: 40px;
	margin-bottom: 50px;
}

.table__row {
	display: flex;
	border-bottom: 1px solid #f60;
}

.table__row--header {
	background: #f60;
	color: #fff;
	font-weight: 600;
}

.table__column {
	padding: 14px;
}

.table__column:nth-child(2n+1) {
	width: 80%;
	flex-shrink: 0;
}

.page-header {
	background-image: url("../images/page-header2.png");
	padding: 120px 0;
	position: relative;
}

.page-header::before {
	content: "";
	width: 100%;
	height: 100%;
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	background: #000;
	opacity: .6;
}

.page-header__title {
	font-size: 40px;
	font-weight: 600;
	color: #fff;
	text-align: center;
	position: relative;
}

.page-header__date {
	position: relative;
	color: #fff;
	margin-top: 25px;
	text-align: center;
}

.blog-previews__wrapper {
	display: flex;
	flex-wrap: wrap;
	margin: -15px;
}

.blog-previews__item {
	width: 33.333%;
	padding: 15px;
	text-decoration: none;
	color: inherit;
}

@media (min-width: 768px) and (max-width: 991px) {
	.blog-previews__item {
		width: 50%;
	}
}

@media (max-width: 767px) {
	.blog-previews__item {
		width: 100%;
	}
}

.blog-previews__image {
	display: block;
	width: 100%;
	height: 300px;
	margin-bottom: 10px;
}

.blog-previews__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.blog-previews__title {
	display: block;
	font-size: 20px;
	padding: 10px 0;
	font-weight: 600;
	color: #f60;
	margin-bottom: 10px;
}

.blog-previews__description {
	display: block;
}

.anchor-links {
	margin: 30px 0;
}

.anchor-links__item {
	margin-bottom: 5px;
}

.anchor-links__title {
	border-radius: 4px;
	cursor: pointer;
	display: flex;
	font-weight: bold;
}

.anchor-links__title::after {
	content: "+";
	display: flex;
	color: #f60;
	align-items: center;
	justify-content: center;
	font-weight: 600;
	font-size: 35px;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	width: 1em;
	height: 1em;
	transition: transform 0.3s ease-in;
}

.is-open .anchor-links__title::after {
	transform: rotate(135deg);
}

.anchor-links__body {
	border-radius: 5px;
	height: 0;
	overflow: hidden;
	transition: height 0.3s ease-in-out;
}

.anchor-links__content {
	background: #f60;
	border-radius: 4px;
	padding: 15px;
	margin-top: 5px;
}

.anchor-links h2 {
	border-bottom: 3px solid #f60;
	width: fit-content;
}

.anchor-links__content a {
	display: block;
	line-height: 30px;
	font-size: 16px;
	color: #fff;
}

.alphabet-list {
	margin-top: 50px;
}

.alphabet-list__header {
	display: flex;
	justify-content: center;
}

.alphabet-list__navigation {
	list-style: none;
	display: -webkit-box;
	display: flex;
	-webkit-box-pack: center;
	justify-content: center;
	flex-wrap: wrap;
}

.alphabet-list__navigation-link {
	padding: 10px 15px;
	border: 1px solid #ffb600;
	border-radius: 10px;
	color: #ffb600;
	font-weight: 600;
	margin: 5px 5px;
	width: 40px;
	text-align: center;
	cursor: pointer;
}

.alphabet-list__navigation-link:hover {
	background: #ffb600;
	color: #fff;
}

.alphabet-card {
	box-shadow: 0 0 10px 0 rgba(35, 44, 61, 0.3);
	border-radius: 15px;
	padding: 30px;
	display: -webkit-box;
	display: flex;
	-webkit-box-align: start;
	align-items: flex-start;
	margin: 30px 0;
}

.alphabet-card__letter {
	font-size: 40px;
	color: #ffb600;
	font-weight: 600;
	padding-right: 15px;
}

.alphabet-card__content {
	-webkit-box-flex: 1;
	flex: 1;
}

.districts-list {
	list-style: none;
	display: -webkit-box;
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	margin: 0;
	padding: 0;
}

.districts-list__item {
	width: 25%;
	padding-bottom: 15px;
}

.districts-list__item a {
	text-decoration: none;
	padding: 5px;
	color: #23282d;
	font-weight: 600;
}

.districts-list__item a:hover {
	text-decoration: underline;
}

@media (max-width: 768px) {
	.districts-list__item {
		width: 50%;
	}
}

@media (max-width: 400px) {
	.districts-list__item {
		width: 100%;
	}
}

.areas-list {
	display: flex;
	flex-wrap: wrap;
}

.areas-list__item {
	width: 100%;
	margin: 7.5px 0;
	border: 2px solid #ffb600;
}

.areas-list--cities .areas-list__item {
	background: none;
	color: #000;
}

.areas-list--cities .areas-list__item:hover {
	background: #ffb600;
	color: #fff;
	border: 2px solid #ffb600;
}

.districts {
	margin-top: 50px;
}

.districts__wrapper {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -15px;
}

.districts__lander {
	width: 30%;
	padding: 0 15px;
}

.districts__lander a {
	color: #fff;
	background-color: #f0ad4e;
}

.districts__lander a:hover {
	background: #ffbc17;
}

@media (max-width: 767px) {
	.districts__lander {
		width: 100%;
		padding: 15px;
	}
}

.districts__stadte {
	width: 70%;
	padding: 0 15px;
}

@media (max-width: 767px) {
	.districts__stadte {
		width: 100%;
		padding: 15px;
	}
}

.districts__stadte .areas-list, .andere-lander {
	margin: 0 -7.5px;
}

.districts__stadte .areas-list > div, .andere-lander > div {
	width: 50%;
	padding: 0 7.5px;
}

/*# sourceMappingURL=style.css.map */

@media (max-width: 768px) {
	.counter__item {
		width: 100%;
	}
}

.districts-column{
				display: flex;
    			flex-wrap: wrap;
			}
			
			.link-wrapper {
    width: 50%;
}
			@media (max-width:768px){
				.link-wrapper {
    width: 100%;
}
			}
.pulse-bg {
	background-color: #64CA43;
	color: #fff;
	width: 68px;
	border-radius: 50%;
	text-align: center;
	line-height: 2;
	font-size: 34px;
	position: relative;
	left: 0;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	border-radius: 50%;
	width: 68px;
	height: 68px;
	cursor: pointer;
}


@-webkit-keyframes animate
{
	0%
	{
		-webkit-transform: scale(0.5);
		        transform: scale(0.5);
		opacity: 0;
	}
	50%
	{
		opacity: 1;
	}
	100%
	{
		-webkit-transform: scale(1.2);
		        transform: scale(1.2);
		opacity: 0;
	}
}

@keyframes animate
{
	0%
	{
		-webkit-transform: scale(0.5);
		        transform: scale(0.5);
		opacity: 0;
	}
	50%
	{
		opacity: 1;
	}
	100%
	{
		-webkit-transform: scale(1.2);
		        transform: scale(1.2);
		opacity: 0;
	}
}

.pulse-bg::after {
	content: " ";
	display: block;
	position: absolute;
	border: 1px solid #64CA43;
	left: -20px;
	right: -20px;
	top: -20px;
	bottom: -20px;
	border-radius: 50%;
	-webkit-animation: animate 1.5s linear infinite;
	animation: animate 1.5s linear infinite;
	opacity: 0;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

.pulse {
  position: fixed;
  right: 70px;
  bottom: 100px;
  width: 0;
  height: 0;
	z-index: 99;}
	
.pulse-bg {
	background-color: #64CA43;
	color: #fff;
	width: 68px;
	border-radius: 50%;
	text-align: center;
	line-height: 2;
	font-size: 34px;
	position: relative;
	left: 0;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	border-radius: 50%;
	width: 68px;
	height: 68px;
	cursor: pointer;
}


@-webkit-keyframes animate
{
	0%
	{
		-webkit-transform: scale(0.5);
		        transform: scale(0.5);
		opacity: 0;
	}
	50%
	{
		opacity: 1;
	}
	100%
	{
		-webkit-transform: scale(1.2);
		        transform: scale(1.2);
		opacity: 0;
	}
}

@keyframes animate
{
	0%
	{
		-webkit-transform: scale(0.5);
		        transform: scale(0.5);
		opacity: 0;
	}
	50%
	{
		opacity: 1;
	}
	100%
	{
		-webkit-transform: scale(1.2);
		        transform: scale(1.2);
		opacity: 0;
	}
}

.pulse-bg::after {
	content: " ";
	display: block;
	position: absolute;
	border: 1px solid #64CA43;
	left: -20px;
	right: -20px;
	top: -20px;
	bottom: -20px;
	border-radius: 50%;
	-webkit-animation: animate 1.5s linear infinite;
	animation: animate 1.5s linear infinite;
	opacity: 0;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

.phone-button {
}
.phone-button__number {
  display: inline-flex;
  width: unset!important;
  max-width: unset!important;
}
.phone-button__number img {
  width: 100%!important;
  max-width: 100%!important;
  object-fit: contain;
}
.phone-button__number.rem img {
  height: 1rem;
}
.phone-button__number.inverse img {
  filter: invert(100%);
}
.partners {
}
.partners__wrapper {
margin-block: 2rem;
display: grid;
gap: 1rem;
}
.partners__title {
}
.partners__text {
}
.partners__links-list {
display: grid;
width: 100%;
grid-template-columns: repeat(5, 1fr);
gap: 1rem;

}
.partners__links-list-item {
display: inline-block;
}
.partners__links-list-link {
display: inline-grid;
place-content: center;
text-align: center;
background-color: #F66506;
color: #fff;
width: 100%;
height: 100%;
padding: 0.5rem 0.3rem;
min-height: 4rem;
}
@media(width<=991px){
.partners__links-list {
grid-template-columns: repeat(3, 1fr);
}
}
@media(width<=767px){
.partners__links-list {
grid-template-columns: repeat(2, 1fr);
}
.partners__links-list-link {
min-height: unset;
}
}
@media(width<=410px){
.partners__links-list {
grid-template-columns: 100%;
}
}

.error-404 {
	position: relative;
	isolation: isolate;
	display: grid;
	place-content: center;
    padding: 50px 0;
}
.error-404__content-wrapper {
	display: grid;
	place-content: center;
	height: 100%;
	gap: 1rem;
	text-align: center;
}
.error-404__img {
	position: absolute;
	inset: 0;
	opacity: .5;
	z-index: -1;
	width: 100%;
	height: 100%;
	object-fit: contain;
}
.error-404__btn {
	margin: 0 auto;
}

.breadcrumbs{
	margin-block: 1rem;
	display: inline-flex;
}
.breadcrumbs__list{
	display: flex;
	flex-wrap: wrap;
	gap: 0 0.5rem;
	font-size: .8rem;
}
.breadcrumbs__list-item,
.breadcrumbs__list li{
	display: inline-flex;	
}
.breadcrumbs__list-link{
	text-decoration: none;
	color: #232222;
    transition: all ease-in-out 0.2s;
}
.breadcrumbs__list-link:hover,
.breadcrumbs__list-link:hover .breadcrumbs__list-link-text{
	text-decoration: none;
	color: #337ab7;
    transition: all ease-in-out 0.2s;
}
.breadcrumbs__list-link-text{
	font-size: .8rem;
    transition: all ease-in-out 0.2s;
}
.linking-block__item a {
		min-height: 68px;
		display: flex;
		justify-content: center;
		align-items: center;
	}
    .districts-column{
				display: flex;
    			flex-wrap: wrap;
			}
			
			.link-wrapper {
    width: 50%;
}
			@media (max-width:768px){
				.link-wrapper {
    width: 100%;
}
			}
            
.blog-list,
.blog-list * {
	box-sizing: border-box;
}

.blog-list {
	display: grid;
	width: 100%;
	grid-gap: 1.5rem;
	grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
	margin-top: 3rem;
	margin-bottom: 3rem;
}

.blog-list__item {
	box-shadow: 0 0 10px #253544;
	display: flex;
	flex-direction: column;
	align-items: stretch;
	border-bottom: 4px solid #f60;
}

.blog-list__item > *:not(.blog-list__img-wrapper) {
	padding-right: 1rem;
	padding-left: 1rem;
}

.blog-list__img-wrapper {
	display: block;
	height: 250px;
	width: 100%;
}

.blog-list__img-wrapper img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.blog-list__content {
	display: flex;
	flex-direction: column;
	height: 100%;
}

.blog-list__item-title {
	font-size: 1.75rem;
	text-align: center;
	padding: 1.5rem 0;
	width: 100%;
	position: relative;
}

.blog-list__item-title:after {
	content: '';
	height: 3px;
	width: 50px;
	position: absolute;
	bottom: 0;
	left: calc(50% - 25px);
	background-color: #f60;
	border-radius: 20px;
}

.blog-list__item-title *,
.blog-list__item-title *:hover {
	color: #f60!important;
	width: max-content;
	margin: 0 auto;
}

.blog-list__excerpt {
	flex: 1 1 auto;
	margin-top: 1rem;
	text-align: center;
	justify-content: center;
	display: flex;
	flex-direction: column;
	line-height: 1.2;
}

.blog-list__btn {
	display: grid;
	margin: 1rem auto;
	padding: 0.5rem;
	width: 100%;
	background-color: #f60;
	color: white!important;
	text-align: center;
}
@media(max-width: 1199px) {
	.blog-list__item-title {
		padding: 1.3rem 0;
	}
}

.pagination {
	display: flex;
  	grid-gap: 7px;
  	align-items: center;
  	justify-content: center;
  	text-align: center;
  	width: 100%;
}
.pagination__link {
	padding: 5px 10px;
	border-radius: 2px;
	background-color: #cfcfcf;
	color: #000!important;
	transition: .2s;
}
.pagination__link:hover {
	background-color: #1d2736;
	color: #fff!important;
}

.blog-hero {
	background-repeat:norepeat;
    background-size:cover;
    background-position:center;
}
.blog-page h1 {
	color: #f60;
  	text-align: center;
  	margin: 2rem 0 1rem;
  	font-size: 2.5rem;
  	line-height: normal;
}
.blog-page li {
	list-style-position: inside!important;
}
.blog-page :is(ol,ul) {
	margin-top: .5rem;
    margin-bottom: .5rem;
    padding-left: 1rem;
}
.blog-page article {
	padding: 3rem 0;
}
.blog-page img {
	max-height: 500px;
  	object-fit: cover;
}
.blog-page blockquote {
  margin: 1rem 0;
  padding: 5px 15px;
  background-color: #f9f9f9;
  border-left: 4px solid #333;
  font-size: 18px;
  line-height: 1.4;
  color: #333;
}
.blog-page blockquote p {
  margin: 0;
}
.blog-page blockquote cite {
  display: block;
  font-size: 14px;
  color: #777;
  margin-top: 10px;
}
.blog-page blockquote:before {
  content: "\201C";
  font-size: 2em;
  color: #888;
  margin-right: 10px;
  vertical-align: -0.4em;
}
.blog-page blockquote:after {
  content: "";
}
.blog-links {
	display: flex;
    flex-direction: column;
    grid-gap: 1rem;
}
.blog-link {
	display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
    color: #fff;
    background-color: #f60;
    font-size: 1rem;
    line-height: normal;
    padding: .5rem 1rem;
}
.my-2 {
	margin-top: 2rem;
    margin-bottom: 2rem;
}

.cookie-box {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(255,255,255,1);
    box-shadow: 0 0 15px 5px rgba(0, 0, 0, 0.3);
    min-width: 100%;
    z-index: 100000;
    font-size: 13px;
    letter-spacing: 0;
    line-height: 20px;
    text-align: center;
    font-weight: 400;
    color: #000;
    box-sizing: border-box;
    padding: 16px;
}
.cookie-box.hidden {
    display: none;
}
.cookie-box__wrapper {
    position: relative;
    display: block;
    width: 100%;
}
.cookie-box__text-box {
    display: inline-flex;
    align-items: center;
    width: 95%;
    gap: 1rem;
}
.cookie-box__text {
    margin: 0;
    width: 100%;
}
.cookie-box__approve {
    cursor: pointer;
    background-color: #337ab7;
    color: #fff;
    padding: 0.5rem 1rem;
    opacity: .7;
    transition: .2s;
}
.cookie-box__approve:hover {
    opacity: 1;
}
.cookie-box__close {
    position: absolute;
    cursor: pointer;
    width: 15px;
    height: 15px;
    opacity: .5;
    transition: .3s;
    right: -8px;
    top: -8px;
}
.cookie-box__close:hover {
    opacity: 1;
    transition: .3s;
}
.cookie-box__close:before,
.cookie-box__close:after {
    position: absolute;
    content: ' ';
    height: 15px;
    width: 2px;
    background-color: rgba(0,0,0,1);
}
.cookie-box__close:before {
    transform: rotate(-45deg);
    transition: 0.3s;
}
.cookie-box__close:after {
    transform: rotate(45deg);
    transition: 0.3s;
}
@media(max-width: 991px) {
    .cookie-box {
        text-align: left;
    }
}
@media(max-width: 767px) {
    .cookie-box__text-box {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
}

.go-top {
	position: fixed;
	opacity: 0;
	z-index: 0;
	pointer-events: none;
	left: 2rem;
	bottom: 4rem;
	width: 50px;
	height: 50px;
	background: #64CA43;
	border-radius: 50%;
	display: inline-flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-decoration: none;
	transition: ease-in-out 0.2s;
	outline: none;
	border: 1px solid #64CA43;
    cursor: pointer;
}
.go-top__img {
	width: 20px;
	height: 20px;
	object-fit: contain;
}
.go-top:hover {
	color: #fff;
	opacity: .8 !important;
}
@media (max-width: 768px) {
	.go-top {
		left: 1rem;
        opacity: 1!important;
	}
}

html {
	scroll-behavior: smooth;
}

.flex-4 {
	display: flex;
  	grid-gap: 15px;
  	justify-content: space-evenly;
  	flex-wrap: wrap;
  	align-items: center;
}
.flex-4 > * {
	display: flex;
	align-items:center;
	justify-content:center;
	text-align:center;
	width: 250px;
    border: 2px solid #f60;
}
.grid-4 {
display:grid;
grid-template-columns:repeat(auto-fit, minmax(min(250px, 100%), 1fr));
grid-gap: 7px;
}
.grid-4 > * {
display: flex;
align-items:center;
justify-content:center;
text-align:center;
width: 100%;
}
.flex {
display: flex;
}


.text-with-image {
	margin: 2rem 0;	
}
.text-with-image__wrapper {
	display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(400px, 100%), 1fr));
    grid-gap: 1.5rem;
}
.text-with-image__content {
	
}
.text-with-image__content :is(p,ol,ul,div) {
	margin: 1rem 0;
}
.text-with-image__content :is(h2,h3,h4,h5):not(:first-child) {
	margin: 2rem 0 1rem;
}
.text-with-image__content :is(ul li, ol li) {
	list-style-position: inside;
    padding-left: 10px;
}
.text-with-image__image-wrapper {
	
}
.text-with-image__image-wrapper img {
	height: auto;
	width: 100%;
    object-fit: contain;
}
.text-with-image.reverse .text-with-image__image-wrapper {
	order: 1;
}
.text-with-image.reverse .text-with-image__content {
	order: 2;
}
@media(max-width: 991px){
	.text-with-image .text-with-image__image-wrapper {
		order: 1!important;
	}
	.text-with-image .text-with-image__content {
		order: 2!important;
	}
}
.center {
	margin-inline: auto;
    text-align: center;
    justify-content: center;
    align-items: center;
}