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

.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: 170px;
	flex-shrink: 0;
}

@media (max-width: 767px) {
	.header__logo {
		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;
	display: flex;
	justify-content: center;
	align-items: center;
}

.service-tabs__icon img {
	width: 60px;
	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%;
	}
}

.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 svg {
	position: relative;
	top: 12px;
	width: 40px;
	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;
}

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


.paginations {
	margin: 30px 0;
}

.paginations__items {
	display: flex;
	margin: 0;
	list-style: none;
	flex-wrap: wrap;
	justify-content: flex-start;
}

.paginations__item a {
	padding: 10px 15px;
	border: 1px solid #ffb600;
	border-radius: 10px;
	color: #ffb600;
	font-weight: 600;
	margin: 5px 5px;
	width: 50px;
	text-align: center;
	cursor: pointer;
	display: inline-block;
}
.paginations__item a:hover {
	background: #ffb600;
	color: white;
}

.phone-button__number img {
	height: 11px;
}

.rating .telephone-tab .phone-button__number img {
	height: 16px;
}

.footer-top__content .phone-button__number img, .footer-top__contacts .phone-button__number img {
	filter: invert(100%);
}