@import url("https://fonts.googleapis.com/css?family=Poppins:regular,500,600,700,800&display=swap&subset=cyrillic-ext");

/* Обнуление -----------------------------------------------------------------*/
*,
*:before,
*:after {
	padding: 0;
	margin: 0;
	border: 0;
	box-sizing: border-box;
}
a {
	text-decoration: none;
}
ul,
ol,
li {
	list-style: none;
}
img {
	vertical-align: top;
}
h1,
h2,
h3,
h4,
h5,
h6 {
	font-size: inherit;
	font-weight: inherit;
}
nav,
footer,
header,
aside {
	display: block;
}
/* --------------------- Обнуление ---------------- */
html,
body {
	height: 100%;
	line-height: 1;
	font-size: 20px;
	color: #fafafa;
	background-color: #fafafa;
	font-weight: 500;
	font-family: "Poppins", sans-serif;
	scroll-padding-top: 75px;
}

.body._lock {
	position: fixed;
	overflow: hidden;
}
.wrapper {
	min-height: 100%;
	overflow: hidden;
	display: flex;
	flex-direction: column;
}
._container {
	max-width: 1146px;
	margin: 0px auto;
	padding: 0px 15px;
	box-sizing: content-box;
}
._ibg {
	position: relative;
}
._ibg img {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	object-fit: cover;
}
/* -------------------Шапка----------------------- */
.header {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	z-index: 1000;
	background-color: #333333ef;
}
.header__container {
	display: flex;
	margin: 0px auto;
	align-items: center;
	padding: 0px 30px;
	justify-content: space-between;
	min-height: 70px;
}
.header__logo {
	font-size: 24px;
	font-weight: 700;
	color: inherit;
	z-index: 5;
	position: relative;
}

