* {

	box-sizing: border-box;

}

body {

	margin: 0;

	color: #000;

	font-size: 16px;

	font-family: "Poppins", sans-serif, Arial;

	font-weight: 400;

}

h1, h2, h3, p {

	margin: 0;

}

.container {

	width: 1140px;

	max-width: 100%;

	margin: 0 auto;

}

a {

	text-decoration: none;

}

ul, ol, li {

	list-style-type: none;

	margin: 0;

	padding: 0;

}

.header__top {

	padding: 40px 0 30px;

	background-color: #000;

	color: #fff;

}

.header__top-wrapper {

	display: flex;

	flex-direction: column;

	gap: 50px;

}

.header__slogan {

	margin-left: auto;

	font-size: 32px;

	font-weight: 500;

}

.header__contact-block, .header__logo-wrapper, .header__contact-wrapper, .header__nav .container {

	display: flex;

	align-items: center;

	justify-content: space-between;

}

.header__logo-wrapper {

	gap: 30px;

}

.header__contact-wrapper {

	padding-right: 8px;

	gap: 60px;

}

.header__phone {

	width: 242px;

	position: relative;

	padding: 16px 0 16px 40px;

	display: block;

	color: #fff;

	border-top: 1px solid #fff;

	border-bottom: 1px solid #fff;

	transition: all 0.3s;

}

.header__phone::before {

	position: absolute;

	content: url(../img/phone-ico.png);

	left: 10px;

	top: 50%;

	transform: translateY(-50%);

	width: 17px;

	height: 17px;

}



.header__phone:hover {

	opacity: 0.8;

}



.header__nav {

	padding: 15px 0;

	background-color: #fff;

}
.nav__logo, .nav__logo img {
	height: 80px;
}

.burger-menu {

	display: none;

}

.main-navigation {

    width: 80%;

}

.main-navigation ul {

    display: flex;

    align-items: center;

    justify-content: space-around;

    gap: 50px;

}

.main-navigation ul a {

    position: relative;

    color: #000;

    font-weight: 500;

}

.main-navigation ul a::before {

    content: "";

    position: absolute;

    bottom: -5px;

    display: block;

    height: 1px;

    width: 100%;

    background-color: #000;

    transition: transform .3s;

    transform: scale(0);

    transform-origin: left;

}

.main-navigation ul a:hover::before {

    transform: scale(1);

}

.hero {

	padding: 108px 0;

	color: #fff;

	background-image: url(../img/header-bg.jpg);

	background-repeat: no-repeat;

	background-position: center;

	background-size: cover;

}

.hero__name {

	text-transform: uppercase;

	font-size: 50px;

	font-weight: 600;

	line-height: 1.2;

	text-align: center;

}

.hero__title {

	padding: 16px 0;

	font-size: 76px;

	font-weight: 700;

	line-height: 1.05;

	text-align: center;

}

.hero__text {

	margin: 0 auto;

	width: 845px;

	max-width: 100%;

	padding-bottom: 30px;

	font-size: 25px;

	line-height: 1.44;

	font-weight: 500;

	text-align: center;

}

.hero__contact-wrapper {

	display: flex;

	align-items: center;

	justify-content: center;

	gap: 18px;

}

.hero__contact-wrapper div {

	width: 305px;

	background-color: #fff;

	padding: 12px 18px;

    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);

    transition: all 0.3s ease;

}

.hero__contact-wrapper div:hover {

    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2), 0 4px 6px rgba(0, 0, 0, 0.1);

    transform: translateY(-5px);

}

.hero__phone {

	position: relative;

	display: block;

	padding: 20px 0 20px 35px;

	color: #555;

	border-top: 1px solid #555;

	border-bottom: 1px solid #555;

	font-size: 22px;

	font-weight: 500;

	line-height: 0.7;

	transition: all 0.3s;

	white-space: nowrap;

}

.hero__phone::before {

	position: absolute;

	content: url(../img/phone-gray-ico.png);

	left: 5px;

	top: 50%;

	transform: translateY(-50%);

	width: 17px;

	height: 17px;

}

.hero__phone:hover {

	color: #333;

}



.brands {

	padding: 85px 0;

}

.brands__title {

	margin-bottom: 35px;

	text-align: center;

	font-size: 36px;

	line-height: 1;

	font-weight: 600;

}

.brands__list {

	display: flex;

	gap: 20px;

}

.brands__item {

	padding: 20px;

	background: #F5F5F5;

}

.brands__item-text {

	padding: 15px 0;

}

.brands__btn {

	position: relative;

	width: fit-content;

	display: block;

	padding: 0 30px 5px 0;

	margin-left: auto;

	color: #000;

	font-size: 24px;

	line-height: 1.5;

}

.brands__btn::after {

	position: absolute;

	content: url(../img/ArrowUpRight.png);

	width: 12px;

	height: 12px;

	right: 6px;

	top: 4px;

}