.header__menu {
	margin: 0px 0px 0px 133px;
}
.menu {
	padding: 5px 0px;
}
.menu__icon {
	display: none;
}
.menu__body {
}
.menu__list {
}
.menu__list > li {
	position: relative;
	margin: 0px 0px 0px 20px;
}
.menu__link {
	color: #ffffff;
	font-weight: 600;
	font-size: 18px;
	line-height: calc(24 / 14 * 100%);
	text-shadow: 2px 2px 3px rgb(0, 0, 0);
	padding: 10px 0px;
}
.menu__link:hover {
	text-decoration: underline;
}
.menu__sub-list {
	position: absolute;
	top: 100%;
	right: 0;
	padding: 5px;
	min-width: 200px;
	background-color: #1e2e1cad;
	margin: -20px 0px;
	box-shadow: 0px 3px 3px #1d1b1b;
	border-radius: 5px;
}
.menu__sub-list li {
	margin: 0px 0px 10px 0px;
}
.menu__sub-list li:last-child {
	margin: 0px;
}
.menu__sub-link {
	color: #fff;
	font-size: 18px;
	padding: 10px;
}
.menu__sub-link:hover {
	text-decoration: underline;
}
.menu__arrow {
	display: none;
}
/* -------------------------------------------------------- */
body._pc .menu__list > li:hover .menu__sub-list {
	opacity: 1;
	visibility: visible;
	transform: translate(0px 0px);
	pointer-events: all;
}
body._touch .menu__list > li {
	display: flex;
	align-items: center;
}
body._touch .menu__link {
	flex: 1 1 auto;
}
body._touch .menu__arrow {
	display: block;
	width: 0;
	height: 0;
	transition: transform 0.3s ease 0s;
	margin: 0px 0px 0px 15px;
	border-left: 5px solid transparent;
	border-right: 5px solid transparent;
	border-top: 10px solid #fff;
}
body._touch .menu__list > li._active .menu__sub-list {
	opacity: 1;
	visibility: visible;
	transform: translate(0px 0px);
	pointer-events: all;
}
body._touch .menu__list > li._active .menu__arrow {
	transform: rotate(-180deg);
}
/* -------------------------------------------------------- */
@media (min-width: 992px) {
	.menu__list {
		display: flex;
		align-items: center;
	}
	.menu__list > li {
		padding: 10px 0;
	}
	.menu__sub-list {
		transform: translate(0px, 10%);
		opacity: 0;
		visibility: hidden;
		pointer-events: none;
		transition: all 0.3s ease 0s;
	}
}
@media (max-width: 992px) {
	.menu__icon {
		z-index: 5;
		display: block;
		position: relative;
		width: 30px;
		height: 18px;
		cursor: pointer;
	}
	.menu__icon span,
	.menu__icon:before,
	.menu__icon:after {
		left: 0;
		position: absolute;
		height: 10%;
		width: 100%;
		transition: all 0.3s ease 0s;
		background-color: #fff;
	}
	.menu__icon:before,
	.menu__icon:after {
		content: "";
	}
	.menu__icon:before {
		top: 0;
	}
	.menu__icon:after {
		bottom: 0;
	}
	.menu__icon span {
		top: 50%;
		transform: scale(1) translate(0px, -50%);
	}
	.menu__icon._active span {
		transform: scale(0) translate(0px, -50%);
	}
	.menu__icon._active:before {
		top: 50%;
		transform: rotate(-45deg) translate(0px, -50%);
	}
	.menu__icon._active:after {
		bottom: 50%;
		transform: rotate(45deg) translate(0px, 50%);
	}
	.menu__body {
		position: fixed;
		top: 0;
		left: -100%;
		width: 100%;
		height: 100%;
		background-color: #262525ef;
		padding: 100px 30px 30px 30px;
		transition: left 0.3s ease 0s;
		overflow: auto;
	}
	.menu__body._active {
		left: 0;
	}
	.menu__body:before {
		content: "";
		position: fixed;
		width: 100%;
		height: 100%;
		top: 0;
		left: 0;
		height: 70px;
		background-color: #131212;
		z-index: 2;
	}
	.menu__list > li {
		flex-wrap: wrap;
		margin: 0px 0px 30px 0px;
	}
	.menu__list li:last-child {
		margin-bottom: 0;
	}
	.menu__list > li._active .menu__sub-list {
		display: block;
	}
	.menu__link {
		font-size: 24px;
	}
	.menu__sub-list {
		position: relative;
		background-color: rgb(10, 9, 9);
		flex: 1 1 100%;
		margin: 20px 0px 0px 0px;
		display: none;
	}
	.menu__sub-link {
		font-size: 20px;
		color: #ffffff;
	}
}
/* -------------------Page------------------------ */
.page {
	flex: 1 1 auto;
}
.page__main-block {
}
.page__services {
	position: relative;
	z-index: 2;
	margin: -120px 0px 0px 0px;
}
.page__our-work {
}
.page__about-us {
}
.page__brends:not(:last-child) {
	margin: 0px 0px 10px 0px;
}
.page__search {
}
.page__contacts {
}
.page__gallery {
}
.page__reviews {
}
/* ------------------HEADER_BLOCK ---------------- */
.header-block {
	text-align: center;
}
.header-block__title {
	font-size: 34px;
	font-weight: 700;
	line-height: calc(32 / 24 * 100%);
	letter-spacing: 0.1px;
	color: #262525;
	text-transform: uppercase;
}
.header-block__title:not(:last-child) {
	margin: 0px 0px 10px 0px;
}
.header-block__sub-title {
	font-size: 20px;
	font-weight: 500;
	line-height: 142%;
	letter-spacing: 0.2px;
	color: #737373;
}
@media (max-width: 992px) {
	.header-block__title {
		font-size: 35px;
	}
}
@media (max-width: 776px) {
	.header-block__title {
		font-size: 30px;
	}
}
/* =================SCROLL================== */
.scroll-item {
	opacity: 0;
	transform: translate(0px, 80%);
}

.main-block__title.animation-class {
	opacity: 1;
	transition: all 2s ease 0s;
	transform: translate(0px, 0px);
}

.main-block__text.animation-class {
	opacity: 1;
	transition: all 2s ease 0.2s;
	transform: translate(0px, 0px);
}

.services__title.animation-class {
	opacity: 1;
	transition: all 2s ease 0s;
	transform: translate(0px, 0px);
}

.services__body.animation-class {
	opacity: 1;
	transition: all 2s ease 0s;
	transform: translate(0px, 0px);
}

.page__our-work.animation-class {
	opacity: 1;
	transition: all 2s ease 0s;
	transform: translate(0px, 0px);
}

.page__about-us.animation-class {
	opacity: 1;
	transition: all 2s ease 0s;
	transform: translate(0px, 0px);
}
.page__model.animation-class {
	opacity: 1;
	transition: all 2s ease 0s;
	transform: translate(0px, 0px);
}
.page__search.animation-class {
	opacity: 1;
	transition: all 2s ease 0s;
	transform: translate(0px, 0px);
}
.page__reviews.animation-class {
	opacity: 1;
	transition: all 2s ease 0s;
	transform: translate(0px, 0px);
}
.page__contacts.animation-class {
	opacity: 1;
	transition: all 2s ease 0s;
	transform: translate(0px, 0px);
}
.footer.animation-class {
	opacity: 1;
	transition: all 2s ease 0s;
	transform: translate(0px, 0px);
}
.page__repair.animation-class {
	opacity: 1;
	transition: all 2s ease 0s;
	transform: translate(0px, 0px);
}
.page__location.animation-class {
	opacity: 1;
	transition: all 2s ease 0s;
	transform: translate(0px, 0px);
}
.reviews__items-page.animation-class {
	opacity: 1;
	transition: all 2s ease 0s;
	transform: translate(0px, 0px);
}
/* --------------------Main Block----------------- */
.main-block {
	position: relative;
}
.main-block__container {
}
.container {
}
.main-block__body > *:not(:last-child) {
	margin: 0px 0px 35px 0px;
}
.main-block__body {
	padding: 184px 0px 191px 0px;
	position: relative;
	z-index: 2;
	max-width: 500px;
}
.main-block__title {
	font-size: 58px;
	line-height: calc(80 / 58 * 100%);
	font-weight: 800;
	letter-spacing: 0.2px;
	text-shadow: 3px 2px 3px rgb(0, 0, 0);
}

.main-block__text {
	color: #797676;
	font-size: 20px;
	line-height: 150%;
}
.main-block__image {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
}
@media (max-width: 1300px) {
	.main-block__image img {
		object-position: right;
	}
}
@media (max-width: 992px) {
	.main-block__body {
		padding: 120px 0px 191px 0px;
	}
	.main-block__image {
		opacity: 0.5;
	}
	.main-block__text {
		color: #272626;
	}
}
@media (max-width: 479px) {
	.main-block__body {
		padding: 115px 0px 160px 0px;
	}
	.main-block__title {
		font-size: 42px;
	}
}
/* -----------------Services----------------------- */
.services {
}
.services__container {
	text-align: center;
}
.services__title {
	color: #ffffff;
	font-size: 40px;
	line-height: 150%;
	margin: 0px 0px 20px 0px;
}
.services__body {
}
.services__column {
	flex: 0 1 33.333%;
}
.services__item {
	height: 100%;
	box-shadow: 0px 13px 19px rgba(0, 0, 0, 0.7);
	background-color: rgb(255, 255, 255);
	padding: 15px;
}
.item-service {
}
.item-service > *:not(:last-child) {
	margin: 0px 0px 10px 0px;
}
.item-service__icon {
	margin: auto;
}
.item-service__icon img {
	max-width: 100%;
	align-items: stretch;
}
.item-service__title {
	font-size: 20px;
	font-weight: 700;
	line-height: calc(32 / 20 * 100%);
	letter-spacing: 0.1px;
	color: #262525;
}
.item-service__text {
	font-size: 16px;
	font-weight: 500;
	line-height: 142%;
	color: #797676;
}
@media (max-width: 1220px) {
	.services__column {
		flex: 0 1 50%;
	}
	.services__column:last-child {
		flex: 0 1 100%;
	}
	.services__column:not(:last-child) {
		margin: 0px 0px 30px 0px;
	}
}
@media (min-width: 767px) {
	.services__body {
		display: flex;
		flex-wrap: wrap;
		margin: 0px -10px;
	}
	.services__column {
		padding: 0px 10px;
	}
	.services__item {
		padding: 25px;
	}
}
@media (max-width: 992px) {
	.services__title {
		text-shadow: 2px 2px 3px rgb(0, 0, 0);
	}
	.services__item {
		margin-bottom: 20px;
	}
}
@media (max-width: 479px) {
	.services__item {
		padding: 25px;
	}
}
/* -----------------Our Work---------------------- */
.work-plan {
	padding: 60px 0px;
}
.our-work__container {
}
.our-work__header {
	margin: 60px 0px 60px 0px;
}
.our-work__body {
	display: flex;
	flex-wrap: wrap;
	text-align: center;
}
.our-work__column {
	padding: 0px 5px;
	margin: 0px 0px 5px 0px;
	flex: 0 1 20%;
	display: flex;
}
.our-work__item {
	background-color: #ffffff;
	padding: 10px;
	text-align: center;
	font-weight: 500;
}
.our-work__item > *:not(:last-child) {
	margin: 0px 0px 10px 0px;
}
.our-work__icon {
	display: flex;
	justify-content: center;
}
.our-work__icon img {
	width: 40px;
	height: 40px;
}
.our-work__text {
	font-size: 16px;
	line-height: 142%;
	letter-spacing: 0.1px;
	color: #737373;
}
@media (max-width: 1220px) {
	.our-work__column {
		flex: 0 1 33.333%;
	}
}
@media (max-width: 992px) {
	.our-work__column {
		flex: 0 1 50%;
	}
	.work-plan {
		padding: 50px 0px;
	}
}
@media (max-width: 767px) {
	.our-work__column {
		flex: 0 1 100%;
		flex-direction: column;
	}
	.our-work__header {
		margin: 0px 0px 20px 0px;
	}
	.work-plan {
		padding: 40px 0px;
	}
}
/* ------------------------About Us---------------------- */
.about-us {
	padding: 60px 0px;
	background-color: #dedbdb38;
}
.about-us__container {
}
.about-us__header {
	margin: 0px 0px 60px 0px;
}
.about-us__body {
	display: flex;
	align-items: flex-start;
}
.about-us__img {
	flex: 0 0 50%;
	position: relative;
	padding: 0px 0px 30% 0px;
}
.about-us__img img {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	object-fit: cover;
}
.about-us__content {
	flex: 1 1 auto;
	padding: 0px 0px 0px 50px;
}
.about-us__img:not(:last-child) {
	margin: 0px 0px 0px 0px;
}
.about-us__text {
	color: #737373;
	font-size: 16px;
	line-height: 142%;
	letter-spacing: 0.2px;
}
@media (max-width: 1150px) {
	.about-us__content {
		padding: 0px 0px 0px 30px;
	}
}
@media (max-width: 992px) {
	.about-us {
		padding: 10px 0px 0px 0px;
	}
	.about-us__body {
		flex-direction: column-reverse;
		align-items: stretch;
	}
	.about-us__header {
		margin: 0px 0px 30px 0px;
	}
	.about-us__img:not(:last-child) {
		margin: 50px 0px 0px 0px;
	}
	.about-us__img {
		padding: 0px 0px 80% 0px;
	}
	.about-us__content {
		padding: 20px 0px 0px 0px;
	}
}
@media (max-width: 767px) {
	.about-us__header {
		margin: 20px 0px 0px 0px;
	}
}
.page__location {
}