.brands__btn::before {

	content: "";

    position: absolute;

    bottom: -1px;

    display: block;

    height: 1px;

    width: 100%;

    background-color: #000;

    transition: transform .3s;

    transform: scale(0);

    transform-origin: left;

}

.brands__btn:hover::before{

	transform: scale(1);

}

.repair {

	padding: 55px 0 85px;

	background-image: url(../img/repair.jpg);

	background-repeat: no-repeat;

	background-position: center;

	background-size: cover;

}

.repair__logo {

	margin: 0 auto 15px;

	text-align: center;

}

.repair__title {

	margin-bottom: 35px;

	text-align: center;

	color: #fff;

	font-size: 64px;

	line-height: 0.85;

	font-weight: 700;

}

.repair__list {

	display: flex;

	align-items: center;

	gap: 20px;

}

.repair__item {

	width: 370px;

	height: 380px;

	padding: 32px 42px;

	background-color: #fff;

	display: flex;

	flex-direction: column;

	align-items: center;

	text-align: center;

	gap: 20px;

}

.repair__item-title {

	font-size: 20px;

	line-height: 1;

	font-weight: 700;

}

.repair__item-text {

	font-size: 14px;

	line-height: 1.5;

}

.repair__item-link {

    position: relative;

    display: inline-block;

    padding: 8px 36px 8px 12px;

    background-color: #000;

    color: #fff;

    overflow: hidden;

}

.repair__item-link::before {

    content: '';

    position: absolute;

    top: 0;

    left: -100%;

    width: 100%;

    height: 100%;

    background-color: #555;

    transition: left 0.5s ease;

    z-index: 0;

}

.repair__item-link:hover::before {

    left: 0;

}

.repair__item-link span {

    position: relative;

    z-index: 1;

}

.repair__item-link::after {

	position: absolute;

	content: url(../img/ArrowRight.png);

	width: 18px;

	height: 18px;

	right: 10px;

	top: 50%;

    transform: translateY(-50%);

}



.area {

	padding: 85px 0;

	background-color: #fff;

	text-align: center;

}

.area__title {

	padding: 15px 0 35px;

	font-size: 50px;

	font-weight: 800;

	line-height: 1.3;

}

.area__list {

	display: flex;

	gap: 20px;

	justify-content: flex-start;

    flex-wrap: wrap;

}

.area__item {

	position: relative;

	width: 32%;

	padding-left: 45px;

	text-align: left;

	color: #555;

	font-size: 20px;

	font-weight: 500;

	line-height: 1.5;

}

.area__item::before {

	position: absolute;

	content: url(../img/area-ico.png);

    width: 21px;

    height: 28px;

    top: 0;

    left: 0;

}



/* footer */

.footer__top {

	padding: 115px 0;

}

.footer__wrapper {

	display: flex;

	justify-content: space-between;

	align-items: flex-start;

	column-gap: 80px;

}

.footer__logo-wrapper {

	display: flex;

	align-items: center;

	gap: 30px;

}

.footer__item {

	width: 250px;

}
.footer__item.footer__item-contact {
  width: 300px;
}

.footer__title {

	padding-bottom: 15px;

	font-size: 24px;

	line-height: 1.5;

	font-weight: 600;

}

.footer__item a {

	display: block;

	font-size: 18px;

	color: #000;

	transition: all 0.3s;

}

.footer__item a:hover {

	opacity: 0.8;

}

.footer__item ul, .footer__contact {

	display: flex;

	flex-direction: column;

	gap: 20px;

}

.footer__contact a {

	position: relative;

	padding-left: 34px;

}

.footer__contact a::before {

	position: absolute;

	content: url(../img/phone-dark.png);

	width: 21px;

	height: 21px;

	top: 2px;

	left: 0;

}

.footer__contact a.footer__mail:before {

	content: url(../img/mail-dark.png);

}

.footer__card-img {

	padding-top: 35px;

}

.footer__bottom {

	padding: 16px 0;

	background-color: #555;

	color: #fff;

	text-align: center;

}



/* page */

.hero-page .container {

	text-align: center;

}

.hero-page .hero__text p {

	margin-bottom: 30px;

}

.hero-page .hero__text {

	padding: 30px 0 0;

}

.main-content {

	padding: 85px 0 55px;

}

.main-content .gallery {

	display: flex;

	justify-content: space-between;

	padding-bottom: 55px;

}

.main-content .gallery-item {

    display: flex;

    flex-direction: column-reverse;

	align-items: center;

	gap: 16px;

}

.wp-caption-text {

	font-size: 24px;

	color: #A13433;

	text-transform: uppercase;

	text-decoration: underline;

}

:where(figure) {

	margin: 0;

}

.content__text {

	text-align: center;

	padding: 10px 0 56px;

	font-size: 22px;

}

.content__list-text .gallery-item {

	height: 500px;

	overflow: hidden;

}

.content__list-blue .wp-caption-text {

	color: #357ABA;

}