.location {
}

.location__container {
}

.location__body {
}

.location__items {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
}

.location__item {
	padding: 20px;
}
.location__item img {
	max-width: 500px;
}
@media (max-width: 1109px) {
	.location__item img {
		max-width: 400px;
	}
}
@media (max-width: 909px) {
	.location__item img {
		max-width: 600px;
	}
}
@media (max-width: 709px) {
	.location__item img {
		max-width: 500px;
		width: 100%;
	}
	.location__item {
		padding: 10px;
	}
}

.location-link {
}

.location-img {
}
/* ------------------Brends------------------------- */
.brends {
	padding: 50px 0px;
}
.brends__container {
}
.brends__items {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
}
.brends__item {
	padding: 8px 15px;
	flex: 0 1 16.6667%;
	text-align: center;
	min-width: 110px;
}
.brends__item img {
	max-width: 100%;
}
@media (max-width: 767px) {
	.brends {
		padding: 20px 0px;
	}
}
/* ---------------------------Search------------------------- */
.search {
	position: relative;
	padding: 0px 0px 20px 0px;
}
.search::before {
	position: absolute;
	content: "";
	background: #2e2d2d;
	width: 100%;
	height: 77px;
	bottom: 0;
	left: 0;
}
.search__container {
}
.search__body {
	position: relative;
	z-index: 2;
	padding: 30px 50px;
	align-items: center;
	background: #262525;
	border-radius: 2px;
}
@media (min-width: 1170px) {
	.search__body {
		margin: 0px 30px;
	}
}
@media (min-width: 992px) {
	.search__body {
		display: flex;
		justify-content: space-between;
	}
}
.search__title {
	color: #ffffff;
	font-size: 133%;
	max-width: 266px;
	line-height: 32px;
	font-weight: 700;
	letter-spacing: 0.1px;
}
@media (max-width: 992px) {
	.search__title {
		margin: 0px 0px 20px 0px;
	}
	.search__body {
		margin: 0px -15px;
		padding: 20px 25px;
		font-size: 70%;
	}
}
.search__form {
	flex: 0 1 50%;
	display: flex;
	align-items: center;
}

.search__input {
	flex: 1 1 auto;
	min-height: 58px;
	padding: 0px 20px;
	border: 1px solid #ffffff;
	box-sizing: border-box;
	border-radius: 5px 0px 0px 5px;
	background: #fafafa;
	color: #737373;
	border-right: 0;
}
.search__input:focus {
	color: #262525;
}
.search__button {
	background: rgb(225, 46, 46);
	border: 1px solid #ffffff;
	border-radius: 0px 5px 5px 0px;
	display: flex;
	min-height: 58px;
	justify-content: center;
	align-items: center;
	text-align: center;
	color: #ffffff;
	padding: 0px 22px;
	transition: all 0.3s ease 0s;
	cursor: pointer;
}
.search__button:hover {
	background: rgb(154, 32, 32);
}
/* /* ----------------------Reviews------------------ * */
.page-reviews {
	background-color: rgb(255, 255, 255);
}
.reviews {
	padding-top: 80px;
	padding-bottom: 80px;
}
.reviews-page {
	padding-top: 60px;
	padding-bottom: 60px;
}
@media (max-width: 991px) {
	.reviews {
		padding-top: 70px;
		padding-bottom: 70px;
	}
	.reviews-page {
		padding-top: 10px;
		padding-bottom: 10px;
		margin: -30px 0px 0px 0px;
	}
}
@media (max-width: 767px) {
	.reviews {
		padding-top: 10px;
		padding-bottom: 10px;
	}
}
@media (max-width: 540px) {
	.reviews-page {
		margin: -60px 0px 0px 0px;
	}
}
.reviews__container {
}

.reviews-title__title {
	font-size: 34px;
	font-weight: 700;
	line-height: calc(32 / 24 * 100%);
	letter-spacing: 0.1px;
	color: #262525;
	text-transform: uppercase;
	margin-bottom: 70px;
}
.reviews-title {
	text-align: center;
}
.reviews__items {
	display: grid;
	gap: 20px;
	grid-template-columns: repeat(auto-fill, minmax(290px, 360px));
	justify-content: center;
	align-items: center;
}
@media (max-width: 1200px) {
	.reviews__items {
		grid-template-columns: repeat(auto-fill, minmax(280px, 100%));
	}
}
.reviews__items-page {
	display: grid;
	gap: 20px;
	grid-template-columns: repeat(auto-fill, minmax(290px, 360px));
	justify-content: center;
	align-items: center;
}
@media (max-width: 769px) {
	.reviews__items-page {
		grid-template-columns: repeat(auto-fill, minmax(280px, 100%));
	}
	.reviews-comment {
		font-size: 14px;
	}
}
@media (max-width: 339px) {
	.reviews-title__title {
		font-size: 24px;
		margin-bottom: 40px;
	}
}

.reviews__item {
	max-height: 400px;
}

.item-reviews {
	color: inherit;
	padding: 50px 40px;
	background: #fff;
	border: 1px solid #ebebeb;
	transition: all 0, 3s ease 0s;
}
.item-reviews:hover {
	border: 1px solid transparent;
	box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.item-reviews__raiting {
	margin-bottom: 30px;
}

.simple-rating {
	position: relative;
	font-size: 30px;
	display: inline-block;
}
.simple-rating::before {
	content: "★★★★★";
	display: block;
}

.simple-rating__items {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	display: flex;
	flex-direction: row-reverse;
	overflow: hidden;
}

.simple-rating__item {
	position: absolute;
	width: 0%;
	height: 0%;
	top: 0;
	left: 0;
	opacity: 0;
	visibility: hidden;
}

.simple-rating__lable {
	flex: 0 0 20%;
	height: 100%;
	cursor: pointer;
	color: #e78c15;
}
.simple-rating__lable::before {
	content: "★";
	display: block;
	transition: color 0.3s ease 0s;
}
.simple-rating__item:checked,
.simple-rating__item:checked ~ .simple-rating__lable {
	color: #f7bf47;
}
.simple-rating__lable:hover,
.simple-rating__lable:hover ~ .simple-rating__lable,
.simple-rating__lable:checked ~ .simple-rating__lable:hover {
	color: #dd6b00;
}

.item-reviews__text {
	color: #2e2d2d;
	line-height: 1.5;
	margin-bottom: 20px;
	width: 100%;
	height: 160px;
	font-size: 15px;
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 7;
	-webkit-box-orient: vertical;
}

.item-reviews__author {
}

.author-item-reviews {
	display: flex;
	align-items: center;
	margin-bottom: 20px;
}

.author-item-reviews__avatar {
	flex: 0 0 78px;
	border-radius: 30%;
	overflow: hidden;
	gap: 20px;
}
.author-item-reviews__avatar img {
	max-height: 80px;
}

.author-item-reviews__body {
}

.author-item-reviews__name {
	color: #2e2d2d;
	margin-left: 20px;
	font-weight: 700;
	line-height: 22px;
	font-size: 20px;
}

.reviews-comment {
	color: #262525;
	margin: 30px 0px;
	font-size: 16px;
}
.reviews-comment a {
	color: inherit;
	cursor: pointer;
	font-size: 20px;
}
.reviews-comment img {
	max-height: 20px;
	align-items: center;
}
/* --------------------Contacts----------------- */
.contacts {
	padding: 60px 0px 115px 0px;
	background-color: #dedbdb38;
}
.contacts__container {
}
.contacts__header {
	margin: 0px 0px 60px 0px;
}
.contacts__items {
	margin: 0px -15px;
}
.contacts__item {
	flex: 0 1 33.333%;
}
.item-contact {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	background-color: #ffffff;
	padding: 50px 15px;
	color: #272626;
}
.item-contact_active {
	background: #262525;
	color: #ffffff;
	padding: 80px 15px;
}
.item-contact_active .item-contact__button {
	border: 1px solid #ffffff;
	color: #ffffff;
}
.item-contact > *:not(:last-child) {
	margin: 0px 0px 10px 0px;
}
.item-contact__icon img {
	width: 50px;
	height: 50px;
	align-items: center;
}
.item-contact__information {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
.item-contact__info {
	color: inherit;
	font-weight: 500;
	line-height: 142%;
	font-size: 16px;
}
.item-contact__email:hover {
	text-decoration: underline;
}
.item-contact__label {
	font-weight: 600;
	font-size: 16px;
	line-height: 142%;
	text-align: center;
	letter-spacing: 1px;
}
.item-contact__label-img {
	max-height: 30px;
	margin: 0px 5px;
}
.item-contact__button {
	border: 1px solid rgb(225, 46, 46);
	border-radius: 5px;
	display: flex;
	min-height: 44px;
	justify-content: center;
	align-items: center;
	text-align: center;
	color: rgb(225, 46, 46);
	line-height: 142%;
	padding: 5px 20px;
	font-weight: 600;
	transition: all 0.3s ease 0s;
}
.item-contact__button:hover {
	border: 1px solid rgb(225, 46, 46);
	background-color: rgb(225, 46, 46);
	color: #fafafa;
}
@media (max-width: 992px) {
	.contacts__header {
		margin: 0px 0px 50px 0px;
	}
	.contacts {
		padding: 50px 0px;
	}
	.item-contact_active {
		padding: 50px 15px;
	}
}
@media (max-width: 776px) {
	.contacts__header {
		margin: 0px 0px 30px 0px;
	}
}
@media (min-width: 992px) {
	.contacts__items {
		margin: 0;
		display: flex;
		align-items: center;
	}
}
/* ------------------------Footer------------------------------- */
.footer {
}
.footer__top {
	background: #262525;
	padding: 35px 0px;
}
.footer__main {
}
.footer__row {
	margin: 0px -15px;
	display: flex;
	flex-wrap: wrap;
}
.footer__column {
	flex: 0 1 20%;
	padding: 15px 15px;
	min-width: 160px;
}
.footer__column:nth-child(2) {
	flex: 0 1 40%;
}
.footer__column:last-child {
	flex: 0 1 40%;
}
@media (max-width: 992px) {
	.footer__column {
		flex: 0 1 50%;
	}
}
@media (max-width: 992px) {
	.footer__column:last-child {
		flex: 0 1 100%;
	}
	.menu-footer {
		font-size: 16px;
	}
	.footer__contacts {
		font-size: 16px;
	}
}
@media (max-width: 599px) {
	.footer__column {
		flex: 0 1 100%;
	}
	.footer__column:nth-child(2) {
		flex: 0 1 100%;
	}
}
.footer__label {
	color: #ffffff;
	font-weight: 600;
	font-size: 18px;
	line-height: 142%;
	margin: 0px 0px 20px 0px;
}
.footer__menu {
}
.menu-footer {
}

.menu-footer__list {
}
.menu-footer__item:not(:last-child) {
	margin: 0px 0px 10px 0px;
}
.menu-footer__link {
	color: #ffffff;
	letter-spacing: 0.2px;
	line-height: 171%;
	display: inline-block;
}
.menu-footer__link:hover {
	text-decoration: underline;
}
.footer__contacts {
}
.contacts-footer {
	display: flex;
	flex-direction: column;
}
.contacts-footer__item {
	padding: 0px 0px 0px 34px;
	line-height: 142%;
	align-items: center;
	min-height: 30px;
	color: #fff;
	display: flex;
}
.contacts-footer__item:hover {
	text-decoration: underline;
}
.contacts-footer__item:not(:last-child) {
	margin: 0px 0px 12px 0px;
}

.contacts-footer__item_phone {
	background: url(../img/footer/contact/001.svg) 0 0 no-repeat;
}
.contacts-footer__item_map {
	background: url(../img/footer/contact/002.svg) 0 0 no-repeat;
}
.contacts-footer__item_email {
	background: url(../img/footer/contact/003.svg) 0 0 no-repeat;
}
.footer__bottom {
	padding: 25px 0px;
}
.footer__container {
}
.footer__container {
	display: flex;
	justify-content: space-between;
	text-align: center;
}
@media (max-width: 767px) {
	.footer__container {
		flex-direction: column;
	}
}
.footer__copy {
	color: #737373;
	line-height: 171%;
	padding: 5px 0px;
}
.footer__social {
}
.social {
}
.social__item:not(:last-child) {
	margin: 0px 20px 0px 0px;
}
/* -----------------------Service detals------------ */
.page__repair {
	padding: 50px 0px;
}
._ibg-servises img {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	object-fit: cover;
}
@media (max-width: 992px) {
	._ibg-servises img {
		position: absolute;
		width: 100%;
		height: 80%;
		top: 0;
		left: 0;
		object-fit: cover;
	}
	.repair-phone {
		margin: -100px 0px 0px 0px;
	}
}
.repair-phone__container {
}

.header-block__title {
	text-align: center;
	letter-spacing: 0.2px;
}
.card-body {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
.repair-phone__card:hover {
	background-color: #79767650;
}
.repair-phone__link {
	flex: 1 1 33.3333%;
	align-items: center;
	text-align: center;
	display: flex;
	flex-direction: column;
}
@media (max-width: 1220px) {
	.repair-phone__link {
		flex: 1 1 50%;
	}
	.repair-phone__link:last-child {
		flex: 1 1 100%;
	}
}
@media (max-width: 992px) {
	.repair-phone__link {
		flex: 1 1 50%;
	}
	.page__repair {
		padding: 30px 0px;
	}
}
@media (max-width: 767px) {
	.repair-phone__link {
		flex: 1 1 100%;
	}
}
.repair-phone__card {
	justify-content: center;
	padding: 5px;
	margin: 10px;
	flex: 1 1 auto;
	box-shadow: 0px 13px 19px rgba(0, 0, 0, 0.7);
	transition: all 0.5s ease 0s;
}
.card-img-top {
	max-width: 200px;
	margin: 10px 0px;
}
.repair-phone__title {
	color: #797676;
	font-size: 20px;
	line-height: 150%;
	font-weight: 600;
}
.repair-phone__sub-title {
	font-size: 16px;
	padding: 10px;
	font-weight: 500;
	line-height: 142%;
	color: #797676;
	flex: 1 1 auto;
}

/* -----------------------Brands--------------*/
.page__model {
}
.model-phone {
	padding: 20px 0px 40px 0px;
}
.model-phone__container {
}
.model-phone__title {
	font-size: 24px;
	font-weight: 700;
	line-height: calc(28 / 24 * 100%);
	letter-spacing: 0.1px;
	color: #262525;
	text-align: center;
	margin: 0px 0px 40px 0px;
}
.model-phone__body {
	margin: 0px -50px;
}
.model-phone__brands {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	align-items: center;
	padding: 0px 20px;
}
.model-phone__items {
	flex: 0 1 16.666%;
	text-align: center;
	padding: 5px 10px;
}
@media (max-width: 1200px) {
	.model-phone__items {
		flex: 0 1 33.333%;
	}
	.model-phone__title {
		margin: 0px 0px 20px 0px;
	}
}
@media (max-width: 670px) {
	.model-phone__items {
		flex: 0 1 50%;
		align-items: stretch;
	}
}
@media (max-width: 479px) {
	.model-phone__items {
		flex: 0 1 100%;
		margin: 0px 0px 20px 0px;
	}
	.model-phone__items:last-child {
		margin: 0px 0px 0px 0px;
	}
}
.model-phone__item {
}
.model-phone__brand {
	transition: all 0.3s ease 0s;
}
.model-phone__brand:hover {
	transform: scale(1.1);
}

/* -----------------------Price------------------------------ */

.repair__price {
	color: #131212;
	margin: 20px 0px 40px 0px;
}

.price {
}

.price__container {
}

.price__text {
	color: #797676;
	font-size: 20px;
	line-height: 150%;
	font-weight: 500;
	padding: 20px 0px;
}
@media (max-width: 670px) {
	.price__text {
		font-size: 16px;
	}
	.table-title th {
		font-size: 16px;
	}
	.table-body tr {
		font-size: 16px;
		line-height: 190%;
	}
}
.price__table {
	width: 100%;
	font-size: 18px;
	line-height: 152%;
	letter-spacing: 0.3px;
}
.price__name {
	font-size: 24px;
	font-weight: 700;
	line-height: calc(32 / 24 * 100%);
	letter-spacing: 0.1px;
	color: #262525;
	margin: 40px 0px 0px 0px;
	text-align: start;
}
.table-title th {
	text-align: start;
}
.table-body {
	line-height: 192%;
	font-size: 18px;
}
.table-body td {
	border-top: 1px solid #1d1b1b;
}
.table-body tr td:first-child {
	width: 80%;
}
.table-body tr:hover {
	background-color: #99969636;
	transition: all 0.7s ease 0s;
}
.price__sub-title {
	padding: 20px 0px;
	font-size: 16px;
	line-height: 120%;
}
/*-------------next page aboutus-------------*/
._ibg-abotus img {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	object-fit: cover;
}
@media (max-width: 992px) {
	._ibg-abotus img {
		position: absolute;
		width: 100%;
		height: 80%;
		top: 0;
		left: 0;
		object-fit: cover;
	}
}
.about-us_page {
	padding: 40px 0px;
}
.header-block-aboutus {
	text-align: center;
}
@media (max-width: 992px) {
	.header-block-aboutus {
		margin: -100px 0px 0px 0px;
	}
}
.about-us__content-title {
	color: #262525;
	font-size: 20px;
	font-weight: 600;
	padding: 0px 0px 20px 0px;
}
.body-description {
	padding: 20px 0px 0px 0px;
	background-color: #fafafa;
	font-size: 16px;
}

/* ===========GALLERY PAGE=================== */
.container {
	position: relative;
}

/* Hide the images by default */
.mySlides {
	display: none;
}
.mySlides img {
	max-width: 100%;
	max-height: 800px;
	object-fit: contain;
	background-color: #2e2d2d46;
}

/* Add a pointer when hovering over the thumbnail images */
.cursor {
	cursor: pointer;
}

/* Next & previous buttons */
.prev,
.next {
	cursor: pointer;
	position: absolute;
	top: 40%;
	width: auto;
	padding: 16px;
	margin-top: -50px;
	color: rgb(0, 0, 0);
	font-weight: bold;
	font-size: 20px;
	border-radius: 0 3px 3px 0;
	user-select: none;
	-webkit-user-select: none;
}

/* Position the "next button" to the right */
.next {
	right: 0;
	border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover,
.next:hover {
	background-color: rgba(0, 0, 0, 0.8);
	color: rgb(255, 255, 255);
}

/* Number text (1/3 etc) */
.numbertext {
	color: #000000;
	font-size: 12px;
	padding: 8px 12px;
	position: absolute;
	top: 0;
}

/* Container for image text */
.caption-container {
	text-align: center;
	background-color: #222;
	padding: 2px 16px;
	color: white;
}

.row:after {
	content: "";
	display: table;
	clear: both;
}

/* Six columns side by side */
.column {
	float: left;
	width: 10%;
}
.column img {
	display: none;
}

/* Add a transparency effect for thumnbail images */
.demo {
	opacity: 0.6;
}

.active,
.demo:hover {
	opacity: 1;
}

@media (max-width: 767.98px) {
	.numbertext {
		color: #fff;
	}
	.caption-container {
		font-size: 14px;
		padding: 5px 0px;
	}
	.mySlides img {
		max-width: 100%;
		height: 550px;
	}
	.prev,
	.next {
		top: 50%;
	}
}
@media (max-width: 587.98px) {
	.mySlides img {
		max-width: 100%;
		height: 450px;
	}
}
@media (max-width: 487.98px) {
	.mySlides img {
		max-width: 100%;
		height: 350px;
	}
}
@media (max-width: 387.98px) {
	.mySlides img {
		max-width: 100%;
		height: 300px;
	}
}
@media (max-width: 317.98px) {
	.mySlides img {
		max-width: 100%;
		height: 260px;
	}
}